@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --brand: #0c47a4;
  --brand-light: #1a5bc4;
  --brand-dark: #07306e;
  --brand-50: #eef4ff;
  --brand-100: #d9e6ff;
  --brand-200: #bcd4ff;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --text: #0f172a;
  --text-sub: #334155;
  --text-muted: #64748b;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-brand: 0 8px 32px rgba(12,71,164,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: min(1180px, 90%); margin: 0 auto; }
.container-sm { width: min(800px, 90%); margin: 0 auto; }
.container-lg { width: min(1320px, 92%); margin: 0 auto; }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; transition: all 0.2s ease;
  text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--brand); color: var(--white); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-light); border-color: var(--brand-light); transform: translateY(-1px); box-shadow: var(--shadow-brand); }
.btn-secondary { background: var(--white); color: var(--brand); border-color: var(--gray-200); }
.btn-secondary:hover { border-color: var(--brand); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--brand); border-color: transparent; }
.btn-ghost:hover { background: var(--brand-50); }
.btn-dark { background: var(--gray-900); color: var(--white); border-color: var(--gray-900); }
.btn-dark:hover { background: var(--gray-800); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-white { background: var(--white); color: var(--brand); border-color: var(--white); }
.btn-white:hover { background: var(--gray-50); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 20px 44px; font-size: 17px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

/* ======================== HEADER ======================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 44px; width: auto; }
.logo-text { font-weight: 800; font-size: 18px; color: var(--text); letter-spacing: -0.3px; }
.nav { display: flex; gap: 8px; align-items: center; }
.nav-link { padding: 8px 16px; color: var(--text-sub); font-weight: 500; font-size: 15px; border-radius: var(--radius-sm); transition: all 0.15s; }
.nav-link:hover { color: var(--brand); background: var(--brand-50); }
.nav-link.active { color: var(--brand); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: var(--radius-sm); }
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 1px; transition: all 0.2s; }

/* ======================== HERO ======================== */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(170deg, var(--white) 0%, var(--brand-50) 40%, var(--brand-100) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(12,71,164,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--gray-200);
  font-size: 13px; font-weight: 600; color: var(--text-sub);
  margin-bottom: 24px; box-shadow: var(--shadow-xs);
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px); font-weight: 800;
  line-height: 1.05; letter-spacing: -1.5px;
  color: var(--text); margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--brand); }
.hero-sub {
  font-size: 18px; line-height: 1.7; color: var(--text-sub);
  max-width: 480px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--brand); line-height: 1; }
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-img-wrapper {
  width: 100%; border-radius: var(--radius-2xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrapper img {
  width: 100%; display: block;
}
.hero-slider {
  width: 100%;
}
.hero-slider .comparison-slider {
  width: 100%;
}
.hero-slider .comparison-slider-wrapper {
  position: relative; width: 100%; aspect-ratio: 4/3;
  padding-bottom: 0; overflow: hidden;
}

/* ======================== TRUST BAR ======================== */
.trust-bar {
  padding: 56px 0; border-bottom: 1px solid var(--gray-100);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--brand-50); display: flex; align-items: center; justify-content: center;
  color: var(--brand); flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 15px; color: var(--text); font-weight: 600; }
.trust-text span { font-size: 13px; color: var(--text-muted); }

/* ======================== SECTIONS ======================== */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--gray-900); color: var(--white); }
.section-brand { background: var(--brand); color: var(--white); }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--brand); margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: var(--brand-200); }
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-desc { font-size: 17px; line-height: 1.7; color: var(--text-sub); max-width: 600px; }
.section-dark .section-desc { color: var(--gray-400); }

