
  /* ============================================
     RESET & BASE - PLAYABLES MODERN DARK THEME
  ============================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    /* Base Dark Theme Colors */
    --bg-base: #050505;
    --bg-glass: rgba(15, 15, 15, 0.4);
    --bg-glass-hover: rgba(25, 25, 25, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    /* Accents (Gold) */
    --gold: #C2A878;
    --gold-dark: #8c7650;
    --gold-light: #e8d3a7;
    --gold-glow: rgba(194, 168, 120, 0.3);
    
    /* Text */
    --light: #ffffff;
    --light-2: #e4e4e7;
    --light-3: #a1a1aa;
    --ink: #ffffff;
    --ink-2: #e4e4e7;
    --ink-3: #a1a1aa;

    /* Legacy Variables mapped to light for text visibility */
    --om-charcoal: #ffffff;
    --rule-light: rgba(255, 255, 255, 0.08);
    --rule-dark: rgba(255, 255, 255, 0.08);

    /* UI Variables */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.4);
    --shadow-lg: 0 24px 80px rgba(0,0,0,0.6);
    --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --max-w: 1200px;
    --header-h: 80px;
  }
  
  html { scroll-behavior: smooth; font-size: 16px; background-color: var(--bg-base); }
  
  body {
    background-color: var(--bg-base);
    background-image: radial-gradient(circle at 50% 0%, rgba(194, 168, 120, 0.12) 0%, transparent 60%),
                      radial-gradient(circle at 10% 80%, rgba(194, 168, 120, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--light);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: var(--gold); color: #000; }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
  .container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

  /* Section Overrides to integrate with Background */
  section, #hero, #services, #fix-build, #pricing, #books, .ta-section, #process, #why-me, #faq, #consultation, #footer, #trust { 
    background: transparent !important; 
    border: none !important; 
  }

  /* Canvas Background & Progress Bar */
  #particles {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;
  }
  .progress-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform-origin: 0% 50%;
    transform: scaleX(0);
    z-index: 10001;
    box-shadow: 0 0 10px var(--gold);
  }

  /* ============================================
     SCROLL ANIMATIONS & 3D CARDS
  ============================================ */
  .reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  .card-3d {
    transition: transform 0.1s ease-out, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
    will-change: transform;
    transform-style: preserve-3d;
  }
  .card-3d:hover {
    border-color: rgba(194, 168, 120, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px var(--gold-glow) !important;
    background: var(--bg-glass-hover) !important;
  }

  /* ============================================
     HEADER & NAV
  ============================================ */
  #header {
    position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
  }
  #header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }

  .header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
  .logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; letter-spacing: 0.12em; color: var(--light); text-transform: uppercase; flex-shrink: 0; }
  
  nav.main-nav { display: flex; align-items: center; gap: 32px; }
  nav.main-nav a { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-2); transition: color var(--transition); white-space: nowrap; }
  nav.main-nav a:hover { color: var(--gold-light); }
  
  .header-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

  /* Language Switcher */
  .lang-switcher { position: relative; display: flex; align-items: center; }
  .lang-btn {
    display: flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-2); background: none;
    border: none; cursor: pointer; transition: color var(--transition); font-family: var(--font-body);
  }
  .lang-btn:hover { color: var(--gold-light); }
  .lang-btn svg { transition: transform var(--transition); }
  .lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
  
  .lang-dropdown {
    position: absolute; top: calc(100% + 16px); right: 0; background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px); border: 1px solid var(--border-glass); border-radius: 8px;
    box-shadow: var(--shadow-lg); overflow: hidden; min-width: 120px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.3s ease;
  }
  .lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .lang-dropdown a {
    display: block; padding: 12px 20px; font-size: 0.75rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--light-2); border-bottom: 1px solid var(--border-glass);
    transition: all var(--transition);
  }
  .lang-dropdown a:last-child { border-bottom: none; }
  .lang-dropdown a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius);
    padding: 14px 28px; cursor: pointer; transition: all var(--transition); border: 1px solid transparent; white-space: nowrap;
  }
  .btn-primary { 
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important; 
    color: #050505 !important; 
    border: none !important;
    box-shadow: 0 4px 15px var(--gold-glow) !important;
  }
  .btn-primary:hover { 
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important; 
    box-shadow: 0 6px 20px rgba(194, 168, 120, 0.6) !important; 
    transform: translateY(-2px);
  }
  .btn-outline { border: 1px solid var(--gold) !important; color: var(--gold) !important; background: transparent !important; }
  .btn-outline:hover { background: var(--gold) !important; color: #000 !important; box-shadow: 0 0 15px var(--gold-glow) !important; }

  /* Burger & Mobile Nav */
  .burger { display: none; flex-direction: column; gap: 6px; width: 30px; cursor: pointer; background: none; border: none; padding: 4px; }
  .burger span { display: block; height: 1px; background: var(--light); transition: all 0.3s ease; transform-origin: center; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    display: none; position: fixed; top: var(--header-h); left: 0; right: 0; 
    background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass); padding: 32px; z-index: 999; transform: translateY(-10px);
    opacity: 0; pointer-events: none; transition: all 0.4s ease; box-shadow: var(--shadow-lg);
  }
  .mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-nav a.m-link { display: block; padding: 16px 0; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light); border-bottom: 1px solid var(--border-glass); }
  .mobile-nav a.m-link:hover { color: var(--gold); }
  .mobile-nav-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }

  /* ============================================
     HERO
  ============================================ */
  #hero { padding-top: calc(var(--header-h) + 80px); padding-bottom: 120px; overflow: hidden; }
  .hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }

  .section-label {
    display: inline-flex; align-items: center; gap: 12px; font-size: 0.68rem; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 24px;
  }
  .section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

  .section-heading, .hero-headline {
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .section-heading em, .hero-headline em {
    background: linear-gradient(to right, #e8d3a7, #C2A878);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
  }

  .hero-headline { font-size: clamp(2.8rem, 4vw, 4.2rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 32px; }
  .hero-sub { font-size: 1.1rem; color: var(--light-2); font-weight: 300; line-height: 1.8; max-width: 520px; margin-bottom: 24px; text-align: justify; }
  .hero-note { font-size: 0.85rem; color: var(--light-3); line-height: 1.6; max-width: 480px; margin-bottom: 48px; padding-left: 16px; border-left: 1px solid var(--gold); text-align: justify; }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .hero-visual { position: relative; height: 540px; display: flex; align-items: center; justify-content: center; }
  .visual-layer { position: absolute; box-shadow: var(--shadow-lg); border-radius: var(--radius); border: 1px solid var(--border-glass) !important; background: var(--bg-glass) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: var(--light) !important; }
  .layer-1 {
    width: 380px; height: 420px; padding: 40px; z-index: 1; top: 0px; right: 0px;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .layer-title { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; position: relative; z-index: 2; }
  .layer-heading { font-family: var(--font-display); font-size: 1.8rem; line-height: 1.25; margin-bottom: 24px; color: var(--light); position: relative; z-index: 2; }
  .layer-line { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 20px; position: relative; z-index: 2; }
  .layer-line::after { content:''; position:absolute; left:0; top:0; height:100%; width: 65%; background: var(--gold); }
  
  .layer-2 {
    width: 320px; padding: 32px; z-index: 2; bottom: 20px; left: -20px;
  }
  .layer-2 .item { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
  .layer-2 .item:last-child { margin-bottom: 0; }
  .layer-2 .icon { width: 8px; height: 8px; border: 1px solid var(--gold); border-radius: 50%; }
  .layer-2 .icon.filled { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
  .layer-2 .text { font-size: 0.8rem; color: var(--light-2); letter-spacing: 0.05em; text-transform: uppercase; }

  /* ============================================
     TRUST BAR (GRID BUTTONS)
  ============================================ */
  /* ============================================
     TRUST BAR (GRID BUTTONS)
  ============================================ */
  #trust { 
    padding: 60px 0; 
    border-top: 1px solid var(--border-glass) !important; 
    border-bottom: 1px solid var(--border-glass) !important; 
    backdrop-filter: blur(10px); 
  }
  
  .trust-inner { 
    display: grid !important; 
    grid-template-columns: repeat(3, 1fr) !important; /* Forces exactly 3 columns */
    gap: 24px !important; 
    width: 100%;
  }
  
  .trust-item { 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 16px 24px !important;
    background: transparent !important;
    border: 1px solid var(--gold) !important; /* Gold border like VIEW SERVICES */
    border-radius: var(--radius) !important; /* Matches button rounded corners */
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important; 
    font-weight: 500 !important;
    letter-spacing: 0.1em !important; 
    text-transform: uppercase !important; 
    color: var(--gold) !important; /* Gold text */
    transition: all var(--transition) !important;
    white-space: normal !important; /* Allows text to wrap neatly */
    cursor: default; 
  }

  .trust-item:hover {
    background: var(--gold) !important;
    color: #000 !important;
    box-shadow: 0 0 15px var(--gold-glow) !important;
    transform: translateY(-2px);
  }
  
  .trust-divider { 
    display: none !important; /* Hides any remaining lines completely */
  }

  /* ============================================
     SERVICES & FIX/BUILD
  ============================================ */
  #services, #fix-build { padding: 120px 0; }
  .section-header { margin-bottom: 80px; max-width: 700px; }
  .section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
  .section-header.center .section-label { justify-content: center; }
  .section-heading { font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 24px; }
  .section-sub { font-size: 1.05rem; color: var(--light-2); line-height: 1.8; text-align: justify; }

  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .fb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  
  .service-card, .fb-col, .wm-box, .form-wrap, .ta-visual > div {
    background: var(--bg-glass) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--border-glass) !important;
    padding: 48px 32px; border-radius: var(--radius) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  
  .service-icon { color: var(--gold); margin-bottom: 24px; width: 24px; height: 24px; filter: drop-shadow(0 0 8px rgba(194, 168, 120, 0.5)); }
  .service-card h3 { font-size: 1.4rem; color: var(--light); margin-bottom: 16px; }
  .service-card p { font-size: 0.9rem; color: var(--light-2); line-height: 1.7; text-align: justify; }

  .fb-col { padding: 56px; }
  .fb-col h3 { font-size: 2rem; color: var(--light); margin-bottom: 32px; border-bottom: 1px solid var(--border-glass); padding-bottom: 24px; }
  .fb-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .fb-list li { font-size: 1rem; color: var(--light-2); padding-left: 24px; position: relative; line-height: 1.6; }
  .fb-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 1px; background: var(--gold-dark); box-shadow: 0 0 5px var(--gold); }

  /* ============================================
     PRICING
  ============================================ */
  #pricing { padding: 140px 0; }
  .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; margin-bottom: 48px; }

  .pkg-card {
    background: var(--bg-glass) !important; backdrop-filter: blur(12px) !important;
    border: 1px solid var(--border-glass) !important; border-radius: var(--radius-lg) !important;
    padding: 48px 32px; position: relative; display: flex; flex-direction: column; height: 100%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .pkg-card.featured {
    background: linear-gradient(145deg, rgba(194, 168, 120, 0.15), rgba(10, 10, 10, 0.8)) !important;
    border-color: var(--gold) !important; color: var(--light) !important;
    transform: translateY(-8px); box-shadow: 0 15px 45px rgba(194, 168, 120, 0.15) !important;
  }
  .pkg-card.featured:hover { transform: translateY(-12px); border-color: var(--gold-light) !important; box-shadow: 0 20px 50px rgba(194, 168, 120, 0.25) !important; }

  .pkg-tier { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
  .pkg-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.1; color: var(--light); }
  .pkg-pos { font-size: 0.9rem; line-height: 1.6; color: var(--light-2); margin-bottom: 24px; min-height: 50px; flex-grow: 1; text-align: justify; }
  .pkg-price-wrap { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-glass); }
  .pkg-price { font-family: var(--font-display); font-size: 2rem; color: var(--light); margin-bottom: 4px; }
  .pkg-note { font-size: 0.8rem; color: var(--light-3); font-style: italic; text-align: justify; margin-bottom: 32px;}
  .pkg-card .btn { width: 100%; margin-top: auto; }

  .pricing-footer-note { max-width: 800px; margin: 0 auto; text-align: center; }
  .pricing-footer-note p { font-size: 1rem; color: var(--gold); line-height: 1.7; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; text-shadow: 0 0 10px rgba(194, 168, 120, 0.2);}

  /* ============================================
     BOOKS CAROUSEL & MODAL
  ============================================ */
  #books { padding: 100px 0; border-top: 1px solid var(--border-glass) !important; border-bottom: 1px solid var(--border-glass) !important; }
  
  /* Native Scroll Wrapper */
  .carousel-wrapper { 
    position: relative; width: 100%; padding: 20px 0; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; /* Smooth mobile swipe */
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .carousel-wrapper::-webkit-scrollbar { display: none; /* Hide scrollbar Chrome/Safari */ }
  
  .carousel-track { display: flex; gap: 32px; width: max-content; }
  
  .book-card {
    width: 250px; height: 375px; flex-shrink: 0; cursor: pointer;
    background: var(--bg-glass) !important; backdrop-filter: blur(12px) !important;
    border: 1px solid var(--border-glass) !important; border-radius: var(--radius) !important;
    position: relative; box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    padding: 0; overflow: hidden;
  }
  .book-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--gold), transparent); opacity: 0.6; z-index: 2; pointer-events: none; }

  /* Modal Styles */
  .book-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(5, 5, 5, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
  }
  .book-modal.open { opacity: 1; visibility: visible; }
  .book-modal-content {
    position: relative; max-width: 90vw; max-height: 90vh;
    display: flex; flex-direction: column; align-items: center;
    transform: scale(0.95); transition: transform 0.3s ease;
  }
  .book-modal.open .book-modal-content { transform: scale(1); }
  
  .book-modal-close {
    position: absolute; top: -40px; right: 0;
    background: none; border: none; color: var(--light-2);
    font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.1em;
    cursor: pointer; text-transform: uppercase; transition: color 0.3s ease;
  }
  .book-modal-close:hover { color: var(--gold); }
  
  .book-modal-content img {
    max-width: 100%; height: 60vh; object-fit: contain;
    border-radius: var(--radius); border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8); margin-bottom: 24px;
    display: block;
  }
  
  .book-modal-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000; padding: 14px 32px; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; text-align: center;
    box-shadow: 0 4px 15px var(--gold-glow); transition: all 0.3s ease;
  }
  .book-modal-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194, 168, 120, 0.6);
  }

  /* ============================================
     TRAINING & ANALYTICS
  ============================================ */
  .ta-section { padding: 120px 0; }
  .ta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .ta-sub { font-size: 1.15rem; line-height: 1.8; margin-bottom: 24px; color: var(--light-2); }
  .ta-highlight { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; color: var(--gold) !important; margin-bottom: 32px; border-left: 2px solid var(--gold) !important; padding-left: 24px; }
  .ta-features { list-style: none; margin-bottom: 40px; }
  .ta-features li { font-size: 1rem; color: var(--light-2); margin-bottom: 16px; padding-left: 24px; position: relative; }
  .ta-features li::before { content:''; position:absolute; left:0; top:10px; width:6px; height:1px; background: var(--gold); box-shadow: 0 0 5px var(--gold); }
  .ta-visual > div { border-color: rgba(255, 255, 255, 0.1) !important; }

  /* ============================================
     PROCESS
  ============================================ */
  #process { padding: 140px 0; border-top: 1px solid var(--border-glass) !important; }
  .process-inner { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; }
  .process-list { display: flex; flex-direction: column; gap: 40px; position: relative; }
  .process-list::before { content: ''; position: absolute; top: 0; bottom: 0; left: 24px; width: 1px; background: linear-gradient(to bottom, var(--gold), transparent); opacity: 0.3; }
  .proc-step { display: flex; gap: 24px; position: relative; z-index: 1; }
  .proc-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); line-height: 1; margin-top: -4px; background: var(--bg-base); padding-bottom: 10px; }
  .proc-content h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; color: var(--light); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
  .proc-content p { font-size: 0.95rem; color: var(--light-2); line-height: 1.7; text-align: justify; }

  /* ============================================
     WHY ME
  ============================================ */
  #why-me { padding: 140px 0; border-top: 1px solid var(--border-glass) !important; }
  .wm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .wm-box { padding: 56px; }
  .wm-quote-mark { font-family: var(--font-display); font-size: 6rem; color: rgba(255,255,255,0.05); line-height: 0; position: absolute; top: 60px; left: 40px; }
  .wm-box h3 { font-size: 2.2rem; color: var(--light); margin-bottom: 24px; position: relative; z-index: 2; }
  .wm-box p { font-size: 1.05rem; color: var(--light-2); line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 2; text-align: justify; }
  .wm-list { list-style: none; margin-top: 32px; }
  .wm-list li { font-size: 1rem; color: var(--light-2); padding: 12px 0; border-bottom: 1px solid var(--border-glass) !important; display: flex; align-items: flex-start; gap: 16px; }
  .wm-list li:last-child { border-bottom: none !important; }
  .wm-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 4px; filter: drop-shadow(0 0 5px rgba(194,168,120,0.5)); }

  /* ============================================
     FAQ
  ============================================ */
  #faq { padding: 120px 0; border-top: 1px solid var(--border-glass) !important; }
  .faq-inner { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
  .faq-sidebar { position: sticky; top: calc(var(--header-h) + 40px); }
  .faq-item { border-bottom: 1px solid var(--border-glass) !important; overflow: hidden; }
  .faq-q {
    width: 100%; background: none; border: none; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
    cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 1.3rem; color: var(--light) !important; transition: color var(--transition);
  }
  .faq-q:hover, .faq-q.active { color: var(--gold) !important; }
  .faq-icon { width: 24px; height: 24px; flex-shrink: 0; border: 1px solid var(--border-glass); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
  .faq-q.active .faq-icon { background: var(--gold); border-color: var(--gold); transform: rotate(45deg); box-shadow: 0 0 10px var(--gold-glow); }
  .faq-icon svg { width: 10px; height: 10px; color: var(--light-2); }
  .faq-q.active .faq-icon svg { color: #000; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .faq-a-inner { padding: 0 0 28px; font-size: 0.95rem; color: var(--light-2); line-height: 1.8; text-align: justify; }

  /* ============================================
     CONSULTATION FORM
  ============================================ */
  #consultation { padding: 120px 0; border-top: 1px solid var(--border-glass) !important; }
  .consult-inner { max-width: 800px; margin: 0 auto; }
  .consult-header { text-align: center; margin-bottom: 64px; }
  
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
  .form-group { margin-bottom: 24px; }
  label { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-2); margin-bottom: 10px; }
  .required-mark { color: var(--gold); }
  
  input, select, textarea {
    width: 100%; background: rgba(0,0,0,0.3) !important; border: 1px solid var(--border-glass) !important; border-radius: 8px !important;
    padding: 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--light) !important; transition: all var(--transition);
    appearance: none; outline: none; backdrop-filter: blur(10px);
  }
  input:focus, select:focus, textarea:focus { border-color: var(--gold) !important; background: rgba(20,20,20,0.8) !important; box-shadow: 0 0 10px var(--gold-glow) !important; }
  input::placeholder, textarea::placeholder { color: var(--light-3); }
  textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C2A878' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 48px; cursor: pointer;
  }

  .field-error { display: none; font-size: 0.75rem; color: #ff8b8b; margin-top: 6px; }
  .form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #ff8b8b !important; }
  .form-group.error .field-error { display: block; }

  .checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; text-transform: none; letter-spacing: 0; font-size: 0.85rem; color: var(--light-2); line-height: 1.5; margin-bottom: 16px; }
  .checkbox-label input { width: 18px; height: 18px; min-width: 18px; padding: 0; margin-top: 2px; cursor: pointer; accent-color: var(--gold); }

  .btn-submit {
    width: 100%; padding: 20px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #000; border: none; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: all var(--transition); margin-top: 16px;
    box-shadow: 0 4px 15px var(--gold-glow);
  }
  .btn-submit:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); box-shadow: 0 6px 20px rgba(194, 168, 120, 0.6); transform: translateY(-2px); }

  .form-success { display: none; text-align: center; padding: 60px 20px; }
  .form-success.visible { display: block; }
  .success-icon { width: 64px; height: 64px; border: 1px solid var(--gold); box-shadow: 0 0 15px var(--gold-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--gold); }
  .form-success h3 { font-size: 1.8rem; color: var(--light); margin-bottom: 16px; }
  .form-success p { font-size: 1rem; color: var(--light-2); }

  /* ============================================
     FOOTER
  ============================================ */
  #footer { background: transparent !important; color: rgba(255,255,255,0.6); padding: 80px 0 40px; border-top: 1px solid var(--border-glass) !important; backdrop-filter: blur(10px); }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--border-glass); }
  .footer-brand .logo { color: var(--light); margin-bottom: 16px; display: block; }
  .footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
  .footer-col-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
  .footer-nav { display: flex; flex-direction: column; gap: 12px; }
  .footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
  .footer-nav a:hover { color: var(--gold-light); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; flex-wrap: wrap; gap: 16px; }

  /* ============================================
     RESPONSIVE
  ============================================ */
  @media (max-width: 1200px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { height: 480px; } 
    .layer-1 { 
      right: auto; left: 50%; transform: translateX(-50%); 
      width: 90%; height: 360px; 
      justify-content: flex-start; /* Pushes text to the top */
      padding-top: 40px;
    }
     .layer-2 { 
      left: 50%; transform: translateX(-50%); 
      bottom: 20px; width: 95%; max-width: 340px;
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fb-grid { grid-template-columns: 1fr; }
    .ta-inner, .process-inner, .wm-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  }

  @media (max-width: 768px) {
    :root { --header-h: 70px; }
    .container { padding: 0 24px; }
    nav.main-nav, .header-right .cta-btn { display: none !important; }
    .logo { font-size: 1.2rem; }
    .header-inner { gap: 16px; }
    .burger { display: flex; }
    .mobile-nav { display: block; }
    .hero-headline { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .trust-inner { 
      display: grid !important; 
      grid-template-columns: 1fr !important; /* Forces 1 column on mobile */
      gap: 16px !important; 
    }
    .trust-divider { display: none; }
    .services-grid, .pricing-grid { grid-template-columns: 1fr; }
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-sidebar { position: relative; top: 0; }
    .form-row { grid-template-columns: 1fr; }
    .form-wrap { padding: 32px 24px; }
    .footer-top { grid-template-columns: 1fr; }
    #services, #fix-build, #pricing, #books, .ta-section, #process, #why-me, #faq, #consultation { padding: 80px 0; }
  }