/* ==========================================================================
   HR ADVISORS, INC. — Luxury Design System
   Palette derived from brand logo: Sky #28BBED / Ocean #066F96
   Designed & Developed by Novelio Technologies — 2026
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors (from logo) */
  --ocean: #066F96;
  --ocean-deep: #04506D;
  --sky: #28BBED;
  --sky-soft: #7FD6F4;
  --ink: #06121B;
  --navy: #0A2233;
  --navy-2: #0E2C42;
  --gold: #D9B36C;
  --gold-soft: #EED9AE;
  --paper: #F5FAFD;
  --white: #FFFFFF;
  --text: #12303F;
  --muted: #4A6472;
  --line: #DCEAF2;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #28BBED 0%, #066F96 100%);
  --grad-hero: radial-gradient(1200px 700px at 80% -10%, rgba(40,187,237,.28), transparent 60%),
               radial-gradient(900px 600px at -10% 110%, rgba(6,111,150,.35), transparent 55%),
               linear-gradient(160deg, #071A28 0%, #0A2233 55%, #0C2A40 100%);
  --grad-gold: linear-gradient(135deg, #EED9AE 0%, #D9B36C 50%, #B98F3E 100%);

  /* Multi-layer luxury shadows */
  --shadow-sm: 0 1px 2px rgba(6,18,27,.06), 0 2px 6px rgba(6,18,27,.05);
  --shadow-md: 0 2px 4px rgba(6,18,27,.05), 0 8px 16px rgba(6,18,27,.07), 0 16px 32px rgba(6,18,27,.06);
  --shadow-lg: 0 4px 8px rgba(6,18,27,.06), 0 12px 24px rgba(6,18,27,.09), 0 32px 64px rgba(6,18,27,.12);
  --shadow-glow: 0 8px 24px rgba(40,187,237,.28), 0 20px 48px rgba(6,111,150,.22);

  /* Type */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale (8px) */
  --s1: .5rem; --s2: 1rem; --s3: 1.5rem; --s4: 2rem; --s5: 3rem; --s6: 4rem; --s7: 6rem; --s8: 8rem;

  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22,1,.36,1);

  /* z-scale */
  --z-nav: 50; --z-sticky: 40; --z-modal: 60;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--ocean); text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
ul[class], ol[class] { list-style: none; }
::selection { background: var(--sky); color: var(--ink); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--ink); }
.h-display { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -.01em; }
.h-xl { font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -.01em; }
.h-lg { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.h-md { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--muted); max-width: 62ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .8125rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ocean);
}
.eyebrow::before { content: ""; width: 2.5rem; height: 1px; background: var(--grad-gold); }
.eyebrow--gold { color: var(--gold); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 2.5rem; height: 1px; background: var(--grad-gold); }

