
    /* ==========================================================================
       DESIGN SYSTEM & VARIABLES
       ========================================================================== */
    :root {
      --bg-pure: #0d0d0d;
      --bg-light: #111111;
      --bg-card: rgba(255, 255, 255, 0.03);
      --border-card: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(99, 102, 241, 0.15);
      --primary: #6366f1; /* Electric Violet */
      --primary-hover: #4f46e5;
      --primary-glow: rgba(99, 102, 241, 0.4);
      --text: #f3f4f6;
      --text-muted: #9ca3af;
      --font-family: 'Inter', sans-serif;
    }

    /* ==========================================================================
       RESET & BASE STYLES
       ========================================================================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg-pure);
      color: var(--text);
      font-family: var(--font-family);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: var(--bg-pure);
    }
    ::-webkit-scrollbar-thumb {
      background: rgba(99, 102, 241, 0.2);
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: rgba(99, 102, 241, 0.5);
    }

    /* Layout Helpers */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Section Offsets */
    #features, #pricing, .how-it-works, .testimonials {
      scroll-margin-top: 80px;
    }

    /* Typographic Hierarchy */
    h1, h2, h3, h4 {
      color: var(--text);
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    p {
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ==========================================================================
       REVEAL SYSTEM (Intersection Observer)
       ========================================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger Delays */
    .stagger-0 { transition-delay: 0ms !important; }
    .stagger-1 { transition-delay: 120ms !important; }
    .stagger-2 { transition-delay: 240ms !important; }
    .stagger-3 { transition-delay: 360ms !important; }

    /* ==========================================================================
       BUTTONS
       ========================================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.875rem 2rem;
      border-radius: 0.75rem;
      font-size: 0.95rem;
      font-weight: 600;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-sm {
      padding: 0.6rem 1.25rem;
      font-size: 0.875rem;
      border-radius: 0.5rem;
    }

    .btn-lg {
      padding: 1.125rem 2.5rem;
      font-size: 1.1rem;
      border-radius: 0.875rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(99, 102, 241, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    /* ==========================================================================
       NAVBAR
       ========================================================================== */
    .navbar {
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: transparent;
      transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
      border-bottom: 1px solid transparent;
      height: 80px;
      display: flex;
      align-items: center;
    }

    .navbar.scrolled {
      background: rgba(13, 13, 13, 0.8);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.03em;
      display: flex;
      align-items: center;
    }

    .logo-dot {
      color: var(--primary);
      text-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 2.5rem;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-cta {
      display: none;
    }

    .mobile-menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--text);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
      }
      .nav-cta {
        display: block;
      }
      .mobile-menu-toggle {
        display: none;
      }
    }

    /* Mobile Overlay Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #0d0d0d;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      padding: 2rem 1.5rem;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 4rem;
    }

    .mobile-menu-close {
      background: transparent;
      border: none;
      color: var(--text);
      font-size: 2.5rem;
      cursor: pointer;
      line-height: 1;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
    }

    .mobile-menu-links a:not(.btn) {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .mobile-menu-links a:not(.btn):hover {
      color: var(--primary);
    }

    .mobile-menu-links .btn {
      width: 100%;
      margin-top: 1rem;
    }

    /* ==========================================================================
       HERO SECTION
       ========================================================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 8rem 1rem 5rem 1rem;
      background: radial-gradient(circle at center, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.95) 80%), url('assets/hero-bg.jpg') no-repeat center center;
      background-attachment: fixed;
      background-size: cover;
      overflow: hidden;
    }

    /* Page-Load Animations (Hero Specific) */
    .hero-reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      background: rgba(99, 102, 241, 0.08);
      border: 1px solid rgba(99, 102, 241, 0.3);
      color: #818cf8;
      font-size: 0.825rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
    }

    .hero h1 {
      font-size: clamp(2.25rem, 6vw, 4.25rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      max-width: 800px;
    }

    .hero-subline {
      font-size: clamp(1.1rem, 2vw, 1.25rem);
      color: var(--text-muted);
      max-width: 650px;
      line-height: 1.6;
      margin-bottom: 2.5rem;
    }

    .hero-ctas {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 400px;
      justify-content: center;
      margin-bottom: 5rem;
    }

    @media (min-width: 600px) {
      .hero-ctas {
        flex-direction: row;
        max-width: none;
      }
    }

    /* ==========================================================================
       BROWSER MOCKUP UI
       ========================================================================== */
    .mockup-window {
      width: 100%;
      max-width: 950px;
      background: rgba(18, 18, 24, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 1rem;
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), 0 0 50px rgba(99, 102, 241, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      overflow: hidden;
      text-align: left;
    }

    .mockup-header {
      display: flex;
      align-items: center;
      padding: 0.75rem 1.25rem;
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mockup-dots {
      display: flex;
      gap: 6px;
      margin-right: 1.5rem;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
    }
    .dot-red { background: #ef4444; }
    .dot-yellow { background: #f59e0b; }
    .dot-green { background: #10b981; }

    .mockup-address-bar {
      flex-grow: 1;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 6px;
      padding: 4px 12px;
      font-size: 0.725rem;
      color: var(--text-muted);
      font-family: monospace;
      max-width: 320px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .mockup-body {
      display: grid;
      grid-template-columns: 170px 1fr 190px;
      height: 360px;
    }

    @media (max-width: 850px) {
      .mockup-body {
        grid-template-columns: 1fr;
        height: auto;
      }
      .mockup-sidebar, .mockup-right-sidebar {
        display: none;
      }
    }

    /* Mockup Sidebar */
    .mockup-sidebar {
      background: rgba(255, 255, 255, 0.01);
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      padding: 1.25rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .mockup-logo-area {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      color: var(--text);
      font-size: 0.9rem;
    }

    .mockup-logo-icon {
      width: 12px;
      height: 12px;
      background: var(--primary);
      border-radius: 3px;
    }

    .mockup-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .mockup-nav li {
      padding: 8px 10px;
      border-radius: 6px;
      color: var(--text-muted);
      font-size: 0.775rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s ease;
    }

    .mockup-nav li.active, .mockup-nav li:hover {
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
    }

    .mockup-nav li::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--text-muted);
    }

    .mockup-nav li.active::before {
      background: var(--primary);
    }

    /* Mockup Main */
    .mockup-main {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      overflow-y: auto;
      background: rgba(13, 13, 18, 0.3);
    }

    .mockup-content-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      padding-bottom: 0.75rem;
    }

    .mockup-project-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px;
    }

    .mockup-sub {
      font-size: 0.725rem;
      color: var(--text-muted);
    }

    .mockup-status-badge {
      font-size: 0.675rem;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 20px;
    }

.status-approved {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-feedback {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-pending {
  background: rgba(99, 102, 241, 0.1);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

    /* Files List */
    .mockup-files-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .mockup-file-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 8px;
      padding: 10px 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      flex-wrap: wrap;
      gap: 8px;
    }

    .file-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .file-icon {
      width: 28px;
      height: 28px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 700;
    }

    .file-icon.pdf {
      background: rgba(239, 68, 68, 0.1);
      color: #f87171;
    }

    .file-icon.png {
      background: rgba(99, 102, 241, 0.1);
      color: #818cf8;
    }

    .file-name {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 1px;
    }

    .file-size {
      font-size: 0.675rem;
      color: var(--text-muted);
    }

    .file-status {
      font-size: 0.7rem;
      font-weight: 600;
      padding: 3px 6px;
      border-radius: 4px;
    }

    .mockup-comment {
      width: 100%;
      background: rgba(99, 102, 241, 0.04);
      border-left: 2px solid var(--primary);
      border-radius: 0 6px 6px 0;
      padding: 6px 10px;
      margin-top: 2px;
    }

    .comment-author {
      font-size: 0.725rem;
      color: var(--text-muted);
      line-height: 1.4;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .avatar-letter {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #f59e0b;
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.55rem;
      font-weight: 700;
    }

    /* Mockup Right Sidebar */
    .mockup-right-sidebar {
      background: rgba(255, 255, 255, 0.01);
      border-left: 1px solid rgba(255, 255, 255, 0.05);
      padding: 1.25rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .right-title {
      font-size: 0.725rem;
      font-weight: 600;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .approval-checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .approval-checklist li {
      font-size: 0.725rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .approval-checklist li.checked {
      color: #34d399;
    }

    .approval-checklist li::before {
      content: "○";
      font-weight: bold;
      color: var(--text-muted);
    }

    .approval-checklist li.checked::before {
      content: "✓";
      color: #34d399;
    }

    .mockup-btn {
      width: 100%;
      padding: 8px;
      border-radius: 6px;
      border: none;
      background: var(--primary);
      color: #ffffff;
      font-size: 0.725rem;
      font-weight: 600;
      cursor: not-allowed;
      opacity: 0.45;
      margin-top: auto;
    }


    /* ==========================================================================
       FEATURES SECTION
       ========================================================================== */
    .features {
      padding: 8rem 1rem;
      background: radial-gradient(circle at center, rgba(17, 17, 17, 0.4) 0%, #111111 100%), url('assets/features-bg.jpg') no-repeat center center;
      background-attachment: fixed;
      background-size: cover;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-header h2 {
      font-size: clamp(1.85rem, 4vw, 2.75rem);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1.05rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 1rem;
      padding: 2.75rem 2rem;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(99, 102, 241, 0.3);
      box-shadow: 0 15px 40px rgba(99, 102, 241, 0.08);
    }

    .feature-icon-wrapper {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(99, 102, 241, 0.08);
      border: 1px solid rgba(99, 102, 241, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }

    .feature-icon-wrapper svg {
      width: 22px;
      height: 22px;
    }

    .feature-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
    }

    .feature-card p {
      font-size: 0.925rem;
      line-height: 1.6;
    }

    /* ==========================================================================
       HOW IT WORKS SECTION
       ========================================================================== */
    .how-it-works {
      padding: 8rem 1rem;
      background: var(--bg-pure);
    }

    .steps-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.25rem;
      }
    }

    /* Dashed Connecting Line */
    .steps-container::before {
      content: '';
      position: absolute;
      background: transparent;
      border: 1px dashed rgba(99, 102, 241, 0.18);
      z-index: 1;
      pointer-events: none;
    }

    @media (max-width: 767px) {
      .steps-container::before {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 0;
        transform: translateX(-50%);
      }
    }

    @media (min-width: 768px) {
      .steps-container::before {
        top: 50px;
        left: 10%;
        right: 10%;
        height: 0;
        transform: translateY(-50%);
      }
    }

    .step-card {
      position: relative;
      text-align: center;
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      padding: 2.5rem 1.75rem;
      border-radius: 1rem;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 2;
      transition: all 0.3s ease;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    .step-card:hover {
      border-color: rgba(99, 102, 241, 0.25);
      transform: translateY(-4px);
    }

    .step-number {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--primary);
      background: rgba(99, 102, 241, 0.08);
      border: 1px solid rgba(99, 102, 241, 0.25);
      padding: 3px 10px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 1.25rem;
      letter-spacing: 0.05em;
    }

    .step-card h3 {
      font-size: 1.15rem;
      margin-bottom: 0.75rem;
    }

    .step-card p {
      font-size: 0.9rem;
      line-height: 1.6;
    }


    /* ==========================================================================
       PRICING SECTION
       ========================================================================== */
    .pricing {
      padding: 8rem 1rem;
      background: radial-gradient(circle at center, rgba(13, 13, 13, 0.4) 0%, #0d0d0d 100%), url('assets/cta-bg.jpg') no-repeat center center;
      background-attachment: fixed;
      background-size: cover;
    }

    .pricing-toggle-container {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      margin-top: 1.5rem;
      background: rgba(255, 255, 255, 0.02);
      padding: 6px 12px;
      border-radius: 9999px;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .toggle-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .toggle-label.active {
      color: var(--text);
    }

    .discount-badge {
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 6px;
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
      border-radius: 9999px;
    }

    /* Switch Custom styling */
    .switch {
      position: relative;
      display: inline-block;
      width: 44px;
      height: 24px;
      cursor: pointer;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.1);
      transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 16px;
      width: 16px;
      left: 3px;
      bottom: 3px;
      background-color: #ffffff;
      transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    input:checked + .slider {
      background-color: var(--primary);
    }

    input:checked + .slider:before {
      transform: translateX(20px);
    }

    .slider.round {
      border-radius: 34px;
    }

    .slider.round:before {
      border-radius: 50%;
    }

    /* Pricing Grid */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 780px;
      margin: 0 auto;
      align-items: stretch;
    }

    @media (min-width: 768px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 1.25rem;
      padding: 3rem 2.25rem;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .pricing-card.featured {
      border-color: var(--primary);
      background: linear-gradient(180deg, rgba(99, 102, 241, 0.04) 0%, rgba(13, 13, 13, 0.2) 100%);
      box-shadow: 0 15px 40px rgba(99, 102, 241, 0.08);
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08);
    }

    .pricing-badge {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: var(--primary);
      color: #ffffff;
      font-size: 0.725rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .pricing-card h3 {
      font-size: 1.4rem;
      margin-bottom: 1.25rem;
    }

    .price-wrapper {
      display: flex;
      align-items: baseline;
      color: var(--text);
      margin-bottom: 0.25rem;
    }

    .currency {
      font-size: 1.5rem;
      font-weight: 700;
      margin-right: 2px;
    }

    .price-value {
      font-size: 3.25rem;
      font-weight: 800;
      line-height: 1;
    }

    .period {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-left: 4px;
    }

    .billing-frequency {
      font-size: 0.825rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .plan-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .plan-features {
      list-style: none;
      margin-bottom: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 2rem;
    }

    .plan-features li {
      font-size: 0.9rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .plan-features li strong {
      color: var(--text);
    }

    .plan-features li::before {
      content: "✓";
      color: var(--primary);
      font-weight: bold;
    }

    .w-full {
      width: 100%;
    }

    /* ==========================================================================
       FINAL CTA SECTION
       ========================================================================== */
    .final-cta {
      padding: 8rem 1rem;
      background: var(--bg-pure);
    }

    .cta-container {
      max-width: 850px;
      margin: 0 auto;
    }

    .cta-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 1.5rem;
      padding: 5rem 1.5rem;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(99, 102, 241, 0.04);
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 65%);
      pointer-events: none;
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 580px;
      margin: 0 auto;
    }

    .cta-card h2 {
      font-size: clamp(1.85rem, 4vw, 2.75rem);
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }

    .cta-card p {
      font-size: 1.05rem;
      margin-bottom: 2.75rem;
    }

    /* ==========================================================================
       FOOTER
       ========================================================================== */
    .footer {
      padding: 5rem 1rem 3rem 1rem;
      background: #0d0d0d;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .footer-container {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: flex-start;
      }
    }

    .footer-info {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .footer-info {
        align-items: flex-start;
      }
    }

    .footer .logo {
      font-size: 1.4rem;
    }

    .tagline {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .footer-links a {
      font-size: 0.875rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--text);
    }

    .footer-copyright {
      font-size: 0.825rem;
      color: var(--text-muted);
    }

    @media (min-width: 768px) {
      .footer-copyright {
        align-self: flex-start;
      }
    }

    /* ==========================================================================
       LANGUAGE SWITCHER
       ========================================================================== */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      margin-left: 0.5rem;
    }

    .lang-btn {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
      cursor: pointer;
    }

    .lang-btn:hover, .lang-btn.active {
      color: var(--text);
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    .lang-divider {
      color: rgba(255, 255, 255, 0.2);
    }

  