/* =========================================================
   ABBANAMAR · Landing Page
   Design tokens, reset, components, sections
   ========================================================= */

:root {
  /* Brand — pulled from the official logo */
  --navy-950: #051722;
  --navy-900: #082030;
  --navy:     #0C2A3C;   /* primary brand */
  --navy-700: #14405A;
  --teal-600: #1A5A75;   /* secondary (the "mar" of the logo) */
  --teal-500: #2D7186;
  --teal-pale:#E6EDF0;

  /* Neutrals */
  --bg:       #FFFFFF;
  --cream:    #FAFAF7;
  --gray-50:  #F6F8F9;
  --gray-100: #ECEFF2;
  --gray-200: #DCE2E7;
  --gray-300: #B9C3CC;
  --gray-500: #6B7885;
  --gray-700: #334452;

  --ink:      #0F1B24;
  --ink-soft: #3A4A57;

  /* Action */
  --wa:       #25D366;
  --wa-dark:  #1EB955;

  /* Layout */
  --maxw:     1240px;
  --gutter:   clamp(20px, 4vw, 56px);

  /* Radius */
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-pill:999px;

  /* Shadow */
  --sh-xs: 0 1px 2px rgba(12, 42, 60, 0.04);
  --sh-sm: 0 1px 3px rgba(12, 42, 60, 0.05), 0 1px 2px rgba(12, 42, 60, 0.03);
  --sh:    0 2px 6px rgba(12, 42, 60, 0.05), 0 8px 24px -10px rgba(12, 42, 60, 0.12);
  --sh-lg: 0 4px 12px rgba(12, 42, 60, 0.07), 0 24px 48px -16px rgba(12, 42, 60, 0.2);

  /* Motion */
  --ease:     cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur:      0.25s;
  --dur-lg:   0.5s;
}

/* ========== Reset / Base ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5 { margin: 0; font-family: inherit; color: var(--ink); }
::selection { background: var(--navy); color: #fff; }

/* ========== Container / Utility ========== */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-600);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--teal-600);
  display: inline-block;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.75); }
.eyebrow-light::before { background: rgba(255, 255, 255, 0.55); }

h1, .h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h2, .h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.012em;
}
h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.008em;
}
h5 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(16.5px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

.accent { color: var(--teal-600); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.btn svg { width: 14px; height: 14px; }

.btn-sm { padding: 9px 16px; font-size: 13.5px; }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover {
  background: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(12, 42, 60, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--gray-50);
}

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp svg { width: 16px; height: 16px; }


/* ========== Navigation ========== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--gray-100);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--gray-100);
  box-shadow: 0 1px 16px -8px rgba(12, 42, 60, 0.12);
}

/* Nav CTA — the brand "mar" teal, not deep navy */
.nav .btn-primary {
  background: var(--teal-600);
  color: #fff;
}
.nav .btn-primary:hover {
  background: var(--teal-500);
  box-shadow: 0 10px 24px -12px rgba(26, 90, 117, 0.5);
}

/* Transparent nav while over the hero — white text, white logo */
.nav.over-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
.nav.over-hero .nav-links,
.nav.over-hero .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}
.nav.over-hero .nav-links a:hover { color: #fff; }
.nav.over-hero .btn-primary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.nav.over-hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Logo swap — default to dark; show light one only while over hero */
.brand-logo--light { display: none; }
.nav.over-hero .brand-logo--dark { display: none; }
.nav.over-hero .brand-logo--light { display: block; }
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-block: 14px;
}
.nav-inner > .brand { justify-self: start; }
.nav-inner > .nav-links { justify-self: center; }
.nav-inner > .btn { justify-self: end; }
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 56px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--gray-700);
}
.nav-links a { transition: color var(--dur); position: relative; }
.nav-links a:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-toggle:hover { background: rgba(12, 42, 60, 0.06); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.8px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

/* Hamburger inherits nav state — white over hero, dark once scrolled */
.nav.over-hero .nav-toggle { color: #fff; }
.nav.over-hero .nav-toggle:hover { background: rgba(255, 255, 255, 0.12); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px var(--gutter) 20px;
  background: #fff;
  border-top: 1px solid var(--gray-100);
}
.nav-mobile a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--dur);
}
.nav-mobile a:hover { color: var(--teal-600); }
.nav-mobile a:last-child { border-bottom: 0; }

.nav.open .nav-mobile { display: flex; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }
/* When open, mobile menu sheet appears — ensure toggle icon stays dark on white sheet */
.nav.over-hero.open .nav-toggle { color: var(--navy); }

