/* ======================================================
   Marketing SMS Hub – Premium Light Theme
   Fonts: Sora (headings) · DM Sans (body) · DM Mono (code)
   ====================================================== */

/* ── CSS VARIABLES ── */
:root {
  /* Palette */
  --clr-primary:     #2563eb;
  --clr-primary-dk:  #1d4ed8;
  --clr-primary-lt:  #dbeafe;
  --clr-accent:      #7c3aed;
  --clr-accent-lt:   #ede9fe;
  --clr-green:       #059669;
  --clr-green-lt:    #d1fae5;
  --clr-amber:       #d97706;
  --clr-amber-lt:    #fef3c7;

  /* Neutrals */
  --clr-bg:          #f8fafc;
  --clr-bg-alt:      #f1f5f9;
  --clr-surface:     #ffffff;
  --clr-border:      #e2e8f0;
  --clr-text:        #0f172a;
  --clr-text-muted:  #64748b;
  --clr-text-light:  #94a3b8;

  /* Typography */
  --font-head:  'Sora', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --font-mono:  'DM Mono', monospace;

  /* Sizes */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.12);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: 260ms;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: var(--clr-primary-dk);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-border);
}
.btn-ghost:hover {
  border-color: var(--clr-primary);
  background: var(--clr-primary-lt);
}
.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: #fff;
}
.btn-sm { padding: 9px 20px; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── HIGHLIGHT ── */
.highlight {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION COMMONS ── */
.section { padding: 96px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--clr-text);
}
.section-desc {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248,250,252,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  border-bottom-color: var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-text);
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .95rem;
}
.logo-text strong { color: var(--clr-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover { color: var(--clr-text); background: var(--clr-bg-alt); }
.nav-links a.active { color: var(--clr-primary); }
.nav-cta {
  background: var(--clr-primary) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 12px rgba(37,99,235,.3);
}
.nav-cta:hover { background: var(--clr-primary-dk) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #dbeafe 0%, transparent 70%);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ede9fe 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #d1fae5 0%, transparent 70%);
  top: 30%; left: 45%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5,150,105,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(5,150,105,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  width: fit-content;
}
.stat-card { text-align: center; padding: 0 20px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
}
.stat-unit { font-size: 1.3rem; font-weight: 700; color: var(--clr-primary); }
.stat-label { display: block; font-size: .75rem; color: var(--clr-text-muted); margin-top: 4px; }
.stat-divider { width: 1px; background: var(--clr-border); margin: 4px 0; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-frame {
  width: 260px;
  background: var(--clr-surface);
  border: 2px solid var(--clr-border);
  border-radius: 36px;
  padding: 16px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--clr-text-muted);
  font-family: var(--font-mono);
  margin-bottom: 14px;
  padding: 0 4px;
}
.phone-chat { display: flex; flex-direction: column; gap: 8px; }
.chat-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  color: var(--clr-primary);
  text-align: center;
  margin-bottom: 4px;
}
.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .82rem;
  line-height: 1.4;
  max-width: 82%;
  animation: bubbleIn .4s var(--ease) both;
}
.chat-bubble.incoming {
  background: var(--clr-primary-lt);
  color: var(--clr-primary-dk);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.outgoing {
  background: var(--clr-primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
.phone-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--clr-green);
  justify-content: center;
}
.metric-dot {
  width: 7px; height: 7px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

.floating-card {
  position: absolute;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
}
.floating-card i { font-size: 1.1rem; color: var(--clr-primary); }
.floating-card strong { display: block; font-weight: 700; font-family: var(--font-head); }
.floating-card span { font-size: .72rem; color: var(--clr-text-muted); }
.card-delivery { top: 40px; left: -40px; animation: float-y 3s ease-in-out infinite; }
.card-globe    { bottom: 60px; right: -30px; animation: float-y 3s ease-in-out infinite 1s; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ──────────────────────────────────────────
   TICKER
────────────────────────────────────────── */
.ticker-wrap {
  background: var(--clr-primary);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .03em;
}
.ticker-track .dot { color: rgba(255,255,255,.4); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────
   ROUTES
────────────────────────────────────────── */
.routes-section { background: var(--clr-bg); }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.route-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.route-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
}
.route-card.featured {
  background: linear-gradient(150deg, #eff6ff 0%, #f5f3ff 100%);
  border-color: var(--clr-primary);
  box-shadow: 0 6px 30px rgba(37,99,235,.15);
}
.route-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.route-icon {
  width: 52px; height: 52px;
  background: var(--clr-primary-lt);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-primary);
  margin-bottom: 18px;
}
.route-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.route-card p {
  font-size: .9rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.route-cr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cr-label { font-size: .78rem; color: var(--clr-text-muted); }
.cr-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--clr-green);
}
.route-bar {
  height: 6px;
  background: var(--clr-bg-alt);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}
.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.route-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.route-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--clr-text-muted);
}
.route-features li i { color: var(--clr-green); font-size: .78rem; }

/* ──────────────────────────────────────────
   INDUSTRIES
────────────────────────────────────────── */
.industries-section { background: var(--clr-bg-alt); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}
.ind-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--clr-primary-lt), var(--clr-accent-lt));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-primary);
  margin: 0 auto 14px;
}
.industry-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.ind-cr {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
  color: var(--clr-green);
  background: var(--clr-green-lt);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.industry-card p {
  font-size: .82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ──────────────────────────────────────────
   FEATURES BENTO
────────────────────────────────────────── */
.features-section { background: var(--clr-bg); }

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}
.bento-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}
.bento-wide { grid-column: span 2; }
.bento-icon {
  width: 48px; height: 48px;
  background: var(--clr-primary-lt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-primary);
  margin-bottom: 16px;
}
.bento-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.bento-card p { font-size: .9rem; color: var(--clr-text-muted); line-height: 1.6; }
.bento-metric {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
  padding: 5px 14px;
  border-radius: 50px;
}

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testimonials-section { background: var(--clr-bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.testi-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--clr-amber); margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p {
  font-size: .93rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; }
.testi-author span { font-size: .78rem; color: var(--clr-text-muted); }

.trust-logos { text-align: center; }
.trust-label { font-size: .82rem; color: var(--clr-text-muted); margin-bottom: 20px; }
.logos-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.logo-pill {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  padding: 8px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--clr-text-muted);
  transition: border-color var(--dur), color var(--dur);
}
.logo-pill:hover { border-color: var(--clr-primary); color: var(--clr-primary); }

