/* ================================================================
   45NET — AQUA IDENTITY
   Palette : Océan profond · Bleu vif · Cyan eau · Blanc nacré
   ================================================================ */

/* ── VARIABLES ──────────────────────────────────────────────────── */
:root {
  --ocean:    #07111f;
  --deep:     #0d1f35;
  --navy:     #0a2540;
  --blue:     #1565c0;
  --blue-lt:  #1976d2;
  --cyan:     #00b4d8;
  --cyan-lt:  #48cae4;
  --cyan-xlt: #90e0ef;
  --water:    #caf0f8;
  --white:    #ffffff;
  --pearl:    #f0f6fc;
  --card:     #ffffff;
  --border:   #dde8f4;
  --border2:  #b8d0e8;
  --muted:    #5a7a9a;
  --ink:      #0d1f35;

  --font-d: 'Montserrat', sans-serif;
  --font-s: 'Cormorant Garamond', serif;
  --font-b: 'Montserrat', sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --tr:   .4s var(--ease);

  --shadow-sm: 0 2px 12px rgba(0,100,180,.08);
  --shadow-md: 0 8px 40px rgba(0,100,180,.14);
  --shadow-lg: 0 20px 60px rgba(0,100,180,.18);
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body  { background: var(--pearl); color: var(--ink); font-family: var(--font-b); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
::selection { background: var(--cyan); color: var(--ocean); }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--pearl); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--cyan), var(--blue)); border-radius: 2px; }

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }

/* ── LABEL ──────────────────────────────────────────────────────── */
.lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.lbl::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(to right, var(--cyan), transparent);
  flex-shrink: 0;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  border-radius: 2px;
}
.btn-c {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,180,216,.35);
}
.btn-c:hover, .btn-c:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,180,216,.45);
}
.btn-o {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-o:hover, .btn-o:focus {
  border-color: var(--cyan-lt);
  color: var(--cyan-lt);
}
.btn-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border2);
}
.btn-dark:hover, .btn-dark:focus {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── REVEAL ─────────────────────────────────────────────────────── */
[data-r] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-r].on { opacity: 1; transform: translateY(0); }
[data-r][data-d="1"] { transition-delay: .1s; }
[data-r][data-d="2"] { transition-delay: .2s; }
[data-r][data-d="3"] { transition-delay: .3s; }
[data-r][data-d="4"] { transition-delay: .4s; }
[data-r][data-d="5"] { transition-delay: .5s; }

/* ── SECTION HEADING ────────────────────────────────────────────── */
.sh-t {
  font-family: var(--font-s);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-top: .75rem;
  line-height: 1.15;
}
.sh-t span { color: var(--blue); font-style: italic; }

.sec     { padding: clamp(4rem, 8vw, 7rem) 0; }
.sec-pearl { background: var(--pearl); }
.sec-white { background: var(--white); }
.sec-ocean {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--navy) 50%, #0a2a4a 100%);
  position: relative;
}
.sec-ocean::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,180,216,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(21,101,192,.1) 0%, transparent 55%);
  pointer-events: none;
}


/* ================================================================
   HEADER
   ================================================================ */
#hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#hd.sc {
  background: rgba(7,17,31,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .6rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}
#hd .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Logo */
.logo-w { display: flex; align-items: center; gap: .85rem; }
.logo-drop {
  width: 38px; height: 38px;
  position: relative;
  flex-shrink: 0;
}
.logo-drop svg { width: 100%; height: 100%; }
.logo-text { line-height: 1; }
.logo-name {
  font-family: var(--font-s);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
}
.logo-name b { color: var(--cyan); font-weight: 700; }
.logo-tag {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .1rem;
}

nav.desk ul { list-style: none; display: flex; gap: .1rem; align-items: center; }
nav.desk a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding: .45rem .9rem;
  transition: color .3s;
  white-space: nowrap;
}
nav.desk a:hover { color: var(--cyan-lt); }

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--blue)) !important;
  color: var(--white) !important;
  border-radius: 2px;
  padding: .45rem 1.2rem !important;
  box-shadow: 0 3px 14px rgba(0,180,216,.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 20px rgba(0,180,216,.45) !important; }

.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; -webkit-tap-highlight-color: transparent; }
.ham span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.8); transition: var(--tr); }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ================================================================
   MOBILE NAV
   ================================================================ */
