/* =====================================================
   НСИ Асистент - Professional Accounting Software Styles
   Modern, Clean, Trust-inspiring Design
   ===================================================== */

:root {
    /* Primary Colors - Professional Green (matching logo) */
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --primary-subtle: #d1fae5;
    
    /* Secondary Colors */
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    
    /* Accent Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    
    /* Neutrals */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.7;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.3;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

/* Secondary Navigation for Authenticated Users */
.secondary-navbar {
    top: 70px !important;
    background: linear-gradient(to bottom, #f0fdf4, #ecfdf5) !important;
    border-bottom: 1px solid rgba(5, 150, 105, 0.15) !important;
    padding: 0.75rem 0 0.5rem 0;
    z-index: 1029;
    overflow: visible;
}

@media (max-width: 991.98px) {
    .secondary-navbar {
        position: relative !important;
        top: 0 !important;
        margin-top: 70px;
    }
}

.secondary-navbar .container {
    overflow: visible;
}

.secondary-navbar .navbar-nav {
    overflow: visible;
}

.secondary-navbar .nav-item {
    margin-top: 0.5rem;
}

.secondary-navbar .user-nav-link {
    font-size: 0.85rem;
    color: var(--gray-600) !important;
    background: transparent;
    transition: var(--transition);
}

.secondary-navbar .user-nav-link:hover,
.secondary-navbar .user-nav-link.active {
    background: var(--primary-subtle);
    color: var(--primary) !important;
}

.secondary-navbar .dropdown {
    position: relative;
}

.secondary-navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1050;
    margin-top: 0.25rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
}

.secondary-navbar .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.secondary-navbar .dropdown-item:hover {
    background: var(--gray-100);
}

/* Main Content Areas */
.main-content-public {
    padding-top: 70px !important;
}

.main-content-authenticated {
    padding-top: 140px !important;
    min-height: calc(100vh - 140px);
}

@media (max-width: 991.98px) {
    .main-content-authenticated {
        padding-top: 0 !important;
        min-height: auto;
    }
}

.main-content-authenticated .container,
.main-content-authenticated .container-fluid {
    padding-top: 1.5rem;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-700) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-nav {
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-lg);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, #fff 50%, var(--primary-subtle) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, var(--primary-subtle) 0%, transparent 70%);
    opacity: 0.5;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #065f46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
}

.hero-cta .btn {
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-visual {
    position: relative;
    height: 400px;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* Floating Screenshot Styles */
.hero-screenshot-wrapper {
    position: relative;
    max-width: 450px;
    transform: translateY(-30px) translateX(20px);
    perspective: 1000px;
}

.screenshot-bg-1 {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #3b82f6 100%);
    border-radius: 1.5rem;
    transform: rotateY(-12deg) rotateX(5deg) rotate(-3deg);
    opacity: 0.25;
    transform-style: preserve-3d;
}

.screenshot-bg-2 {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    border-radius: 1.25rem;
    transform: rotateY(-12deg) rotateX(5deg) rotate(-1deg);
    opacity: 0.35;
    transform-style: preserve-3d;
}

.screenshot-container {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 30px 30px 50px rgba(0, 0, 0, 0.15), -5px -5px 20px rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    transform: rotateY(-12deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.screenshot-container:hover {
    transform: rotateY(-8deg) rotateX(3deg);
}

.screenshot-container img {
    border-radius: 0.5rem;
    display: block;
    width: 100%;
}

.visual-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    width: 280px;
}

.stats-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.stat-item i {
    font-size: 1.5rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--secondary-light) 100%);
}

.stat-box {
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
}

.comparison-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.traditional {
    border-top: 4px solid var(--danger);
}

.comparison-card.modern {
    border-top: 4px solid var(--success);
    background: linear-gradient(to bottom, var(--success-light), white);
}

.card-header-custom {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-header-custom h4 {
    font-size: 1.25rem;
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* How it Works Section */
.how-it-works-section {
    background: var(--gray-50);
}

.step-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--primary-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.5;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    border-color: var(--primary-subtle);
    box-shadow: var(--shadow-lg);
}

.feature-card.feature-highlight {
    background: linear-gradient(135deg, var(--primary-subtle) 0%, white 100%);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-emoji {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, white 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.step-emoji {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gray-50);
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.testimonial-text {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Trial Section */
.trial-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.trial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    color: white;
}

.trial-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.trial-subtitle {
    font-size: 2rem;
}

.trial-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-preview-section {
    padding: 5rem 0;
}

.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    color: var(--gray-900);
}

.accordion-button:not(.collapsed) {
    background: #f1f5f9;
    color: #1e293b;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #cbd5e1;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--gray-50);
}

.cta-title {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-subtitle {
    font-size: 2rem;
    color: var(--gray-900);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* Contact Info Section */
.contact-info-section {
    background: var(--gray-800);
}

/* Footer */
.footer {
    background: var(--gray-900);
}

.footer h5, .footer h6 {
    color: #ffffff !important;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links a {
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary) !important;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Utilities */
.bg-primary-subtle {
    background-color: var(--primary-subtle) !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* Custom Green Buttons */
.btn-success {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border: none !important;
    color: white !important;
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #065f46 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.btn-outline-success {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
}

.btn-outline-success:hover {
    background: var(--primary) !important;
    color: white !important;
}

.text-success {
    color: var(--primary) !important;
}

.bg-success-subtle {
    background-color: var(--primary-subtle) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .btn-nav {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .trial-card {
        padding: 2rem;
        text-align: center;
    }
}

/* Page-specific styles */
/* Reports Page */
.reports-table {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.reports-table thead {
    background: var(--primary);
    color: white;
}

.reports-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border: none;
}

.reports-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}

.reports-table tbody tr:hover {
    background: var(--gray-50);
}

.report-code {
    font-family: 'Consolas', monospace;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-subtle);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
}

/* Resources Page */
.resource-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.resource-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Pricing Page */
.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.pricing-card.featured::before {
    content: 'Популярен';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 0.25rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-period {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.pricing-features li i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* FAQ Page Full */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* Contact Page */
.contact-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary);
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-subtle) 0%, white 100%);
    padding: 8rem 0 4rem;
}

.team-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 50%, var(--primary-subtle) 100%);
    padding: 3rem 0 3rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Formula styling */
.formula-box {
    background: var(--gray-900);
    color: #10b981;
    font-family: 'Consolas', 'Monaco', monospace;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin: 0.5rem 0;
}

.prefix-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Consolas', monospace;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}
