/* --- VARIABLES & RESET --- */
:root {
    --dark-navy: #f8f9fa;       /* Page BG */
    --light-navy: #ffffff;      /* Card BG */
    --lightest-navy: #dee2e6;   /* Borders */
    --slate: #495057;           /* Body Text */
    --light-slate: #6c757d;      /* Secondary Text */
    --lightest-slate: #212529;   /* Headings / Strong Text */
    --white: #212529;           /* Main Headings (formerly light color) */
    --green: #0d6efd;           /* Accent Blue */
    --green-light: rgba(13, 110, 253, 0.1);
    --green-gradient: linear-gradient(135deg, #0d6efd, #0056b3);
    --section-gradient: linear-gradient(135deg, rgba(13, 110, 253, 0.03), rgba(13, 110, 253, 0.08));
    --font-sans: 'DM Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--dark-navy);
    color: var(--slate);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--white);
    font-family: var(--font-mono);
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

a:hover {
    color: var(--green);
    filter: brightness(1.2);
}

section {
    padding: 120px 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Section Dividers */
section:not(.hero-section)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--green-gradient);
    opacity: 0.3;
}

/* Alternating section backgrounds */
section:nth-child(even) {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.02), rgba(13, 110, 253, 0.05));
}

/* --- HEADER & NAV --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: top 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    top: -100px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    color: var(--green);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    color: var(--lightest-slate);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 2rem;
    position: relative;
}

.nav-link {
    color: var(--lightest-slate);
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--green);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-item.active .nav-link {
    color: var(--white);
    font-weight: 500;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    max-width: 100vw;
    overflow: hidden;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: left;
    max-width: 1200px;
    padding: 120px 25px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-slate);
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.hero-subtitle.show {
    opacity: 1;
    transform: translateY(0);
}

/* Accent highlights in hero subtitle */
.highlight-accent {
    color: var(--green);
    font-weight: 600;
    background: linear-gradient(135deg, var(--green), #0056b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced CTA Button with pulse animation */
.cta-button {
    color: var(--green);
    background: linear-gradient(135deg, transparent, rgba(13, 110, 253, 0.05));
    border: 2px solid var(--green);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
    overflow: hidden;
    animation: gentle-pulse 3s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
}

.cta-button.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--green-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

@keyframes gentle-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(13, 110, 253, 0); }
}

/* --- PAGE HERO --- */
.page-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--light-slate);
    max-width: 600px;
    margin: 0 auto;
}

/* --- MISSION/VISION --- */
.mission-vision-section {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.03), rgba(13, 110, 253, 0.08));
    padding: 3rem;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.mission-content, .vision-content {
    flex: 1;
    padding: 2rem;
    background: var(--light-navy);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-content:hover, .vision-content:hover {
    transform: translateY(-5px);
}

.mission-vision-section .section-title {
    text-align: center;
}

.mission-vision-section .section-title::after {
   left: 20%;
   width: 60%;
}

/* --- PRODUCT DETAILS & SHOWCASE --- */
.product-details-section, .product-showcase-section {
    padding-top: 50px;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.product-item:nth-child(even) .product-item-content {
    order: 2;
}

.product-item-content h3 {
    color: var(--green);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 400;
}

.product-item-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.product-item-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item-svg svg {
    max-width: 250px;
    width: 100%;
    height: auto;
}

/* --- INDUSTRIES --- */
.industries-section {
    padding-top: 0;
    text-align: center;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.industry-card {
    background: linear-gradient(135deg, var(--light-navy), rgba(13, 110, 253, 0.02));
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--lightest-navy);
    position: relative;
    overflow: hidden;
}
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.industry-card:hover::before {
    transform: scaleX(1);
}
.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    background: linear-gradient(135deg, var(--light-navy), rgba(13, 110, 253, 0.05));
}
.industry-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
}

/* Progress indicators for cards */
.card-progress {
    width: 100%;
    height: 3px;
    background: var(--lightest-navy);
    border-radius: 2px;
    margin: 1rem 0;
    overflow: hidden;
}

.card-progress::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: var(--green-gradient);
    border-radius: 2px;
    transition: width 1s ease-in-out;
}

.industry-card:hover .card-progress::after {
    width: 85%;
}

/* Flow arrows between sections */
.section-arrow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    opacity: 0.6;
    animation: float-arrow 2s ease-in-out infinite;
}

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

/* Staggered animations */
.industry-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.industry-card.show-animation {
    opacity: 1;
    transform: translateY(0);
}

.industry-card:nth-child(1) { transition-delay: 0.1s; }
.industry-card:nth-child(2) { transition-delay: 0.2s; }
.industry-card:nth-child(3) { transition-delay: 0.3s; }
.industry-card:nth-child(4) { transition-delay: 0.4s; }