.text-grad { background: linear-gradient(100deg, var(--sky) 10%, #9BE0FA 50%, var(--sky) 90%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Layout ---------- */
.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--dark { background: var(--grad-hero); color: #C9DCE8; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: #A7C2D3; }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); display: grid; gap: 1.1rem; }
.section-head--center { margin-inline: auto; text-align: center; justify-items: center; }

.grid-2 { display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); align-items: center; }
.grid-3 { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.grid-4 { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--ink);
  color: #9FB9C9;
  font-size: .875rem;
  position: relative; z-index: calc(var(--z-nav) + 1);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .55rem; }
.topbar__group { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; color: #9FB9C9; transition: color .2s; }
.topbar__item:hover { color: var(--sky); }
.topbar__item svg { width: 15px; height: 15px; flex: none; }
.topbar__socials { display: flex; gap: .35rem; }
.topbar__socials a {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  color: #9FB9C9; background: rgba(255,255,255,.06); transition: all .25s var(--ease);
}
.topbar__socials a:hover { color: var(--ink); background: var(--sky); transform: translateY(-2px); }
.topbar__socials svg { width: 14px; height: 14px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(7, 24, 38, .72);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s, background .3s;
}
.header.is-scrolled { background: rgba(7, 24, 38, .92); box-shadow: 0 8px 30px rgba(4,18,28,.35); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .8rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; }
.brand img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.9rem; }
.nav__link {
  position: relative; color: #D5E6F0; font-weight: 500; font-size: .98rem; letter-spacing: .02em;
  padding-block: .4rem; transition: color .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: #fff; }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle { display: none; z-index: calc(var(--z-nav) + 2); width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); position: relative; }
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, top .35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 2rem; border-radius: 999px; font-weight: 600; font-size: 1rem; letter-spacing: .03em;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-110%); transition: transform .6s var(--ease);
}
.btn:hover::before { transform: translateX(110%); }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(40,187,237,.4), 0 28px 60px rgba(6,111,150,.3); }
.btn--gold { background: var(--grad-gold); color: #3A2C10; box-shadow: 0 8px 24px rgba(217,179,108,.35); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(217,179,108,.45); }
.btn--ghost { background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.25); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--ocean); border: 1.5px solid var(--ocean); }
.btn--outline:hover { background: var(--ocean); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--sm { padding: .6rem 1.4rem; font-size: .9rem; min-height: 42px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: clip; color: #C9DCE8;
  background: var(--grad-hero);
  padding-block: clamp(5rem, 11vw, 9rem) clamp(6rem, 12vw, 10rem);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.hero h1 { color: #fff; margin-block: 1.2rem .5rem; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .word { display: inline-block; transform: translateY(110%); animation: word-up 1s var(--ease) forwards; }
.hero__sub { max-width: 54ch; color: #A7C2D3; font-size: clamp(1.05rem, 1.7vw, 1.25rem); margin-bottom: 2.2rem; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem; padding: .45rem 1.1rem; border-radius: 999px;
  background: rgba(40,187,237,.12); border: 1px solid rgba(40,187,237,.35); color: var(--sky-soft);
  font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 12px var(--sky); animation: pulse-dot 2.2s infinite; }
.hero__pains { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 1.9rem; padding: 0; }
.hero__pains li { display: inline-flex; align-items: center; gap: .55rem; color: #A7C2D3; font-size: .95rem; letter-spacing: .02em; }
.hero__pains li::before {
  content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; flex: none;
  border-radius: 50%; font-size: .7rem; font-weight: 700; color: #3A2C10;
  background: var(--grad-gold); box-shadow: 0 0 12px rgba(217,179,108,.4);
}

/* Floating decor orbs */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; will-change: transform; }
.orb--1 { width: 480px; height: 480px; background: rgba(40,187,237,.35); top: -12%; right: -8%; animation: float-a 11s ease-in-out infinite; }
.orb--2 { width: 380px; height: 380px; background: rgba(6,111,150,.5); bottom: -18%; left: -10%; animation: float-b 14s ease-in-out infinite; }
.orb--3 { width: 220px; height: 220px; background: rgba(217,179,108,.22); top: 30%; left: 42%; animation: float-a 17s ease-in-out infinite reverse; }

.ring { position: absolute; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; pointer-events: none; }
.ring--1 { width: 560px; height: 560px; top: -180px; right: -120px; }
.ring--2 { width: 780px; height: 780px; top: -280px; right: -220px; }

/* Hero visual card stack */
.hero__visual { position: relative; perspective: 1200px; }
.hero__photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  transform: rotateY(-6deg) rotateX(2deg); transition: transform .6s var(--ease);
  border: 1px solid rgba(255,255,255,.14);
  will-change: transform;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.6; }
.hero__visual:hover .hero__photo { transform: rotateY(0deg) rotateX(0deg); }
.glass-chip {
  position: absolute; display: flex; align-items: center; gap: .8rem; padding: .9rem 1.2rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 16px;
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(4,18,28,.35); color: #fff; will-change: transform;
}
.glass-chip strong { font-size: 1.25rem; font-family: var(--font-head); display: block; line-height: 1.1; }
.glass-chip small { color: #B9D2E0; font-size: .78rem; letter-spacing: .04em; }
.glass-chip .ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--grad-brand); flex: none; }
.glass-chip .ico svg { width: 20px; height: 20px; color: #fff; }
.glass-chip--tl { top: 8%; left: -14%; animation: float-a 7s ease-in-out infinite; }
.glass-chip--br { bottom: 10%; right: -10%; animation: float-b 9s ease-in-out infinite; }
.glass-chip--gold .ico { background: var(--grad-gold); color: #3A2C10; }
.glass-chip--gold .ico svg { color: #3A2C10; }

/* Stats strip */
.stats { position: relative; z-index: 2; margin-top: clamp(-4.5rem, -6vw, -3.5rem); }
.stats__card {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.stat { padding: 2rem 1.75rem; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.stat__num { font-family: var(--font-head); font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 800; color: var(--ocean); line-height: 1; }
.stat__num sup { font-size: .5em; color: var(--gold); }
.stat__label { color: var(--muted); font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .5rem; }

/* ---------- Cards ---------- */
.card {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 2.4rem 2.1rem; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
  cursor: pointer; will-change: transform;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(40,187,237,.4); }
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover::after { transform: scaleX(1); }
.card__icon {
  display: grid; place-items: center; width: 62px; height: 62px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(40,187,237,.14), rgba(6,111,150,.14));
  color: var(--ocean); margin-bottom: 1.5rem; transition: all .4s var(--ease);
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--grad-brand); color: #fff; transform: scale(1.06) rotate(-4deg); box-shadow: var(--shadow-glow); }
.card h3 { margin-bottom: .8rem; }
.card p { color: var(--muted); font-size: 1rem; }
.card__link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem; font-weight: 600; color: var(--ocean); }
.card__link svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.card:hover .card__link svg { transform: translateX(5px); }

/* Tilt (3D) */
[data-tilt] { transform-style: preserve-3d; }

/* Service feature panel */
.feature-media { position: relative; perspective: 1000px; }
.feature-media__img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(6,111,150,.12); will-change: transform;
}
.feature-media__img img { width: 100%; object-fit: cover; }
.feature-media__accent {
  position: absolute; inset: auto -6% -8% auto; width: 46%; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid #fff;
}
.feature-media::before {
  content: ""; position: absolute; inset: -7% auto auto -7%; width: 55%; height: 55%;
  border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(40,187,237,.16), rgba(217,179,108,.14));
  z-index: -1;
}
.check-list { display: grid; gap: .9rem; margin-block: 1.6rem; }
.check-list li { display: flex; gap: .85rem; align-items: flex-start; color: var(--text); }
.check-list svg { width: 22px; height: 22px; color: var(--ocean); flex: none; margin-top: .2rem; }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); }
.step {
  counter-increment: step; position: relative; padding: 1.9rem 1.5rem 1.6rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  transition: transform .4s var(--ease), background .3s, border-color .3s;
}
.step:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); border-color: rgba(40,187,237,.45); }
.step::before {
  content: "0" counter(step); font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1; margin-bottom: .9rem;
}
.step h3 { font-size: 1.15rem; color: #fff; margin-bottom: .45rem; }
.step p { font-size: .92rem; color: #A7C2D3; }

/* ---------- Reviews ---------- */
.review-tabs { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.6rem; }
.review-tab {
  padding: .65rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  color: var(--muted); background: #fff; border: 1.5px solid var(--line);
  transition: all .3s var(--ease); cursor: pointer;
}
.review-tab:hover { border-color: var(--sky); color: var(--ocean); transform: translateY(-2px); }
.review-tab.is-active { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: var(--shadow-glow); }

.reviews-grid { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); }
.review-card {
  position: relative; background: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(6,111,150,.1); border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), opacity .4s, border-color .3s;
}
.review-card:hover { transform: translateY(-8px) rotateX(1.5deg); box-shadow: var(--shadow-lg); border-color: rgba(40,187,237,.35); }
.review-card.is-hidden { display: none; }
.review-card__head { display: flex; align-items: center; gap: 1rem; }
.review-card__avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; font-weight: 700; font-size: 1.15rem; font-family: var(--font-head);
  box-shadow: 0 6px 16px rgba(6,111,150,.3);
}
.review-card__meta strong { display: block; color: var(--ink); font-size: .98rem; line-height: 1.3; }
.review-card__meta span { color: var(--muted); font-size: .82rem; }
.review-card__stars { display: flex; gap: 2px; color: #F5B301; }
.review-card__stars svg { width: 16px; height: 16px; }
.review-card__text { color: var(--muted); font-size: .96rem; flex: 1; }
.review-card__badge { display: inline-flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--muted); }
.review-card__badge svg { width: 16px; height: 16px; }
.review-card__tag {
  position: absolute; top: 1.4rem; right: 1.4rem; font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ocean); background: rgba(40,187,237,.12); border-radius: 999px; padding: .25rem .7rem;
}
.reviews-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.8rem; }