/* ======================== HOW IT WORKS ======================== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  padding: 36px 28px; border-radius: var(--radius-xl);
  background: var(--white); border: 1px solid var(--gray-200);
  transition: all 0.25s ease; position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.step-num {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; margin-bottom: 20px;
}
.step-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-card p { font-size: 15px; color: var(--text-sub); line-height: 1.7; }

/* ======================== PRICING ======================== */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.price-card {
  padding: 40px 32px; border-radius: var(--radius-xl);
  background: var(--white); border: 2px solid var(--gray-200);
  transition: all 0.25s ease; position: relative; display: flex; flex-direction: column;
}
.price-card:hover { box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--brand); box-shadow: var(--shadow-brand); }
.price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: var(--white);
  padding: 6px 20px; border-radius: 999px; font-size: 13px; font-weight: 700;
  white-space: nowrap;
}
.price-card-header { margin-bottom: 28px; }
.price-card-header h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.price-amount { font-size: 52px; font-weight: 800; color: var(--brand); letter-spacing: -2px; line-height: 1; }
.price-card ul { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.price-card li {
  padding: 11px 0; font-size: 15px; color: var(--text-sub);
  border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 10px;
}
.price-card li:last-child { border: none; }
.price-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-50); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.price-check svg { width: 12px; height: 12px; color: var(--brand); }

/* ======================== BEFORE/AFTER ======================== */
.ba-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ba-content .section-title { margin-bottom: 20px; }
.ba-features { display: grid; gap: 16px; margin-top: 32px; }
.ba-feature { display: flex; gap: 14px; align-items: start; }
.ba-feature-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--brand-50);
  display: flex; align-items: center; justify-content: center; color: var(--brand);
  flex-shrink: 0; margin-top: 2px;
}
.ba-feature strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 2px; }
.ba-feature span { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.comparison-slider {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); position: relative;
}
.comparison-slider-wrapper {
  position: relative; width: 100%; padding-bottom: 75%; overflow: hidden;
}
.comparison-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.comparison-image-before { z-index: 1; }
.comparison-image-after { z-index: 2; clip-path: inset(0 100% 0 0); }
.comparison-slider-handle {
  position: absolute; top: 0; left: 50%; width: 3px; height: 100%;
  background: var(--white); cursor: ew-resize; z-index: 10;
  transform: translateX(-50%); box-shadow: 0 0 16px rgba(0,0,0,0.25);
}
.comparison-slider-handle::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; background: var(--white); border-radius: 50%;
  box-shadow: var(--shadow); border: 2px solid var(--brand);
}
.comparison-slider-handle::after {
  content: '\2194'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 18px; color: var(--brand); font-weight: 700;
}
.comparison-labels {
  position: absolute; top: 16px; width: 100%; display: flex;
  justify-content: space-between; padding: 0 16px; z-index: 5; pointer-events: none;
}
.comparison-label {
  background: rgba(0,0,0,0.55); color: var(--white); padding: 6px 14px;
  border-radius: 6px; font-weight: 600; font-size: 13px; backdrop-filter: blur(8px);
}

/* ======================== REVIEWS ======================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  padding: 32px; border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); background: var(--white);
  transition: all 0.25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--warning); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.review-card p { color: var(--text-sub); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--brand-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-weight: 700; font-size: 16px;
}
.review-name { font-weight: 600; font-size: 15px; color: var(--text); }

/* ======================== CTA BANNER ======================== */
.cta-banner {
  padding: 80px 0; background: var(--brand);
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                     radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  text-align: center;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-white { font-size: 16px; padding: 16px 36px; }

/* ======================== PROCESS ======================== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-grid-3x2 { grid-template-columns: repeat(3, 1fr); }
.process-card {
  padding: 32px 24px; border-radius: var(--radius-xl); text-align: center;
  background: var(--white); border: 1px solid var(--gray-200);
  transition: all 0.25s ease;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.process-num {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; margin: 0 auto 16px;
}
.process-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-card p { font-size: 14px; color: var(--text-sub); line-height: 1.6; }

/* ======================== VIDEO ======================== */
.video-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.video-showcase {
  border-radius: var(--radius-2xl); overflow: hidden; position: relative;
  box-shadow: var(--shadow-xl); max-width: 500px; margin: 0 auto;
}
.video-showcase video { width: 100%; display: block; aspect-ratio: 9/16; object-fit: cover; }
.audio-btn {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  color: var(--text); border: 1px solid var(--gray-200);
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.audio-btn:hover { background: var(--white); box-shadow: var(--shadow); }

/* ======================== TEAM ======================== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.team-card {
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--white); border: 1px solid var(--gray-200);
  transition: all 0.25s ease;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-photo { aspect-ratio: 16/10; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-info { padding: 28px 32px; }
.team-info h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--brand); font-weight: 600; margin-bottom: 12px; }
.team-info p { font-size: 15px; color: var(--text-sub); line-height: 1.7; }

/* Mission */
.mission-card {
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--radius-xl); padding: 56px 48px; text-align: center;
  max-width: 800px; margin: 64px auto 0;
}
.mission-icon {
  width: 56px; height: 56px; margin: 0 auto 20px; background: var(--brand);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--white);
}
.mission-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.mission-card p { font-size: 16px; line-height: 1.8; color: var(--text-sub); max-width: 640px; margin: 0 auto; }

