/* ============================================================
   SECTIONS — Hero, Services, EV, Gallery, Why, Process, Booking
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Animated orbs */
.hero-bg .orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  animation: float-orb 14s ease-in-out infinite;
}
.hero-bg .orb-1{
  width: 520px;
  height: 520px;
  background: var(--teal-400);
  top: -160px;
  right: -120px;
  animation-delay: 0s;
}
.hero-bg .orb-2{
  width: 420px;
  height: 420px;
  background: var(--teal-600);
  bottom: -100px;
  left: -120px;
  animation-delay: -7s;
}
.hero-bg .orb-3{
  width: 300px;
  height: 300px;
  background: var(--teal-200);
  top: 40%;
  left: 50%;
  opacity: .15;
  animation-delay: -3s;
}
@keyframes float-orb{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(40px, -30px) scale(1.1); }
}

/* Particle canvas */
.particles-canvas{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Scan lines */
.hero-bg .scan{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(94, 234, 212, .05) 50%, transparent 100%);
  background-size: 100% 200px;
  animation: scan 8s linear infinite;
}
@keyframes scan{
  0%{ background-position: 0 -200px; }
  100%{ background-position: 0 100vh; }
}

.hero .wrap{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}

.hero-content > *{
  opacity: 0;
  transform: translateY(30px);
  animation: hero-fade-up .9s var(--ease) forwards;
}
.hero-content > *:nth-child(1){ animation-delay: .1s; }
.hero-content > *:nth-child(2){ animation-delay: .25s; }
.hero-content > *:nth-child(3){ animation-delay: .4s; }
.hero-content > *:nth-child(4){ animation-delay: .55s; }
.hero-content > *:nth-child(5){ animation-delay: .7s; }
@keyframes hero-fade-up{
  to{ opacity: 1; transform: translateY(0); }
}