/* Google rating pill */
.gpill {
  display: inline-flex; align-items: center; gap: .8rem; padding: .7rem 1.4rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: .95rem;
}
.gpill strong { font-size: 1.1rem; }

/* ---------- CTA Band ---------- */
.cta-band { position: relative; overflow: clip; background: var(--grad-hero); }
.cta-band__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(4.5rem, 9vw, 7rem); display: grid; justify-items: center; gap: 1.4rem; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: #A7C2D3; max-width: 55ch; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .6rem; }

/* ---------- Forms ---------- */
.form-card {
  background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.8rem, 4vw, 3rem);
}
.form-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; }
.form-grid .field--full { grid-column: 1 / -1; }
.field { display: grid; gap: .45rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--text); width: 100%;
  padding: .85rem 1.1rem; border-radius: 14px; border: 1.5px solid var(--line); background: #fff;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(40,187,237,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .error-msg { color: #C0392B; font-size: .82rem; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C0392B; }
.field.has-error .error-msg { display: block; }
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.is-visible { display: block; animation: fade-up .6s var(--ease); }
.form-success .ico { width: 74px; height: 74px; margin: 0 auto 1.2rem; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); }
.form-success .ico svg { width: 34px; height: 34px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Team ---------- */
.team-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  cursor: pointer;
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-card__photo { position: relative; overflow: hidden; aspect-ratio: 1 / 1.05; background: linear-gradient(160deg, #E8F4FB, #D2E9F5); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.07); }
.team-card__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,18,27,.45), transparent 45%);
  opacity: 0; transition: opacity .5s;
}
.team-card:hover .team-card__photo::after { opacity: 1; }
.team-card__body { padding: 1.4rem 1.5rem 1.6rem; text-align: center; }
.team-card__body h3 { font-size: 1.18rem; }
.team-card__body p { color: var(--ocean); font-size: .88rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: .3rem; }