/* --- WHO IS IT FOR --- */
.who-is-it-for-section {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.who-is-it-for-section .section-title {
    margin-bottom: 3rem;
}

/* --- FEATURES SECTION --- */
.features-section, .why-aultech-section {
    text-align: center;
}

/* Enhanced Section Titles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--white), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--green-gradient);
    bottom: -15px;
    left: 20%;
    border-radius: 2px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--light-slate);
    margin-bottom: 4rem;
}



.features-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.feature-card, .value-card {
    background: linear-gradient(135deg, var(--light-navy), rgba(13, 110, 253, 0.02));
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    border: 1px solid var(--lightest-navy);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card::before, .value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before, .value-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover, .value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    background: linear-gradient(135deg, var(--light-navy), rgba(13, 110, 253, 0.05));
}

.feature-card.show-animation, .value-card.show-animation {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover .card-progress::after {
    width: 85%;
}

.value-card:nth-child(1) { transition-delay: 0.1s; }
.value-card:nth-child(2) { transition-delay: 0.2s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }
.value-card:nth-child(4) { transition-delay: 0.4s; }

.feature-card h3, .value-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--light-navy);
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--lightest-navy);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

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

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

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

.footer-about .logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--light-slate);
    max-width: 300px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lightest-navy);
    text-align: center;
    color: var(--light-slate);
}

/* --- CONTACT SECTION --- */
.contact-section-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--lightest-slate);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--lightest-navy);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--slate);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--lightest-navy);
}

/* --- MOBILE NAVIGATION --- */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--lightest-slate);
    border-radius: 3px;
    transition: all 0.3s ease;
    left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.mobile-nav-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.mobile-nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .contact-section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 25px;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 65px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 65px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 99;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 0;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .hero-section {
        padding: 0 25px;
    }

    .mission-vision-section {
        flex-direction: column;
        padding: 2rem;
        margin: 1rem auto;
    }

    .product-item {
        grid-template-columns: 1fr;
    }

    .product-item:nth-child(even) .product-item-content {
        order: 0;
    }

    .product-showcase-section .product-item, .product-details-section .product-item {
        padding: 2rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* --- ANIMATIONS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.show-animation {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger hero content animation */
.hero-content > * {
    transition-delay: calc(0.1s * var(--i));
}

/* SVG draw animation */
@keyframes stroke-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.product-item-svg.animate-on-scroll path,
.product-item-svg.animate-on-scroll line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.product-item-svg.show-animation path,
.product-item-svg.show-animation line {
    animation: stroke-draw 2s ease-out forwards;
}

/* Stagger animation for SVGs with multiple paths */
.product-item-svg.show-animation path:nth-child(2),
.product-item-svg.show-animation line:nth-child(2) {
    animation-delay: 0.2s;
}
.product-item-svg.show-animation path:nth-child(3),
.product-item-svg.show-animation line:nth-child(3) {
    animation-delay: 0.4s;
}
.product-item-svg.show-animation path:nth-child(4),
.product-item-svg.show-animation line:nth-child(4) {
    animation-delay: 0.6s;
}
.product-item-svg.show-animation path:nth-child(5),
.product-item-svg.show-animation line:nth-child(5) {
    animation-delay: 0.8s;
}
.product-item-svg.show-animation path:nth-child(6),
.product-item-svg.show-animation line:nth-child(6) {
    animation-delay: 1s;
}
.product-item-svg.show-animation path:nth-child(7),
.product-item-svg.show-animation line:nth-child(7) {
    animation-delay: 1.2s;
}
.product-item-svg.show-animation path:nth-child(8),
.product-item-svg.show-animation line:nth-child(8) {
    animation-delay: 1.4s;
}



/* Enhanced industries grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ====================
   Pricing Page Styles
   ==================== */

.pricing-section {
    padding: 5rem 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--lightest-navy);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    border-color: var(--green);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-mono);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    color: var(--green);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    color: var(--green);
    font-size: 1.2rem;
    font-weight: 600;
}

.amount {
    color: var(--lightest-slate);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0.2rem;
}

.period {
    color: var(--light-slate);
    font-size: 1.1rem;
}

.plan-description {
    color: var(--light-slate);
    font-size: 1.1rem;
    margin: 0;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    color: var(--slate);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-icon {
    color: var(--green);
    font-weight: bold;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.pricing-cta {
    text-align: center;
}

.plan-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green);
    text-decoration: none;
    border: 2px solid var(--green);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.plan-button.primary {
    background: var(--green-gradient);
    color: white;
    border-color: transparent;
}

.plan-button:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.plan-note {
    color: var(--light-slate);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: rgba(13, 110, 253, 0.02);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--lightest-navy);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 110, 253, 0.3);
}

.faq-item h3 {
    color: var(--green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--slate);
    line-height: 1.7;
    margin: 0;
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    color: var(--lightest-slate);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: var(--slate);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cta-note {
    color: var(--light-slate);
    font-size: 1rem;
    margin-top: 1rem;
}

.cta-note a {
    color: var(--green);
    text-decoration: none;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
} 