.hero h1{
  font-size: clamp(38px, 5.5vw, 72px);
  margin: 26px 0 24px;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.hero h1 .accent{
  background: linear-gradient(120deg, var(--teal-200) 0%, var(--teal-400) 50%, var(--teal-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero h1 .ev-text{
  color: var(--text);
  position: relative;
  display: inline-block;
}
.hero h1 .ev-text::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 14px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, .35), transparent);
  z-index: -1;
}

.hero-desc{
  font-size: 17px;
  color: var(--text-mute);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-desc strong{
  color: var(--teal-200);
  font-weight: 600;
}

.hero-ctas{
  display: flex;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat .num{
  font-family: 'Saira', sans-serif;
  font-weight: 800;
  font-size: 38px;
  background: linear-gradient(180deg, var(--teal-200), var(--teal-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label{
  font-size: 11.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: 'JetBrains Mono', monospace;
}

/* === Hero Visual: Animated V Logo === */
.hero-visual{
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(20, 184, 166, .2), transparent 60%);
  filter: blur(40px);
}

.v-stage{
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-stage svg{
  width: 90%;
  height: 90%;
  filter: drop-shadow(0 0 50px rgba(20, 184, 166, .5));
}
.v-stage .v-path{
  fill: none;
  stroke: url(#vGradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw-v 2.5s var(--ease) .6s forwards;
}
@keyframes draw-v{ to{ stroke-dashoffset: 0; } }
.v-stage .v-fill{
  opacity: 0;
  animation: fade-fill 1.2s ease 2.4s forwards;
}
@keyframes fade-fill{ to{ opacity: 1; } }

/* Tech rings */
.tech-ring{
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
  opacity: .5;
}
.tech-ring::before, .tech-ring::after{
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--teal-300);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--teal-300);
}
.tech-ring::before{ top: -4px; left: 50%; transform: translateX(-50%); }
.tech-ring::after{ bottom: -4px; left: 50%; transform: translateX(-50%); background: var(--teal-200); }

.tech-ring-2{
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: rotate 25s linear infinite reverse;
}
@keyframes rotate{ to{ transform: rotate(360deg); } }

/* Brand tag pills */
.hero-tag-list{
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tag-pill{
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(20, 184, 166, .04);
  border: 1px solid var(--line);
  color: var(--text-mute);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ============================================================
   EV SECTION — TABS VF3-VF9
   ============================================================ */
.ev-section{
  background: linear-gradient(180deg, var(--bg-0) 0%, #030a0d 50%, var(--bg-0) 100%);
  position: relative;
  overflow: hidden;
}
.ev-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(20, 184, 166, .1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 80%, rgba(94, 234, 212, .08), transparent 60%);
  pointer-events: none;
}
.ev-section .wrap{ position: relative; z-index: 1; }

/* HUD-style decorative element */
.ev-hud{
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--teal-300);
  letter-spacing: .15em;
  opacity: .6;
  pointer-events: none;
  z-index: 1;
}
.ev-hud div{ margin-bottom: 6px; }

/* === Tab navigation === */
.ev-tabs{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 50px;
  flex-wrap: wrap;
  padding: 8px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.ev-tab{
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  padding: 12px 22px;
  background: transparent;
  border: none;
  color: var(--text-mute);
  cursor: pointer;
  transition: all .3s;
  position: relative;
  white-space: nowrap;
}
.ev-tab:hover{ color: var(--teal-200); }
.ev-tab.active{
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  color: #001a1a;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: var(--glow-sm);
}
.ev-tab.active::before{
  content: '';
  position: absolute;
  top: -1px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--teal-200);
  box-shadow: 0 0 8px var(--teal-200);
}

/* Tab content panels */
.ev-panel{
  display: none;
  animation: panel-fade .5s var(--ease) forwards;
}
.ev-panel.active{ display: block; }
@keyframes panel-fade{
  from{ opacity: 0; transform: translateY(15px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* Model spec dashboard */
.model-spec{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(20, 184, 166, .04) 0%, rgba(20, 184, 166, .01) 100%);
  border: 1px solid var(--line-medium);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  position: relative;
  overflow: hidden;
}
.model-spec::before{
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-300), transparent);
  animation: hud-line 4s linear infinite;
}
@keyframes hud-line{
  0%{ transform: translateX(-50%); }
  100%{ transform: translateX(50%); }
}

.model-info h3{
  font-size: 28px;
  margin-bottom: 8px;
  background: linear-gradient(120deg, var(--teal-200), var(--teal-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.model-info .model-tag{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--teal-300);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.model-info p{
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.75;
}

.model-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.model-stat{
  padding: 16px 18px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.model-stat .stat-label{
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.model-stat .stat-value{
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--teal-200);
  line-height: 1;
}
.model-stat .stat-unit{
  font-size: 11px;
  color: var(--text-mute);
  margin-left: 4px;
  font-weight: 400;
}

/* Mod items grid */
.mods-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mod-card{
  position: relative;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(20, 184, 166, .03) 0%, transparent 100%);
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  cursor: default;
  overflow: hidden;
}
.mod-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-300), transparent);
  transition: left .6s;
}
.mod-card:hover{
  border-color: var(--teal-400);
  background: linear-gradient(180deg, rgba(20, 184, 166, .08) 0%, transparent 100%);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(20, 184, 166, .3);
}
.mod-card:hover::before{ left: 100%; }
.mod-card:hover .mod-icon{
  color: var(--teal-200);
  transform: scale(1.1);
}

.mod-icon{
  width: 36px;
  height: 36px;
  color: var(--teal-300);
  margin-bottom: 14px;
  transition: all .3s;
}
.mod-icon svg{ width: 100%; height: 100%; }

.mod-card h4{
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--text);
}
.mod-card p{
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.6;
}

/* ============================================================
   GALLERY / ALBUM
   ============================================================ */
.gallery-section{
  background: var(--bg-0);
  position: relative;
}

.gallery-filters{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter{
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--line-medium);
  color: var(--text-mute);
  cursor: pointer;
  transition: all .3s;
  font-weight: 500;
}
.gallery-filter:hover{
  color: var(--teal-200);
  border-color: var(--teal-400);
}
.gallery-filter.active{
  background: var(--teal-400);
  color: var(--bg-0);
  border-color: var(--teal-400);
  box-shadow: var(--glow-sm);
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 240px;
}

.gallery-item{
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--bg-1);
  transition: all .4s var(--ease);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.gallery-item.tall{ grid-row: span 2; }
.gallery-item.wide{ grid-column: span 2; }

.gallery-placeholder{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--teal-300);
  position: relative;
  overflow: hidden;
}
.gallery-placeholder::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(94, 234, 212, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 234, 212, .04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.gallery-placeholder svg{
  width: 48px;
  height: 48px;
  opacity: .6;
  position: relative;
  z-index: 1;
}
.gallery-placeholder span{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  position: relative;
  z-index: 1;
}

.gallery-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 17, .95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s;
}
.gallery-item:hover{
  border-color: var(--teal-400);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -10px rgba(20, 184, 166, .3);
}
.gallery-item:hover .gallery-overlay{ opacity: 1; }
.gallery-overlay h4{
  color: var(--text);
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.3;
}
.gallery-overlay span{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--teal-300);
  text-transform: uppercase;
}

.gallery-cta{
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: rgba(20, 184, 166, .03);
  border: 1px dashed var(--line-medium);
  font-size: 14px;
  color: var(--text-mute);
}
.gallery-cta strong{ color: var(--teal-200); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.why-card{
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  transition: all .4s;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  overflow: hidden;
}
.why-card::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(20, 184, 166, .15), transparent 70%);
  pointer-events: none;
}
.why-card:hover{
  border-color: var(--teal-400);
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(20, 184, 166, .25);
}

.why-num{
  font-family: 'Saira', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  background: linear-gradient(180deg, var(--teal-200), var(--teal-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
  min-width: 80px;
  letter-spacing: -.04em;
}

.why-content h3{
  font-size: 21px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.3;
}
.why-content p{
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.75;
}
.why-content strong{ color: var(--teal-200); }

/* ============================================================
   PROCESS FLOW (replaces pricing)
   ============================================================ */
.process-section{
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  position: relative;
  overflow: hidden;
}

.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

.process-step{
  position: relative;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--bg-1);
  transition: all .3s;
}
.process-step + .process-step{ border-left: none; }

.process-step::before{
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  z-index: 2;
}
.process-step:last-child::before{ display: none; }

.process-step:hover{
  background: var(--bg-2);
  border-color: var(--teal-400);
  z-index: 3;
}
.process-step:hover::before{
  background: var(--bg-2);
  border-top-color: var(--teal-400);
  border-right-color: var(--teal-400);
}

.process-num{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--teal-300);
  margin-bottom: 16px;
}
.process-icon{
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--teal-300);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-icon svg{ width: 100%; height: 100%; }
.process-step h3{
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}
.process-step p{
  color: var(--text-mute);
  font-size: 13.5px;
  line-height: 1.65;
}

.process-cta{
  margin-top: 50px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(20, 184, 166, .08) 0%, rgba(20, 184, 166, .02) 100%);
  border: 1px solid var(--teal-700);
  text-align: center;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.process-cta h3{
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--teal-200);
  line-height: 1.3;
}
.process-cta p{
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking-section{
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  position: relative;
}

.booking-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}

.booking-form-wrap{
  padding: 48px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line-strong);
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  position: relative;
}
.booking-form-wrap::before{
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ============================================================
   MARQUEE BANNER
   ============================================================ */
.marquee-banner{
  background: linear-gradient(90deg, var(--teal-700), var(--teal-500), var(--teal-700));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--teal-400);
  border-bottom: 1px solid var(--teal-400);
  position: relative;
}
.marquee-track{
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span{
  font-family: 'Saira', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .15em;
  color: #001a1a;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee-track span::before{
  content: '◆';
  color: rgba(0, 26, 26, .4);
  font-size: 10px;
}
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .mods-grid{ grid-template-columns: repeat(2, 1fr); }
  .hero .wrap{ grid-template-columns: 1fr; gap: 40px; }
  .hero-visual{ height: 420px; order: -1; }
  .booking-grid{ grid-template-columns: 1fr; gap: 36px; }
  .why-grid{ grid-template-columns: 1fr; }
  .model-spec{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }

  .process-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-step::before{ display: none; }
  .process-step + .process-step{ border-left: 1px solid var(--line); }
}