#mnav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ocean);
  z-index: 899;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 2rem;
}
#mnav.open { display: flex; }
#mnav a {
  font-family: var(--font-s);
  font-size: clamp(2rem, 7vw, 2.6rem);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  padding: .4rem 1rem;
  transition: color .3s;
  text-align: center;
}
#mnav a:hover { color: var(--cyan-lt); }


/* ================================================================
   HERO
   ================================================================ */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ocean) 0%, #0a2040 45%, #0d2d55 100%);
}

/* Animated water rings */
.h-rings {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  height: 140vw;
  max-width: 1200px;
  max-height: 1200px;
  pointer-events: none;
}
.h-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,.15);
  animation: ringExpand 6s ease-in-out infinite;
}
.h-ring:nth-child(1) { width: 30%; height: 30%; animation-delay: 0s; }
.h-ring:nth-child(2) { width: 52%; height: 52%; animation-delay: .8s; border-color: rgba(0,180,216,.1); }
.h-ring:nth-child(3) { width: 72%; height: 72%; animation-delay: 1.6s; border-color: rgba(0,180,216,.07); }
.h-ring:nth-child(4) { width: 88%; height: 88%; animation-delay: 2.4s; border-color: rgba(0,180,216,.04); }
.h-ring:nth-child(5) { width: 100%; height: 100%; animation-delay: 3.2s; border-color: rgba(0,180,216,.025); }
@keyframes ringExpand {
  0%   { opacity: 1;  transform: translate(-50%, -50%) scale(.8); }
  60%  { opacity: .4; }
  100% { opacity: 0;  transform: translate(-50%, -50%) scale(1.1); }
}

/* Glow drops */
.h-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.h-glow-1 { width: 500px; height: 400px; top: -100px; right: -100px; background: rgba(0,180,216,.08); }
.h-glow-2 { width: 350px; height: 350px; bottom: 10%; left: -80px; background: rgba(21,101,192,.1); }

.h-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: clamp(6rem, 14vw, 9rem);
  padding-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.h-main .wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 1rem .4rem .6rem;
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.3);
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan-lt);
  margin-bottom: 1.5rem;
}
.h-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pdot 2s ease-in-out infinite; }
@keyframes pdot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }

.h-title {
  font-family: var(--font-s);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  line-height: .95;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.h-title .t1 { display: block; }
.h-title .t2 {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: .7em;
  background: linear-gradient(90deg, var(--cyan-lt), var(--cyan-xlt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: .2rem;
}
.h-sub {
  font-size: clamp(.88rem, 1.8vw, 1rem);
  color: rgba(255,255,255,.55);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.h-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero stats card */
.h-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,180,216,.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.h-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
}
.h-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.12) 0%, transparent 70%);
}
.hc-g { display: flex; flex-direction: column; gap: 1.4rem; position: relative; z-index: 1; }
.stat-n {
  font-family: var(--font-s);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: -.01em;
}
.stat-n b { color: var(--cyan); font-weight: 700; }
.stat-l { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .15rem; }
.stat-hr { width: 100%; height: 1px; background: rgba(255,255,255,.07); }

/* Drop icon in card */
.hc-drop {
  width: 52px; height: 52px;
  margin-bottom: 1.2rem;
}
.hc-drop svg { width: 100%; height: 100%; }

/* Hero scroll indicator */
.h-scroll {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 2;
}
.h-scroll .wrap { display: flex; align-items: center; gap: .85rem; }
.sc-line { width: 36px; height: 1px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.sc-txt  { font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.sc-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); animation: pdot 2s ease-in-out infinite; flex-shrink: 0; }

/* Wave divider */
.wave-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
  background: var(--pearl);
}
.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}


/* ================================================================
   MARQUEE
   ================================================================ */
.marq {
  background: linear-gradient(to right, var(--ocean), var(--navy));
  padding: .9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,180,216,.15);
  border-bottom: 1px solid rgba(0,180,216,.1);
}
.marq-t { display: flex; animation: marq 26s linear infinite; width: max-content; }
.marq-t span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 0 2rem;
  white-space: nowrap;
}
.marq-t .dot { color: var(--cyan); opacity: .8; }
@keyframes marq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ================================================================
   ABOUT / EXPERTISE
   ================================================================ */
.about-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about-txt p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.95;
  margin-bottom: 1.25rem;
}
.about-q {
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(to right, rgba(0,180,216,.06), transparent);
  font-size: 1.05rem;
  color: var(--navy);
  font-family: var(--font-s);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  margin-top: 1.5rem;
  position: relative;
}