@media (max-width: 900px) {
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 10px;
  }
  .nav-links { display: none; }
  .nav-inner > .btn { display: none; }
  .nav-toggle { display: flex; }
  .brand-logo { height: 44px; }
}


/* ========== Hero — cinematic full-bleed, full viewport ========== */
.hero {
  position: relative;
  min-height: 100vh;            /* fallback */
  min-height: 100dvh;           /* respects dynamic mobile browser chrome */
  padding: 140px 0 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
}

/* Layer 1: image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
  animation: hero-drift 18s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.02) translateX(0); }
  to   { transform: scale(1.06) translateX(-1.2%); }
}

/* Layer 2: navy scrim — heavy on the left (text), fading into the sunset on the right */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(8, 28, 40, 0.94) 0%,
      rgba(8, 28, 40, 0.82) 28%,
      rgba(8, 28, 40, 0.55) 55%,
      rgba(8, 28, 40, 0.18) 80%,
      rgba(8, 28, 40, 0) 100%),
    linear-gradient(180deg,
      rgba(8, 28, 40, 0.45) 0%,
      rgba(8, 28, 40, 0) 25%,
      rgba(8, 28, 40, 0) 70%,
      rgba(8, 28, 40, 0.35) 100%);
}

/* Layer 3: subtle grain for editorial texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Text block — capped so the ship remains visible on the right at any viewport */
.hero-text {
  max-width: min(580px, 55%);
}
.hero-text .eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}
.hero-text .eyebrow-light::before {
  background: rgba(255, 255, 255, 0.55);
}
.hero-text h1 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 600;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.hero-text h1 .accent {
  color: #E8B971;
  background: linear-gradient(90deg, #F2C988, #E8B971);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text .lead {
  margin-top: 22px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

/* Light button variants for the dark hero */
.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.5);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 22px 50px -18px rgba(0, 0, 0, 0.55);
}

/* Hero-specific: warm amber CTA that rhymes with the title accent */
.hero .btn-light {
  background: #E8B971;
  color: var(--navy);
  box-shadow: 0 18px 40px -18px rgba(232, 185, 113, 0.55);
}
.hero .btn-light:hover {
  background: #F2C988;
  box-shadow: 0 22px 50px -20px rgba(232, 185, 113, 0.7);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hero { padding: 120px 0 64px; }
  .hero-bg { background-position: 72% center; }
  .hero-scrim {
    background:
      linear-gradient(90deg,
        rgba(8, 28, 40, 0.92) 0%,
        rgba(8, 28, 40, 0.78) 45%,
        rgba(8, 28, 40, 0.3) 80%,
        rgba(8, 28, 40, 0.1) 100%);
  }
  .hero-text { max-width: 62%; }
  .hero-text h1 { font-size: clamp(34px, 7vw, 46px); }
}
@media (max-width: 600px) {
  .hero { padding: 104px 0 56px; }
  .hero-bg { background-position: 68% center; }
  .hero-text { max-width: 100%; }
  .hero-text h1 {
    font-size: clamp(30px, 8.5vw, 40px);
    letter-spacing: -0.02em;
  }
  .hero-text .lead { font-size: 15.5px; }
  .hero-scrim {
    background:
      linear-gradient(180deg,
        rgba(8, 28, 40, 0.9) 0%,
        rgba(8, 28, 40, 0.55) 40%,
        rgba(8, 28, 40, 0.88) 100%);
  }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}


/* ========== Trust strip ========== */
.strip {
  padding: 56px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--cream);
}
.strip-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-500);
  margin: 0 0 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .strip { padding: 44px 0; }
  .strip-label { margin-bottom: 26px; }
}
.strip-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  justify-items: center;
  gap: 36px;
}
.strip-logos .logo {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity var(--dur), transform var(--dur);
}
.strip-logos .logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/*
 * Optical sizing — every logo is tuned so the *perceived* weight is equal.
 * Tall stacked marks (Petrobras) get more pixels; dense caps wordmarks
 * (Halliburton) get fewer; icon-dominant marks with small wordmarks
 * (OceanPact, Engemont) need room for the wordmark to be legible.
 */
