/* ============================================================
   CEAL — Concierge East Africa Limited
   Site Stylesheet v2 — Enhanced Design System
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  /* Brand */
  --blue:        #00AEEF;
  --blue-dark:   #0090c8;
  --blue-deep:   #005f8a;
  --blue-light:  #e0f6ff;
  --orange:      #F5821F;
  --orange-dark: #d96b10;
  --orange-light:#fff4e8;
  --navy:        #1B2B3B;
  --navy-light:  #243749;
  --navy-mid:    #2f4a61;

  /* Gradients */
  --grad-blue:    linear-gradient(135deg, #00AEEF 0%, #0077b6 100%);
  --grad-orange:  linear-gradient(135deg, #F5821F 0%, #e05c00 100%);
  --grad-teal:    linear-gradient(135deg, #00c9a7 0%, #00AEEF 100%);
  --grad-purple:  linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  --grad-rose:    linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  --grad-amber:   linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --grad-green:   linear-gradient(135deg, #10b981 0%, #059669 100%);
  --grad-navy:    linear-gradient(135deg, #1B2B3B 0%, #2f4a61 100%);
  --grad-hero:    linear-gradient(110deg, rgba(27,43,59,.92) 0%, rgba(27,43,59,.72) 50%, rgba(27,43,59,.4) 100%);

  /* Text */
  --text:        #1a202c;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;
  --white:       #ffffff;

  /* Surfaces */
  --surface:     #f8fafc;
  --surface-2:   #f1f5f9;
  --border:      #e5e7eb;
  --border-light:#f1f5f9;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.13);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.16);
  --shadow-blue: 0 8px 24px rgba(0,174,239,.35);
  --shadow-orange: 0 8px 24px rgba(245,130,31,.35);

  /* Layout */
  --radius:     8px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-full:9999px;
  --max-w:      1200px;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Hanken Grotesk', system-ui, sans-serif;
  --font:       var(--font-body);

  /* Refreshed accents */
  --ink:        #0A141C;
  --teal:       #00C9A7;
  --periwinkle: #7C8CFF;
  --bg-page:    #FAFAF7;

  /* Watermark SVG patterns */
  --pattern-dots: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.5' fill='%2300AEEF' fill-opacity='.12'/%3E%3C/svg%3E");
  --pattern-grid: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' fill='none'/%3E%3Cpath d='M0 40L40 0M-10 10L10-10M30 50L50 30' stroke='%2300AEEF' stroke-opacity='.06' stroke-width='1'/%3E%3C/svg%3E");
  --pattern-chevron: url("data:image/svg+xml,%3Csvg width='30' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8 L15 0 L30 8' fill='none' stroke='%2300AEEF' stroke-opacity='.08' stroke-width='1'/%3E%3C/svg%3E");
}

/* --- Keyframes -------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes gradientShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -15px) scale(1.05); }
  66%       { transform: translate(-10px, 10px) scale(.97); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Scroll-reveal classes -------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);
}
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX( 32px); }
.reveal.visible    { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

/* --- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title,
.hero-stat strong, .stat-value, .mockup-stat-num, .pf-stat-num {
  font-family: var(--font-display);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .625rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,174,239,.15);
}

/* --- Layout ----------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--gray {
  background: var(--surface);
  background-image: var(--pattern-dots);
}
.section--navy {
  background: var(--navy);
  background-image: var(--pattern-grid);
  color: var(--white);
}
.section--gradient {
  background: linear-gradient(160deg, #f0faff 0%, #fff4ec 100%);
}

/* Wave dividers */
.wave-top, .wave-bottom {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }

/* Diagonal clip variant */
.clip-bottom { clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); padding-bottom: 6rem; }
.clip-top    { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%); padding-top: 6rem; }

/* --- Typography ------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.section-title span { color: var(--blue); }
.section-title--white { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}
.section-sub--white { color: rgba(255,255,255,.72); }
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }
.section-header--center .section-label { display: inline-flex; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  letter-spacing: .01em;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10,20,28,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #16232e;
  box-shadow: 0 12px 32px rgba(10,20,28,.45);
}

.btn-orange {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,130,31,.45);
  filter: brightness(1.08);
}

/* Pulse ring on orange CTA */
.btn-orange.btn-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid var(--orange);
  animation: pulse-ring 2s cubic-bezier(.4,0,.6,1) infinite;
  pointer-events: none;
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--blue);
  padding-left: 0;
  padding-right: 0;
  font-size: .875rem;
}
.btn-ghost:hover { gap: .75rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }

/* --- Gradient icon circles -------------------------------- */
.icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity var(--transition);
}
.icon-wrap:hover { transform: scale(1.1) rotate(-3deg); box-shadow: var(--shadow); }
.icon-wrap:hover::after { opacity: 1; }
.icon-wrap svg { width: 26px; height: 26px; stroke-width: 1.75; color: var(--white); position: relative; z-index: 1; }

.icon-wrap--blue   { background: var(--grad-blue); box-shadow: 0 6px 18px rgba(0,174,239,.35); }
.icon-wrap--orange { background: var(--grad-orange); box-shadow: 0 6px 18px rgba(245,130,31,.35); }
.icon-wrap--teal   { background: var(--grad-teal);   box-shadow: 0 6px 18px rgba(0,201,167,.35); }
.icon-wrap--purple { background: var(--grad-purple);  box-shadow: 0 6px 18px rgba(124,58,237,.35); }
.icon-wrap--rose   { background: var(--grad-rose);    box-shadow: 0 6px 18px rgba(244,63,94,.35); }
.icon-wrap--amber  { background: var(--grad-amber);   box-shadow: 0 6px 18px rgba(245,158,11,.35); }
.icon-wrap--green  { background: var(--grad-green);   box-shadow: 0 6px 18px rgba(16,185,129,.35); }

.icon-wrap--lg { width: 72px; height: 72px; border-radius: var(--radius-xl); }
.icon-wrap--lg svg { width: 34px; height: 34px; }
.icon-wrap--sm { width: 40px; height: 40px; border-radius: var(--radius); }
.icon-wrap--sm svg { width: 18px; height: 18px; }

/* Legacy icon-circle compat */
.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,174,239,.1);
  color: var(--blue);
  flex-shrink: 0;
}
.icon-circle svg { width: 22px; height: 22px; stroke-width: 1.75; }
.icon-circle--lg { width: 72px; height: 72px; }
.icon-circle--lg svg { width: 30px; height: 30px; }
.icon-circle--orange { background: rgba(245,130,31,.1); color: var(--orange); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(229,231,235,.7);
  transition: box-shadow var(--transition);
}
/* backdrop-filter lives on this pseudo-element rather than .site-header itself.
   A filter/backdrop-filter on .site-header would make it a containing block for
   its fixed-position descendants (the mobile .main-nav.open drawer), collapsing
   the drawer to the header's own ~72px height instead of the full viewport. */
.site-header::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition);
}
.site-header.scrolled::before {
  background: var(--white);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.09);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: .125rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: .3rem;
  padding: .45rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
}
.nav-link svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-link:hover, .nav-link.active { color: var(--blue); background: rgba(0,174,239,.08); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  min-width: 230px;
  padding: .625rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.97);
  transform-origin: top left;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0) scale(1);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: .75rem;
  padding: .55rem .85rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: var(--surface); color: var(--blue); }
.nav-dropdown a .icon-wrap--sm { flex-shrink: 0; }
.nav-dropdown a svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--blue);
}

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  font-size: .8rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem;
  background: var(--surface);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.header-phone:hover { border-color: var(--blue); color: var(--blue); }