@media (max-width: 768px){
  .services-grid{ grid-template-columns: 1fr; }
  .mods-grid{ grid-template-columns: 1fr; }
  .gallery-grid{
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.tall{ grid-row: span 1; }
  .gallery-item.wide{ grid-column: span 1; }

  .hero-stats{ grid-template-columns: 1fr; gap: 16px; }
  .hero h1{ font-size: 36px; }
  .why-card{ padding: 28px; flex-direction: column; gap: 16px; }
  .why-num{ font-size: 52px; min-width: auto; }
  .booking-form-wrap{ padding: 28px; }
  .process-grid{ grid-template-columns: 1fr; }
  .ev-tabs{ width: 100%; overflow-x: auto; justify-content: flex-start; }
  .ev-tab{ flex-shrink: 0; }
}

/* ============================================================
   CONSULTATION SECTION (Tư vấn miễn phí)
   ============================================================ */
.consultation-section{
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.consultation-section::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(20, 184, 166, .06), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.consultation-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.consultation-content h2{
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 18px 0 18px;
  line-height: 1.25;
  letter-spacing: -.015em;
}

.consultation-content > p{
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.75;
  margin-bottom: 32px;
}

.consultation-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.consultation-item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(20, 184, 166, .03);
  border-left: 2px solid var(--teal-400);
  transition: all .3s;
}
.consultation-item:hover{
  background: rgba(20, 184, 166, .06);
  border-left-color: var(--teal-200);
  transform: translateX(4px);
}

.consultation-icon{
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, .1);
  color: var(--teal-200);
  border-radius: 50%;
}
.consultation-icon svg{ width: 18px; height: 18px; }

