/* ── root tokens ─────────────────────────────────────── */
@font-face {
  font-family: "Poppins";
  src: url("../branding/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../branding/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../branding/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../branding/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../branding/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../branding/poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../branding/poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../branding/poppins/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-sans: "Poppins", Arial, sans-serif;

  /* CMS:PALETTE START — controlat din Excel (foaia «Setări»). Nu edita manual. */
  --cream: #f4fbf8;
  --cream-2: #e8f4f1;
  --cream-3: #d7eae6;
  --cream-4: #f0f9f6;
  --cream-5: #e5f2ef;
  --ivory-rgb: 244, 251, 248;
  --kicker-color: #0f4845;
  --kicker-bg: rgba(231, 244, 240, 0.78);
  --kicker-border: rgba(25, 92, 88, 0.18);
  --kicker-shadow: rgba(25, 92, 88, 0.08);
  --kicker-dot: linear-gradient(180deg, #6fb9b0, #195c58);
  /* CMS:PALETTE END */

  --navy: #082a28;
  --navy-2: #103c39;
  --muted: #536a67;
  --gold: #195c58;
  --gold-2: #ecc74d;
  --gold-3: #0f4845;
  --gold-ink: #c79a2b;
  --peach: #ecc74d;
  --peach-rgb: 236, 199, 77;
  --teal-rgb: 25, 92, 88;
  --white: #ffffff;
  --line: rgba(25, 92, 88, 0.24);
  --shadow: 0 24px 70px rgba(8, 42, 40, 0.14);
  --soft-shadow: 0 12px 30px rgba(8, 42, 40, 0.09);
  --max: 1780px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

/* ── header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 220px 1fr 154px;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 58px 14px;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  max-width: none;
  padding: 10px 58px;
  background: rgba(var(--ivory-rgb), 0.88);
  box-shadow: 0 8px 30px rgba(8, 20, 44, 0.08);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: flex-start; width: max-content; color: var(--gold); }
.brand picture { display: block; line-height: 0; }
.brand img { width: 156px; height: auto; }

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 62px);
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.main-nav a { position: relative; padding: 10px 0; transition: color 0.2s ease; }

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.main-nav a:hover, .main-nav a.active { color: var(--gold-3); }
.main-nav a:hover::after, .main-nav a.active::after { width: 26px; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, #195c58 0%, #082a28 100%);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(8, 20, 44, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover, .btn:hover { transform: translateY(-2px); }

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── hero (untouched) ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 154px 64px 88px;
  background:
    radial-gradient(58% 64% at 80% 40%, rgba(var(--peach-rgb), 0.18), transparent 72%),
    radial-gradient(52% 58% at 6% 14%, rgba(var(--teal-rgb), 0.12), transparent 70%);
}

.hero::before { display: none; }

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy {
  padding-top: clamp(18px, 3vh, 42px);
  width: auto;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin: 0 0 44px;
  padding: 10px 22px;
  border: 1px solid rgba(25, 92, 88, 0.12);
  border-radius: 999px;
  background: rgba(242, 250, 247, 0.9);
  box-shadow: 0 8px 22px rgba(25, 92, 88, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span { color: var(--kicker-color); font-size: 21px; }

.hero h1 {
  position: relative;
  z-index: 8;
  width: 100%;
  max-width: 840px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: clamp(43px, 3.05vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  text-wrap: balance;
}

.hero h1 span { color: var(--gold); }

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #333a4d;
  font-size: clamp(18px, 1.12vw, 22px);
  line-height: 1.48;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 254px;
  min-height: 64px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 21px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: linear-gradient(180deg, #6fb9b0 0%, #195c58 100%);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(25, 92, 88, 0.34);
}

.btn-secondary {
  border: 1.5px solid rgba(25, 92, 88, 0.72);
  background: rgba(247, 252, 250, 0.7);
  color: var(--navy);
}

.trusted { margin-top: 58px; color: #85858b; }
.trusted p { margin: 0 0 24px; font-size: 17px; }

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #898a8d;
}

.trusted-logos span {
  color: rgba(8, 20, 44, 0.58);
  font-size: clamp(16px, 1.18vw, 22px);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
}

/* soft colored halo behind the floating laptop */
.hero-laptop-glow {
  position: absolute;
  z-index: 0;
  width: 106%;
  aspect-ratio: 1 / 0.86;
  background:
    radial-gradient(closest-side, rgba(var(--peach-rgb), 0.5), transparent 72%),
    radial-gradient(closest-side, rgba(var(--teal-rgb), 0.34), transparent 70%);
  background-position: 64% 40%, 30% 64%;
  background-repeat: no-repeat;
  background-size: 78% 78%, 70% 70%;
  filter: blur(14px);
  animation: heroGlowPulse 9s ease-in-out infinite;
}

/* faint dashed orbit ring for extra life */
.hero-laptop-ring {
  position: absolute;
  z-index: 0;
  width: min(760px, 112%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(var(--teal-rgb), 0.18);
  -webkit-mask-image: radial-gradient(closest-side, transparent 58%, #000 60%, #000 78%, transparent 100%);
          mask-image: radial-gradient(closest-side, transparent 58%, #000 60%, #000 78%, transparent 100%);
  animation: heroSpin 60s linear infinite;
}

.hero-laptop {
  position: relative;
  z-index: 2;
  width: min(126%, 880px);
  height: auto;
  filter: drop-shadow(0 40px 66px rgba(8, 42, 40, 0.28));
  animation: heroFloat 6.5s ease-in-out infinite;
  will-change: transform;
}

/* glassy floating stat chips */
.hero-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(8, 42, 40, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-chip svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-chip .hero-chip-star { color: var(--gold-ink); font-size: 26px; line-height: 1; }
.hero-chip span { display: block; color: var(--muted); font-size: 12.5px; font-weight: 700; line-height: 1.2; }
.hero-chip strong { display: block; color: var(--gold); font-size: 23px; line-height: 1.1; }

.hero-chip-engagement { top: 6%; right: 2%; animation: heroFloat 7.5s ease-in-out infinite; }
.hero-chip-success { bottom: 8%; left: -2%; animation: heroFloat 8.5s ease-in-out infinite 0.6s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes heroSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-laptop,
  .hero-chip,
  .hero-laptop-glow,
  .hero-laptop-ring { animation: none; }
}

.hero-laptop-mobile { display: none; }

.laptop {
  position: absolute;
  right: -70px; bottom: 12px;
  width: min(880px, 100%);
  height: 600px;
  transform: rotate(-2deg);
  transform-origin: bottom center;
}

.screen-frame {
  position: absolute;
  right: 22px; bottom: 122px;
  width: 760px; height: 482px;
  padding: 17px;
  border: 15px solid #141414;
  border-radius: 32px;
  background: #111;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-14deg) rotateX(4deg) skewX(-4deg);
  transform-origin: right bottom;
}

.dashboard {
  display: grid;
  grid-template-columns: 70px 1fr;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #fdfdfc;
  color: #082a28;
}

.dashboard-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 26px 12px;
  background: #fafafa;
  border-right: 1px solid #ece8df;
}

.mini-logo { color: var(--gold); font-family: var(--font-sans); font-size: 28px; font-weight: 700; }

.rail-icon {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  color: #1f2735;
  font-size: 20px;
  font-weight: 900;
}

.rail-icon.active { background: linear-gradient(180deg, #6fb9b0, #195c58); color: var(--white); }

.dashboard-main { padding: 30px 32px 28px; }

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.dashboard h2 { margin: 0; font-size: 25px; font-style: italic; font-weight: 700; }

.dashboard-top button {
  min-width: 152px;
  padding: 12px 16px;
  border: 1px solid #e1ddd4;
  border-radius: 8px;
  background: var(--white);
  color: #6e7481;
  font-size: 13px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.metric, .analytics-card {
  border: 1px solid #ece7dd;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(8, 20, 44, 0.06);
}

.metric { min-height: 112px; padding: 19px 18px; }
.metric span { display: block; color: #4f5562; font-size: 13px; }
.metric strong { display: block; margin: 8px 0 6px; font-size: 26px; font-weight: 900; }
.metric small { color: #20a451; font-size: 14px; font-weight: 800; }

.analytics-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; }
.analytics-card { min-height: 210px; padding: 22px; }
.analytics-card h3 { margin: 0 0 16px; font-size: 16px; font-style: italic; }

.line-chart { position: relative; height: 143px; }
.line-chart svg { width: 100%; height: 100%; }
.grid-line { fill: none; stroke: rgba(8, 20, 44, 0.08); stroke-width: 1; }
.area { fill: url(#chartFill); }
.line { fill: none; stroke: #1e7771; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.dots circle { fill: var(--white); stroke: #1e7771; stroke-width: 3; }

.platform-content { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 20px; }

.donut {
  width: 118px; aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#56aea5 0 46%, #0f4845 46% 76%, #7d97c0 76% 91%, #b8c0cf 91% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 31px;
  border-radius: 50%;
  background: var(--white);
}

.platform-content ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; color: #3c4250; font-size: 13px; }
.platform-content li { display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 8px; }
.platform-content li span { width: 10px; height: 10px; border-radius: 50%; }
.platform-content li strong { color: var(--navy); }
.platform-content .gold { background: #56aea5; }
.platform-content .navy { background: #0f4845; }
.platform-content .blue { background: #7d97c0; }
.platform-content .gray { background: #b8c0cf; }

.laptop-base {
  position: absolute;
  right: -12px; bottom: 34px;
  width: 860px; height: 118px;
  border-radius: 8px 8px 46px 46px;
  background:
    linear-gradient(172deg, #f6f1e8 0 18%, transparent 19%),
    linear-gradient(180deg, #777b82 0%, #30343b 58%, #7f8389 100%);
  clip-path: polygon(5% 0, 92% 0, 100% 68%, 81% 100%, 0 63%);
  box-shadow: 0 35px 60px rgba(8, 20, 44, 0.23);
}

.laptop-base::before {
  content: "";
  position: absolute;
  left: 170px; right: 170px; top: 18px;
  height: 30px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #a7abb0, #565a61);
  opacity: 0.9;
}

.laptop-shadow {
  position: absolute;
  right: 60px; bottom: 4px;
  width: 760px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(8, 20, 44, 0.22), rgba(8, 20, 44, 0));
  filter: blur(8px);
}

.floating-card {
  position: absolute;
  z-index: 6;
  display: grid;
  gap: 6px;
  width: 176px; min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(8, 20, 44, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(10px);
}

.floating-card svg { width: 34px; height: 34px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.floating-card span { color: var(--navy); font-size: 16px; font-weight: 800; line-height: 1.18; }
.floating-card strong { color: var(--gold); font-size: 31px; line-height: 1; }

.floating-community { top: 38px; left: 300px; transform: rotate(-4deg); }
.floating-engagement { right: 24px; top: 244px; }

.floating-success {
  left: 58px; bottom: 100px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  width: 158px; min-height: 110px;
  padding: 18px 16px;
}

.floating-success .star-icon { grid-row: span 2; color: var(--gold); font-size: 38px; }
.floating-success strong { grid-column: 2; }

.orbit { display: none; }
.orbit-large { right: -180px; top: 142px; width: 630px; height: 630px; }
.orbit-small { right: 124px; top: 216px; width: 400px; height: 400px; }
.spark { display: none; }
.spark-one { left: 55%; top: 27%; }
.spark-two { left: 57%; top: 31%; font-size: 19px; }
.spark-three { right: 30px; top: 150px; font-size: 24px; }
.gold-wave { display: none; }

.gold-wave::before {
  content: "";
  position: absolute;
  left: -4%; top: -44px;
  width: 112%; height: 130px;
  border-top: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

/* ── scroll reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── section base ──────────────────────────────────── */
.section {
  position: relative;
  padding: 110px 64px;
}

.section-heading,
.service-grid,
.about,
.team-grid,
.testimonial-grid,
.contact {
  max-width: 1320px;
  margin: 0 auto;
}

.section-heading { margin-bottom: 56px; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--kicker-color);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "✦";
  font-size: 9px;
}

.section h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 600;
  line-height: 1.08;
}

.section-heading > p:not(.section-kicker),
.about-copy > p:not(.section-kicker),
.contact-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

/* ── services — dark navy ───────────────────────────── */
.services {
  background: linear-gradient(160deg, var(--navy) 0%, #103c39 100%);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 8% 55%, rgba(25, 92, 88, 0.07), transparent),
    radial-gradient(ellipse 38% 55% at 92% 18%, rgba(25, 92, 88, 0.05), transparent);
  pointer-events: none;
}

.services .section-heading { position: relative; }
.services .section-kicker { color: var(--kicker-color); }
.services .section h2 { color: var(--cream); }
.services .section-heading > p:not(.section-kicker) { color: rgba(var(--ivory-rgb), 0.52); }

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 36px 30px 32px;
  border: 1px solid rgba(25, 92, 88, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  cursor: default;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: -70px; right: -70px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 92, 88, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  background: rgba(25, 92, 88, 0.055);
  border-color: rgba(25, 92, 88, 0.32);
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(25, 92, 88, 0.08);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(25, 92, 88, 0.18);
  background: rgba(25, 92, 88, 0.07);
  margin-bottom: 28px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .service-card-icon {
  background: rgba(25, 92, 88, 0.15);
  border-color: rgba(25, 92, 88, 0.38);
}

.service-card-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-num {
  position: absolute;
  top: 26px; right: 26px;
  color: rgba(25, 92, 88, 0.22);
  font-family: var(--font-sans);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.35s;
  user-select: none;
}

.service-card:hover .service-card-num { color: rgba(25, 92, 88, 0.42); }

.service-card h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: rgba(var(--ivory-rgb), 0.5);
  line-height: 1.65;
  font-size: 15.5px;
}

/* ── about — warm cream ─────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
  background: linear-gradient(155deg, var(--cream) 0%, #fffdf8 100%);
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(25, 92, 88, 0.2);
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 62% center;
  transition: transform 0.65s ease;
}

.about-media:hover img { transform: scale(1.04); }

.about-copy .section-kicker { color: var(--kicker-color); }
.about-copy h2 { color: var(--navy); }

.about-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
  margin-top: 18px;
  max-width: 620px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.about-stats div {
  padding: 22px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 22px rgba(8, 20, 44, 0.06);
  transition: transform 0.28s, box-shadow 0.28s;
}

.about-stats div:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(8, 20, 44, 0.1);
}

.about-stats strong {
  display: block;
  color: var(--gold-3);
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stats span { color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.4; }

/* ── team — dark navy ───────────────────────────────── */
.team {
  background: linear-gradient(180deg, var(--navy) 0%, #082a28 100%);
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% -5%, rgba(25, 92, 88, 0.07), transparent);
  pointer-events: none;
}

.team .section-kicker { color: var(--gold-2); }
.team .section h2 { color: var(--cream); }

.team-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-grid article {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(25, 92, 88, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.team-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
  border-color: rgba(25, 92, 88, 0.28);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
}

.team-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 44, 0.5) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-grid article:hover .team-img-wrap::after { opacity: 1; }

.team-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream-2);
  display: block;
  transition: transform 0.55s ease;
}

.team-grid article:hover img { transform: scale(1.05); }

.team-info { padding: 20px 22px 26px; }

.team-grid h3 {
  margin: 0 0 6px;
  color: var(--cream);
  font-size: 21px;
  font-weight: 700;
}

.team-grid p {
  margin: 0;
  color: var(--gold-2);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── testimonials — deep navy ──────────────────────── */
.testimonials {
  background: linear-gradient(155deg, #103c39 0%, #082a28 100%);
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 18% 50%, rgba(25, 92, 88, 0.06), transparent),
    radial-gradient(ellipse 32% 52% at 82% 28%, rgba(25, 92, 88, 0.04), transparent);
  pointer-events: none;
}

.testimonials .section-kicker { color: var(--gold-2); }
.testimonials .section h2 { color: var(--cream); }

.testimonial-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-grid blockquote {
  position: relative;
  margin: 0;
  padding: 44px 36px 36px;
  border-radius: 16px;
  border: 1px solid rgba(25, 92, 88, 0.11);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: transform 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.testimonial-grid blockquote::before {
  content: "\201C";
  position: absolute;
  top: 10px; left: 28px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 88px;
  line-height: 1;
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.testimonial-grid blockquote:hover {
  background: rgba(25, 92, 88, 0.048);
  border-color: rgba(25, 92, 88, 0.28);
  transform: translateY(-5px);
}

.testimonial-grid p {
  margin: 0 0 30px;
  color: rgba(var(--ivory-rgb), 0.68);
  font-size: 18px;
  line-height: 1.72;
}

.testimonial-grid cite {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.04em;
}

.testimonial-grid cite::before {
  content: "";
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── contact — light cream ──────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
  background: linear-gradient(160deg, var(--cream) 0%, #fffdf8 100%);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 92, 88, 0.07), transparent 70%);
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 92, 88, 0.05), transparent 70%);
  pointer-events: none;
}

.contact-copy { position: relative; }
.contact-copy .section-kicker { color: var(--kicker-color); }
.contact-copy h2 { color: var(--navy); }

.contact-form {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 38px;
  border-radius: 18px;
  border: 1px solid rgba(8, 20, 44, 0.06);
  background: var(--white);
  box-shadow: 0 22px 64px rgba(8, 20, 44, 0.09);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid rgba(8, 20, 44, 0.1);
  border-radius: 10px;
  background: var(--cream);
  color: var(--navy);
  padding: 14px 18px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}

.contact-form textarea { resize: vertical; min-height: 130px; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(25, 92, 88, 0.1);
  background: #fffef9;
}

.contact-form .btn { border: 0; cursor: pointer; justify-self: start; min-width: 220px; }

/* ── footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 60px 64px 34px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(25, 92, 88, 0.5) 50%, transparent 100%);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 92, 88, 0.04), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  width: 128px;
  opacity: 0.88;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(var(--ivory-rgb), 0.4);
  font-size: 15px;
  line-height: 1.65;
  max-width: 270px;
}

.footer-nav h4,
.footer-contact h4 {
  margin: 0 0 20px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 11px;
}

.footer-nav a {
  color: rgba(var(--ivory-rgb), 0.48);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold-2); }

.footer-contact p {
  margin: 0 0 10px;
  color: rgba(var(--ivory-rgb), 0.48);
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(var(--ivory-rgb), 0.48);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(var(--ivory-rgb), 0.25);
  font-size: 13.5px;
}

/* ── responsive ─────────────────────────────────────── */
@media (max-width: 1380px) {
  .site-header {
    grid-template-columns: 180px 1fr 136px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .brand img { width: 140px; }
  .main-nav { gap: 28px; font-size: 16px; }
  .header-cta { width: 132px; min-height: 46px; font-size: 16px; }

  .hero {
    padding-left: 44px;
    padding-right: 44px;
    padding-top: 122px;
    padding-bottom: 70px;
  }

  .eyebrow { margin-bottom: 28px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: clamp(40px, 3.05vw, 50px); line-height: 1.05; }
  .hero-lead { margin-top: 24px; font-size: 18px; }
  .hero-actions { margin-top: 30px; }
  .hero-content { grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1.22fr); gap: 28px; }
  .hero-laptop { width: min(124%, 720px); }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 76px; left: 24px; right: 24px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(8, 20, 44, 0.08);
    border-radius: 8px;
    background: rgba(var(--ivory-rgb), 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
  }

  .menu-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 16px; }
  .main-nav a::after { left: 16px; transform: none; }

  .hero {
    padding-top: 124px;
    background:
      linear-gradient(180deg, rgb(var(--ivory-rgb)) 0%, #fffdf8 62%, var(--cream-2) 100%);
  }

  .hero-content { display: block; }
  .hero h1 { width: auto; }
  .hero-copy { width: min(720px, 72vw); max-width: 720px; }
  .hero-visual { display: none; }

  .hero-laptop-mobile {
    display: block;
    width: min(100%, 560px);
    height: auto;
    margin: 26px auto 0;
    object-fit: contain;
    filter: drop-shadow(0 26px 46px rgba(8, 42, 40, 0.22));
  }

  .service-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .about,
  .contact { grid-template-columns: 1fr; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 26px 24px 8px;
  }

  .site-header.scrolled {
    padding: 12px 24px;
  }

  .brand img { width: 92px; }
  .header-cta { display: none; }

  .menu-toggle {
    width: 48px;
    height: 42px;
    border-radius: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 30px;
    height: 3px;
    margin: 6px auto;
    border-radius: 999px;
    background: var(--gold-3);
  }

  .hero {
    min-height: auto;
    padding: 118px 24px 0;
    background:
      radial-gradient(circle at 74% 7%, rgba(25, 92, 88, 0.05), transparent 26%),
      linear-gradient(180deg, #ffffff 0%, #fffefb 56%, #eef8f5 100%);
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .eyebrow {
    min-height: 42px;
    margin-bottom: 36px;
    padding: 9px 18px;
    border-color: rgba(25, 92, 88, 0.24);
    background: rgba(255, 255, 255, 0.88);
    color: var(--gold-3);
    font-size: 10.5px;
    line-height: 1.25;
    box-shadow: 0 12px 24px rgba(25, 92, 88, 0.08);
  }

  .eyebrow span {
    color: var(--gold-2);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 36px);
    font-weight: 800;
    line-height: 1.16;
  }

  .hero-lead {
    max-width: 360px;
    margin-top: 28px;
    color: #20263a;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    margin-top: 34px;
  }

  .btn {
    width: min(100%, 276px);
    min-width: 0;
    min-height: 58px;
    justify-content: center;
    font-size: 15.5px;
  }

  .btn-primary svg,
  .btn-secondary svg {
    color: var(--gold-2);
  }

  .hero-laptop-mobile {
    width: calc(100% + 48px);
    max-width: none;
    height: auto;
    margin: 22px 0 -4px -24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 20px 38px rgba(8, 42, 40, 0.2));
    object-fit: contain;
    object-position: center;
  }
  .trusted { display: none; }
  .trusted p { margin-bottom: 16px; font-size: 15px; line-height: 1.5; }
  .trusted-logos { gap: 8px 14px; }
  .trusted-logos span { font-size: 15px; line-height: 1.2; }
  .hero-visual { min-height: 420px; margin-top: 26px; transform: scale(0.55); transform-origin: left top; }
  .floating-community { left: 42px; }
  .floating-engagement { right: 110px; }
  .gold-wave { height: 150px; bottom: -75px; }

  .section { padding: 76px 20px; }
  .section h2 { font-size: 37px; }

  .service-grid,
  .team-grid,
  .about-stats { grid-template-columns: 1fr; }

  .about-media img { height: 380px; }
  .contact-form { padding: 24px; }

  .site-footer { padding: 46px 20px 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 430px) {
  .hero-laptop-mobile {
    width: calc(100% + 40px);
    height: auto;
    margin-left: -20px;
    object-position: center;
  }
  .trusted-logos span { font-size: 14px; }
  .trusted-logos {
    gap: 8px;
  }
  .floating-engagement { right: 180px; }
  .floating-success { left: 18px; }
}

/* Light gold refresh below hero */
.section {
  padding: 118px 64px;
  background: #fffdf8;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(125deg, rgba(25, 92, 88, 0.06) 0%, transparent 36%, transparent 64%, rgba(236, 199, 77, 0.07) 100%),
    radial-gradient(900px circle at 8% 10%, rgba(25, 92, 88, 0.09), transparent 56%),
    radial-gradient(820px circle at 92% 90%, rgba(236, 199, 77, 0.11), transparent 56%);
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.section-heading,
.service-grid,
.showcase-grid,
.about,
.team-grid,
.testimonial-grid,
.contact {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid var(--kicker-border);
  border-radius: 999px;
  background: var(--kicker-bg);
  color: var(--kicker-color);
  box-shadow: 0 10px 26px var(--kicker-shadow);
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kicker-dot);
  box-shadow: 0 0 0 5px var(--kicker-shadow);
}

.section h2 {
  color: var(--navy);
}

.section-heading > p:not(.section-kicker),
.about-copy > p:not(.section-kicker),
.contact-copy p {
  color: #616876;
}

.services {
  background:
    linear-gradient(180deg, var(--cream) 0%, #fffdf8 58%, var(--cream-2) 100%);
  overflow: hidden;
}

.services::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -86px;
  height: 190px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(91, 171, 162, 0.28), rgba(255, 255, 255, 0));
  transform: rotate(-2deg);
  pointer-events: none;
}

.services .section-kicker,
.team .section-kicker,
.testimonials .section-kicker {
  color: var(--kicker-color);
}

.services h2,
.team h2,
.testimonials h2 {
  color: var(--navy);
}

.services .section-heading > p:not(.section-kicker) {
  color: #616876;
}

.service-grid {
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 292px;
  padding: 30px;
  border: 1px solid rgba(25, 92, 88, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 239, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(236, 199, 77, 0.16), transparent 34%);
  box-shadow: 0 18px 50px rgba(25, 92, 88, 0.09);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), transparent);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(25, 92, 88, 0.35);
  box-shadow: 0 28px 70px rgba(25, 92, 88, 0.14);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(25, 92, 88, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--cream-2), #1f7a73);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(25, 92, 88, 0.18);
}

.service-card-icon svg {
  width: 25px;
  height: 25px;
}

.service-card-num {
  color: rgba(8, 20, 44, 0.22);
  font-family: var(--font-sans);
  font-size: 44px;
}

.service-card h3 {
  color: var(--navy);
}

.service-card p {
  color: #626978;
}

.showcase {
  background: linear-gradient(180deg, #fffdf8 0%, var(--cream-2) 100%);
  overflow: hidden;
}

.showcase::after {
  content: "Marketing Alchemy";
  position: absolute;
  right: 46px;
  top: 42px;
  color: rgba(25, 92, 88, 0.055);
  font-family: var(--font-sans);
  font-size: clamp(82px, 12vw, 190px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.showcase-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.showcase-card {
  position: relative;
  flex: 0 0 calc((100% - 80px) / 6);
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(25, 92, 88, 0.1);
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 38px rgba(25, 92, 88, 0.06);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s ease, box-shadow 0.34s ease;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 92, 88, 0.24);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 26px 60px rgba(25, 92, 88, 0.13);
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-card::after {
  display: none;
}

.about {
  background:
    linear-gradient(120deg, var(--cream) 0%, #fffdf8 42%, var(--cream-2) 100%);
}

.about::after {
  content: "";
  position: absolute;
  left: 64px;
  right: 64px;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 92, 88, 0.34), transparent);
}

.about-media {
  border-radius: 20px;
  border: 8px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 75px rgba(25, 92, 88, 0.14);
}

.about-media::after {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(25, 92, 88, 0.16), transparent 45%);
}

.about-copy {
  padding: 18px 0;
}

.about-stats div {
  border-left: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(25, 92, 88, 0.16);
  box-shadow: 0 16px 38px rgba(25, 92, 88, 0.08);
}

.team {
  background: linear-gradient(180deg, #fffdf8 0%, var(--cream-2) 100%);
  overflow: hidden;
}

.team::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(25, 92, 88, 0.12));
  pointer-events: none;
}

.team-grid article {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(25, 92, 88, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(25, 92, 88, 0.09);
}

.team-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 68px rgba(25, 92, 88, 0.15);
  border-color: rgba(25, 92, 88, 0.34);
}

.team-img-wrap::after {
  background: linear-gradient(to top, rgba(25, 92, 88, 0.28) 0%, transparent 48%);
}

.team-info {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(231, 244, 240, 0.8));
}

.team-grid h3 {
  color: var(--navy);
}

.team-grid p {
  color: var(--gold-3);
}

.testimonials {
  background:
    linear-gradient(180deg, var(--cream-2) 0%, #fffdf8 100%);
  overflow: hidden;
}

.testimonial-grid blockquote {
  border-radius: 16px;
  border: 1px solid rgba(25, 92, 88, 0.16);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(25, 92, 88, 0.1);
}

.testimonial-grid blockquote::before {
  color: var(--gold);
  opacity: 0.22;
}

.testimonial-grid blockquote:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(25, 92, 88, 0.34);
  box-shadow: 0 28px 68px rgba(25, 92, 88, 0.14);
}

.testimonial-grid p {
  color: #4e5666;
}

.testimonial-grid cite {
  color: var(--gold-3);
}

.contact {
  background:
    linear-gradient(135deg, #fffdf8 0%, var(--cream-5) 100%);
  border-top: 1px solid rgba(25, 92, 88, 0.13);
}

.contact::before,
.contact::after {
  display: none;
}

.contact-copy {
  padding: 30px 0;
}

.contact-form {
  border-radius: 18px;
  border: 1px solid rgba(25, 92, 88, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 243, 0.88));
  box-shadow: 0 28px 72px rgba(25, 92, 88, 0.14);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(25, 92, 88, 0.16);
}

.site-footer {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(25, 92, 88, 0.16);
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, rgba(25, 92, 88, 0.48), transparent);
}

.site-footer::after {
  display: none;
}

.footer-top {
  border-bottom-color: rgba(8, 20, 44, 0.08);
}

.footer-brand p,
.footer-nav a,
.footer-contact p,
.footer-contact a,
.footer-bottom {
  color: rgba(8, 20, 44, 0.58);
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--gold-3);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-3);
}

@media (max-width: 760px) {
  .section {
    padding: 78px 20px;
  }

  .service-grid,
  .team-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about::after {
    left: 20px;
    right: 20px;
  }
}

/* Features bento */
.services {
  padding-top: 86px;
  padding-bottom: 82px;
}

.features-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 930px);
  align-items: start;
  gap: clamp(30px, 4vw, 58px);
  width: min(1320px, 100%);
  margin: 0 auto;
}

.services .feature-heading {
  max-width: 340px;
  margin: 0;
  padding-top: 8px;
}

.services .feature-heading h2 {
  font-size: clamp(2.2rem, 3.1vw, 3.35rem);
  line-height: 1.04;
}

.services .feature-heading > p:not(.section-kicker) {
  max-width: 300px;
}

.features-bento {
  position: relative;
  z-index: 1;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 930px;
  margin: 0;
}

.feature-tile {
  position: relative;
  grid-column: span 2;
  min-height: 232px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(25, 92, 88, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 247, 0.92)),
    radial-gradient(circle at 86% 12%, rgba(236, 199, 77, 0.28), transparent 34%);
  box-shadow: 0 22px 60px rgba(25, 92, 88, 0.1);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(236, 199, 77, 0.2), transparent 42%),
    linear-gradient(180deg, transparent, rgba(25, 92, 88, 0.08));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.feature-tile::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #6fb9b0, var(--gold), rgba(40, 112, 255, 0.24));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.feature-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 92, 88, 0.38);
  box-shadow: 0 30px 80px rgba(25, 92, 88, 0.16);
}

.feature-tile:hover::before {
  opacity: 1;
}

.feature-tile:hover::after {
  transform: scaleX(1);
}

.feature-tile > * {
  position: relative;
  z-index: 1;
}

.feature-tile-wide {
  grid-column: span 3;
  min-height: 244px;
  flex-direction: row;
  align-items: stretch;
}

.feature-tile-wide .feature-copy {
  max-width: 54%;
  align-self: flex-end;
}

.feature-tile:not(.feature-tile-wide) .feature-copy {
  flex: 1;
  min-width: 0;
}

.feature-copy span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(25, 92, 88, 0.2);
  border-radius: 999px;
  background: rgba(231, 244, 240, 0.74);
  color: var(--gold-3);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-copy h3 {
  max-width: 520px;
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.feature-copy p {
  max-width: 520px;
  margin: 10px 0 0;
  color: #626978;
  font-size: 0.88rem;
  line-height: 1.58;
}

.feature-visual {
  flex: 0 0 100px;
  width: 100px;
  min-height: 118px;
  display: grid;
  place-items: center;
}

.feature-visual-ring {
  color: var(--gold);
}

.feature-visual-ring svg {
  position: absolute;
  width: 126px;
  height: auto;
  fill: currentColor;
  opacity: 0.2;
}

.feature-visual-ring strong {
  position: relative;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 2.46rem;
  line-height: 1;
}

.feature-visual-fingerprint {
  color: var(--gold);
}

.feature-visual-fingerprint svg {
  width: 92px;
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.78;
}

.feature-visual-speed {
  color: var(--gold-3);
}

.feature-visual-speed svg {
  width: 112px;
  fill: none;
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.speed-orbit {
  position: absolute;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(25, 92, 88, 0.18);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.speed-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6fb9b0;
  box-shadow: 0 0 0 7px rgba(91, 171, 162, 0.14);
}

.speed-orbit span:nth-child(1) {
  left: 17px;
  top: 36px;
}

.speed-orbit span:nth-child(2) {
  right: 22px;
  top: 18px;
  background: #1f86ff;
  box-shadow: 0 0 0 7px rgba(31, 134, 255, 0.1);
}

.speed-orbit span:nth-child(3) {
  right: 32px;
  bottom: 24px;
}

.feature-dashboard {
  align-self: stretch;
  width: min(250px, 42%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: -2px -8px -22px 0;
  padding: 30px 16px 0;
  border-left: 1px solid rgba(25, 92, 88, 0.2);
  border-top: 1px solid rgba(25, 92, 88, 0.2);
  border-radius: 8px 0 0 0;
  background: linear-gradient(180deg, rgba(242, 250, 247, 0.74), rgba(255, 255, 255, 0));
}

.dashboard-top {
  position: absolute;
  top: 14px;
  left: 18px;
  display: flex;
  gap: 6px;
}

.dashboard-top i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(25, 92, 88, 0.36);
  border-radius: 50%;
  background: rgba(236, 199, 77, 0.45);
}

.feature-dashboard svg {
  width: 128%;
  max-width: none;
  height: auto;
  margin-left: -8px;
  fill: none;
  stroke: var(--gold-3);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.86;
}

.feature-network {
  position: relative;
  flex: 1;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 10px 0;
}

.network-line {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(25, 92, 88, 0.42), transparent);
}

.network-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.network-row.row-a,
.network-row.row-c {
  justify-content: flex-end;
  padding-right: calc(50% - 16px);
}

.network-row.row-b {
  padding-left: calc(50% - 16px);
}

.network-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(25, 92, 88, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #4f5664;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(25, 92, 88, 0.08);
}

.network-row b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e6f4f1, #6fb9b0);
  color: var(--navy);
  font-size: 0.72rem;
  box-shadow: 0 12px 28px rgba(25, 92, 88, 0.2);
}

.network-row.row-b b {
  background: linear-gradient(180deg, #dff0ff, #5bb0ff);
}

.community-people {
  position: relative;
  min-height: 184px;
  display: block;
  padding: 0;
}

.community-people::before,
.community-people::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.community-people::before {
  inset: 18px 28px;
  border: 1px solid rgba(25, 92, 88, 0.18);
  background: radial-gradient(circle, rgba(236, 199, 77, 0.16), transparent 62%);
}

.community-people::after {
  width: 84px;
  height: 84px;
  right: 18px;
  top: 26px;
  background: rgba(31, 134, 255, 0.08);
  filter: blur(18px);
}

.community-photo {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(180deg, var(--cream-2), #6fb9b0);
  box-shadow: 0 16px 34px rgba(25, 92, 88, 0.18);
}

.community-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}

.community-photo-main {
  width: 86px;
  height: 86px;
  left: 50%;
  top: 50%;
  transform: translate(-44%, -48%);
  z-index: 3;
}

.community-photo-a {
  width: 62px;
  height: 62px;
  left: 14%;
  top: 18%;
  z-index: 2;
}

.community-photo-b {
  width: 58px;
  height: 58px;
  right: 14%;
  top: 13%;
  z-index: 2;
}

.community-photo-c {
  width: 66px;
  height: 66px;
  left: 20%;
  bottom: 10%;
  z-index: 2;
}

.community-photo-d {
  width: 56px;
  height: 56px;
  right: 18%;
  bottom: 16%;
  z-index: 2;
}

@media (max-width: 1180px) {
  .features-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 960px;
  }

  .services .feature-heading {
    max-width: 760px;
    padding-top: 0;
  }

  .services .feature-heading h2,
  .services .feature-heading > p:not(.section-kicker) {
    max-width: 760px;
  }

  .features-bento {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 980px) {
  .features-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-tile,
  .feature-tile-wide {
    grid-column: span 1;
    min-height: 238px;
  }

  .feature-tile-wide {
    min-height: 320px;
    flex-direction: column;
  }

  .feature-tile-wide .feature-copy,
  .feature-dashboard {
    max-width: none;
    width: 100%;
    align-self: flex-start;
  }

  .feature-dashboard {
    min-height: 142px;
    margin: 0 -22px -22px 0;
  }
}

@media (max-width: 680px) {
  .services {
    padding-top: 74px;
    padding-bottom: 70px;
  }

  .features-shell {
    gap: 26px;
  }

  .services .feature-heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.05rem);
  }

  .services .feature-heading > p:not(.section-kicker) {
    max-width: 100%;
  }

  .features-bento {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .feature-tile,
  .feature-tile-wide {
    min-height: auto;
    padding: 22px;
  }

  .feature-visual {
    flex-basis: 86px;
    width: 86px;
    min-height: 104px;
  }

  .feature-visual-ring svg {
    width: 112px;
  }

  .feature-visual-ring strong {
    font-size: 2.15rem;
  }

  .feature-visual-fingerprint svg {
    width: 80px;
  }

  .feature-visual-speed svg {
    width: 96px;
  }

  .speed-orbit {
    width: 80px;
    height: 80px;
  }

  .feature-copy h3 {
    font-size: 1.04rem;
  }

  .feature-copy p {
    font-size: 0.88rem;
  }

  .feature-dashboard {
    min-height: 132px;
    margin: 0 -22px -22px 0;
    padding: 32px 14px 0;
  }

  .feature-network {
    min-height: 190px;
  }

  .community-people {
    min-height: 210px;
  }

  .community-photo-main {
    width: 78px;
    height: 78px;
  }

  .community-photo-a,
  .community-photo-c {
    left: 12%;
  }

  .community-photo-b,
  .community-photo-d {
    right: 12%;
  }

  .network-row span {
    max-width: 132px;
  }
}

/* Compact portfolio gallery */
@media (max-width: 1100px) {
  .showcase-grid {
    gap: 14px;
  }

  .showcase-card {
    flex: 0 0 calc((100% - 42px) / 4);
    padding: 18px;
  }
}

@media (max-width: 760px) {
  .showcase-grid {
    gap: 11px;
  }

  .showcase-card {
    flex: 0 0 calc((100% - 22px) / 3);
    padding: 14px;
    border-radius: 13px;
  }
}

@media (max-width: 430px) {
  .showcase-grid {
    gap: 10px;
  }

  .showcase-card {
    flex: 0 0 calc((100% - 10px) / 2);
    padding: 14px;
  }
}

/* Premium polish below hero */
.reveal-d5 {
  transition-delay: 0.5s;
}

main > .section:not(.hero) {
  padding-top: 96px;
  padding-bottom: 96px;
}

main > .section:not(.hero)::before {
  opacity: 1;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 850px;
  font-size: clamp(2.25rem, 4vw, 4.75rem);
  line-height: 1.02;
}

.section-heading > p:not(.section-kicker) {
  max-width: 680px;
  font-size: 1.05rem;
}

.services {
  padding-top: 84px;
  padding-bottom: 78px;
}

.feature-tile,
.showcase-card,
.team-grid article,
.testimonial-grid blockquote,
.contact-form,
.about-stats div {
  border-radius: 8px;
}

.feature-tile,
.showcase-card,
.team-grid article,
.testimonial-grid blockquote {
  backdrop-filter: blur(10px);
}

.showcase {
  background: linear-gradient(180deg, #fffdf8 0%, var(--cream-4) 62%, #fffdf8 100%);
}

.showcase .section-heading {
  width: min(1180px, 100%);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.showcase .section-kicker {
  width: fit-content;
}

.showcase .section-heading h2 {
  max-width: 1180px;
  margin: 18px 0 0;
  font-size: clamp(2.35rem, 4.35vw, 5.25rem);
  line-height: 0.98;
}

.showcase .section-heading > p:not(.section-kicker) {
  display: none;
}

.showcase-grid {
  width: min(1180px, 100%);
  padding: 22px;
  border: 1px solid rgba(25, 92, 88, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.35));
  box-shadow: 0 24px 70px rgba(25, 92, 88, 0.08);
}

.showcase-card {
  border-color: rgba(25, 92, 88, 0.1);
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 38px rgba(25, 92, 88, 0.06);
}

.showcase-card img {
  filter: saturate(1.03) contrast(1.01);
}

/* ── Client videos slider ─────────────────────────────── */
.video-heading {
  margin: 80px auto 0;
  text-align: center;
}

.video-heading .section-kicker { justify-content: center; }

.video-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.video-heading > p:not(.section-kicker) {
  margin-left: auto;
  margin-right: auto;
}

.video-slider {
  position: relative;
  width: min(1180px, 100%);
  margin: 40px auto 0;
}

.video-viewport {
  overflow: hidden;
  padding: 6px;
  margin: -6px;
}

.video-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.video-slide {
  flex: 0 0 calc((100% - 54px) / 4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(25, 92, 88, 0.14);
  background: linear-gradient(165deg, #103c39 0%, #082a28 55%, #195c58 130%);
  box-shadow: 0 20px 46px rgba(25, 92, 88, 0.16);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 36%, rgba(236, 199, 77, 0.16), transparent 60%);
  pointer-events: none;
}

.video-slide:hover .video-frame {
  transform: translateY(-5px);
  box-shadow: 0 30px 64px rgba(25, 92, 88, 0.22);
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--gold-3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.video-play svg { width: 24px; height: 24px; margin-left: 3px; }

.video-slide.playing .video-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}

.video-caption {
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Nav arrows */
.video-nav {
  position: absolute;
  top: calc(50% - 17px);
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(25, 92, 88, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(25, 92, 88, 0.16);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}

.video-nav svg { width: 22px; height: 22px; }
.video-prev { left: -10px; }
.video-next { right: -10px; }

.video-nav:hover {
  transform: translateY(-50%) scale(1.08);
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 16px 36px rgba(25, 92, 88, 0.26);
}

.video-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

/* Dots */
.video-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}

.video-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 92, 88, 0.22);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.video-dot.active {
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

@media (max-width: 1100px) {
  .video-slide { flex: 0 0 calc((100% - 32px) / 3); }
  .video-track { gap: 16px; }
}

@media (max-width: 760px) {
  .video-heading { margin-top: 58px; }
  .video-slide { flex: 0 0 calc((100% - 14px) / 2); }
  .video-track { gap: 14px; }
  .video-prev { left: -6px; }
  .video-next { right: -6px; }
}

@media (max-width: 480px) {
  .video-slide { flex: 0 0 82%; }
  .video-track { gap: 12px; }
}

.about {
  gap: 58px;
  background:
    linear-gradient(110deg, var(--cream) 0%, #fffdf8 46%, var(--cream-2) 100%);
}

.about-media {
  border: 1px solid rgba(25, 92, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 66px rgba(25, 92, 88, 0.12);
}

.about-media::after {
  border-radius: 8px;
}

.about-media img {
  height: 520px;
}

.about-copy {
  padding: 8px 0;
}

.about-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.about-stats {
  gap: 12px;
  margin-top: 34px;
}

.about-stats div {
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.68);
}

.team {
  background:
    linear-gradient(180deg, #fffdf8 0%, var(--cream-2) 74%, var(--cream) 100%);
}

.team .section-heading {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.team-grid article {
  padding: 10px;
  border-color: rgba(25, 92, 88, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 248, 245, 0.78));
  box-shadow: 0 16px 42px rgba(25, 92, 88, 0.09);
}

.team-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(25, 92, 88, 0.15);
}

.team-img-wrap {
  border-radius: 8px;
}

.team-img-wrap::after {
  border-radius: 8px;
  background: linear-gradient(to top, rgba(8, 20, 44, 0.18), transparent 58%);
}

.team-grid img {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
}

.team-info {
  padding: 16px 8px 8px;
  background: transparent;
}

.team-grid h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.team-grid p {
  color: #0f4845;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, #fffdf8 100%);
}

.testimonials .section-heading,
.testimonial-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.testimonial-grid {
  gap: 16px;
}

.testimonial-grid blockquote {
  padding: 34px 30px 30px;
  border-color: rgba(25, 92, 88, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 248, 245, 0.76));
}

.testimonial-grid blockquote::before {
  top: 4px;
  left: 22px;
  color: var(--gold);
  opacity: 0.18;
}

.testimonial-grid p {
  font-size: 1rem;
  line-height: 1.68;
}

.contact {
  gap: 56px;
  background: linear-gradient(135deg, #fffdf8 0%, var(--cream-2) 100%);
}

.contact-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4.35rem);
}

.contact-form {
  padding: 34px;
  border-color: rgba(25, 92, 88, 0.16);
  box-shadow: 0 24px 66px rgba(25, 92, 88, 0.12);
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
}

/* ── contact details (left column) ──────────────────── */
.contact-details {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(25, 92, 88, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-detail:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 92, 88, 0.3);
  box-shadow: 0 16px 40px rgba(25, 92, 88, 0.12);
}

.contact-detail-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, #0f4845 100%);
  color: var(--gold-2);
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail-text {
  display: grid;
  gap: 2px;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.contact-detail-text a,
.contact-detail-value {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}

.contact-detail-text a:hover {
  color: #0f4845;
}

/* ── contact form polish ────────────────────────────── */
.contact-form {
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.contact-form-title {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .btn {
  margin-top: 4px;
}

.contact-form-note {
  margin: 0;
  text-align: center;
  color: #6b7280;
  font-size: 0.86rem;
}

/* ── contact: aspect profesional, ordonat ─────────────── */
.contact {
  gap: 52px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2rem, 3.1vw, 3.05rem);
  line-height: 1.06;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 440px;
}

.contact-details {
  margin-top: 32px;
  gap: 14px;
}

.contact-detail {
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(25, 92, 88, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-detail:hover {
  transform: translateY(-2px);
  border-color: var(--kicker-border);
  box-shadow: 0 14px 34px rgba(25, 92, 88, 0.1);
}

.contact-detail-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.contact-detail-label {
  color: var(--kicker-color);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 1px;
}

.contact-detail-text a,
.contact-detail-value {
  font-size: 0.98rem;
}

.contact-form {
  padding: 38px;
  border-radius: 20px;
  gap: 16px;
  border: 1px solid rgba(25, 92, 88, 0.1);
  box-shadow: 0 26px 70px rgba(25, 92, 88, 0.12);
}

.contact-form-title {
  font-size: 1.18rem;
  margin: 0 0 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(25, 92, 88, 0.1);
}

.contact-form label {
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a7873;
}

.contact-form input,
.contact-form textarea {
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  border: 1.5px solid rgba(25, 92, 88, 0.12);
}

.contact-form textarea {
  min-height: 118px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--kicker-color);
  box-shadow: 0 0 0 3px var(--kicker-border);
}

.contact-form .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 560px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: linear-gradient(180deg, var(--cream-2) 0%, #fffdf8 100%);
}

@media (max-width: 1180px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .showcase .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .showcase .section-kicker,
  .showcase .section-heading h2,
  .showcase .section-heading > p:not(.section-kicker) {
    justify-self: auto;
  }
}

@media (max-width: 900px) {
  .about,
  .contact {
    gap: 38px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  main > .section:not(.hero) {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.05rem);
  }

  .showcase .section-heading h2 {
    font-size: clamp(2.05rem, 9.3vw, 3.15rem);
  }

  .showcase-grid {
    padding: 13px;
    gap: 11px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .team-grid article {
    padding: 8px;
  }

  .team-info {
    padding: 13px 6px 6px;
  }

  .about-media img {
    height: 390px;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .showcase-grid {
    gap: 10px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid img {
    aspect-ratio: 4 / 5;
  }

  .team-grid p {
    font-size: 0.66rem;
  }
}

/* Testimonials columns component */
.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, #fffdf8 100%);
  overflow: hidden;
}

.testimonials-heading {
  width: min(680px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
}

.testimonials-heading h2 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-heading > p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 14px;
  color: #626978;
}

.testimonials-static-grid {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  min-height: unset;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 38px 36px;
  border: 1px solid rgba(25, 92, 88, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 245, 0.82)),
    radial-gradient(circle at 92% 10%, rgba(91, 171, 162, 0.18), transparent 32%);
  box-shadow: 0 18px 48px rgba(25, 92, 88, 0.1);
}

.testimonial-card::before {
  display: none;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4f5664;
  font-size: 1.06rem;
  line-height: 1.74;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 5px;
  border: 1px solid rgba(25, 92, 88, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  object-fit: contain;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.2;
}

.testimonial-author span {
  margin-top: 2px;
  color: #0f4845;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Star rating (review-uri component) */
.review-stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2px;
  color: var(--gold-2);
  font-size: 1.02rem;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(25, 92, 88, 0.18);
}

.review-stars .star-empty {
  color: rgba(25, 92, 88, 0.22);
  text-shadow: none;
}

/* "See all reviews" button */
.testimonials-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.testimonials-cta .btn {
  gap: 12px;
}

.testimonials-cta .btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.28s ease;
}

.testimonials-cta .btn:hover svg {
  transform: translateX(4px);
}

/* ── Reviews subpage ──────────────────────────────────── */
main > .section.subpage-hero {
  padding-top: 150px;
  padding-bottom: 20px;
  background: linear-gradient(180deg, var(--cream) 0%, #fffdf8 100%);
  text-align: center;
}

.subpage-hero .section-heading {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subpage-hero .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.subpage-hero .section-heading > p:not(.section-kicker) {
  margin-left: auto;
  margin-right: auto;
  color: #5e6675;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--gold-3);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.24s ease, color 0.24s ease;
}

.back-link svg { width: 18px; height: 18px; }
.back-link:hover { gap: 12px; color: var(--gold); }

main > .section.reviews-section {
  padding-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
}

.reviews-page-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  column-count: 3;
  column-gap: 18px;
}

.reviews-page-grid .testimonial-card {
  min-height: 0;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 18px;
}

/* pe pagina de review-uri: imaginea + numele sus, langa rating; textul dedesubt */
.reviews-page-grid .testimonial-author {
  margin-top: 0;
  padding-top: 0;
  align-items: center;
}

.reviews-page-grid .review-stars {
  margin-top: 7px;
  font-size: 0.92rem;
}

.reviews-videos {
  background: linear-gradient(180deg, var(--cream-2) 0%, #fffdf8 100%);
}

@media (max-width: 900px) {
  .reviews-page-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .reviews-page-grid {
    column-count: 1;
  }
  .subpage-hero { padding-top: 128px; }
}

@media (max-width: 980px) {
  .testimonials-static-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .testimonials-heading {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 30px;
  }

  .testimonials-static-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial-card {
    padding: 24px;
  }
}

/* ── Bento grid services ─────────────────────────────── */
.bento-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.services .section-heading h2,
.services .section-heading > p:not(.section-kicker) {
  max-width: 100%;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.bento-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(25, 92, 88, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 246, 0.94) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 44px rgba(25, 92, 88, 0.07);
  overflow: hidden;
  padding: 22px 22px 18px;
  isolation: isolate;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease, border-color 0.34s ease;
}

/* Soft brand spotlight, intensifies on hover */
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 88% 6%, rgba(236, 199, 77, 0.16), transparent 52%);
  opacity: 0.6;
  transition: opacity 0.34s ease;
}

.bento-card::after {
  content: "";
  position: absolute;
  left: 22px; right: 22px; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), transparent);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 3px 3px 0 0;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 92, 88, 0.26);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 34px 78px rgba(25, 92, 88, 0.16);
}

.bento-card:hover::before { opacity: 1; }
.bento-card:hover::after { transform: scaleX(1); }

.bento-col-2 { grid-column: span 2; }
.bento-col-3 { grid-column: span 3; }

/* Tag */
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border: 1px solid rgba(25, 92, 88, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(231, 244, 240, 0.7));
  color: var(--gold-3);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 9px;
  box-shadow: 0 4px 12px rgba(25, 92, 88, 0.06);
}

.bento-tag::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 0 3px rgba(236, 199, 77, 0.18);
}

/* Card typography */
.bento-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.bento-card p {
  margin: 0;
  color: #5e6675;
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ── Stat visual (card 1) */
.bento-stat-visual {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 58px;
  margin-bottom: 14px;
}

.bento-stat-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bento-stat-visual strong {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 55%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Ring visual (card 2) */
.bento-ring-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.bento-ring-outer {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(25, 92, 88, 0.18);
  background: radial-gradient(circle at 50% 40%, rgba(231, 244, 240, 0.7), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-ring-outer::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(25, 92, 88, 0.08);
}

.bento-card:hover .bento-ring-outer { transform: scale(1.06); }

.bento-ring-outer svg { width: 44px; }

/* ── Mini chart visual (card 3) */
.bento-chart-mini {
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(25, 92, 88, 0.1);
}

.bento-chart-mini svg { width: 100%; display: block; }

/* ── Icon box (cards 6‑8) */
.bento-icon-box {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 13px;
  border: 1px solid rgba(25, 92, 88, 0.2);
  background: linear-gradient(155deg, var(--cream) 0%, var(--cream-3) 48%, rgba(31, 122, 115, 0.28) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 22px rgba(25, 92, 88, 0.14);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease;
}

.bento-icon-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.85), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.bento-card:hover .bento-icon-box {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 30px rgba(25, 92, 88, 0.2);
}

.bento-icon-box svg {
  position: relative;
  z-index: 1;
  width: 22px; height: 22px;
}

/* ── Wide card layout */
.bento-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
}

.bento-wide::after { display: none; }

.bento-wide-text {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.bento-wide-text::after {
  content: "";
  position: absolute;
  left: 20px; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), transparent);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 0.28s ease;
  border-radius: 3px 3px 0 0;
}

.bento-wide:hover .bento-wide-text::after { transform: scaleX(1); }

.bento-wide-visual {
  position: relative;
  border-left: 1px solid rgba(25, 92, 88, 0.12);
  overflow: hidden;
}

/* Chart frame visual */
.bento-viz-frame {
  display: flex;
  flex-direction: column;
}

.bento-viz-dots {
  display: flex;
  gap: 5px;
  padding: 10px 14px 8px;
  border-bottom: 1px solid rgba(25, 92, 88, 0.09);
}

.bento-viz-dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(25, 92, 88, 0.28);
  background: rgba(236, 199, 77, 0.42);
}

/* Social / community visual */
.bento-viz-people {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 16px 14px;
}

.bento-people-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(25, 92, 88, 0.28), transparent);
}

.bento-person-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-row-right {
  justify-content: flex-end;
  padding-right: calc(50% - 12px);
}

.bento-row-left { padding-left: calc(50% - 12px); }

.bento-person-row span {
  padding: 6px 12px;
  border: 1px solid rgba(25, 92, 88, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(var(--ivory-rgb), 0.82));
  color: #4f5664;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(25, 92, 88, 0.08);
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.bento-card:hover .bento-person-row span { transform: translateX(0); }

.bento-person-row b {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--cream), var(--gold-2) 70%, var(--gold));
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.bento-person-row b svg {
  width: 17px; height: 17px;
}

.bento-card:hover .bento-person-row b {
  transform: scale(1.12);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 12px 28px rgba(0,0,0,0.24);
}

/* Platform brand colors */
.social-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-fb {
  background: #1877f2;
}
.social-tk {
  background: #010101;
}
.social-yt {
  background: #ff0000;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bento-col-2,
  .bento-col-3 { grid-column: span 1; }

  .bento-wide { grid-template-columns: 1fr; }

  .bento-wide-visual {
    border-left: none;
    border-top: 1px solid rgba(25, 92, 88, 0.12);
    min-height: 180px;
  }
}

@media (max-width: 680px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 36px;
  }

  .bento-col-2,
  .bento-col-3 { grid-column: span 1; }

  .bento-viz-people { gap: 13px; }
}

/* ════════ FUNDAL VIU & COMPLEX, PE TOT SITE-UL ════════ */
/* baza pe <html> ca formele decorative (z negativ) sa fie vizibile;
   <body> ramane transparent, altfel fundalul lui ar acoperi decorul */
html {
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f3fb 30%, #f7f2ef 58%, #ecf4fb 84%, #ffffff 100%) fixed;
}

body { background: transparent; }

/* strat 0 — spalare de culoare difuza, fixata pe viewport */
body::before {
  content: "";
  position: fixed;
  inset: -12%;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(40% 44% at 10% 8%, rgba(var(--teal-rgb), 0.12), transparent 70%),
    radial-gradient(38% 44% at 90% 14%, rgba(var(--peach-rgb), 0.14), transparent 72%),
    radial-gradient(44% 48% at 82% 86%, rgba(var(--teal-rgb), 0.10), transparent 72%),
    radial-gradient(36% 42% at 14% 90%, rgba(var(--peach-rgb), 0.12), transparent 72%);
  background-repeat: no-repeat;
  animation: bgDrift 28s ease-in-out infinite alternate;
}

/* strat 1 — forme decorative: blob-uri, inele, puncte, grila */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.bg-blob-1 {
  width: 50vw; height: 50vw; left: -14vw; top: -14vw;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.24) 0%, rgba(var(--teal-rgb), 0.12) 32%, transparent 66%);
  animation: blobFloat 26s ease-in-out infinite;
}
.bg-blob-2 {
  width: 46vw; height: 46vw; right: -15vw; top: 2vh;
  background: radial-gradient(circle, rgba(var(--peach-rgb), 0.28) 0%, rgba(var(--peach-rgb), 0.13) 32%, transparent 66%);
  animation: blobFloat 34s ease-in-out infinite reverse;
}
.bg-blob-3 {
  width: 48vw; height: 48vw; left: 22vw; bottom: -22vw;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.18) 0%, rgba(var(--teal-rgb), 0.09) 34%, transparent 68%);
  animation: blobFloat 30s ease-in-out infinite 2s;
}
.bg-blob-4 {
  width: 34vw; height: 34vw; right: 14vw; bottom: 4vh;
  background: radial-gradient(circle, rgba(var(--peach-rgb), 0.18) 0%, rgba(var(--peach-rgb), 0.09) 34%, transparent 68%);
  animation: blobFloat 38s ease-in-out infinite reverse 1s;
}

.bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(var(--teal-rgb), 0.22);
  will-change: transform;
}
.bg-ring-1 {
  width: 600px; height: 600px; right: -160px; top: 9vh;
  animation: spinSlow 80s linear infinite;
}
.bg-ring-2 {
  width: 420px; height: 420px; left: -150px; bottom: 12vh;
  border-color: rgba(var(--peach-rgb), 0.30);
  animation: spinSlow 100s linear infinite reverse;
}
.bg-ring-3 {
  width: 240px; height: 240px; right: 18vw; top: 60vh;
  border-color: rgba(var(--peach-rgb), 0.26);
  border-style: dashed;
  animation: spinSlow 60s linear infinite;
}

/* orbi solizi, soft, ca accente de forma */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.bg-orb-1 {
  width: 120px; height: 120px; left: 9vw; top: 22vh;
  background: radial-gradient(circle at 32% 28%, rgba(var(--teal-rgb), 0.20), rgba(var(--teal-rgb), 0.07) 70%);
  animation: blobFloat 22s ease-in-out infinite;
}
.bg-orb-2 {
  width: 76px; height: 76px; right: 26vw; top: 16vh;
  background: radial-gradient(circle at 32% 28%, rgba(var(--peach-rgb), 0.28), rgba(var(--peach-rgb), 0.10) 70%);
  animation: blobFloat 18s ease-in-out infinite reverse;
}
.bg-orb-3 {
  width: 150px; height: 150px; left: 16vw; bottom: 12vh;
  background: radial-gradient(circle at 32% 28%, rgba(var(--peach-rgb), 0.16), rgba(var(--peach-rgb), 0.05) 70%);
  animation: blobFloat 28s ease-in-out infinite 1.5s;
}

.bg-dots {
  position: absolute;
  width: 240px; height: 240px;
  background-image: radial-gradient(rgba(var(--teal-rgb), 0.55) 1.5px, transparent 1.7px);
  background-size: 23px 23px;
  -webkit-mask: radial-gradient(closest-side, #000, transparent 76%);
          mask: radial-gradient(closest-side, #000, transparent 76%);
  opacity: 0.5;
}
.bg-dots-1 { left: 5vw; top: 32vh; }
.bg-dots-2 {
  right: 6vw; bottom: 20vh;
  background-image: radial-gradient(rgba(var(--peach-rgb), 0.6) 1.5px, transparent 1.7px);
}

/* grila fina, estompata spre margini */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--teal-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--teal-rgb), 0.05) 1px, transparent 1px);
  background-size: 66px 66px;
  -webkit-mask: radial-gradient(130% 120% at 50% -10%, #000 30%, transparent 72%);
          mask: radial-gradient(130% 120% at 50% -10%, #000 30%, transparent 72%);
  opacity: 0.55;
}

@keyframes bgDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(0, -2.4%, 0) scale(1.06); }
}
@keyframes blobFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(1.8vw, 3vh, 0) scale(1.08); }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  body::before,
  .bg-blob,
  .bg-ring,
  .bg-orb { animation: none; }
}

main { background: transparent; }

main > .section:not(.hero) {
  background: transparent;
}

/* alterneaza pozitia glow-urilor pe sectiuni, pentru ritm vizual */
main > .section:nth-of-type(even)::before {
  transform: scaleX(-1);
}

/* footer translucid ca fundalul sa curga pana jos */
.site-footer {
  background: linear-gradient(180deg, rgba(244, 251, 248, 0) 0%, rgba(231, 244, 240, 0.55) 100%);
}