.cards { display: flex; flex-direction: column; gap: .85rem; }
.fc {
  display: flex;
  gap: 1.1rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  cursor: default;
}
.fc:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 24px rgba(0,180,216,.12);
  transform: translateX(5px);
}
.fc-ico {
  width: 46px; height: 46px; min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,180,216,.1), rgba(21,101,192,.08));
  border: 1px solid rgba(0,180,216,.2);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.fc-ttl { font-weight: 600; color: var(--navy); font-size: .9rem; margin-bottom: .2rem; }
.fc-dsc { font-size: .8rem; color: var(--muted); line-height: 1.65; }


/* ================================================================
   SERVICES
   ================================================================ */
.svc-hd { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.svc-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.si {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  cursor: default;
}
.si::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.si:hover::before { transform: scaleX(1); }
.si:hover {
  border-color: rgba(0,180,216,.3);
  box-shadow: 0 10px 40px rgba(0,100,180,.1);
  transform: translateY(-4px);
}
.si-n {
  font-family: var(--font-s);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0,180,216,.08);
  margin-bottom: .7rem;
  transition: color .3s;
}
.si:hover .si-n { color: rgba(0,180,216,.15); }
.si-ico-w {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,180,216,.12), rgba(21,101,192,.1));
  border-radius: 50%;
  margin-bottom: .85rem;
  font-size: 1.4rem;
  transition: transform .3s;
}
.si:hover .si-ico-w { transform: scale(1.1); }
.si-t { font-weight: 600; color: var(--navy); font-size: .9rem; margin-bottom: .5rem; line-height: 1.35; }
.si-d { font-size: .8rem; color: var(--muted); line-height: 1.65; }


/* ================================================================
   PROCESS
   ================================================================ */
.proc-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  position: relative;
}
.proc-line {
  position: absolute;
  top: 2.2rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 1px;
  background: linear-gradient(to right, var(--cyan), rgba(0,180,216,.2), var(--cyan));
  pointer-events: none;
}
.step {
  position: relative;
}
.step-circle {
  width: 4.4rem; height: 4.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--navy));
  border: 2px solid rgba(0,180,216,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-s);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan-lt);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.step:hover .step-circle {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,180,216,.4);
  color: var(--white);
}
.step-t { font-weight: 600; color: var(--white); font-size: .9rem; margin-bottom: .45rem; }
.step-d { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.7; }


/* ================================================================
   ZONE
   ================================================================ */
.zone-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.zone-p { color: var(--muted); font-size: .93rem; line-height: 1.9; margin-bottom: 1.5rem; }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.tag {
  padding: .35rem 1rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 1.5px solid var(--border2);
  border-radius: 20px;
  color: var(--muted);
  transition: border-color .3s, color .3s, background .3s, box-shadow .3s;
  cursor: default;
}
.tag:hover, .tag.on {
  border-color: var(--cyan);
  color: var(--blue);
  background: rgba(0,180,216,.07);
  box-shadow: 0 2px 10px rgba(0,180,216,.12);
}

.map-w {
  height: clamp(280px, 45vw, 420px);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}
.map-w::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--cyan), var(--blue));
  z-index: 2;
  pointer-events: none;
}
#map { width: 100%; height: 100%; }


/* ================================================================
   HORAIRES
   ================================================================ */
.hor-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.sched { display: flex; flex-direction: column; gap: .6rem; }
.sched-r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .95rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  gap: 1rem;
  transition: border-color .3s, box-shadow .3s;
}
.sched-r.hl {
  border-color: rgba(0,180,216,.3);
  background: linear-gradient(to right, rgba(0,180,216,.04), rgba(21,101,192,.03));
}
.sched-r.hl:hover {
  border-color: var(--cyan);
  box-shadow: 0 3px 16px rgba(0,180,216,.1);
}
.sched-day { font-size: .88rem; color: var(--navy); font-weight: 400; }
.sched-t {
  font-family: var(--font-s);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
}
.sched-t.cl { font-family: var(--font-b); font-size: .82rem; color: var(--muted); font-style: italic; font-weight: 300; }

.ci { display: flex; flex-direction: column; gap: 1.35rem; }
.ci-it { display: flex; gap: 1.1rem; align-items: flex-start; }
.ci-ico {
  width: 46px; height: 46px; min-width: 46px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,180,216,.1), rgba(21,101,192,.08));
  border: 1px solid rgba(0,180,216,.2);
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}
.ci-it:hover .ci-ico { transform: scale(1.08); box-shadow: 0 4px 16px rgba(0,180,216,.18); }
.ci-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: .2rem; }
.ci-val { font-size: .95rem; color: var(--navy); font-weight: 400; }
.ci-val a:hover { color: var(--blue); }


