/* ── root tokens ─────────────────────────────────────── */
:root {
  --cream: #fff9ef;
  --cream-2: #fff3de;
  --cream-3: #f6ead5;
  --navy: #08142c;
  --navy-2: #0d1e3a;
  --muted: #5f6572;
  --gold: #d99a19;
  --gold-2: #f1c65e;
  --gold-3: #b97809;
  --white: #ffffff;
  --line: rgba(217, 154, 25, 0.24);
  --shadow: 0 24px 70px rgba(8, 20, 44, 0.14);
  --soft-shadow: 0 12px 30px rgba(8, 20, 44, 0.09);
  --max: 1780px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "Trebuchet MS", Arial, sans-serif;
  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(255, 249, 239, 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 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, #132033 0%, #061226 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;
  overflow: hidden;
  padding: 154px 64px 92px;
  background:
    linear-gradient(90deg, rgba(255, 249, 239, 0.91) 0%, rgba(255, 249, 239, 0.74) 34%, rgba(255, 249, 239, 0.26) 49%, rgba(255, 249, 239, 0) 62%),
    url("background.png") right bottom / auto 92% no-repeat;
}

.hero::before { display: none; }

.hero-content {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy { padding-top: 18px; width: min(760px, 50vw); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin: 0 0 44px;
  padding: 10px 22px;
  border: 1px solid rgba(217, 154, 25, 0.12);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.9);
  box-shadow: 0 8px 22px rgba(138, 91, 11, 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(--gold); font-size: 21px; }

.hero h1 {
  position: relative;
  z-index: 8;
  width: 100%;
  margin: 0;
  color: var(--navy);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(48px, 3.65vw, 68px);
  font-weight: 700;
  line-height: 1.03;
}

.hero h1 span { color: var(--gold); }

.hero-lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: #333a4d;
  font-size: clamp(18px, 1.12vw, 22px);
  line-height: 1.48;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 44px; }

.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, #ffd66d 0%, #d99615 100%);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(190, 119, 13, 0.34);
}