.header-phone svg { color: var(--orange); width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: .5rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition);
}
.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: 100vh;   /* fallback for browsers without svh support */
  min-height: 100svh;  /* stable mobile viewport height — avoids the hero
                           jumping/resizing as the browser address bar
                           collapses/expands while scrolling */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-tow.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-hero);
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  z-index: 1;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #00AEEF 0%, transparent 70%);
  top: -100px; right: 5%;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #F5821F 0%, transparent 70%);
  bottom: 5%; left: 40%;
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,174,239,.15);
  border: 1px solid rgba(0,174,239,.35);
  color: #7dd9f8;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  animation: fadeIn .6s ease both;
}
.hero-badge svg { width: 13px; height: 13px; }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
  animation: fadeUp .65s .15s cubic-bezier(.16,1,.3,1) both;
}
.hero-title span {
  background: linear-gradient(90deg, #00AEEF, #7dd9f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 540px;
  animation: fadeUp .65s .3s cubic-bezier(.16,1,.3,1) both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
  animation: fadeUp .65s .45s cubic-bezier(.16,1,.3,1) both;
}

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  animation: fadeUp .65s .6s cubic-bezier(.16,1,.3,1) both;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat strong {
  display: block;
  font-size: 1.9rem; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: .3rem;
}
.hero-stat span {
  font-size: .75rem; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
/* Per-service gradient tops */
.service-card:nth-child(1)::before { background: var(--grad-blue); }
.service-card:nth-child(2)::before { background: var(--grad-purple); }
.service-card:nth-child(3)::before { background: var(--grad-teal); }
.service-card:nth-child(4)::before { background: var(--grad-amber); }
.service-card:nth-child(5)::before { background: var(--grad-green); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-card .icon-wrap { margin-bottom: 1.25rem; }
.service-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .55rem;
}
.service-card p {
  font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem;
}
.service-card .card-link {
  font-size: .82rem; font-weight: 700; color: var(--blue);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: .6rem; }
.service-card .card-link svg { width: 13px; height: 13px; }

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split--reverse .split-image { order: 2; }
.split--reverse .split-body  { order: 1; }

.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.split-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.split-image:hover img { transform: scale(1.04); }

.split-image-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: .7rem 1.1rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; color: var(--navy);
}
.split-image-badge .icon-wrap--sm { flex-shrink: 0; }
.split-image-badge svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--blue);
}

.feature-list { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.5rem; }
.feature-item { display: flex; align-items: flex-start; gap: .75rem; }
/* SVG check used directly inside feature-item (no .check wrapper) */
.feature-item > svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: .2rem;
  color: var(--blue); stroke-width: 2.5;
}
/* Optional .check wrapper variant */
.feature-item .check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: .1rem;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
}
.feature-item .check svg { width: 11px; height: 11px; color: white; stroke-width: 2.5; }
.feature-item span { font-size: .95rem; color: var(--text); line-height: 1.55; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--grad-blue);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--pattern-grid);
  opacity: .5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: .25rem;
}
.stat-item strong {
  font-size: 2.75rem; font-weight: 900;
  color: var(--white); line-height: 1;
  letter-spacing: -.03em;
}
.stat-item span { font-size: .8rem; color: rgba(255,255,255,.72); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.stat-divider {
  width: 1px; background: rgba(255,255,255,.2);
  margin: .5rem auto 0; height: 0;
  transition: height .6s ease;
}
.stat-item.visible .stat-divider { height: 40px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.why-card:hover { box-shadow: var(--shadow); border-color: var(--blue-light); }
.why-card:hover::after { transform: scaleX(1); }
.why-card .icon-wrap { margin-bottom: 1.25rem; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.why-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.clients-section { background: var(--surface); padding: 4rem 0; overflow: hidden; }
.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.client-logo {
  display: flex; align-items: center; justify-content: center;
  padding: .875rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
  min-width: 140px; flex-shrink: 0;
}
.client-logo:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.client-logo img { height: 38px; width: auto; object-fit: contain; }

/* ============================================================
   CRS PLATFORM SECTION
   ============================================================ */
.platform-section {
  background: var(--navy);
  background-image: var(--pattern-grid);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.platform-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,174,239,.12) 0%, transparent 70%);
  pointer-events: none;
}
.platform-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.platform-label { color: rgba(0,174,239,.9) !important; }
.platform-label::before { background: var(--blue) !important; }

.platform-body .section-title { color: var(--white); }
.platform-body .section-sub { color: rgba(255,255,255,.68); max-width: 500px; margin-bottom: 2.5rem; }

.platform-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.pf-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .875rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.pf-item:hover {
  background: rgba(0,174,239,.12);
  border-color: rgba(0,174,239,.3);
  transform: translateY(-2px);
}
.pf-item .icon-wrap--sm { flex-shrink: 0; }
.pf-text h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: .2rem; }
.pf-text p  { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.5; }

