/* ═══════════════════════════════════════════════════════
   MTRAVEL — styles.css
   Design tokens → Base → Layout → Components → Sections
════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --navy:      #1a2b4a;
  --navy-dark: #111d33;
  --gold:      #D4A853;
  --gold-light:#f0cc80;
  --white:     #ffffff;
  --off-white: #f8f7f4;
  --light-bg:  #f4f3ef;
  --text:      #2c3e50;
  --text-muted:#6b7a8d;
  --border:    #dde3ec;
  --error:     #c0392b;
  --success:   #27ae60;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(26,43,74,0.08);
  --shadow:    0 4px 24px rgba(26,43,74,0.12);
  --shadow-lg: 0 12px 48px rgba(26,43,74,0.16);

  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --nav-h: 72px;
  --max-w: 1160px;
  --section-v: 96px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Typography ─────────────────────────────────────── */
h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.15; }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.25; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.35; }
h4 { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }

/* ── Layout helpers ─────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: var(--section-v) 0; }
.bg-light     { background: var(--light-bg); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,168,83,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-large { padding: 18px 36px; font-size: 1rem; border-radius: 10px; }

.btn-arrow { flex-shrink: 0; transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── Section headers ────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header h2 { margin: 8px 0 16px; color: var(--navy); }
.section-header p  { color: var(--text-muted); font-size: 1.05rem; }

.section-header-light { color: var(--white); }
.section-header-light h2 { color: var(--white); }
.section-header-light p  { color: rgba(255,255,255,0.75); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-label-light { color: var(--gold-light); }


/* ════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(17,29,51,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-m      { color: var(--gold); }
.logo-travel { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.28s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  overflow: hidden;

  /* Gradient background — replace with background-image for a real photo */
  background:
    linear-gradient(160deg, var(--navy-dark) 0%, #1f3a6e 50%, #0d1f3c 100%);
}

/* Decorative animated circles */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: pulse 8s ease-in-out infinite;
}
.hero::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31,58,110,0.4) 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.12); opacity: 0.7; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,29,51,0.4) 0%, rgba(17,29,51,0.1) 60%, rgba(17,29,51,0.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,83,0.18);
  border: 1px solid rgba(212,168,83,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  z-index: 1;
  transition: color 0.2s;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-placeholder {
  aspect-ratio: 1;
  max-width: 360px;
  background: linear-gradient(135deg, #eef2f8 0%, #dce6f5 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: var(--shadow);
}

.about-image-placeholder svg { width: 100%; height: 100%; }

.tico-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  max-width: 260px;
}

.tico-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tico-badge strong { display: block; font-size: 0.9rem; color: var(--navy); }
.tico-badge span   { font-size: 0.75rem; color: var(--text-muted); }

.about-text .section-label { margin-bottom: 8px; }
.about-text h2   { color: var(--navy); margin-bottom: 20px; }
.about-text p    { color: var(--text-muted); margin-bottom: 14px; }
.about-text p strong { color: var(--text); }

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat strong { display: block; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.stat span   { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }


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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(26,43,74,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  transition: background 0.2s;
}
.service-card:hover .service-icon { background: rgba(212,168,83,0.15); color: var(--gold); }
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p  { color: var(--text-muted); font-size: 0.93rem; }

.service-card-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1f3a6e 100%);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-cta h3 { color: var(--white); margin-bottom: 10px; }
.service-card-cta p  { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.service-card-cta:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }


/* ════════════════════════════════════════════════════
   TRAVEL REQUEST FORM
════════════════════════════════════════════════════ */
.request {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #1f3a6e 100%);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

/* Fieldsets */
fieldset {
  border: none;
  margin-bottom: 36px;
}
fieldset legend {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  width: 100%;
}

.fieldset-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Form rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row-full { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label:not(.checkbox-label) {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.required { color: var(--error); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,43,74,0.1);
}

input.invalid, select.invalid, textarea.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

textarea { resize: vertical; min-height: 100px; }

.field-error {
  font-size: 0.8rem;
  color: var(--error);
  min-height: 16px;
  display: block;
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 16px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--navy);
  cursor: pointer;
  border-radius: 3px;
  padding: 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.consent-error { margin-bottom: 16px; }

/* Form footer */
.form-footer { border-top: 2px solid var(--border); padding-top: 28px; }

.form-submit-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(39,174,96,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--success);
}
.form-success h3 { color: var(--navy); font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 12px; }
.form-success p  { color: var(--text-muted); margin-bottom: 8px; max-width: 480px; margin-left: auto; margin-right: auto; }
.form-success .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
  margin-top: 24px;
}
.form-success .btn-outline:hover { background: var(--navy); color: var(--white); }


/* ════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, #1f3a6e 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.why-icon svg { width: 28px; height: 28px; }

.why-card h3 { color: var(--navy); margin-bottom: 10px; }
.why-card p  { color: var(--text-muted); font-size: 0.93rem; }


/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-logo { margin-bottom: 4px; display: inline-block; }

.tico-footer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  max-width: 280px;
}
.tico-footer-badge > span {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.tico-footer-badge strong { display: block; font-size: 0.85rem; color: var(--white); }
.tico-footer-badge small  { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

.footer-col h4 {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact svg { opacity: 0.5; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }


/* ════════════════════════════════════════════════════
   SCROLL ANIMATIONS (JS hooks)
════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }


/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 360px; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(17,29,51,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav-cta { border-radius: 0 !important; background: none !important; color: var(--gold) !important; padding: 12px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-card { padding: 28px 20px; }
  .form-row  { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .form-submit-wrap { flex-direction: column; align-items: stretch; }
  .form-submit-wrap .btn { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .about-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 48px; height: 1px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .tico-badge { right: 0; max-width: 220px; }
}