/* ──────────────────────────────────────────
   CONTACT
────────────────────────────────────────── */
.contact-section { background: var(--clr-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.contact-desc {
  color: var(--clr-text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-details li { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon {
  width: 40px; height: 40px;
  background: var(--clr-primary-lt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.contact-details strong { display: block; font-size: .85rem; font-weight: 600; }
.contact-details a, .contact-details span {
  font-size: .9rem;
  color: var(--clr-text-muted);
}
.contact-details a:hover { color: var(--clr-primary); }

.contact-form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--clr-text); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { resize: vertical; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--clr-text);
  color: rgba(255,255,255,.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer-brand .logo-light .logo-text { color: #fff; }
.footer-brand .logo-light .logo-text strong { color: #93c5fd; }
.footer-brand p {
  font-size: .88rem;
  margin: 14px 0 24px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background var(--dur), color var(--dur);
}
.footer-socials a:hover { background: var(--clr-primary); color: #fff; }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .87rem;
  transition: color var(--dur);
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { transition: color var(--dur); }
.footer-links a:hover { color: #fff; }

/* ──────────────────────────────────────────
   TOAST
────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--clr-text);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  transform: translateY(80px);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  z-index: 9999;
  pointer-events: none;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--clr-green); }
.toast.error   { border-left: 4px solid #ef4444; }

/* ──────────────────────────────────────────
   REVEAL ANIMATIONS
────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .features-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .hamburger { display: flex; }

  .hero { padding: 110px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-stats { flex-wrap: wrap; width: 100%; }
  .stat-divider { display: none; }
  .stat-card { padding: 10px 16px; flex: 1 1 40%; }

  .routes-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .features-bento { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .industries-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { display: none; }
  .floating-card { display: none; }
}