/* ---------- Marquee / associations ---------- */
.assoc { padding-block: 2.8rem; background: #fff; border-block: 1px solid var(--line); }
.assoc__label { text-align: center; font-size: .8rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem; }
.assoc img { margin-inline: auto; max-height: 92px; width: auto; filter: grayscale(1) opacity(.75); transition: filter .4s; }
.assoc img:hover { filter: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: clip; background: var(--grad-hero); color: #C9DCE8;
  padding-block: clamp(4.5rem, 9vw, 7rem);
}
.page-hero h1 { color: #fff; margin-block: 1rem .8rem; }
.page-hero .lead { color: #A7C2D3; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .875rem; color: #7FA0B4; }
.breadcrumbs a { color: var(--sky-soft); transition: color .2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs svg { width: 13px; height: 13px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #8FA9BA; position: relative; overflow: clip; }
.footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 90% 0%, rgba(40,187,237,.08), transparent 60%);
  pointer-events: none;
}
.footer__main { position: relative; display: grid; gap: 2.8rem; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem; }
.footer__brand img { height: 56px; margin-bottom: 1.2rem; }
.footer__brand p { font-size: .95rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .95rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1.3rem; }
.footer__links { display: grid; gap: .7rem; }
.footer__links a { color: #8FA9BA; font-size: .96rem; display: inline-flex; align-items: center; gap: .5rem; transition: color .25s, transform .25s; }
.footer__links a::before { content: "—"; color: var(--gold); font-size: .8em; opacity: 0; transform: translateX(-6px); transition: all .25s; }
.footer__links a:hover { color: #fff; transform: translateX(4px); }
.footer__links a:hover::before { opacity: 1; transform: translateX(0); }
.footer__contact { display: grid; gap: .9rem; }
.footer__contact a, .footer__contact div { display: flex; gap: .7rem; align-items: flex-start; color: #8FA9BA; font-size: .95rem; }
.footer__contact a:hover { color: var(--sky); }
.footer__contact svg { width: 17px; height: 17px; flex: none; margin-top: .25rem; color: var(--gold); }
.footer__socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer__socials a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.06); color: #8FA9BA; border: 1px solid rgba(255,255,255,.08);
  transition: all .3s var(--ease);
}
.footer__socials a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: transparent; }
.footer__socials svg { width: 17px; height: 17px; }
.footer__bottom {
  position: relative; border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; justify-content: space-between;
  font-size: .88rem;
}
.footer__bottom a { color: var(--sky-soft); font-weight: 500; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Sticky mobile bar & scroll top ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: none; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -8px 30px rgba(4,18,28,.25);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem .5rem; font-weight: 700; font-size: .95rem; letter-spacing: .04em; color: #fff;
  min-height: 52px;
}
.mobile-bar svg { width: 20px; height: 20px; }
.mobile-bar__call { background: var(--grad-brand); }
.mobile-bar__wa { background: linear-gradient(135deg, #2BB741, #128C7E); }
.mobile-bar a:active { filter: brightness(1.12); }

.to-top {
  position: fixed; right: 1.4rem; bottom: 1.6rem; z-index: var(--z-sticky);
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .35s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: transform, opacity; }
.reveal--left { transform: translateX(-46px); }
.reveal--right { transform: translateX(46px); }
.reveal--zoom { transform: scale(.92); }
.reveal.is-inview { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-stagger].is-inview > * { opacity: 1; transform: none; }
[data-stagger].is-inview > *:nth-child(1) { transition-delay: .05s; }
[data-stagger].is-inview > *:nth-child(2) { transition-delay: .15s; }
[data-stagger].is-inview > *:nth-child(3) { transition-delay: .25s; }
[data-stagger].is-inview > *:nth-child(4) { transition-delay: .35s; }
[data-stagger].is-inview > *:nth-child(5) { transition-delay: .45s; }
[data-stagger].is-inview > *:nth-child(6) { transition-delay: .55s; }
[data-stagger].is-inview > *:nth-child(7) { transition-delay: .65s; }
[data-stagger].is-inview > *:nth-child(8) { transition-delay: .75s; }
[data-stagger].is-inview > *:nth-child(9) { transition-delay: .85s; }
[data-stagger].is-inview > *:nth-child(10) { transition-delay: .95s; }

/* Parallax layers */
[data-parallax] { will-change: transform; }

/* ---------- Keyframes ---------- */
@keyframes word-up { to { transform: translateY(0); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes float-a { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-22px) } }
@keyframes float-b { 0%,100% { transform: translateY(0) } 50% { transform: translateY(18px) } }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 1 } 50% { transform: scale(1.5); opacity: .6 } }

/* ---------- 404 ---------- */
.err-page { min-height: 70vh; display: grid; place-items: center; text-align: center; background: var(--grad-hero); color: #C9DCE8; padding-block: 5rem; position: relative; overflow: clip; }
.err-page h1 { font-size: clamp(6rem, 18vw, 11rem); line-height: 1; color: transparent; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; }
.err-page h2 { color: #fff; margin-bottom: .8rem; }

/* ---------- Utilities ---------- */
.mt-2 { margin-top: 1rem } .mt-3 { margin-top: 1.5rem } .mt-4 { margin-top: 2rem } .mt-5 { margin-top: 3rem }
.center { text-align: center }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin-inline: auto; }
  .glass-chip--tl { left: 0; }
  .glass-chip--br { right: 0; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .topbar__group--info .topbar__item:nth-child(n+2) { display: none; }
  .nav {
    position: fixed; inset: 0; z-index: var(--z-nav);
    background: rgba(6, 18, 27, .96);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 2.5rem;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 1.6rem; text-align: center; }
  .nav__link { font-size: 1.35rem; }
  .nav-toggle { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
}

@media (max-width: 767px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 52px; }
  .to-top { bottom: calc(52px + 1.2rem); }
}

@media (max-width: 560px) {
  .footer__main { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__ctas .btn { width: 100%; }
  .glass-chip { padding: .7rem .9rem; }
  .glass-chip strong { font-size: 1.05rem; }
}

/* ==========================================================================
   LUXURY 3D ENHANCEMENTS
   ========================================================================== */

/* Film grain over everything — very subtle, adds richness */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
}

/* Luxury scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--sky), var(--ocean)); border-radius: 8px; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--grad-gold); }

/* Gold hairline under the glass header */
.header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,179,108,.65) 30%, rgba(238,217,174,.9) 50%, rgba(217,179,108,.65) 70%, transparent);
  opacity: .55; pointer-events: none;
}

/* Shimmering gradient text */
.text-gold, .text-grad { background-size: 200% auto; animation: text-sheen 7s ease-in-out infinite; }
@keyframes text-sheen { 0%,100% { background-position: 0% center } 50% { background-position: 100% center } }

/* Gold offset frames — classic luxury double-border */
.hero__visual::before {
  content: ""; position: absolute; inset: 6% -5% -5% 6%; z-index: -1;
  border: 1.5px solid rgba(217,179,108,.45); border-radius: var(--radius-lg);
  pointer-events: none;
}
.feature-media::after {
  content: ""; position: absolute; inset: -4.5% auto auto -4.5%; width: 58%; height: 58%; z-index: 0;
  border: 1.5px solid rgba(217,179,108,.5); border-radius: var(--radius-lg);
  pointer-events: none;
}

/* Cursor-tracking glare sheen (injected by JS into tilt targets) */
.tilt-glare {
  position: absolute; inset: 0; z-index: 2; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(238,217,174,.22), rgba(255,255,255,.07) 40%, transparent 65%);
  opacity: 0; transition: opacity .35s var(--ease);
}
[data-tilt]:hover > .tilt-glare,
.team-card:hover > .tilt-glare,
.review-card:hover > .tilt-glare { opacity: 1; }