.consultation-item h4{
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
  line-height: 1.3;
}
.consultation-item p{
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.6;
}

.consultation-ctas{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Chat mockup card */
.consultation-visual{
  position: relative;
}
.consultation-card{
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line-strong);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(20, 184, 166, .25);
}
.consultation-card-header{
  padding: 14px 20px;
  background: rgba(20, 184, 166, .05);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--teal-200);
}
.status-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

.consultation-card-body{
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 380px;
}

.chat-bubble{
  max-width: 80%;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.55;
  position: relative;
}
.chat-bubble.customer{
  align-self: flex-end;
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 16px 16px 4px 16px;
}
.chat-bubble.shop{
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(20, 184, 166, .15) 0%, rgba(20, 184, 166, .05) 100%);
  color: var(--text);
  border: 1px solid var(--line-medium);
  border-radius: 16px 16px 16px 4px;
}
.chat-bubble p{ margin: 0; }

.typing{
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(20, 184, 166, .06);
  border-radius: 16px;
  width: fit-content;
}
.typing span{
  width: 6px;
  height: 6px;
  background: var(--teal-300);
  border-radius: 50%;
  animation: typing-bounce 1.4s ease-in-out infinite;
}
.typing span:nth-child(2){ animation-delay: .2s; }
.typing span:nth-child(3){ animation-delay: .4s; }
@keyframes typing-bounce{
  0%, 60%, 100%{ transform: translateY(0); opacity: .4; }
  30%{ transform: translateY(-6px); opacity: 1; }
}

/* ============================================================
   COMMITMENTS SECTION
   ============================================================ */
.commitments-section{
  background: var(--bg-0);
  position: relative;
}
.commitments-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.commitment-card{
  position: relative;
  padding: 36px 30px;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: all .4s var(--ease);
  text-align: center;
}
.commitment-card:hover{
  border-color: var(--teal-400);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -20px rgba(20, 184, 166, .3);
}
.commitment-card:hover .commitment-icon{
  color: var(--teal-200);
  transform: scale(1.1);
}

.commitment-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--teal-300);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, .06);
  border: 1px solid var(--line-medium);
  border-radius: 50%;
  transition: all .4s var(--ease);
}
.commitment-icon svg{ width: 32px; height: 32px; }

.commitment-card h3{
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.35;
  color: var(--text);
}
.commitment-card p{
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section{
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  position: relative;
}

.faq-list{
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item{
  background: var(--bg-1);
  border: 1px solid var(--line);
  transition: all .3s;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  overflow: hidden;
}
.faq-item:hover{
  border-color: var(--line-strong);
  background: var(--bg-2);
}
.faq-item[open]{
  border-color: var(--teal-400);
  background: linear-gradient(180deg, rgba(20, 184, 166, .04) 0%, var(--bg-1) 100%);
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  transition: color .3s;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary:hover{ color: var(--teal-200); }
.faq-item[open] summary{ color: var(--teal-200); }

.faq-icon{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal-300);
  transition: transform .3s var(--ease);
}
.faq-item[open] .faq-icon{ transform: rotate(180deg); }

.faq-content{
  padding: 0 26px 22px;
  animation: faq-fade-in .4s var(--ease);
}
@keyframes faq-fade-in{
  from{ opacity: 0; transform: translateY(-8px); }
  to{ opacity: 1; transform: translateY(0); }
}
.faq-content p{
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.75;
}
.faq-content strong{ color: var(--teal-200); }

.faq-cta{
  text-align: center;
  margin-top: 40px;
  padding: 22px;
  background: rgba(20, 184, 166, .04);
  border: 1px dashed var(--line-medium);
  font-size: 14.5px;
  color: var(--text-mute);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta a{
  color: var(--teal-200);
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}
.faq-cta a:hover{ color: var(--teal-300); }

/* ============================================================
   RESPONSIVE for new sections
   ============================================================ */
@media (max-width: 1024px){
  .consultation-grid{ grid-template-columns: 1fr; gap: 40px; }
  .commitments-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .commitments-grid{ grid-template-columns: 1fr; }
  .consultation-section{ padding: 80px 0; }
  .consultation-card-body{ min-height: auto; }
  .faq-item summary{ padding: 18px 20px; font-size: 15px; }
  .faq-content{ padding: 0 20px 18px; }
}