.platform-cta-row {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.platform-cta-note {
  font-size: .8rem; color: rgba(255,255,255,.45);
  display: flex; align-items: center; gap: .4rem;
}
.platform-cta-note svg { width: 14px; height: 14px; color: var(--blue); }

/* App Mockup */
.app-mockup {
  position: relative;
  perspective: 1000px;
}
.mockup-phone {
  background: #0d1b2a;
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(3deg);
  transition: transform .5s ease;
  max-width: 320px;
  margin: 0 auto;
}
.mockup-phone:hover { transform: rotateY(-3deg) rotateX(1deg); }
.mockup-notch {
  height: 32px; background: #0d1b2a;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mockup-notch::after {
  content: '';
  width: 80px; height: 12px;
  background: #1a2d3e;
  border-radius: 0 0 12px 12px;
  position: absolute; top: 0;
}
.mockup-screen {
  background: linear-gradient(180deg, #0f2233 0%, #0d1b2a 100%);
  padding: 1.25rem;
}
.mockup-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.mockup-greeting h3 {
  font-size: .78rem; font-weight: 700; color: var(--white);
  margin-bottom: .1rem;
}
.mockup-greeting p { font-size: .65rem; color: rgba(255,255,255,.45); }
.mockup-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: white;
}

.mockup-hero-card {
  background: var(--grad-blue);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.mockup-hero-card::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.mockup-card-label { font-size: .62rem; color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.mockup-card-title { font-size: 1rem; font-weight: 800; color: white; margin: .2rem 0 .5rem; }
.mockup-card-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.2); color: white;
  font-size: .68rem; font-weight: 700;
  padding: .35rem .75rem; border-radius: 20px;
  transition: background var(--transition);
}
.mockup-card-btn:hover { background: rgba(255,255,255,.3); }
.mockup-card-btn svg { width: 11px; height: 11px; }

.mockup-section-title { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }

.mockup-quick-actions {
  display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; margin-bottom: 1.25rem;
}
.mockup-qa {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.06);
  border-radius: 10px; padding: .6rem .25rem;
  transition: background var(--transition);
}
.mockup-qa:hover { background: rgba(0,174,239,.2); }
.mockup-qa-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.mockup-qa svg { width: 14px; height: 14px; color: white; }
.mockup-qa span { font-size: .55rem; font-weight: 600; color: rgba(255,255,255,.65); text-align: center; line-height: 1.3; }

.mockup-stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.25rem;
}
.mockup-stat {
  background: rgba(255,255,255,.06);
  border-radius: 12px; padding: .875rem;
}
.mockup-stat-label { font-size: .6rem; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .25rem; }
.mockup-stat-value { font-size: 1.1rem; font-weight: 800; color: white; }
.mockup-stat-sub { font-size: .6rem; color: rgba(255,255,255,.4); }

.mockup-activity { display: flex; flex-direction: column; gap: .5rem; }
.mockup-activity-item {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.04);
  border-radius: 10px; padding: .625rem;
}
.mockup-activity-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.mockup-activity-text { flex: 1; }
.mockup-activity-text p { font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.8); }
.mockup-activity-text span { font-size: .58rem; color: rgba(255,255,255,.35); }
.mockup-activity-status {
  font-size: .58rem; font-weight: 700; padding: .2rem .5rem; border-radius: 10px;
}

/* ============================================================
   MEMBERSHIP SECTION
   ============================================================ */
