/* ══════════════════════════════════════════════════════
   BASE RESET & BODY
   ══════════════════════════════════════════════════════ */
   * { margin: 0; padding: 0; box-sizing: border-box; }

   html { scroll-behavior: smooth; }
   
   body {
     font-family: 'Montserrat', sans-serif;
     background: #000;
     color: #fff;
     overflow-x: hidden;
     position: relative;
     z-index: 1;
     width: 100%;
     max-width: 100vw;
   }
   
   /* ══════════════════════════════════════════════════════
      SCROLL REVEAL ANIMATIONS
      ══════════════════════════════════════════════════════ */
   .reveal-up,
   .reveal-left,
   .reveal-right,
   .reveal-scale {
     opacity: 0;
     transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                 transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
     transition-delay: var(--delay, 0s);
     will-change: transform, opacity;
   }
   
   .reveal-up    { transform: translateY(48px); }
   .reveal-left  { transform: translateX(-52px); }
   .reveal-right { transform: translateX(52px); }
   .reveal-scale { transform: scale(0.93) translateY(30px); }
   
   .reveal-up.visible,
   .reveal-left.visible,
   .reveal-right.visible,
   .reveal-scale.visible {
     opacity: 1;
     transform: none;
   }
   
   /* ══════════════════════════════════════════════════════
      NEURAL CANVAS — fixed full-page background
      ══════════════════════════════════════════════════════ */
   .neural-bg-global {
     position: fixed;
     top: 0; left: 0;
     width: 100vw; height: 100vh;
     z-index: 0;
     pointer-events: none;
     opacity: 0.7;
   }
   
   /* ══════════════════════════════════════════════════════
      NAVBAR
      ══════════════════════════════════════════════════════ */
   .navbar {
     position: fixed;
     top: 0; width: 100%;
     background: rgba(0,0,0,0.95);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     border-bottom: 0.5px solid #3a3a3a;
     z-index: 1000;
   }
   
   .nav-container {
     max-width: 1512px;
     margin: 0 auto;
     padding: 18px 60px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
     width: 100%;
   }
   
   .logo {
     display: flex; align-items: center; gap: 10px;
     font-size: 22px; font-weight: 700; letter-spacing: 1px;
     z-index: 1001;
   }
   
   .logo img { height: 76px; width: auto; }
   
   .nav-links { display: flex; gap: 36px; list-style: none; }
   .nav-links a {
     color: #fff; text-decoration: none;
     font-size: 14px; font-weight: 500;
     transition: color 0.2s;
   }
   .nav-links a.active { color: #fff; border-bottom: 2px solid #B8860B; padding-bottom: 2px; }
   .nav-links a:hover { color: #B8860B; }
   
   .btn-book {
     background: #B8860B; color: #f7f5f5;
     padding: 11px 26px; border-radius: 30px;
     text-decoration: none; font-weight: 700; font-size: 14px;
     white-space: nowrap;
     transition: background 0.2s, transform 0.2s;
   }
   .btn-book:hover { background: #e7aa0f; transform: scale(1.03); color: #000;}
   
   /* Hamburger */
   .hamburger {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 28px; height: 20px;
     background: none; border: none; cursor: pointer;
     padding: 0; z-index: 1001;
   }
   .hamburger span {
     display: block;
     width: 100%; height: 2px;
     background: #fff;
     border-radius: 2px;
     transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
     transform-origin: center;
   }
   .hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
   .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
   .hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
   
   /* ══════════════════════════════════════════════════════
      HERO
      ══════════════════════════════════════════════════════ */
   .hero-header {
     position: relative;
     overflow: hidden;
     min-height: 100vh;
   }
   
   .hero {
     position: relative;
     z-index: 1;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 110px 80px 80px 100px;
     max-width: 1512px;
     margin: 0 auto;
     gap: 40px;
     width: 100%;
     box-sizing: border-box;
   }
   
   .hero-content {
     flex: 1;
     max-width: 600px;
   }
   
   .hero-title {
     font-size: 58px;
     line-height: 1.05;
     font-weight: 700;
     margin-bottom: 28px;
     color: #fff;
   }
   .hero-title .transform {
     font-family: 'Montserrat', sans-serif;
     font-weight: 400;
     color: #FFFFFF;
   }
   .hero-title .aclonica {
     font-family: 'Aclonica', serif;
     font-weight: 700;
     color: #B8860B;
   }
   
   .hero-subtitle {
     font-size: 17px;
     font-weight: 400;
     line-height: 1.65;
     color: #D9D9D9;
     max-width: 500px;
     margin-bottom: 36px;
   }
   
   .hero-buttons { display: flex; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
   
   .btn-secondary {
     background: transparent; color: #fff;
     border: 1.5px solid #B8860B;
     padding: 14px 32px; border-radius: 30px;
     font-weight: 600; font-size: 15px; cursor: pointer;
     font-family: 'Montserrat', sans-serif;
     transition: background 0.25s, color 0.25s, transform 0.2s;
   }
   .btn-secondary:hover { background: rgba(184,134,11,0.15); transform: scale(1.03); }
   
   .btn-primary {
     background: #B8860B; color: #000;
     border: none; padding: 14px 32px; border-radius: 30px;
     font-weight: 700; font-size: 15px; cursor: pointer;
     font-family: 'Montserrat', sans-serif;
     transition: background 0.25s, transform 0.2s;
   }
   .btn-primary:hover { background: #d4a017; transform: scale(1.03); color: #fcf9f9; }
   
   .trusted { font-style: italic; font-size: 15px; color: #aaa; }
   
   /* Hero video */
   .hero-image-wrap {
     flex: 0 0 auto;
     width: 520px;
     align-self: stretch;
     margin-top: 0;
     display: flex;
     align-items: stretch;
   }
   .glitch-container {
     position: relative;
     width: 100%;
     border-radius: 16px;
     overflow: hidden;
   }
   .hero-ai-img {
     width: 100%;
     height: 100%;
     min-height: 580px;
     display: block;
     object-fit: cover;
     object-position: center center;
     border-radius: 16px;
     animation: heroReveal 1.4s cubic-bezier(0.16,1,0.3,1) both,
                subtleFloat 6s ease-in-out 1.4s infinite;
     filter: brightness(1.05) contrast(1.05);
     position: relative;
     z-index: 2;
   }
   /* Blend video edges into page background */
   .glitch-container::after {
     content: '';
     position: absolute;
     inset: 0;
     z-index: 3;
     pointer-events: none;
     background:
       linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 15%, transparent 60%, rgba(0,0,0,0.95) 100%),
       linear-gradient(to right,  rgba(0,0,0,0.55) 0%, transparent 35%),
       linear-gradient(to left,   rgba(0,0,0,0.2)  0%, transparent 25%);
   }
   @keyframes heroReveal {
     0%   { opacity: 0; transform: translateX(40px) scale(0.96); filter: brightness(2) blur(8px); }
     60%  { opacity: 1; filter: brightness(1.2) blur(0); }
     100% { opacity: 1; transform: translateX(0) scale(1); filter: brightness(1.05) contrast(1.05); }
   }
   @keyframes subtleFloat {
     0%, 100% { transform: translateY(0px) rotate(0deg); }
     33%       { transform: translateY(-8px) rotate(0.2deg); }
     66%       { transform: translateY(-4px) rotate(-0.15deg); }
   }
   
   .glow-ring { display: none; }
   
   .particle-overlay {
     position: absolute; inset: 0; z-index: 3;
     pointer-events: none; border-radius: 12px;
   }
   
   /* ══════════════════════════════════════════════════════
      SECTION SHARED
      ══════════════════════════════════════════════════════ */
   .section-label {
     color: #B8860B;
     font-weight: 600;
     font-size: 15px;
     letter-spacing: 0.5px;
     margin-bottom: 12px;
     text-decoration: underline;
     text-underline-offset: 6px;
     text-decoration-thickness: 2px;
     display: block;
   }
   
   .section-title {
     font-size: 38px; font-weight: 700;
     margin-bottom: 16px; color: #fff;
     line-height: 1.2;
   }
   
   .section-desc {
     font-size: 17px; color: #CECDCD;
     max-width: 700px; margin: 0 auto 70px;
     line-height: 1.6;
   }
   
   /* ══════════════════════════════════════════════════════
      SERVICES
      ══════════════════════════════════════════════════════ */
   .services-section {
     padding: 30px 100px 100px;
     text-align: center;
     background: transparent;
     position: relative;
     z-index: 2;
     width: 100%;
     box-sizing: border-box;
     overflow: hidden;
   }
   
   .services-section .section-label { margin-top: 80px; }
   
   .services-grid {
     display: flex;
     justify-content: center;
     gap: 25px;
     align-items: stretch;
     overflow-x: auto;
     scroll-behavior: smooth;
     padding: 20px 10px 30px;
     scrollbar-width: none;
   }
   .services-grid::-webkit-scrollbar { display: none; }
   
   .service-card {
     background: linear-gradient(354.8deg,
       rgba(0,0,0,0.95) 0%,
       rgba(20,14,1,0.88) 45%,
       #422e01c5 100%);
     border: 2px solid #b8870b23;
     border-radius: 18px;
     padding: 32px 24px;
     width: 260px;
     min-height: 420px;
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     position: relative;
     transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
     flex-shrink: 0;
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
   }
   
   .service-card.center-card {
     border-width: 3px;
     padding: 40px 28px;
     width: 295px;
     min-height: 455px;
     transform: scale(1.08);
     z-index: 2;
   }
   .service-card.active { transform: scale(1.08); z-index: 3; }
   .service-card:not(.active) { transform: scale(0.92); opacity: 0.85; }
   
   .service-icon {
     width: 56px; height: 56px;
     margin-bottom: 26px;
     display: flex; align-items: center; justify-content: center;
     background: linear-gradient(145deg, #523f03, #000000);
     border-radius: 50%;
     transition: all 0.4s ease;
     flex-shrink: 0;
   }
   .service-icon img { width: auto; height: auto; object-fit: contain; transition: all 0.4s ease; }
   
   .service-card.active .service-icon,
   .service-card.center-card .service-icon {
     width: 46; height: 46;
     background: linear-gradient(145deg,#c4860396,#3827038f);
     transform: scale(1.08);
   }
   .service-card:hover .service-icon img { transform: scale(1.08); }
   
   .service-card h3 {
     font-size: 22px; font-weight: 700;
     margin-bottom: 16px; line-height: 1.2;
   }
   .service-card p {
     font-size: 15px; color: #EDEDED;
     line-height: 1.65; margin-bottom: 26px; flex: 1;
   }
   
   .learn-more {
     color: #fff; font-weight: 700; font-size: 14.5px;
     text-decoration: none; margin-top: auto;
     align-self: flex-start; transition: color 0.4s ease;
   }
   .service-card .learn-more{ color: #eeeeee;}
   .service-card .learn-more:hover{ color: #ecaa1a;}
   .service-card.center-card .learn-more { color: #f3f3f3; }
   .service-card.center-card .learn-more:hover { color: #ecaa1a; }

   
   
   
   /* Arrows */
   .arrow-left, .arrow-right {
     position: absolute; top: 50%;
     transform: translateY(-50%);
     width: 44px; height: 44px;
     border: 2px solid #fff;
     border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     font-size: 22px; color: #fafafa; cursor: pointer;
     background: rgba(0,0,0,0.85);
     transition: all 0.3s ease;
     z-index: 10; user-select: none;
   }
   .arrow-left  { left: -52px; }
   .arrow-right { right: -52px; }
   .arrow-left:hover, .arrow-right:hover {
     background: #B8860B; color: #000;
     transform: translateY(-50%) scale(1.1);
   }
   
   /* ══════════════════════════════════════════════════════
      HOW WE WORK
      ══════════════════════════════════════════════════════ */
   .how-label {
     text-align: center;
     font-size: 15px;
     padding: 0 20px;
     margin-top: 80px;
   }
   
   .process-section {
     background: linear-gradient(90deg, rgba(217,217,217,0.07) 30%, transparent);
     border-radius: 20px;
     padding: 50px 40px 60px;
     text-align: center;
     max-width: 982px;
     margin: 0 auto 60px;
     position: relative;
     z-index: 2;
     backdrop-filter: blur(2px);
     -webkit-backdrop-filter: blur(2px);
     border: 1px solid rgba(255,255,255,0.04);
   }
   
   .process-section::before {
     content: '';
     position: absolute;
     left: 50%; top: 50%;
     transform: translate(-50%,-50%);
     width: 500px; height: 500px;
     background: radial-gradient(ellipse, rgba(184,134,11,0.12) 0%, transparent 70%);
     pointer-events: none;
     border-radius: 50%;
   }
   
   .process-content { max-width: 820px; margin: 0 auto; text-align: center; }
   .process-section .section-title { font-size: 36px; margin-bottom: 45px; }
   
   .process-container {
     display: flex;
     justify-content: center;
     gap: 80px;
     max-width: 760px;
     margin: 0 auto;
     position: relative;
   }
   .process-container::before {
     content: '';
     position: absolute;
     top: 46px; left: 16%; right: 16%;
     height: 2px;
     background: linear-gradient(90deg, #B8860B, #B8860B60, #B8860B);
   }
   
   .process-step {
     text-align: center; flex: 1;
     position: relative; max-width: 200px;
   }
   
   .step-circle {
     width: 88px; height: 88px;
     border: 4px solid #B8860B;
     border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     font-size: 26px; font-weight: 700; color: #B8860B;
     margin: 0 auto 20px;
     background: #0a0a0a;
     transition: all 0.4s ease;
   }
   .process-step .step-circle:hover {
     background: #B8860B; color: #000; transform: scale(1.12);
   }
   
   .process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: #fff; line-height: 1.3; }
   .process-step p  { font-size: 13.5px; color: #D9D9D9; line-height: 1.6; }
   
   /* ══════════════════════════════════════════════════════
      WHY VANGUARD
      ══════════════════════════════════════════════════════ */
   .why-outer { position: relative; z-index: 2; }
   
   .why-label {
     text-align: center;
     font-size: 15px;
     padding: 0 20px;
     margin-top: 20px;
   }
   
   .why-section {
     padding: 30px 100px 60px;
     display: flex;
     gap: 40px;
     align-items: center;
     max-width: 1400px;
     margin: 0 auto;
     width: 100%;
     box-sizing: border-box;
   }
   
   .why-text { flex: 1; }
   .why-text h2 { font-size: 34px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
   .why-desc { font-size: 16px; color: #D9D9D9; line-height: 1.6; margin-bottom: 50px; max-width: 480px; }
   .why-points { margin-bottom: 48px; }
   
   .point { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
   .point-num {
     background: #B8860B; color: #000;
     min-width: 52px; height: 44px;
     border-radius: 8px;
     display: flex; align-items: center; justify-content: center;
     font-weight: 700; font-size: 15px; flex-shrink: 0;
   }
   .point-body h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
   .point-body p  { font-size: 14px; color: #D9D9D9; line-height: 1.5; }
   
   .btn-outline {
     border: 1.5px solid #B8860B; background: transparent;
     color: #fff; padding: 14px 30px; border-radius: 34px;
     font-weight: 600; font-size: 15px; cursor: pointer;
     font-family: 'Montserrat', sans-serif;
     transition: background 0.25s, color 0.25s, transform 0.2s;
   }
   .btn-outline:hover { background: rgba(206, 151, 13, 0.568); transform: scale(1.03); }
   
   .why-image { flex: 1.2; display: flex; align-items: center; justify-content: center; }
   .network-canvas-wrapper {
     width: 100%; max-width: 480px;
     background: #0d0d0d;
     border-radius: 16px;
     overflow: hidden;
     position: relative;
     border: 1px solid rgba(184,134,11,0.12);
   }
   .network-canvas-wrapper img { width: 100%; height: auto; display: block; }
   
   /* ══════════════════════════════════════════════════════
      CTA
      ══════════════════════════════════════════════════════ */
   .cta-section { padding: 60px 40px; position: relative; z-index: 2; }
   
   .cta-box {
     background: linear-gradient(90deg, #4d3804af 0%, #1a1200a4 40%, #0000009c 100%);
     border: 3px solid #4d38048f;
     border-radius: 20px;
     padding: 70px 60px;
     text-align: center;
     max-width: 1000px;
     margin: 0 auto;
     backdrop-filter: blur(6px);
     -webkit-backdrop-filter: blur(6px);
   }
   .cta-box h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
   .cta-box p  { font-size: 16px; color: #D9D9D9; max-width: 600px; margin: 0 auto; line-height: 1.6; }
   .cta-buttons { margin-top: 44px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
   
   /* ══════════════════════════════════════════════════════
      FOOTER
      ══════════════════════════════════════════════════════ */
   footer {
     background: rgba(0,0,0,0.96);
     padding: 70px 100px 36px;
     border-top: 0.5px solid #333;
     position: relative; z-index: 2;
   }
   
   .footer-container {
     display: flex;
     justify-content: space-between;
     max-width: 1200px;
     margin: 0 auto;
     gap: 50px;
     flex-wrap: wrap;
   }
   
   .footer-left { max-width: 280px; }
   .footer-left p { color: #D9D9D9; font-size: 15px; line-height: 1.7; margin: 20px 0 24px; }
   
   .social-icons { display: flex; gap: 14px; }
   .social-icons a {
     width: 36px; height: 36px;
     border: 1px solid #555;
     border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     color: #fff; text-decoration: none; font-size: 18px;
     transition: border-color 0.2s, background 0.2s;
   }
   .social-icons a:hover { border-color: #B8860B; background: rgba(184,134,11,0.15); }
   .social-icons img { width: 16px; height: 16px; object-fit: contain; }
   
   .footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
   .footer-links h4 { font-size: 16px; font-weight: 700; margin-bottom: 24px; margin-top: 0; padding-top: 0; }
   .footer-links ul { list-style: none; }
   .footer-links li { margin-bottom: 12px; }
   .footer-links a { color: #D9D9D9; text-decoration: none; font-size: 15px; transition: color 0.2s; }
   .footer-links a:hover { color: #B8860B; }
   .footer-contact p { color: #D9D9D9; font-size: 15px; margin-bottom: 10px; }
   
   .footer-bottom {
     text-align: left; margin-top: 60px;
     padding-top: 28px; border-top: 0.5px solid #333;
     color: #fff2f2; font-size: 14px; font-weight: 500;
   }
   
   
   /* ══════════════════════════════════════════════════════
      RESPONSIVE — TABLET (≤ 1024px)
      ══════════════════════════════════════════════════════ */
   @media (max-width: 1024px) {
     .nav-container { padding: 16px 32px; }
     .nav-links { gap: 22px; }
   
     .hero {
       padding: 100px 40px 60px;
       gap: 30px;
     }
     .hero-title { font-size: 50px; }
     .hero-image-wrap { width: 380px; min-height: 480px; }
   
     .services-section { padding: 20px 40px 80px; }
     .services-section .section-label { margin-top: 60px; }
   
     .why-section { padding: 20px 40px 60px; gap: 30px; }
     .why-text { flex: 1.1; }
     .why-image { flex: 0.9; }
   
     .process-container { gap: 50px; }
   
     footer { padding: 60px 50px 36px; }
   }
   
   
   /* ══════════════════════════════════════════════════════
      RESPONSIVE — MOBILE LANDSCAPE / SMALL TABLET (≤ 768px)
      ══════════════════════════════════════════════════════ */
   @media (max-width: 768px) {
     /* Nav */
     .nav-container { padding: 14px 20px; }
     .desktop-only  { display: none; }
     .hamburger     { display: flex; }
   
     .nav-links {
       display: none;
       position: fixed;
       top: 0; left: 0; right: 0;
       background: rgba(0,0,0,0.98);
       backdrop-filter: blur(16px);
       -webkit-backdrop-filter: blur(16px);
       flex-direction: column;
       align-items: center;
       justify-content: center;
       gap: 32px;
       height: 100vh;
       z-index: 999;
       list-style: none;
       padding: 80px 20px 40px;
       border-bottom: none;
       transition: opacity 0.3s ease;
       opacity: 0;
       pointer-events: none;
     }
     .nav-links.open {
       display: flex;
       opacity: 1;
       pointer-events: all;
     }
     .nav-links a { font-size: 23px; font-weight: 600; }
   
     /* Mobile nav CTA */
     .nav-links li.mobile-cta {
       margin-top: 10px;
     }
     .nav-links li.mobile-cta a {
       background: #B8860B; color: #000;
       padding: 14px 32px; border-radius: 30px;
       font-weight: 700; font-size: 18px;
       display: inline-block;
     }
   
     /* Hero — stack vertically */
     .hero {
       flex-direction: column-reverse;
       align-items: center;
       text-align: center;
       padding: 100px 0 60px;
       min-height: auto;
       gap: 20px;
       width: 100%;
       max-width: 100%;
     }
     .hero-content { max-width: 100%; width: 100%; padding: 0 20px; box-sizing: border-box; }
     .hero-title { font-size: 36px; }
     .hero-title .transform br { display: none; }
     .hero-subtitle { font-size: 15px; max-width: 100%; }
     .hero-subtitle br { display: none; }
     .hero-buttons { justify-content: center; gap: 12px; flex-wrap: wrap; width: 100%; }
     .btn-secondary, .btn-primary { padding: 12px 22px; font-size: 14px; }
     .trusted { font-size: 13px; }
   
     .hero-image-wrap { width: 100%; max-width: 100%; align-self: stretch; margin-top: 0; min-height: 300px; }
     .hero-ai-img { min-height: 300px; }
   
     /* Services */
     .services-section { padding: 20px 16px 60px; width: 100%; box-sizing: border-box; }
     .services-section .section-label { margin-top: 50px; }
     .section-title { font-size: 28px; }
     .section-desc  { font-size: 15px; margin-bottom: 40px; padding: 0 8px; }
   
     .service-card       { width: 85vw; max-width: 300px; min-height: 360px; }
     .service-card.center-card { width: 85vw; max-width: 310px; min-height: 380px; }
     .arrow-left  { left: -44px; width: 36px; height: 36px; font-size: 18px; }
     .arrow-right { right: -44px; width: 36px; height: 36px; font-size: 18px; }
   
     /* Process */
     .how-label { margin-top: 60px; font-size: 16px; }
     .process-section { padding: 36px 20px 40px; border-radius: 14px; }
     .process-section .section-title { font-size: 28px; margin-bottom: 32px; }
   
     .process-container {
       flex-direction: column;
       gap: 0;
       align-items: center;
       max-width: 340px;
     }
     .process-container::before {
       display: none;
     }
     .process-step {
       max-width: 100%;
       width: 100%;
       padding-bottom: 36px;
       border-left: 2px solid rgba(184,134,11,0.3);
       padding-left: 28px;
       text-align: left;
       display: flex;
       flex-direction: column;
       align-items: flex-start;
     }
     .process-step:last-child { border-left-color: transparent; padding-bottom: 0; }
   
     .step-circle {
       width: 66px; height: 66px;
       font-size: 20px;
       margin: 0 0 16px 0;
       position: relative;
       left: -41px;
       background: #000;
     }
     .process-step.active .step-circle { transform: scale(1.06); }
     .process-step h4 { font-size: 15px; }
   
     /* Why Vanguard */
     .why-outer .why-label { margin-top: 50px; font-size: 16px; }
     .why-section {
       flex-direction: column;
       padding: 20px 16px 50px;
       gap: 30px;
       width: 100%;
       box-sizing: border-box;
     }
     .why-text { order: 2; width: 100%; }
     .why-image { order: 1; width: 100%; }
     .network-canvas-wrapper { max-width: 100%; }
     .why-text h2 { font-size: 26px; }
     .why-desc { max-width: 100%; margin-bottom: 30px; }
     .why-points { margin-bottom: 32px; }
     .point { gap: 14px; margin-bottom: 24px; }
     .point-num { min-width: 44px; height: 40px; font-size: 15px; }
     .point-body h4 { font-size: 17px; }
   
     /* CTA */
     .cta-section { padding: 40px 16px; width: 100%; box-sizing: border-box; }
     .cta-box { padding: 40px 20px; width: 100%; box-sizing: border-box; }
     .cta-box h2 { font-size: 24px; }
     .cta-box p  { font-size: 15px; }
     .cta-buttons { flex-direction: column; align-items: center; }
     .cta-buttons .btn-outline,
     .cta-buttons .btn-primary { width: 100%; max-width: 280px; }
   
     /* Footer */
     footer { padding: 50px 16px 30px; width: 100%; box-sizing: border-box; }
     .footer-container { flex-direction: column; gap: 36px; }
     .footer-left { max-width: 100%; }
     .footer-links { gap: 32px; flex-wrap: wrap; }
     .footer-links h4 { margin-bottom: 16px; font-size: 15px; }
     .footer-links a, .footer-contact p { font-size: 14px; }
     .footer-left p { font-size: 15px; }
     .footer-bottom { font-size: 14px; margin-top: 40px; text-align: center; }
   }
   
   
   /* ══════════════════════════════════════════════════════
      RESPONSIVE — SMALL MOBILE (≤ 480px)
      ══════════════════════════════════════════════════════ */
   @media (max-width: 480px) {
     .hero-title { font-size: 30px; }
     .hero { padding: 90px 0 50px; }
     .hero-image-wrap { max-width: 100%; min-height: 260px; }
     .hero-ai-img { min-height: 260px; }
   
     .service-card { width: 82vw; max-width: 280px; min-height: 340px; padding: 24px 16px; }
     .service-card.center-card { width: 82vw; max-width: 290px; min-height: 360px; padding: 30px 18px; }
     .service-card h3 { font-size: 20px; }
     .arrow-left  { left: -36px; }
     .arrow-right { right: -36px; }
   
     .section-title { font-size: 24px; }
     .section-desc { font-size: 14px; }
     .cta-box h2 { font-size: 22px; }
   
     .nav-container { padding: 12px 16px; }
     .logo img { height: 44px; }
   
     .footer-links { flex-direction: column; gap: 24px; }
     .process-section { padding: 30px 14px 36px; }
   }
   
   
   /* ══════════════════════════════════════════════════════
      SECTION IN-VIEW GLOW EFFECTS
      ══════════════════════════════════════════════════════ */
   .services-section {
     transition: box-shadow 0.8s ease;
   }
   .services-section.in-view {
     box-shadow: 0 0 120px rgba(184,134,11,0.06) inset;
   }
   
   .process-section {
     transition: border-color 0.6s ease, box-shadow 0.6s ease;
   }
   .process-section.in-view {
     border-color: rgba(184,134,11,0.18);
     box-shadow: 0 0 80px rgba(184,134,11,0.08);
   }
   
   .cta-box {
     transition: border-color 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
   }
   .cta-box.in-view {
     border-color: rgba(184,134,11,0.5);
     box-shadow: 0 0 80px rgba(184,134,11,0.1);
   }
   
   /* Step circles pulse when process section enters view */
   .process-section.in-view .step-circle {
     animation: stepPulseIn 0.7s ease forwards;
   }
   @keyframes stepPulseIn {
     0%   { box-shadow: 0 0 0 0 rgba(184,134,11,0); }
     60%  { box-shadow: 0 0 0 14px rgba(184,134,11,0.2); }
     100% { box-shadow: 0 0 0 0 rgba(184,134,11,0); }
   }
   
   /* Point numbers shimmer on entry */
   .why-section.in-view .point-num {
     animation: shimmer 0.6s ease forwards;
   }
   @keyframes shimmer {
     0%   { filter: brightness(1); }
     50%  { filter: brightness(1.5); }
     100% { filter: brightness(1); }
   }
   
   /* ══════════════════════════════════════════════════════
      REDUCED MOTION — respect OS preference
      ══════════════════════════════════════════════════════ */
   @media (prefers-reduced-motion: reduce) {
     .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
       opacity: 1;
       transform: none;
       transition: none;
     }
     .hero-ai-img { animation: heroReveal 1.4s cubic-bezier(0.16,1,0.3,1) both; }
     .neural-bg-global { display: none; }
   }


/* ══════════════════════════════════════════════════════
   HERO TITLE MOBILE FIX
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
  }
  .hero-title .aclonica {
    display: inline;
    white-space: normal;
  }
  .hero-title .transform {
    display: inline;
    white-space: normal;
  }
  .hero-title .transform br {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero-title { font-size: 28px; line-height: 1.2; }
}


/* ══════════════════════════════════════════════════════
   AI AUTOMATION SECTION
   ══════════════════════════════════════════════════════ */
.ai-automation-section {
  padding: 30px 100px 100px;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.ai-auto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
  text-align: left;
}

.ai-auto-card {
  background: linear-gradient(145deg, rgba(20,14,1,0.85) 0%, rgba(0,0,0,0.9) 100%);
  border: 1.5px solid rgba(184,134,11,0.18);
  border-radius: 16px;
  padding: 28px 26px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ai-auto-card:hover {
  border-color: rgba(184,134,11,0.55);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(184,134,11,0.1);
}

.ai-auto-icon {
  width: 52px; height: 52px;
  background: linear-gradient(145deg, #1a1200, #0a0800);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.ai-auto-card h3 {
  font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 10px; line-height: 1.3;
}
.ai-auto-card p {
  font-size: 16px; color: #CECDCD; line-height: 1.65;
}

.ai-auto-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(90deg, rgba(184,134,11,0.12) 0%, rgba(184,134,11,0.06) 50%, rgba(184,134,11,0.12) 100%);
  border: 1.5px solid rgba(184,134,11,0.25);
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 32px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.stat-num {
  font-size: 42px; font-weight: 700;
  font-family: 'Aclonica', serif;
  color: #B8860B;
  line-height: 1;
}

.stat-label {
  font-size: 15px; color: #D9D9D9;
  font-weight: 500; text-align: center;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(184,134,11,0.3);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .ai-automation-section { padding: 20px 40px 80px; }
  .ai-auto-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ai-automation-section { padding: 20px 20px 60px; }
  .ai-auto-grid { grid-template-columns: 1fr; gap: 16px; }
  .ai-auto-stats {
    flex-wrap: wrap;
    gap: 0;
  }
  .stat-item { min-width: 45%; padding: 24px 16px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 32px; }
}

@media (max-width: 480px) {
  .stat-item { min-width: 100%; padding: 20px; }
  .ai-auto-card { padding: 22px 18px; }
}


/* ══════════════════════════════════════════════════════
   AI AGENT WIDGET
   ══════════════════════════════════════════════════════ */
.ai-agent-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.ai-agent-bubble {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #B8860B, #FFD700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184,134,11,0.5), 0 0 0 0 rgba(184,134,11,0.4);
  animation: agentPulse 2.5s ease infinite;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.ai-agent-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(184,134,11,0.65);
}

.agent-bubble-glow {
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.25) 0%, transparent 70%);
  animation: glowPulse 2.5s ease infinite;
  pointer-events: none;
}

@keyframes agentPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(184,134,11,0.5), 0 0 0 0 rgba(184,134,11,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(184,134,11,0.5), 0 0 0 10px rgba(184,134,11,0); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.15); }
}

.agent-ping {
  position: absolute;
  top: 4px; right: 4px;
  width: 11px; height: 11px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #000;
}

.ai-agent-panel {
  width: 340px;
  background: rgba(8,6,0,0.97);
  border: 1.5px solid rgba(184,134,11,0.35);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(184,134,11,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  flex-direction: column;
  max-height: 480px;
  animation: panelSlideIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
.ai-agent-panel.open {
  display: flex;
}
@keyframes panelSlideIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.agent-panel-header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(184,134,11,0.15);
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(90deg, rgba(184,134,11,0.1), rgba(0,0,0,0));
}
.agent-avatar {
  width: 38px; height: 38px;
  background: radial-gradient(circle, #1a1200, #000);
  border: 1.5px solid #B8860B;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.agent-name { font-size: 16px; font-weight: 700; color: #fff; }
.agent-status { font-size: 14px; color: #aaa; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.status-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: statusBlink 2s ease infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

.agent-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(184,134,11,0.3) transparent;
}
.agent-messages::-webkit-scrollbar { width: 4px; }
.agent-messages::-webkit-scrollbar-thumb { background: rgba(184,134,11,0.3); border-radius: 2px; }

.agent-msg {
  max-width: 88%;
  animation: msgFade 0.35s ease;
}
@keyframes msgFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.agent-msg.bot { align-self: flex-start; }
.agent-msg.user { align-self: flex-end; }

.agent-msg p {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}
.agent-msg.bot p {
  background: rgba(184,134,11,0.12);
  border: 1px solid rgba(184,134,11,0.2);
  color: #eee;
  border-bottom-left-radius: 4px;
}
.agent-msg.user p {
  background: linear-gradient(135deg, #B8860B, #d4a017);
  color: #000;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

.agent-typing p {
  display: flex; gap: 4px; align-items: center; padding: 12px 14px;
}
.agent-typing .dot {
  width: 7px; height: 7px;
  background: #B8860B;
  border-radius: 50%;
  animation: typingDot 1.2s ease infinite;
}
.agent-typing .dot:nth-child(2) { animation-delay: 0.2s; }
.agent-typing .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40%           { transform: translateY(-6px); opacity: 1; }
}

.agent-suggestions {
  padding: 0 14px 12px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.suggestion-chip {
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.3);
  color: #d4a017;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.suggestion-chip:hover {
  background: rgba(184,134,11,0.22);
  border-color: #B8860B;
  color: #FFD700;
}

.agent-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(184,134,11,0.15);
  background: rgba(0,0,0,0.4);
}
.agent-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 24px;
  padding: 9px 14px;
  color: #fff;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.agent-input:focus { border-color: #B8860B; }
.agent-input::placeholder { color: #666; }

.agent-send {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #B8860B, #FFD700);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.agent-send:hover { transform: scale(1.1); box-shadow: 0 4px 14px rgba(184,134,11,0.4); }

@media (max-width: 480px) {
  .ai-agent-widget { bottom: 18px; right: 16px; }
  .ai-agent-panel { width: calc(100vw - 32px); max-height: 420px; }
  .ai-agent-bubble { width: 52px; height: 52px; }
}

/* BOOKING MODAL - Compact Version */
.booking-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.booking-modal.show {
  display: flex;
}

.modal-content {
  background: #0a0a0a;
  border: 2px solid #B8860B;
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(184,134,11,0.3);
  animation: modalPop 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.94) translateY(25px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(184,134,11,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: #FFD700;
  font-size: 20px;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.modal-close:hover { color: #fff; }

.form-group {
  padding: 0 24px 14px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #ddd;
  font-size: 14.5px;        /* Reduced label size */
  font-weight: 500;
}

.required {
  color: #B8860B;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,134,11,0.35);
  border-radius: 10px;
  color: #fff;
  font-size: 15.5px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 68px;
}

.success-message {
  padding: 40px 30px;
  text-align: center;
}

/* ── HERO VIDEO ── */
.hero-ai-img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  animation: heroReveal 1.4s cubic-bezier(0.16,1,0.3,1) both,
             subtleFloat 6s ease-in-out 1.4s infinite;
  filter: brightness(1.05) contrast(1.05);
  position: relative;
  z-index: 2;
}

/* Reduced motion — pause float animation */
@media (prefers-reduced-motion: reduce) {
  .hero-ai-img { animation: heroReveal 1.4s cubic-bezier(0.16,1,0.3,1) both; }
}

/* Improved Mobile Services Grid */
@media (max-width: 768px) {
  .services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: visible;
    padding: 20px 16px 40px;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .service-card {
    width: 85vw;
    max-width: 300px;
    min-height: auto;
    flex-shrink: 0;
    scroll-snap-align: unset;
  }

  .service-card.center-card {
    transform: scale(1.02);
    min-height: auto;
  }

  /* Hide arrows on mobile */
  .arrow-left,
  .arrow-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .service-card {
    width: 82vw;
    max-width: 280px;
  }
}
  /* ============================================= */
/* LINK COLORS - Remove Default Blue
/* ============================================= */

/* All links */
a {
  color: #e2dfdf;
  text-decoration: none;
}

a:hover {
  color: #B8860B;
}

/* Specific links in policy content */
.policy-section p a {
  color: #B8860B;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-section p a:hover {
  color: #D4A017;
}

/* Navigation links */
.nav-links a {
  color: #e2dfdf;
}

.nav-links a:hover {
  color: #B8860B;
}

/* Footer links */
.footer-col ul li a {
  color: #c5c5c5;
}

.footer-col ul li a:hover {
  color: #B8860B;
}

/* CTA Buttons (if any) */
.cta-buttons a,
.btn-outline,
.btn-primary {
  color: inherit;
  text-decoration: none;
}

/* =============================================
   CTA BUTTONS - Clean & Consistent
   ============================================= */

   .cta-buttons {
    margin-top: 44px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cta-buttons a {
    text-decoration: none !important;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
    text-align: center;
  }
  

  
  /* Outline Button */
  .btn-outline {
    border: 1.5px solid #B8860B;
    background: transparent;
    color: #fff;
  }
  
  .btn-outline:hover {
    background: rgba(184, 134, 11, 0.15);
    color: #fff;
    transform: translateY(-3px);
  }
  
  /* Primary Button */
  .btn-primary {
    background: #B8860B;
    color: #0f0f0f;
    border: 1.5px solid #B8860B;
    font-weight: 700;
  }
  
  .btn-primary:hover {
    background: #d4a017;
    border-color: #d4a017;
    transform: translateY(-3px);
  }
  
  /* Ensure no underline or blue color */
  .cta-buttons a,
  .cta-buttons button a {
    color: inherit !important;
    text-decoration: none !important;
  }
  
  .cta-buttons a:hover {
    text-decoration: none !important;
  }

/* ══════════════════════════════════════════════════════
   GLOBAL MOBILE SAFETY NET — prevents any element from
   causing horizontal scroll on small screens
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* All sections fill width and don't bleed */
  section, footer, nav, header, .hero-header {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Prevent any image from overflowing */
  img, video {
    max-width: 100%;
    height: auto;
  }

  /* Process section horizontal overflow fix */
  .process-section {
    margin: 0 16px 60px;
    padding: 36px 16px 40px;
    box-sizing: border-box;
  }

  /* AI auto stats on mobile */
  .ai-auto-stats {
    flex-direction: column;
    align-items: stretch;
    margin: 0 0 40px;
  }
  .stat-item {
    min-width: 100%;
    border-bottom: 1px solid rgba(184,134,11,0.2);
  }
  .stat-item:last-child { border-bottom: none; }

  /* Booking modal full width */
  .modal-content {
    width: calc(100vw - 24px);
    margin: 12px;
    max-width: 100%;
  }
  .form-group {
    padding: 0 16px 12px;
  }

  /* Cookie banner */
  .cookie-banner {
    padding: 14px 16px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 380px) {
  .hero-title { font-size: 26px; }
  .hero { padding: 85px 0 44px; }
  .btn-secondary, .btn-primary { padding: 11px 18px; font-size: 13px; }
  .hero-buttons { gap: 10px; }
  .services-section { padding: 16px 12px 50px; }
  .why-section { padding: 16px 12px 44px; }
  .cta-section { padding: 32px 12px; }
  footer { padding: 40px 12px 24px; }
  .nav-container { padding: 12px 14px; }
  .logo img { height: 40px; }
  .section-title { font-size: 22px; }
}