.strip-logos .logo--petrobras  { max-height: 58px; max-width: 84px; }
.strip-logos .logo--halliburton{ max-height: 20px; max-width: 160px; }
.strip-logos .logo--oceanpact  { max-height: 48px; max-width: 130px; }
.strip-logos .logo--tidewater  { max-height: 38px; max-width: 130px; }
.strip-logos .logo--inhaus     { max-height: 44px; max-width: 120px; }
.strip-logos .logo--engemont   { max-height: 46px; max-width: 130px; }
.strip-logos .logo--locar      { max-height: 44px; max-width: 104px; }

@media (max-width: 960px) {
  .strip-logos { gap: 28px; }
  .strip-logos .logo--petrobras  { max-height: 48px; max-width: 70px; }
  .strip-logos .logo--halliburton{ max-height: 16px; max-width: 128px; }
  .strip-logos .logo--oceanpact  { max-height: 40px; max-width: 108px; }
  .strip-logos .logo--tidewater  { max-height: 32px; max-width: 108px; }
  .strip-logos .logo--inhaus     { max-height: 36px; max-width: 100px; }
  .strip-logos .logo--engemont   { max-height: 38px; max-width: 108px; }
  .strip-logos .logo--locar      { max-height: 36px; max-width: 88px; }
}
@media (max-width: 780px) {
  .strip-logos { grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
}
@media (max-width: 480px) {
  .strip-logos { grid-template-columns: repeat(2, 1fr); }
}


/* ========== Section scaffold ========== */
.section { padding: 112px 0; }
@media (max-width: 900px) { .section { padding: 80px 0; } }
@media (max-width: 600px) { .section { padding: 64px 0; } }

.section-head {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 4px; }
.section-head .lead { margin-top: 18px; }

@media (max-width: 900px) {
  .section-head { margin-bottom: 48px; }
}


/* ========== About ========== */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-figure {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-100);
}
.about-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-body h2 { margin-bottom: 20px; }
.about-body p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 56ch;
}
.about-body .lead { color: var(--ink); font-weight: 400; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}
.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-figure {
    aspect-ratio: auto;
    max-height: 60vh;
    display: flex;
    justify-content: center;
  }
  .about-figure img {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}


/* ========== Services ========== */
.services {
  background: var(--cream);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.services-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Each group is now a card */
.services-group {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 28px 12px;
  margin-bottom: 0;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur-lg) var(--ease);
}
.services-group:hover {
  border-color: var(--gray-200);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(12, 42, 60, 0.25);
}

.services-group-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}
.services-group-head h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.012em;
  flex-basis: 100%;
  margin: 0;
}
.services-count {
  font-size: 11.5px;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-basis: 100%;
  margin-top: 2px;
}

/* Each group is now a single vertical list inside its column */
.services-list {
  display: flex;
  flex-direction: column;
}
.svc-card {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 12px 20px;
  transition: color var(--dur) var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8B971;
  transition: transform var(--dur) var(--ease), background var(--dur);
}
.svc-card:hover h4 { color: var(--teal-600); }
.svc-card:hover::before {
  transform: scale(1.25);
  background: #F2C988;
}
.svc-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.012em;
  font-weight: 500;
  transition: color var(--dur);
}
.svc-tag {
  color: var(--teal-600);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .services-columns { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 560px) {
  .services-columns { grid-template-columns: 1fr; gap: 20px; }
  .services-group { padding: 24px 22px 10px; }
}


/* ========== Feature (dark) — Rescue ========== */
.feature-dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}
.feature-dark::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(45, 113, 134, 0.22), transparent 62%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .feature-dark::before { display: none; }
}
.feature-dark h2 { color: #fff; }
.feature-dark p { color: rgba(255, 255, 255, 0.75); }
.feature-dark .feature-quote {
  margin: 24px 0;
  padding: 18px 0 18px 24px;
  border-left: 3px solid var(--teal-500);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.008em;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.feature-grid.reversed .feature-figure { order: -1; }

.feature-figure {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--sh);
}
.feature-figure img { width: 100%; height: 100%; object-fit: cover; }

.feature-text p { max-width: 54ch; line-height: 1.7; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.feature-list li svg {
  width: 20px; height: 20px;
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list-light li { color: var(--ink-soft); }
.feature-list-light li svg { color: var(--teal-600); }

.feature-light {
  background: var(--cream);
  border-top: 1px solid var(--gray-100);
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid.reversed .feature-figure { order: 0; }
  .feature-figure {
    aspect-ratio: 3 / 4;
    max-height: 72vh;
  }
  .feature-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}


/* ========== Before / After ========== */
.ba { background: var(--cream); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ba-card {
  margin: 0;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur-lg) var(--ease);
}
.ba-card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.ba-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ba-card figcaption {
  padding: 16px 20px 18px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}
.ba-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: #fff;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--sh-sm);
  letter-spacing: 0.01em;
}
.ba-tag-after { background: var(--navy); color: #fff; }

@media (max-width: 700px) { .ba-grid { grid-template-columns: 1fr; } }


/* ========== DROPS methodology ========== */
.drops { background: var(--bg); }
.drops-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: center;
}
.drops-intro p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
}
.drops-callout {
  padding: 10px 26px 24px;
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  margin: 0;
  position: relative;
}
.drops-callout-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.85;
}
.drops-callout-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal-600);
  border-radius: 50%;
  flex-shrink: 0;
}
.drops-callout p {
  font-size: 16px;
  color: var(--ink);
  margin: 0;
  line-height: 1.6;
}
.drops-callout strong {
  color: var(--navy);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background-image: linear-gradient(transparent 62%, var(--teal-pale) 62%);
  padding: 0 2px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

.drops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.barrier {
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur-lg);
  position: relative;
  overflow: hidden;
}
.barrier:hover { border-color: var(--gray-200); transform: translateY(-3px); box-shadow: var(--sh); }
.barrier-num {
  font-size: 46px;
  font-weight: 700;
  color: var(--teal-pale);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.barrier-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--teal-pale);
  color: var(--navy);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.barrier h4 { margin: 0 0 10px; color: var(--navy); font-size: 19px; }