.btn-secondary {
  border: 1.5px solid rgba(217, 154, 25, 0.72);
  background: rgba(255, 252, 246, 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 { 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: #09142d;
}

.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: Georgia, "Times New Roman", serif; 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, #ffd466, #da9a18); 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: #eca918; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.dots circle { fill: var(--white); stroke: #eca918; 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(#f2c253 0 46%, #111c35 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: #f2c253; }
.platform-content .navy { background: #111c35; }
.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(--gold);
  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: Georgia, "Times New Roman", serif;
  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%, #0d1e3a 100%);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 8% 55%, rgba(217, 154, 25, 0.07), transparent),
    radial-gradient(ellipse 38% 55% at 92% 18%, rgba(217, 154, 25, 0.05), transparent);
  pointer-events: none;
}

.services .section-heading { position: relative; }
.services .section-kicker { color: var(--gold-2); }
.services .section h2 { color: var(--cream); }
.services .section-heading > p { color: rgba(255, 249, 239, 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(217, 154, 25, 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(217, 154, 25, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  background: rgba(217, 154, 25, 0.055);
  border-color: rgba(217, 154, 25, 0.32);
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(217, 154, 25, 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(217, 154, 25, 0.18);
  background: rgba(217, 154, 25, 0.07);
  margin-bottom: 28px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .service-card-icon {
  background: rgba(217, 154, 25, 0.15);
  border-color: rgba(217, 154, 25, 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(217, 154, 25, 0.22);
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.35s;
  user-select: none;
}

.service-card:hover .service-card-num { color: rgba(217, 154, 25, 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(255, 249, 239, 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, #fffaf0 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(217, 154, 25, 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(--gold-3); }
.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: Georgia, serif;
  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%, #0a1828 100%);
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% -5%, rgba(217, 154, 25, 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(217, 154, 25, 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(217, 154, 25, 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, #0c1928 0%, #081420 100%);
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 18% 50%, rgba(217, 154, 25, 0.06), transparent),
    radial-gradient(ellipse 32% 52% at 82% 28%, rgba(217, 154, 25, 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(217, 154, 25, 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: Georgia, serif;
  font-size: 88px;
  line-height: 1;
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.testimonial-grid blockquote:hover {
  background: rgba(217, 154, 25, 0.048);
  border-color: rgba(217, 154, 25, 0.28);
  transform: translateY(-5px);
}

.testimonial-grid p {
  margin: 0 0 30px;
  color: rgba(255, 249, 239, 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, #fffaf0 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(217, 154, 25, 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(217, 154, 25, 0.05), transparent 70%);
  pointer-events: none;
}

.contact-copy { position: relative; }
.contact-copy .section-kicker { color: var(--gold-3); }
.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: #fffaf1;
  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(217, 154, 25, 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(217, 154, 25, 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(217, 154, 25, 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(255, 249, 239, 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(255, 249, 239, 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(255, 249, 239, 0.48);
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(255, 249, 239, 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(255, 249, 239, 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;
    background-position: right bottom;
    background-size: auto 90%;
  }

  .eyebrow { margin-bottom: 28px; }
  .hero h1 { font-size: clamp(44px, 3.85vw, 56px); line-height: 1; }
  .hero-lead { margin-top: 24px; font-size: 18px; }
  .hero-actions { margin-top: 30px; }
  .hero-content { grid-template-columns: minmax(440px, 0.9fr) minmax(520px, 1.1fr); }
  .hero-visual { transform: scale(0.78); transform-origin: right center; }
}

@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(255, 249, 239, 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(90deg, rgba(255, 249, 239, 0.94) 0%, rgba(255, 249, 239, 0.72) 58%, rgba(255, 249, 239, 0.16) 100%),
      url("background.png") 30% top / auto 92% no-repeat;
  }

  .hero-content { display: block; }
  .hero h1 { width: auto; }
  .hero-copy { width: min(720px, 72vw); }
  .hero-visual { min-height: 520px; transform: scale(0.78); transform-origin: left top; }
  .laptop { left: 0; right: auto; }

  .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,
  .site-header.scrolled { padding: 12px 20px; }
  .site-header { grid-template-columns: 1fr auto; }
  .brand img { width: 108px; }
  .header-cta { display: none; }

  .hero {
    min-height: auto;
    padding: 104px 20px 72px;
    background:
      linear-gradient(90deg, rgba(255, 249, 239, 0.94) 0%, rgba(255, 249, 239, 0.74) 72%, rgba(255, 249, 239, 0.16) 100%),
      url("background.png") left top / auto 92% no-repeat;
  }

  .hero-copy { width: 100%; }
  .eyebrow { margin-bottom: 28px; font-size: 12px; }
  .hero h1 { font-size: clamp(38px, 10.6vw, 50px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { gap: 14px; width: auto; }
  .btn { width: 100%; min-width: 0; min-height: 58px; font-size: 17px; }
  .trusted { margin-top: 40px; }
  .trusted-logos { gap: 16px 22px; }
  .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-visual { min-height: 330px; transform: scale(0.43); }
  .trusted-logos span { font-size: 18px; }
  .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(rgba(217, 154, 25, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 154, 25, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.38;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, 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 rgba(217, 154, 25, 0.18);
  border-radius: 999px;
  background: rgba(255, 247, 226, 0.78);
  color: var(--gold-3);
  box-shadow: 0 10px 26px rgba(217, 154, 25, 0.08);
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd66d, var(--gold));
  box-shadow: 0 0 0 5px rgba(217, 154, 25, 0.11);
}

.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, #fff9ec 0%, #fffdf8 58%, #fff7e8 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(247, 195, 83, 0.28), rgba(255, 255, 255, 0));
  transform: rotate(-2deg);
  pointer-events: none;
}

.services .section-kicker,
.team .section-kicker,
.testimonials .section-kicker {
  color: var(--gold-3);
}

.services h2,
.team h2,
.testimonials h2 {
  color: var(--navy);
}

.services .section-heading > p {
  color: #616876;
}

.service-grid {
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 292px;
  padding: 30px;
  border: 1px solid rgba(217, 154, 25, 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(241, 198, 94, 0.16), transparent 34%);
  box-shadow: 0 18px 50px rgba(153, 101, 14, 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(217, 154, 25, 0.35);
  box-shadow: 0 28px 70px rgba(153, 101, 14, 0.14);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(217, 154, 25, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7df, #f6b931);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(217, 154, 25, 0.18);
}

.service-card-icon svg {
  width: 25px;
  height: 25px;
}

.service-card-num {
  color: rgba(8, 20, 44, 0.22);
  font-family: Georgia, serif;
  font-size: 44px;
}

.service-card h3 {
  color: var(--navy);
}

.service-card p {
  color: #626978;
}

.showcase {
  background: linear-gradient(180deg, #fffdf8 0%, #fff5df 100%);
  overflow: hidden;
}

.showcase::after {
  content: "Marketing Alchemy";
  position: absolute;
  right: 46px;
  top: 42px;
  color: rgba(217, 154, 25, 0.055);
  font-family: Georgia, serif;
  font-size: clamp(82px, 12vw, 190px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.showcase-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(217, 154, 25, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 234, 0.9)),
    radial-gradient(circle at 85% 15%, rgba(247, 198, 77, 0.16), transparent 38%);
  box-shadow: 0 14px 34px rgba(153, 101, 14, 0.09);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.showcase-card:nth-child(2),
.showcase-card:nth-child(3) {
  min-height: 0;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 6px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 154, 25, 0.34);
  box-shadow: 0 20px 48px rgba(153, 101, 14, 0.14);
}

.showcase-card:hover img {
  transform: scale(1.035);
}

.showcase-card::after {
  display: none;
}

.about {
  background:
    linear-gradient(120deg, #fffaf0 0%, #fffdf8 42%, #fff4db 100%);
}

.about::after {
  content: "";
  position: absolute;
  left: 64px;
  right: 64px;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 154, 25, 0.34), transparent);
}

.about-media {
  border-radius: 20px;
  border: 8px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 75px rgba(153, 101, 14, 0.14);
}

.about-media::after {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 154, 25, 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(217, 154, 25, 0.16);
  box-shadow: 0 16px 38px rgba(153, 101, 14, 0.08);
}

.team {
  background: linear-gradient(180deg, #fffdf8 0%, #fff4dd 100%);
  overflow: hidden;
}

.team::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(217, 154, 25, 0.12));
  pointer-events: none;
}

.team-grid article {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(217, 154, 25, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(153, 101, 14, 0.09);
}

.team-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 68px rgba(153, 101, 14, 0.15);
  border-color: rgba(217, 154, 25, 0.34);
}

.team-img-wrap::after {
  background: linear-gradient(to top, rgba(217, 154, 25, 0.28) 0%, transparent 48%);
}

.team-info {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 226, 0.8));
}

.team-grid h3 {
  color: var(--navy);
}

.team-grid p {
  color: var(--gold-3);
}

.testimonials {
  background:
    linear-gradient(180deg, #fff5df 0%, #fffdf8 100%);
  overflow: hidden;
}

.testimonial-grid blockquote {
  border-radius: 16px;
  border: 1px solid rgba(217, 154, 25, 0.16);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(153, 101, 14, 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(217, 154, 25, 0.34);
  box-shadow: 0 28px 68px rgba(153, 101, 14, 0.14);
}

.testimonial-grid p {
  color: #4e5666;
}

.testimonial-grid cite {
  color: var(--gold-3);
}

.contact {
  background:
    linear-gradient(135deg, #fffdf8 0%, #fff0ce 100%);
  border-top: 1px solid rgba(217, 154, 25, 0.13);
}

.contact::before,
.contact::after {
  display: none;
}

.contact-copy {
  padding: 30px 0;
}

.contact-form {
  border-radius: 18px;
  border: 1px solid rgba(217, 154, 25, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 243, 0.88));
  box-shadow: 0 28px 72px rgba(153, 101, 14, 0.14);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(217, 154, 25, 0.16);
}

.site-footer {
  background: linear-gradient(180deg, #fff4dc 0%, #fffaf0 100%);
  border-top: 1px solid rgba(217, 154, 25, 0.16);
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, rgba(217, 154, 25, 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: 1100px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-card,
  .showcase-card:nth-child(2),
  .showcase-card:nth-child(3) {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 78px 20px;
  }

  .service-grid,
  .showcase-grid,
  .team-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .showcase-card,
  .showcase-card:nth-child(2),
  .showcase-card:nth-child(3) {
    min-height: 320px;
  }

  .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(217, 154, 25, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 238, 0.92)),
    radial-gradient(circle at 86% 12%, rgba(255, 210, 91, 0.28), transparent 34%);
  box-shadow: 0 22px 60px rgba(153, 101, 14, 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(255, 225, 140, 0.2), transparent 42%),
    linear-gradient(180deg, transparent, rgba(217, 154, 25, 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, #ffd66d, 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(217, 154, 25, 0.38);
  box-shadow: 0 30px 80px rgba(153, 101, 14, 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(217, 154, 25, 0.2);
  border-radius: 999px;
  background: rgba(255, 247, 226, 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: Georgia, serif;
  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(217, 154, 25, 0.18);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.speed-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f7c64d;
  box-shadow: 0 0 0 7px rgba(247, 198, 77, 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(217, 154, 25, 0.2);
  border-top: 1px solid rgba(217, 154, 25, 0.2);
  border-radius: 8px 0 0 0;
  background: linear-gradient(180deg, rgba(255, 250, 238, 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(217, 154, 25, 0.36);
  border-radius: 50%;
  background: rgba(255, 214, 109, 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(217, 154, 25, 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(217, 154, 25, 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(153, 101, 14, 0.08);
}

.network-row b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff5d7, #f7c64d);
  color: var(--navy);
  font-size: 0.72rem;
  box-shadow: 0 12px 28px rgba(217, 154, 25, 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(217, 154, 25, 0.18);
  background: radial-gradient(circle, rgba(255, 214, 109, 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, #fff7df, #f7c64d);
  box-shadow: 0 16px 34px rgba(153, 101, 14, 0.18);
}

.community-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fffaf0;
}

.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 {
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 10px;
  }

  .showcase-card,
  .showcase-card:nth-child(2),
  .showcase-card:nth-child(3) {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .showcase-card,
  .showcase-card:nth-child(2),
  .showcase-card:nth-child(3) {
    min-height: 0;
    padding: 7px;
  }
}

@media (max-width: 430px) {
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .showcase-card,
  .showcase-card:nth-child(2),
  .showcase-card:nth-child(3) {
    padding: 6px;
  }
}

/* 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: 0.28;
}

.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%, #fff8e9 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%);
  grid-template-columns: repeat(9, minmax(0, 1fr));
  padding: 14px;
  border: 1px solid rgba(217, 154, 25, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 24px 70px rgba(153, 101, 14, 0.08);
}

.showcase-card {
  border-color: rgba(217, 154, 25, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(153, 101, 14, 0.07);
}

.showcase-card img {
  filter: saturate(1.03) contrast(1.01);
}

.about {
  gap: 58px;
  background:
    linear-gradient(110deg, #fff9ed 0%, #fffdf8 46%, #fff4da 100%);
}

.about-media {
  border: 1px solid rgba(217, 154, 25, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 66px rgba(153, 101, 14, 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%, #fff4dd 74%, #fffaf0 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(217, 154, 25, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 236, 0.78));
  box-shadow: 0 16px 42px rgba(153, 101, 14, 0.09);
}

.team-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(153, 101, 14, 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: #9b6a0e;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.testimonials {
  background: linear-gradient(180deg, #fff9ed 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(217, 154, 25, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 237, 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%, #fff1d3 100%);
}

.contact-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4.35rem);
}

.contact-form {
  padding: 34px;
  border-color: rgba(217, 154, 25, 0.16);
  box-shadow: 0 24px 66px rgba(153, 101, 14, 0.12);
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
}

.site-footer {
  background: linear-gradient(180deg, #fff5dd 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 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 9px;
  }

  .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 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .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, #fff9ed 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-columns {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: 720px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

.testimonial-column {
  min-height: 720px;
  overflow: hidden;
}

.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 18px;
  animation: testimonial-scroll 18s linear infinite;
  will-change: transform;
}

.testimonial-stack-medium {
  animation-duration: 22s;
}

.testimonial-stack-fast {
  animation-duration: 20s;
}

.testimonial-column:hover .testimonial-stack {
  animation-play-state: paused;
}

.testimonial-card {
  position: relative;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(217, 154, 25, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 237, 0.82)),
    radial-gradient(circle at 92% 10%, rgba(247, 198, 77, 0.18), transparent 32%);
  box-shadow: 0 18px 48px rgba(153, 101, 14, 0.1);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 22px;
  color: rgba(217, 154, 25, 0.2);
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4f5664;
  font-size: 0.98rem;
  line-height: 1.68;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 5px;
  border: 1px solid rgba(217, 154, 25, 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: #9b6a0e;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

@keyframes testimonial-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-stack {
    animation: none;
  }
}

@media (max-width: 980px) {
  .testimonials-columns {
    grid-template-columns: repeat(2, minmax(0, 320px));
    max-height: 650px;
  }

  .testimonial-column {
    min-height: 650px;
  }

  .testimonial-column:nth-child(3) {
    display: none;
  }
}

@media (max-width: 680px) {
  .testimonials-heading {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 30px;
  }

  .testimonials-columns {
    grid-template-columns: minmax(0, 1fr);
    max-height: 620px;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  }

  .testimonial-column {
    min-height: 620px;
  }

  .testimonial-column:nth-child(2) {
    display: none;
  }

  .testimonial-card {
    min-height: 210px;
    padding: 24px;
  }
}
