 :root {
        --black-primary: #f4f5f7;
        --black-secondary: #e4e7ec;
        --true-black: #000000;
        --dark-gray: #c2c7d0;
        --light-gray: #8b92b4;
        --accent-blue: #0066cc;
        --accent-orange: #ff6b35;
        --white: #ffffff;
        --accent-gold: #ffcc33; 
        --shadow-gold: 0 20px 60px rgba(255, 204, 51, 0.4);
        --gradient-dark: linear-gradient(135deg, #ffffff 0%, #f4f5f7 100%);
        --shadow-pro: 0 25px 100px rgba(0, 102, 204, 0.15);
        --shadow-glow: 0 0 50px rgba(255, 107, 53, 0.2);
        --glass-blur: 30px;
        --glass-opacity: 0.7;

      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Inter", sans-serif;
        background: var(--gradient-dark);
        color: #6e3b3b;
        overflow-x: hidden;
        line-height: 1.7;
      }

      /* GLASSMORPHISM EFFECT - Light Mode */
      .glass {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
      }

      .glass-light {
        background: rgba(255, 255, 255, 0.24);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: none;
      }

    
      /* Text Blur Animation */
      .text-blur {
        filter: blur(16px);
        transition: filter 1s cubic-bezier(0.23, 1, 0.32, 1);
        opacity: 0;
      }

      .text-blur.active {
        filter: blur(0px);
        opacity: 1;
      }

      /* Ultra-Smooth Animation Classes */
      .reveal {
        opacity: 0;
        transform: translateY(80px);
        transition: all 1.4s cubic-bezier(0.23, 1, 0.32, 1);
      }

      .reveal.active {
        opacity: 1;
        transform: translateY(0);
      }

      .reveal-slide-left {
        opacity: 0;
        transform: translateX(-100px);
        transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
      }

      .reveal-slide-left.active {
        opacity: 1;
        transform: translateX(0);
      }

      .reveal-scale {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
        transition: all 1.3s cubic-bezier(0.23, 1, 0.32, 1);
      }

      .reveal-scale.active {
        opacity: 1;
        transform: scale(1) translateY(0);
      }

      .reveal-stagger {
        transition-delay: var(--stagger-delay, 0s);
      }

      /* Momentum Scroll Animation */
      .momentum-scroll {
        position: relative;
      }

      /* LIQUID GLASS NAVBAR EFFECT */
      .navbar {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        right: 0;
        width: 100%;
        padding: 15px 0;
        z-index: 1000;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .navbar::before {
        content: "";
        position: absolute;
        inset: 0;
        background:rgba(255, 255, 255, 0);
      
        border-bottom: 1px solid rgba(121, 121, 121, 0);
        border-top: 1px solid rgba(0, 0, 0, 0);
        z-index: -1;
        border-radius: 25px;
        box-shadow: none;
        animation: none;
      }

      @keyframes liquidShimmer {
        0%,
        100% {
          box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15),
            inset 0 0 30px rgba(255, 255, 255, 0.5),
            0 0 50px rgba(0, 102, 204, 0.1);
        }
        50% {
          box-shadow: 0 15px 50px rgba(15, 23, 42, 0.2),
            inset 0 0 35px rgba(255, 255, 255, 0.6),
            0 0 60px rgba(255, 107, 53, 0.15);
        }
      }

      .navbar.scrolled {
        top: 15px;
        padding: 10px 20px;

        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.39);
        background: transparent;
        border-radius: 50px; /* Gives it the pill shape */
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        backdrop-filter: blur(60px);
        -webkit-backdrop-filter: blur(60px);
        box-shadow: 0 15px 80px rgba(0, 0, 0, 0.8);
      }
      .navbar.scrolled .nav-links a {
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
        color: #000; /* Ensures high legibility */
      }

      .navbar.scrolled::before {
        animation: liquidShimmer 4s ease-in-out infinite;
        border-radius:50px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(80px);
        -webkit-backdrop-filter: blur(80px);
        background: rgba(255, 255, 255, 0.726);
      }

      .nav-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        position: relative;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      }
      .nav-content {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
      }

      .navbar.scrolled .nav-content {
        padding: 0 15px;
      }

      .logo {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(
          135deg,
          var(--accent-orange),
          var(--accent-blue)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.8px;
        text-transform: uppercase;
        white-space: nowrap;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        z-index: 1001;
      }

      .navbar.scrolled .logo {
        font-size: 1.5rem;
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.08));
      }
      .nav-links {
          display: flex;
          position: relative; 
          list-style: none;
          gap: 50px;
          align-items: center;
          justify-content: center;
          padding: 0;
          margin: 0;
      }

      .nav-indicator {
          position: absolute;
          bottom: -8px; 
          height: 3px;
          background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
          border-radius: 50px;
          opacity: 0;
          transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
          pointer-events: none;
          opacity: 0; 
          z-index: 10;
          width: 0; 
          left: 0;
      }

      .nav-indicator.active {
          opacity: 1 !important;
      }

      .nav-links a {
        color: #000000;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        letter-spacing: 0.5px;
        position: relative;
        transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
        padding: 8px 0;
        white-space: nowrap;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }

      /* Pricing Specific Layout */
      .pricing-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 40px;
          max-width: 1000px; 
          margin: 0 auto;
      }

      .pricing-header h3 {
          font-size: 1.8rem;
          margin-bottom: 10px;
      }

      .price {
          font-size: 3rem;
          font-weight: 800;
          margin-bottom: 25px;
          color: #111827;
      }

      .price span {
          font-size: 1rem;
          opacity: 0.6;
      }
      .pricing-card {
          display: flex;
          flex-direction: column;
          justify-content: space-between; 
          height: 100%; 
          padding: 50px 40px;
          background: #f9fafb;
          border-radius: 30px;
          border: 1px solid #e5e7eb;
          transition: all 0.4s ease;
          position: relative;
      }

      .features-list {
          flex-grow: 1; 
          list-style: none;
          text-align: left;
          margin-bottom: 30px;
      }

      .features-list li {
          padding: 10px 0;
          border-bottom: 1px solid rgba(0,0,0,0.05);
          font-size: 0.95rem;
      }

      .features-list li::before {
          content: "✓";
          margin-right: 10px;
          color: var(--accent-orange);
          font-weight: bold;
      }

      .download-btn {
        background: linear-gradient(
          135deg,
          rgba(255, 107, 53, 0.2) 0%,
          rgba(255, 107, 53, 0.15) 100%
        );
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        color: #111827;
        padding: 14px 32px;
        border: 1.5px solid rgba(255, 107, 53, 0.5);
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        text-decoration: none;
        display: inline-block;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2),
          inset 0 0 15px rgba(255, 255, 255, 0.3);
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.2);
      }

      .navbar.scrolled .download-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
      }

      .download-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.4),
          transparent
        );
        transition: left 0.6s;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
      }

      .download-btn:hover::before {
        left: 100%;
      }

      .download-btn:hover {
        transform: translateY(-4px) scale(1.05);
        background: linear-gradient(
          135deg,
          rgba(255, 107, 53, 0.3) 0%,
          rgba(255, 107, 53, 0.25) 100%
        );
        border-color: rgba(255, 107, 53, 0.7);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3),
          inset 0 0 20px rgba(255, 255, 255, 0.4),
          0 0 30px rgba(255, 107, 53, 0.2);
        filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.3));
      }

      /* Hero Section */
      .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-top: 0;
        padding-top: 0;
      }

      .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
            circle at 20% 80%,
            rgba(0, 102, 204, 0.15) 0%,
            transparent 55%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(255, 107, 53, 0.12) 0%,
            transparent 55%
          ),
          radial-gradient(
            circle at 50% 10%,
            rgba(255, 255, 255, 0.9) 0%,
            transparent 65%
          ),
          linear-gradient(135deg, #ffffff 0%, #f4f5f7 100%);
        animation: heroFloat 18s cubic-bezier(0.23, 1, 0.32, 1) infinite;
      }

      @keyframes heroFloat {
        0%,
        100% {
          transform: scale(1) rotate(0deg);
          opacity: 0.85;
        }
        25% {
          transform: scale(1.03) rotate(0.3deg);
          opacity: 0.92;
        }
        50% {
          transform: scale(1.02) rotate(-0.2deg);
          opacity: 0.88;
        }
        75% {
          transform: scale(1.04) rotate(0.4deg);
          opacity: 0.9;
        }
      }

      .hero-content {
        max-width: 900px;
        padding: 0 40px;
        position: relative;
        z-index: 2;
      }

      .hero-badge {
        display: inline-block;
        background: rgba(255, 107, 53, 0.12);

        color: #111827;
        padding: 12px 28px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 32px;
        border: 1px solid rgba(255, 68, 0, 0.25);
        animation: badgeGlow 2.5s cubic-bezier(0.23, 1, 0.32, 1) infinite
          alternate;
        box-shadow: 0 8px 20px rgb(233, 20, 222),
          inset 0 0 15px rgba(255, 255, 255, 0.5);
      }

      @keyframes badgeGlow {
        0% {
          box-shadow: 0 0 15px rgba(255, 107, 53, 0.2),
            inset 0 0 15px rgba(255, 255, 255, 0.5);
        }
        100% {
          box-shadow: 0 0 30px rgba(255, 107, 53, 0.35),
            inset 0 0 20px rgba(255, 255, 255, 0.6);
        }
      }

      .hero h1 {
        font-size: clamp(4rem, 11vw, 8rem);
        font-weight: 800;
        line-height: 1.05;
        margin-bottom: 32px;
        background: linear-gradient(
          135deg,
          #111827 0%,
          var(--accent-orange) 50%,
          var(--accent-blue) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -3px;
      }

      .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 48px;
        opacity: 0.75;
        font-weight: 400;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
        color: #374151;
      }

      /* Sections */
      .section {
        padding: 120px 8%;
        max-width: 1400px;
        margin: 0 auto;
      }

      .section-title {
        text-align: center;
        font-size: clamp(2.5rem, 7vw, 4rem);
        font-weight: 800;
        margin-bottom: 80px;
        opacity: 0.95;
        letter-spacing: -1.5px;
        background: linear-gradient(135deg, #0051ff 0%, #f17e7e 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* Features Grid */
      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
        max-width: 1300px;
        margin: 0 auto;
      }

      .feature-card {
        border-radius: 24px;
        padding: 50px 40px;
        text-align: center;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 3px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--accent-orange),
          var(--accent-blue),
          transparent
        );
        transition: left 1s cubic-bezier(0.23, 1, 0.32, 1);
      }

      .feature-card:hover::before {
        left: 100%;
      }

      .feature-card:hover {
        transform: translateY(-10px) scale(1.02);
        background: rgb(255, 255, 255) !important;
        backdrop-filter: blur(35px) !important;
        -webkit-backdrop-filter: blur(35px) !important;
        border-color: rgba(255, 107, 53, 0.3) !important;
        box-shadow: var(--shadow-gold), 
              inset 0 0 20px rgba(255, 204, 51, 0.2) !important;
              border-color: var(--accent-gold) !important;
      }

      .feature-icon {
        width: 90px;
        height: 90px;
        background: rgba(0, 102, 204, 0.12);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 2.2rem;
        color: var(--accent-blue);
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        border: 1px solid rgba(0, 102, 204, 0.2);
        box-shadow: 0 8px 20px rgba(0, 102, 204, 0.12),
          inset 0 0 20px rgba(255, 255, 255, 0.4);
      }

      .feature-card:hover .feature-icon {
        transform: scale(1.15) rotateY(360deg);
        background: rgba(255, 107, 53, 0.15) !important;
        color: var(--accent-orange);
        border-color: rgba(255, 107, 53, 0.3) !important;
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2),
          inset 0 0 25px rgba(255, 255, 255, 0.5) !important;
      }

      .feature-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
        color: #111827;
      }

      .feature-card p {
        opacity: 0.7;
        line-height: 1.7;
        font-size: 0.95rem;
        color: #374151;
      }

      /* Timeline */
      .timeline-content {
        max-width: 1300px;
        margin: 0 auto;
        text-align: center;
      }

      .timeline-items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 80px;
      }

      .timeline-item {
        padding: 40px 20px;
        border-radius: 25px;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
      }

      .timeline-item:hover {
        transform: translateY(-10px);
          background: rgb(255, 255, 255) !important;
      }

      .timeline-number {
        font-size: 3.5rem;
        font-weight: 900;
        background: linear-gradient(
          135deg,
          var(--accent-orange),
          var(--accent-blue)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 16px;
        letter-spacing: -2px;
      }

      .timeline-item h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #111827;
      }

      .timeline-item p {
        font-size: 0.95rem;
        opacity: 0.7;
        line-height: 1.6;
        color: #374151;
      }
      #features, #timeline {
        background: var(--true-black) !important;
        color: var(--white); /* Ensures text is visible on black */
        width: 100%;
        max-width: none; 
        padding-left: 0;
        padding-right: 0;
      }
      #features .features-grid, 
      #timeline .timeline-content {
        max-width: 1200px; /* Or whatever width you prefer for content */
        margin: 0 auto;
        padding: 0 5%;    /* Keeps a small gutter so text doesn't touch the screen edge */
      }
      /* CTA Section */
      .cta-section {
        padding: 150px 8%;
        text-align: center;
        background: linear-gradient(
          135deg,
          var(--accent-blue) 0%,
          var(--accent-orange) 70%,
          #e55a2b 100%
        );
        margin: 0;
        position: relative;
        overflow: hidden;
      }

      .cta-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
            circle at 30% 20%,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 70% 80%,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 50%
          );
        animation: ctaShine 14s cubic-bezier(0.23, 1, 0.32, 1) infinite;
      }

      @keyframes ctaShine {
        0%,
        100% {
          opacity: 0.65;
          transform: scale(1) rotate(0deg);
        }
        33% {
          opacity: 0.85;
          transform: scale(1.03) rotate(120deg);
        }
        66% {
          opacity: 0.75;
          transform: scale(1.02) rotate(240deg);
        }
      }

      .cta-content {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }

      .cta-btn {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        color: var(--white);
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        padding: 18px 50px;
        border-radius: 16px;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        display: inline-block;
        text-decoration: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
          inset 0 0 20px rgba(255, 255, 255, 0.1);
      }

      .cta-btn:hover {
        transform: translateY(-6px) scale(1.05);
        background: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
          inset 0 0 25px rgba(255, 255, 255, 0.2);
      }

      .cta-content h2 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        font-weight: 800;
        margin-bottom: 24px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        letter-spacing: -1px;
        color: var(--white);
      }

      .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        opacity: 0.95;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
      }

      /* * =========================================
       * MOBILE HAMBURGER MENU STYLES
       * =========================================
       */
      
      .menu-toggle {
        display: none;
        cursor: pointer;
        z-index: 1002;
      }

      .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: #374151;
        border-radius: 2px;
      }

      @media (max-width: 768px) {
        /* Hide navbar by default on mobile */
        /* FIX: Ensure navbar stays full width and pinned top */
        .navbar, 
        .navbar.scrolled, 
        .navbar::before, 
        .navbar.scrolled::before {
            top: 0 !important;
            padding: 16px 0;
            width: 100% !important;
            left: 0 !important;
            transform: none !important;
            border-radius: 0 !important;
            background: rgba(255, 255, 255, 0.3); /* Opaque background for readability */
            box-shadow: none !important;
            border:none;
        }
        .navbar {
          text-shadow: none !important;
        box-shadow: none !important; /* Removes the shadow on mobile */
        border: none;          /* Optional: removes any border lines as well */
        backdrop-filter: blur(80px);
          -webkit-backdrop-filter: blur(80px);
    }
        .nav-container {
            top:0;
            padding: 0 6%;
            justify-content: space-between; 
            box-shadow: none;
            
        }

        /* The Burger Icon */
        .menu-toggle {
          display: block;
           z-index: 2000;
        }

        /* Animate Hamburger to X */
        .menu-toggle.is-active .bar:nth-child(2) {
          opacity: 0;
        }
        .menu-toggle.is-active .bar:nth-child(1) {
          transform: translateY(8px) rotate(45deg);
        }
        .menu-toggle.is-active .bar:nth-child(3) {
          transform: translateY(-8px) rotate(-45deg);
        }

        /* Mobile Drawer Style */
        .nav-links {
          position: fixed;
          top: 0;
          right: -100%; /* Hidden off screen */
          width: 80%;
          height: 100vh;
          /* Matches 'glass' style */
          background: rgb(255, 255, 255);
          margin:0;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          padding-top: 100px;
          gap: 40px;
          transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
          box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
          z-index: 1100;
        }

        .nav-links.active {
          
            top:0;
          right: 0; /* Slide in */
        }
        
        .nav-indicator {
            display: none; /* Hide hover indicator on mobile */
        }

        /* Adjust fonts in mobile menu */
        .nav-links a {
            font-size: 1.2rem;
            text-shadow: none !important;
        }
      }

      
      @media (max-width: 1024px) {
        .nav-links {
          gap: 30px;
        }
        .section {
          padding: 80px 6%;
        }
        .features-grid {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
      }

      @media (max-width: 768px) {
        .logo {
          font-size: 1.5rem;
        }
        
        .hero {
          margin-top: 0;
          height: 90vh;
        }
        .hero-content {
          padding: 0 20px;
        }
        .hero h1 {
          font-size: 2.5rem;
          margin-bottom: 20px;
        }
        .hero-subtitle {
          font-size: 1.1rem;
          margin-bottom: 32px;
        }
        .section {
          padding: 60px 6%;
        }
        .section-title {
          margin-bottom: 50px;
          font-size: 2rem;
        }
        .features-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .feature-card {
          padding: 40px 30px;
        }
        .timeline-items {
          grid-template-columns: repeat(2, 1fr);
        }
        .cta-section {
          padding: 100px 6%;
        }
        .cta-content h2 {
          font-size: 2rem;
        }
      }

      @media (max-width: 480px) {
        .navbar {
          padding: 14px 0;
        }
        .nav-container {
          padding: 0 5%;
        }
        .logo {
          font-size: 1.2rem;
        }
        .hero {
          height: 80vh;
          margin-top: 0;
        }
        .hero h1 {
          font-size: 1.8rem;
        }
        .hero-subtitle {
          font-size: 1rem;
        }
        .hero-badge {
          padding: 8px 20px;
          font-size: 0.8rem;
        }
        .section {
          padding: 50px 5%;
        }
        .timeline-items {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .timeline-number {
          font-size: 2.5rem;
        }
      }