.membership-section {
  background: var(--surface);
  background-image: var(--pattern-dots);
  padding: 5rem 0;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.plan-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,174,239,.12), var(--shadow-lg);
}
.plan-card.featured:hover { box-shadow: 0 0 0 4px rgba(0,174,239,.2), var(--shadow-xl); }
.plan-featured-badge {
  background: var(--grad-blue);
  color: white;
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  text-align: center; padding: .45rem 1rem;
}
.plan-header {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.plan-header .icon-wrap { margin-bottom: 1rem; }
.plan-name { font-size: .75rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem; }
.plan-price {
  display: flex; align-items: baseline; gap: .3rem; margin-bottom: .4rem;
}
.plan-price strong { font-size: 2rem; font-weight: 900; color: var(--navy); letter-spacing: -.03em; }
.plan-price span { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.plan-tagline { font-size: .85rem; color: var(--text-muted); }
.plan-body { padding: 1.5rem 1.75rem; }
.plan-includes {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-light); margin-bottom: 1rem;
}
.plan-benefits { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.plan-benefit {
  display: flex; align-items: center; gap: .65rem;
  font-size: .875rem; color: var(--text);
}
.plan-benefit .check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
}
.plan-benefit .check svg { width: 10px; height: 10px; color: white; stroke-width: 2.5; }
.plan-benefit.muted { color: var(--text-muted); }
.plan-benefit.muted .check { background: var(--border); }
.plan-benefit.muted .check svg { color: var(--text-light); }
.plan-footer { padding: 0 1.75rem 1.75rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--grad-navy);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(0,174,239,.18) 0%, transparent 65%);
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--pattern-chevron);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 20px; top: 46px;
  width: 2px; height: calc(100% - 46px);
  background: linear-gradient(to bottom, var(--blue), transparent);
}
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-blue);
  color: var(--white); font-weight: 800; font-size: .875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.step-body h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.step-body p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  background: var(--navy);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,43,59,.95) 0%, rgba(27,43,59,.65) 55%, rgba(27,43,59,.3) 100%);
}
.page-hero-content { position: relative; z-index: 1; padding-top: 8rem; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: .85rem;
}
.page-hero-breadcrumb a:hover { color: var(--blue); }
.page-hero-breadcrumb svg { width: 11px; height: 11px; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900; color: var(--white); line-height: 1.12;
  margin-bottom: .75rem; letter-spacing: -.03em;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 580px; line-height: 1.7; }

/* ============================================================
   SERVICE DETAIL
   ============================================================ */
.service-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: start;
}
.service-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.sf-item {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: all var(--transition);
}
.sf-item:hover { background: var(--blue-light); border-color: rgba(0,174,239,.3); }
.sf-item .check { flex-shrink: 0; }
.sf-item svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: .1rem;
  color: var(--blue); stroke-width: 2.5;
}
.sf-item span { font-size: .875rem; font-weight: 500; color: var(--text); }