/* Deeper 3D hover states */
.grid-2, .grid-3, .grid-4, .reviews-grid, .steps { perspective: 1400px; }
.card:hover { box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(217,179,108,.35), 0 0 40px rgba(40,187,237,.1); }
.review-card:hover { box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(217,179,108,.3); }
.team-card:hover { box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(217,179,108,.35); }
.step:hover { transform: translateY(-8px) rotateX(5deg); box-shadow: 0 24px 48px rgba(4,18,28,.45), inset 0 1px 0 rgba(238,217,174,.25); }
.btn:active { transform: translateY(-1px) scale(.97); }

/* Stats card — glass with gold top edge */
.stats__card { position: relative; }
.stats__card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(217,179,108,.8), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.stat__num { text-shadow: 0 2px 18px rgba(40,187,237,.25); }

/* Floating gold particles (injected by JS in dark sections) */
.lux-particle {
  position: absolute; bottom: -12px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(238,217,174,.95), rgba(217,179,108,.35) 60%, transparent);
  box-shadow: 0 0 10px rgba(238,217,174,.55);
  animation: particle-rise linear infinite;
  opacity: 0;
}
@keyframes particle-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: .85; }
  60% { opacity: .5; }
  100% { transform: translateY(-88vh) translateX(var(--drift, 30px)); opacity: 0; }
}

/* Hero photo — richer 3D presence */
.hero__photo { box-shadow: var(--shadow-lg), 0 40px 90px rgba(4,18,28,.55); }
.hero__photo::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(155deg, rgba(255,255,255,.14), transparent 35%, transparent 70%, rgba(40,187,237,.12));
}

/* Page-hero gold underline flourish */
.page-hero h1::after {
  content: ""; display: block; width: 84px; height: 2px; margin-top: 1.2rem;
  background: var(--grad-gold); border-radius: 2px;
  box-shadow: 0 0 16px rgba(217,179,108,.6);
}

@media (prefers-reduced-motion: reduce) {
  .lux-particle { display: none; }
  .text-gold, .text-grad { animation: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero h1 .word { transform: none; animation: none; }
}