/* ================================================================
   CONTACT FORM
   ================================================================ */
.cform-g {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.cf-p { color: rgba(255,255,255,.55); font-size: .93rem; line-height: 1.9; margin-bottom: 1.5rem; }
.cf-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1.2rem;
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.3);
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--cyan-lt);
}

.form  { display: flex; flex-direction: column; gap: 1.15rem; }
.frow  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.fg    { display: flex; flex-direction: column; gap: .4rem; }
.flbl  { font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }

.finp, .fsel, .ftxt {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-b);
  font-size: .88rem;
  font-weight: 300;
  padding: .85rem 1rem;
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  resize: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 4px;
}
.finp:focus, .fsel:focus, .ftxt:focus {
  border-color: var(--cyan);
  background: rgba(0,180,216,.06);
  box-shadow: 0 0 0 3px rgba(0,180,216,.1);
}
.finp::placeholder, .ftxt::placeholder { color: rgba(255,255,255,.2); }
.fsel option { background: var(--navy); color: var(--white); }
.ftxt { min-height: 130px; }

.fconsent { display: flex; gap: .7rem; align-items: flex-start; font-size: .75rem; color: rgba(255,255,255,.35); line-height: 1.55; }
.fconsent input[type="checkbox"] { width: 15px; height: 15px; min-width: 15px; margin-top: 2px; accent-color: var(--cyan); cursor: pointer; flex-shrink: 0; }
.fsub { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.fnote { font-size: .72rem; color: rgba(255,255,255,.25); }
.fsuc {
  display: none;
  padding: .9rem 1.1rem;
  background: rgba(0,180,216,.12);
  border: 1px solid var(--cyan);
  border-radius: 4px;
  color: var(--cyan-lt);
  font-size: .85rem;
  margin-top: .5rem;
}


/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--ocean);
  padding: 3rem 0 1.75rem;
  border-top: 1px solid rgba(0,180,216,.12);
}
.ft-in { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.ft-logo-w { display: flex; align-items: center; gap: .75rem; }
.ft-drop { width: 28px; height: 28px; }
.ft-drop svg { width: 100%; height: 100%; }
.ft-name { font-family: var(--font-s); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.ft-name b { color: var(--cyan); }
.ft-tag  { font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: .15rem; }

.ft-soc { display: flex; gap: .65rem; }
.soc-a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.4);
  transition: border-color .3s, color .3s, background .3s;
}
.soc-a:hover {
  border-color: var(--cyan);
  color: var(--cyan-lt);
  background: rgba(0,180,216,.08);
}

.ft-bot {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .7rem;
  color: rgba(255,255,255,.25);
}
.ft-lnk { display: flex; gap: 1.75rem; }
.ft-lnk a:hover { color: rgba(255,255,255,.7); }


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 980px) {
  nav.desk { display: none; }
  .ham     { display: flex; }

  .h-main .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .h-card .hc-g {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hc-drop { display: none; }
  .stat-hr { width: 1px; height: 3rem; }

  .about-g, .zone-g, .hor-g, .cform-g { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-g   { grid-template-columns: 1fr 1fr; }
  .proc-g  { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .proc-line { display: none; }
  .svc-hd  { align-items: flex-start; }
}

@media (max-width: 640px) {
  .svc-g  { grid-template-columns: 1fr; }
  .frow   { grid-template-columns: 1fr; }
  .proc-g { grid-template-columns: 1fr; }
  .h-card .hc-g { flex-direction: column; align-items: flex-start; }
  .stat-hr { width: 100%; height: 1px; }
  .h-btns { flex-direction: column; align-items: flex-start; }
  .h-btns .btn { width: 100%; justify-content: center; }
  .ft-in  { flex-direction: column; align-items: flex-start; }
  .ft-bot { flex-direction: column; gap: .5rem; }
  .fsub   { flex-direction: column; align-items: flex-start; }
  .fsub .btn { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .h-card .hc-g { gap: .8rem; }
}

@media (hover: none) {
  .btn, .fc, .si, .step, .tag, .soc-a, .sched-r { min-height: 44px; }
  .btn { padding: .9rem 1.8rem; }
}
