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

:root {
  --black: #020617;
  --white: #ffffff;
  --orange: #FF6200;
  --orange-light: #FF9500;
  --orange-dark: #CC4E00;
  --gray-400: rgba(255,255,255,0.62);
  --gray-600: rgba(255,255,255,0.5);
  --red: #E53935;
  --green: #00A550;
  --radius: 4px;
  --radius-lg: 12px;
  --border: rgba(255,255,255,0.08);
  --navy: #081428;
  --navy-dark: #0d1f3c;
  --card: #102040;
  --section-dark-bg: #0b1830;
  --section-darker-bg: #102040;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Kanit', sans-serif;
  background: linear-gradient(160deg, #081428 0%, #0d1f3c 50%, #081428 100%);
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(135deg, #FF6200, #FF9500);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
}
.topbar span {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  margin: 0 12px;
  vertical-align: middle;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 20, 40, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-cta {
  background: linear-gradient(135deg, #FF6200, #FF9500);
  color: var(--white);
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: linear-gradient(135deg, #CC4E00, #e07a00); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 80px 5% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 98, 0, 0.12);
  border: 1px solid rgba(255, 98, 0, 0.3);
  color: var(--orange);
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-title .highlight {
  color: var(--orange);
  display: block;
}

.hero-subtitle {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--gray-400);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 400;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, #FF6200, #FF9500);
  color: var(--white);
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #CC4E00, #e07a00);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 98, 0, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }

/* ── HERO RIGHT - FORM ── */
.hero-right {
  background: #FFFFFF;
  border-left: 1px solid #E4EAF2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 6% 60px 6%;
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,85,0,0.06) 0%, transparent 62%);
  pointer-events: none;
}

.form-card {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 2;
}
.form-card-header {
  margin-bottom: 32px;
}
.form-card-header h2 {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #0E1F3D;
  line-height: 1.2;
  margin-bottom: 8px;
}
.form-card-header h2 span { color: var(--orange); }
.form-card-header p {
  font-size: 14px;
  color: #6A7A90;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #3A4A62;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group label .req { color: var(--orange); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #F2F6FA;
  border: 1px solid #D0DAE8;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: 'Inter', 'Kanit', sans-serif;
  font-size: 15px;
  color: #1A2E48;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  outline: none;
}
.form-group input::placeholder { color: #A0AEBB; }
.form-group select option { color: rgba(77, 76, 77, 0.9); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: #EAF1FB;
}
.form-group 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 fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, #FF6200, #FF9500);
  color: var(--white);
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 16px;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: linear-gradient(135deg, #CC4E00, #e07a00);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 98, 0, 0.3);
}
.form-submit svg { width: 20px; height: 20px; }

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5A6E80;
}
.trust-icon {
  width: 16px; height: 16px;
  fill: var(--green);
  flex-shrink: 0;
}

/* ── HOW IT WORKS ── */
.section { padding: 100px 8%; }
.section-dark {
  background: var(--section-dark-bg);
}
.section-black { background: var(--section-darker-bg); }

.section-label {
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--orange); }
.section-desc {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.78;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step-item {
  padding: 0 24px;
  position: relative;
  text-align: center;
}
.step-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #FF6200, #FF9500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.step-time {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── WHY US ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-item {
  background: var(--card);
  padding: 40px 32px;
  transition: background 0.2s;
}
.feature-item:hover { background: #14365c; }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(255, 98, 0, 0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 2; }
.feature-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.feature-desc {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.75;
}

/* ── PRICE PROMISE ── */
.price-section {
  background: linear-gradient(160deg, #081428 0%, #0d1f3c 50%, #081428 100%);
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.price-left h2 {
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 54px);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.price-left p {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
}
.price-left .btn-black {
  background: linear-gradient(135deg, #FF6200, #FF9500);
  color: var(--white);
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.price-left .btn-black:hover { background: linear-gradient(135deg, #CC4E00, #e07a00); transform: translateY(-2px); }
.price-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card {
  background: rgba(16,32,64,0.6);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.price-card-icon {
  width: 44px; height: 44px;
  background: var(--card);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.price-card-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }
.price-card-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 2px;
}
.price-card-desc { font-size: 13px; color: var(--gray-400); }

/* ── REVIEWS ── */
.review-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 40px;
}

.review-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.review-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
}

.review-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  width: calc(33.333% - 16px);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #FF6200, #FF9500);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(255, 98, 0, 0.3);
}

.review-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(255, 98, 0, 0.4);
}

.review-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.review-nav-prev {
  left: -20px;
}

.review-nav-next {
  right: -20px;
}

.review-nav svg {
  width: 24px;
  height: 24px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: linear-gradient(135deg, #FF6200, #FF9500);
  border-color: #FF6200;
  transform: scale(1.2);
}

.review-dot:hover:not(.active) {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255, 98, 0, 0.2);
}

.review-customer-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(255, 98, 0, 0.2);
  border: 3px solid var(--border);
}

.review-customer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.review-customer-image:hover img {
  transform: scale(1.05);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  width: 20px;
  height: 20px;
  fill: #FF9500;
  transition: transform 0.2s ease;
}

.star:hover {
  transform: scale(1.1);
}

.review-text {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}

.review-text strong {
  color: #ffffff;
  font-weight: 600;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.review-author-info {
  flex: 1;
}

.review-details {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.review-car {
  font-size: 13px;
  color: var(--orange);
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
}

.review-location {
  font-size: 13px;
  color: var(--gray-600);
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.review-location::before {
  content: "•";
  margin-right: 8px;
  color: var(--gray-600);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 98, 0, 0.2);
}

.review-customer-name {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  line-height: 1.2;
}


.review-meta {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 2px;
}

.review-tag {
  margin-left: auto;
  background: rgba(0, 165, 80, 0.15);
  border: 1px solid rgba(0, 165, 80, 0.3);
  color: #4caf50;
  font-size: 12px;
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .review-card {
    width: calc(33.333% - 16px);
  }
}

@media (max-width: 900px) {
  .review-slider-container {
    padding: 30px 40px;
  }
  
  .review-card {
    width: calc(50% - 12px);
  }
  
  .review-nav {
    width: 40px;
    height: 40px;
  }
  
  .review-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .review-nav-prev {
    left: 10px;
  }
  
  .review-nav-next {
    right: 10px;
  }
}

@media (max-width: 600px) {
  .review-slider-container {
    padding: 20px;
    margin: 40px 0 0;
  }
  
  .review-card {
    width: 100%;
    padding: 24px;
  }
  
  .review-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .review-text {
    font-size: 15px;
  }
  
  .review-name {
    font-size: 15px;
  }
  
  .review-nav {
    display: none;
  }
}

/* ── TICKER ── */
.ticker-wrap {
  background: linear-gradient(135deg, #FF6200, #FF9500);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

/* ── CAR TYPES ── */
.car-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.car-type-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.car-type-card:hover {
  border-color: var(--orange);
  background: #143a6a;
  transform: translateY(-4px);
}
.car-type-icon {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}
.car-type-name {
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}
.car-type-desc {
  font-size: 13px;
  color: var(--gray-400);
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--gray-400);
  transition: all 0.2s;
}
.faq-item.open .faq-icon {
  border-color: var(--orange);
  color: var(--orange);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.78;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(160deg, #081428 0%, #0d1f3c 50%, #081428 100%);
  border-top: 1px solid var(--border);
  padding: 100px 8%;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.cta-section h2 span { color: var(--orange); }
.cta-section p {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 40px;
}
.cta-phone {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--orange);
  letter-spacing: -0.02em;
  display: block;
  text-decoration: none;
  margin-bottom: 32px;
  transition: opacity 0.2s;
}
.cta-phone:hover { opacity: 0.8; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 48px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
}
.footer-logo span { color: var(--orange); }
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 14px;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px;   color: var(--gray-600); }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 200;
  background: linear-gradient(135deg, #FF6200, #FF9500);
  color: var(--white);
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 98, 0, 0.3);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float-bounce 3s ease-in-out infinite;
}
.float-cta:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 40px rgba(255, 98, 0, 0.4); }
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-cta svg { width: 18px; height: 18px; fill: var(--white); }

/* ── TOAST ── */
.toast {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--orange);
  color: var(--white);
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  z-index: 999;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.toast.is-visible { display: block; }

/* ── MODAL ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-visible {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--white);
}

.modal-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.modal-body {
  color: var(--gray-400);
  line-height: 1.8;
  font-size: 15px;
}

.modal-body p {
  margin-bottom: 20px;
}

.modal-body strong {
  color: var(--orange);
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 6%; }
  .hero-right { border-left: none; border-top: 1px solid var(--border); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .price-section { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .car-types { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .section { padding: 60px 6%; }
  nav { padding: 0 4%; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .float-cta { bottom: 20px; right: 20px; font-size: 14px; padding: 12px 18px; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .car-types { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
}