/* ======================== FAQ ======================== */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  margin-bottom: 10px; overflow: hidden; transition: all 0.2s ease;
  background: var(--white);
}
.faq-item:hover { border-color: var(--brand-200); }
.faq-item[open] { border-color: var(--brand); box-shadow: 0 2px 12px rgba(12,71,164,0.08); }
.faq-item summary {
  padding: 20px 24px; font-weight: 600; font-size: 16px; color: var(--text);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--brand);
  width: 32px; height: 32px; border-radius: 50%; background: var(--brand-50);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item[open] summary::after { content: '\2212'; background: var(--brand); color: var(--white); }
.faq-item p { padding: 0 24px 20px; color: var(--text-sub); line-height: 1.7; font-size: 15px; }

/* ======================== BOOKING ======================== */
.booking-section { max-width: 800px; margin: 0 auto; }
.delivery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 40px; }
.delivery-card {
  background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 24px 16px; cursor: pointer; transition: all 0.2s ease; text-align: center; position: relative;
}
.delivery-card:hover { border-color: var(--brand-200); transform: translateY(-2px); box-shadow: var(--shadow); }
.delivery-card.active { border-color: var(--brand); background: var(--brand-50); box-shadow: var(--shadow-brand); }
.delivery-card.active::after {
  content: '\2713'; position: absolute; top: 8px; right: 8px;
  width: 22px; height: 22px; background: var(--brand); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.delivery-icon {
  width: 44px; height: 44px; margin: 0 auto 12px; background: var(--brand-50);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--brand);
}
.delivery-card.active .delivery-icon { background: var(--brand); color: var(--white); }
.delivery-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.delivery-card span { font-size: 13px; color: var(--text-muted); }

.booking-form {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow);
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 6px; }
.form-hint { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; background: var(--gray-50); color: var(--text); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 12px 16px; font: inherit; font-size: 15px; transition: all 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(12,71,164,0.08); background: var(--white);
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%2394a3b8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-status { min-height: 20px; margin-top: 12px; font-size: 14px; font-weight: 500; }
.address-grid { display: grid; gap: 12px; }
.address-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
.shipping-info {
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
}
.shipping-info strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 8px; }
.shipping-info p { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin: 0; }

/* Sidebar cards on booking page */
.info-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.info-icon {
  width: 36px; height: 36px; background: var(--brand-50); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0;
}
.service-block { padding: 16px; background: var(--gray-50); border-radius: var(--radius); margin-bottom: 10px; }
.service-block:last-child { margin-bottom: 0; }
.service-block-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.service-block h4 { font-size: 15px; font-weight: 600; color: var(--text); }
.service-block .price { font-size: 18px; font-weight: 700; color: var(--brand); }
.service-block p { font-size: 14px; color: var(--text-sub); line-height: 1.6; }

.timeline { list-style: none; }
.timeline li { padding: 14px 0 14px 40px; position: relative; border-bottom: 1px solid var(--gray-100); }
.timeline li:last-child { border: none; }
.timeline-num {
  position: absolute; left: 0; top: 14px;
  width: 28px; height: 28px; background: var(--brand); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 13px;
}
.timeline strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 2px; }
.timeline span { font-size: 14px; color: var(--text-muted); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-tile {
  text-align: center; padding: 24px 16px; background: var(--gray-50);
  border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
}
.contact-tile-icon {
  width: 44px; height: 44px; margin: 0 auto 12px; background: var(--brand-50);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--brand);
}
.contact-tile strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 4px; }
.contact-tile a { color: var(--brand); font-weight: 500; font-size: 14px; }
.contact-tile span { color: var(--text-muted); font-size: 14px; }