.barrier p { margin: 0; font-size: 14.5px; color: var(--gray-500); line-height: 1.6; }
.barrier em { color: var(--teal-600); font-style: italic; }

@media (max-width: 900px) {
  .drops-intro { grid-template-columns: 1fr; gap: 24px; }
  .drops-grid { grid-template-columns: 1fr; }
}


/* ========== Clients ========== */
.clients {
  background: var(--cream);
  border-top: 1px solid var(--gray-100);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.client {
  background: #fff;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  text-align: center;
  transition: background var(--dur);
}
.client:hover { background: var(--gray-50); }
.client strong {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.client span {
  font-size: 11.5px;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }


/* ========== Contact (dark) ========== */
.contact {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(circle, rgba(45, 113, 134, 0.24), transparent 62%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .contact::before { display: none; }
}
.contact > .container { position: relative; z-index: 1; }

.contact-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.contact-logo {
  height: 52px;
  margin: 0 auto 28px;
  opacity: 0.95;
}
.contact-head .eyebrow { justify-content: center; }
.contact-head h2 { color: #fff; }
.contact-head p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 56ch;
  margin-inline: auto;
}

/* Two-column layout: info panel | map */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: stretch;
}

/* Info panel */
.info-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
}
.info-panel-title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.012em;
}
.info-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), color var(--dur);
}
.info-icon svg { width: 18px; height: 18px; }
.info-icon--wa { color: var(--wa); background: rgba(37, 211, 102, 0.12); }
.info-row:hover .info-icon { background: rgba(255, 255, 255, 0.12); }

.info-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.info-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.info-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  transition: color var(--dur);
  word-break: break-word;
}
a.info-value:hover { color: #fff; }
.info-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* Bottom WhatsApp CTA inside the panel */
.info-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 20px;
  background: var(--wa);
  color: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  align-self: center;
}
.info-panel-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.info-panel-cta:hover {
  background: var(--wa-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(37, 211, 102, 0.5);
}

/* Map — clean, chromeless iframe container; stretches to match left column */
.contact-map {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0a1f2c;
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.6);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  filter: grayscale(0.1) contrast(1.02);
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .info-panel { padding: 28px 24px 24px; }
  .info-panel-cta { align-self: stretch; }
  .contact-map { min-height: 500px; }
  .contact-map iframe { min-height: 500px; }
}


/* ========== Footer ========== */
footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  height: 42px;
  width: auto;
}

@media (max-width: 540px) {
  .footer-base { flex-direction: column; text-align: center; padding-block: 28px; }
}


/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.06s; }
.delay-2 { transition-delay: 0.12s; }
.delay-3 { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}


/* ========== Floating WhatsApp button ========== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 32px -10px rgba(37, 211, 102, 0.55),
              0 4px 12px -4px rgba(0, 0, 0, 0.2);
  z-index: 90;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--wa);
  opacity: 0.25;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.85); opacity: 0.35; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(37, 211, 102, 0.65),
              0 6px 14px -4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 560px) {
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
}