/* Gallery strip */
.gallery-strip {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; margin-top: 3rem;
}
.gallery-strip .g-main { grid-row: span 2; border-radius: var(--radius-xl); overflow: hidden; }
.gallery-strip .g-small { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-strip img:hover { transform: scale(1.04); }

/* Package cards */
.package-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.package-card {
  padding: 1.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}
.package-card:hover { box-shadow: var(--shadow); border-color: var(--blue); transform: translateY(-3px); }
.package-card .icon-wrap { margin-bottom: 1rem; }
.package-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin: .75rem 0 .4rem; }
.package-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* HR Services */
.hr-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.hr-service-card {
  padding: 1.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); border-left: 3px solid var(--blue);
  transition: all var(--transition);
}
.hr-service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.hr-service-card .icon-wrap { margin-bottom: 1rem; }
.hr-service-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.hr-service-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* Fleet cards */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.fleet-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: box-shadow var(--transition); }
.fleet-card:hover { box-shadow: var(--shadow); }
.fleet-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.fleet-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.fleet-card-body { padding: 1.25rem 1.5rem; }
.fleet-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.fleet-card-body p  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: box-shadow var(--transition-slow); }
.team-card:hover { box-shadow: var(--shadow-lg); }
.team-card-image { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--surface); }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-body { padding: 1.5rem; }
.team-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.team-card-body .role { font-size: .72rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.team-card-body p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: .75rem; letter-spacing: -.02em; }
.contact-info > p  { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-text strong { display: block; font-size: .75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.contact-detail-text a, .contact-detail-text p { font-size: 1rem; font-weight: 600; color: var(--navy); transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--blue); }
.contact-hours { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; }
.contact-hours h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.contact-hours h3 .icon-wrap--sm { flex-shrink: 0; }
.hours-row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--border-light); font-size: .875rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text-muted); }
.hours-row span:last-child { font-weight: 700; color: var(--navy); }
.badge-247 { background: var(--grad-blue); color: white; padding: .15rem .55rem; border-radius: 20px; font-size: .72rem; font-weight: 800; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea { resize: vertical; min-height: 130px; }
select {
  appearance: none;
  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='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-submit { width: 100%; justify-content: center; border-radius: var(--radius); }
.form-message { display: none; padding: 1rem; border-radius: var(--radius); font-size: .875rem; font-weight: 600; margin-top: 1rem; }
.form-message--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; display: block; }
.form-message--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

.map-frame { width: 100%; height: 360px; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); margin-top: 3rem; }
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   ABOUT — VALUES / MISSION
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card { padding: 1.75rem; border-radius: var(--radius-xl); background: var(--white); border: 1px solid var(--border); text-align: center; transition: box-shadow var(--transition); }
.value-card:hover { box-shadow: var(--shadow); }
.value-card .icon-wrap { margin: 0 auto 1rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.value-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.mv-card { padding: 2.5rem; border-radius: var(--radius-xl); background: var(--navy); color: var(--white); }
.mv-card.orange { background: var(--grad-orange); }
.mv-card h3 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .65; margin-bottom: .6rem; }
.mv-card p { font-size: 1.1rem; font-weight: 600; line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); background-image: var(--pattern-grid); color: rgba(255,255,255,.72); }
.footer-top {
  padding: 4.5rem 0 3rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand img { height: 40px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .625rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-link:hover { background: var(--blue); transform: translateY(-2px); }
.social-link svg { width: 15px; height: 15px; color: var(--white); }
.footer-col h4 { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--blue); padding-left: .3rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .875rem; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--blue); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-item span { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--blue); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float::before {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,.65); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
/* Hide while the mobile menu is open — it otherwise floats above the
   drawer (z-index 999 vs 800) and blocks/overlaps the bottom nav links. */
body.nav-open .wa-float { display: none; }

/* Stacked directly above .wa-float so the two floating buttons don't collide. */
.tow-float {
  position: fixed; bottom: calc(2rem + 58px + 14px); right: 2rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(245,130,31,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.tow-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(245,130,31,.6); }
.tow-float svg { width: 26px; height: 26px; color: white; }
body.nav-open .tow-float { display: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0 !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { gap: 2.5rem; }
  .service-intro { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-layout { grid-template-columns: 1fr; }
  .app-mockup { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .main-nav { display: none; }
  .header-phone { display: none; }
  .header-cta .btn { padding: .55rem 1.1rem; font-size: .8rem; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 1.5rem; overflow-y: auto;
    gap: .25rem; z-index: 800;
  }
  .nav-link { padding: .875rem 1rem; font-size: 1rem; border-radius: var(--radius); }
  .nav-dropdown {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    box-shadow: none; border: none; padding: .25rem 0 .25rem 1rem;
    background: var(--surface); border-radius: var(--radius); margin-top: .25rem;
  }
  .hero-title { font-size: 2.4rem; }
  .hero-content { padding: 6rem 0 4rem; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-image, .split--reverse .split-body { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip .g-main { grid-column: span 2; grid-row: auto; }
  .service-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .platform-features { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   EMERGENCY BAR (contact page)
   ============================================================ */
.emergency-bar {
  background: var(--orange);
  padding: .7rem 0;
  text-align: center;
  position: relative;
  z-index: 1100;
}
.emergency-bar p {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  margin: 0;
}
.emergency-bar a {
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   SUPPLEMENTARY — HTML ALIASES & INDEX PAGE EXTRAS
   ============================================================ */

/* Platform copy / visual column aliases */
.platform-copy { /* inherits grid child styles */ }
.platform-copy .section-title { color: var(--white); }
.platform-copy .section-sub { color: rgba(255,255,255,.68); max-width: 500px; margin-bottom: 2rem; }
.platform-copy .section-label { color: rgba(0,174,239,.9) !important; }
.platform-copy .section-label::before { background: var(--blue) !important; }
.platform-visual { display: flex; align-items: center; justify-content: center; }

/* pf-item: icon and text using non-sm icon-wrap */
.pf-icon { flex-shrink: 0; }
.pf-item h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.pf-item p  { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.pf-item > div:not(.pf-icon):not([class*="icon-wrap"]) { flex: 1; }

/* Mockup supplementary classes */
.mockup-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.mockup-greeting { flex: 1; }
.mockup-label { font-size: .65rem; color: rgba(255,255,255,.45); display: block; margin-bottom: .15rem; }
.mockup-greeting strong { font-size: .82rem; font-weight: 800; color: var(--white); display: block; }

.mockup-card-plan {
  font-size: 1.1rem; font-weight: 900; color: white; margin: .2rem 0 .35rem; letter-spacing: -.02em;
}
.mockup-card-sub {
  font-size: .62rem; color: rgba(255,255,255,.75); margin-bottom: .75rem;
}
.mockup-card-bar {
  height: 4px; background: rgba(255,255,255,.25); border-radius: 4px; overflow: hidden;
}
.mockup-card-fill {
  height: 100%; background: rgba(255,255,255,.9); border-radius: 4px;
}

/* Quick actions: qa-item same as qa */
.mockup-qa-item {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.06); border-radius: 10px; padding: .6rem .25rem;
  transition: background var(--transition); cursor: pointer;
}
.mockup-qa-item:hover { background: rgba(0,174,239,.2); }
.mockup-qa-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.mockup-qa-item span { font-size: .55rem; font-weight: 600; color: rgba(255,255,255,.65); text-align: center; line-height: 1.3; }

/* Stat cards */
.mockup-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: 1.25rem; }
.mockup-stat-card {
  background: rgba(255,255,255,.06); border-radius: 10px; padding: .625rem .5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.mockup-stat-num {
  font-size: 1.1rem; font-weight: 900; color: white; line-height: 1;
}
.mockup-stat-label { font-size: .52rem; color: rgba(255,255,255,.4); font-weight: 600; margin-top: .15rem; line-height: 1.3; }

/* Activity */
.mockup-activity-title {
  font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: .6rem;
}
.mockup-activity-item {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.04); border-radius: 8px; padding: .5rem .625rem;
  margin-bottom: .35rem;
}
.mockup-activity-text { flex: 1; min-width: 0; }
.mockup-activity-text span { display: block; font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup-activity-text small { font-size: .56rem; color: rgba(255,255,255,.35); }
.mockup-activity-status {
  font-size: .55rem; font-weight: 700; padding: .15rem .45rem;
  border-radius: 8px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.6);
  white-space: nowrap; flex-shrink: 0;
}
.mockup-activity-status.paid { background: rgba(0,174,239,.2); color: #60dfff; }

/* Plan card badge alias */
.plan-badge {
  background: var(--grad-blue);
  color: white;
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  text-align: center; padding: .45rem 1rem;
}

/* Plan price elements */
.plan-price { display: flex; align-items: baseline; gap: .2rem; padding: 1.25rem 1.75rem 0; flex-wrap: wrap; }
.plan-currency { font-size: .8rem; font-weight: 700; color: var(--text-muted); }
.plan-amount { font-size: 2.4rem; font-weight: 900; color: var(--navy); letter-spacing: -.04em; line-height: 1; }
.plan-period { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.plan-price--custom { flex-direction: column; align-items: flex-start; gap: .15rem; }
.plan-amount-custom { font-size: 1.4rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }

/* Plan header with icon + name + tagline */
.plan-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid var(--border);
}
.plan-header .plan-icon { flex-shrink: 0; }
.plan-name { font-size: .95rem; font-weight: 800; color: var(--navy); }
.plan-tagline { font-size: .78rem; color: var(--text-muted); margin-top: .15rem; }

/* Plan benefits — styled ul/li */
.plan-benefits {
  padding: 1.25rem 1.75rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.plan-benefits li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .875rem; color: var(--text); line-height: 1.5;
}
.plan-benefits li svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: .1rem;
  color: var(--blue); stroke-width: 2.5;
}

/* Plan CTA */
.plan-cta {
  display: block; width: calc(100% - 3.5rem);
  margin: 0 1.75rem 1.75rem; text-align: center;
  padding: .75rem 1rem;
}

/* Plans footnote */
.plans-note {
  text-align: center; margin-top: 2rem;
  font-size: .875rem; color: var(--text-muted);
}
.plans-note a { color: var(--blue); font-weight: 600; }

/* ============================================================
   REQUEST A QUOTE MODAL
   ============================================================ */
.qm-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(10,20,28,.6);
  backdrop-filter: blur(2px);
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 1.5rem 1rem;
  overflow-y: auto;
}
.qm-overlay.open { display: flex; }
.qm-dialog {
  width: 100%; max-width: 560px;
  background: var(--bg-page, #FAFAF7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  margin: auto 0;
  max-height: calc(100vh - 3rem);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.qm-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}
.qm-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: var(--navy);
  margin-bottom: .25rem;
}
.qm-subtitle { font-size: .85rem; color: var(--text-muted); }
.qm-close {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: background var(--transition);
}
.qm-close:hover { background: var(--surface); }
.qm-close svg { width: 18px; height: 18px; }
.qm-body { padding: 1.25rem 1.5rem 1.5rem; overflow-y: auto; }
.qm-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.qm-location { position: relative; }
.qm-location-input-row { display: flex; gap: .5rem; }
.qm-gps-btn {
  flex-shrink: 0;
  display: flex; align-items: center; gap: .35rem;
  padding: 0 .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: .8rem; font-weight: 600; color: var(--navy);
  white-space: nowrap;
}
.qm-gps-btn:hover { border-color: var(--blue); color: var(--blue); }
.qm-gps-btn svg { width: 14px; height: 14px; }
.qm-suggestions {
  position: absolute; z-index: 10; top: calc(100% + 4px); left: 0; right: 0;
  max-height: 220px; overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
}
.qm-suggestions.open { display: block; }
.qm-suggestion {
  display: flex; align-items: flex-start; gap: .5rem;
  width: 100%; padding: .6rem .75rem;
  text-align: left; font-size: .82rem; color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.qm-suggestion:last-child { border-bottom: none; }
.qm-suggestion:hover { background: var(--surface); }
.qm-suggestion svg { width: 13px; height: 13px; margin-top: .15rem; flex-shrink: 0; opacity: .6; }
.qm-location-selected {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .6rem .75rem;
  border: 1px solid #a7f3d0; background: #ecfdf5; color: #065f46;
  border-radius: var(--radius);
  font-size: .82rem;
}
.qm-location-selected svg { width: 14px; height: 14px; flex-shrink: 0; }
.qm-location-clear { flex-shrink: 0; color: #065f46; opacity: .7; }
.qm-location-clear:hover { opacity: 1; }
.qm-location-status { margin-top: .35rem; font-size: .75rem; color: var(--text-light); }

.qm-submit {
  width: 100%;
  justify-content: center;
  padding: .9rem 1.5rem;
  font-size: .95rem;
}
.qm-submit:disabled { opacity: .6; cursor: not-allowed; }
.plans-note a:hover { text-decoration: underline; }