.info-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ======================== FOOTER ======================== */
.site-footer { background: var(--gray-900); color: var(--white); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand p { color: var(--gray-400); font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-heading { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--gray-400); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--gray-300); font-size: 14px; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: var(--gray-500); font-size: 13px; }
.to-top {
  color: var(--gray-500); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px; border-radius: var(--radius-sm); font-size: 14px; transition: all 0.15s;
}
.to-top:hover { color: var(--white); border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }

/* ======================== RESPONSIVE ======================== */
@media (min-width: 768px) {
  .address-row { grid-template-columns: 2fr 1fr 1fr; }
  .booking-form { padding: 48px; }
}
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-slider { max-width: 520px; margin: 0 auto; }
  .hero h1 { font-size: clamp(36px, 6vw, 52px); }
  .ba-layout { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .video-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .video-showcase { max-width: 360px; }
  .video-showcase video { aspect-ratio: 9/14; }
}
@media (max-width: 920px) {
  .steps-grid, .reviews-grid { grid-template-columns: 1fr; }
  .process-grid, .process-grid-3x2 { grid-template-columns: 1fr 1fr; }
  .pricing-grid, .pricing-grid[style*="repeat(4"] { grid-template-columns: 1fr 1fr !important; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-grid-2col { grid-template-columns: 1fr; }

  .nav {
    position: fixed; inset: 72px 0 auto 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 20px; display: none; flex-direction: column; gap: 4px;
    z-index: 99; box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; }
  .nav-link { padding: 12px 16px; font-size: 16px; width: 100%; border-radius: var(--radius-sm); }
  .nav-link:hover { background: var(--gray-50); }
}
@media (max-width: 640px) {
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .pricing-grid, .pricing-grid[style*="repeat(4"] { grid-template-columns: 1fr !important; }
  .process-grid, .process-grid-3x2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 64px; }
  .section { padding: 64px 0; }
  .hero-floating-badge { display: none; }
  .hero-visual { max-width: 100%; }
  .hero-slider { max-width: 100%; }
  .hero-slider .comparison-slider { border-radius: var(--radius-lg); }
  .hero-slider .comparison-slider-handle::before { width: 36px; height: 36px; }
  .hero-slider .comparison-label { font-size: 12px; padding: 5px 10px; }
  .video-showcase { max-width: 300px; }
  .video-showcase video { aspect-ratio: 9/13; }
  .mission-card { padding: 36px 24px; }
  .booking-form { padding: 24px; }
  .info-card { padding: 24px; }
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: clamp(22px, 5vw, 32px); }
}
@media (max-width: 420px) {
  .delivery-grid { grid-template-columns: 1fr; }
}

/* ======================== ANIMATIONS ======================== */

/* Hero entrance - staggered load */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroPop {
  0% { opacity: 0; transform: scale(0.8) translateY(10px); }
  60% { transform: scale(1.02) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.hero .hero-badge { animation: heroPop 0.6s ease both; animation-delay: 0.1s; }
.hero h1 { animation: heroFadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero .hero-sub { animation: heroFadeUp 0.7s ease both; animation-delay: 0.4s; }
.hero .hero-ctas { animation: heroFadeUp 0.7s ease both; animation-delay: 0.55s; }
.hero .hero-stats { animation: heroFadeUp 0.7s ease both; animation-delay: 0.7s; }
.hero .hero-visual { animation: heroFadeIn 0.8s ease both; animation-delay: 0.5s; }
.hero .hero-slider { animation: heroFadeIn 0.8s ease both; animation-delay: 0.5s; }
.hero .section-eyebrow { animation: heroPop 0.6s ease both; animation-delay: 0.1s; }

/* Pulse on badge dot */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
}
.hero-badge-dot { animation: pulse 2s ease-in-out infinite; }

/* Scroll-triggered fade-up with stagger support */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }
.fade-up.delay-5 { transition-delay: 0.40s; }
.fade-up.delay-6 { transition-delay: 0.48s; }

/* Fade-in from left/right */
.fade-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fade-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fade-left.visible, .fade-right.visible { opacity: 1; transform: translateX(0); }

/* Scale-in */
.scale-in {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Counter number animation */
.hero-stat-num { display: inline-block; }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }
* { scrollbar-width: thin; scrollbar-color: var(--gray-400) var(--gray-100); }
