:root {
  --navy: #071b31;
  --navy-2: #0c2a45;
  --charcoal: #141820;
  --ink: #152033;
  --muted: #647083;
  --soft: #f5f7fa;
  --soft-2: #edf1f6;
  --white: #ffffff;
  --gold: #c9a35a;
  --gold-2: #f3dfae;
  --border: #dfe6ee;
  --shadow: 0 24px 60px rgba(8, 27, 49, 0.12);
  --shadow-soft: 0 14px 34px rgba(8, 27, 49, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1160px;
  --header-height: 78px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
p { color: var(--muted); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.section-pad { padding: 104px 0; }
.soft-section { background: linear-gradient(180deg, var(--soft), #fff); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 230, 238, 0.85);
}
.nav-shell {
  min-height: var(--header-height);
  width: min(100% - 40px, 1220px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-logo {
  width: 178px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
}
.brand-text { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #435066;
  font-size: 0.96rem;
  font-weight: 600;
}
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover { color: var(--navy); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(201, 163, 90, 0.45);
  outline-offset: 3px;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 16px 32px rgba(7, 27, 49, 0.22);
}
.btn-primary:hover { box-shadow: 0 20px 42px rgba(7, 27, 49, 0.28); }
.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}
.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}
.btn-small { min-height: 42px; padding: 0.68rem 0.95rem; font-size: 0.91rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 163, 90, 0.18), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(7, 27, 49, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 27, 49, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 4rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--gold);
}
h1 {
  max-width: 850px;
  color: var(--navy);
  font-size: clamp(3.15rem, 7vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 1.35rem;
}
.hero-text {
  max-width: 680px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #4a576b;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.trust-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2.1rem;
}
.trust-row span, .seo-points span, .audience-list span {
  border: 1px solid rgba(201, 163, 90, 0.28);
  background: rgba(255, 255, 255, 0.76);
  color: #4f5664;
  padding: 0.58rem 0.78rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-panel {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(223, 230, 238, 0.92);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-logo-card, .presence-card, .mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.hero-logo-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.hero-logo-card img { width: 190px; height: 72px; border-radius: 0; object-fit: contain; }
.hero-logo-card strong { display: block; color: var(--navy); }
.hero-logo-card span { color: var(--muted); font-size: 0.92rem; }
.primary-card {
  min-height: 230px;
  padding: 1.35rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 163, 90, 0.28), transparent),
    linear-gradient(145deg, #071b31, #102d4a);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.primary-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -60px;
  border: 1px solid rgba(243, 223, 174, 0.25);
  border-radius: 50%;
}
.primary-card p { color: var(--gold-2); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; }
.primary-card h2 { position: relative; margin: 0; color: var(--white); line-height: 1.08; letter-spacing: -0.04em; font-size: 2.1rem; }
.mini-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 0.9rem; }
.mini-card { padding: 0.95rem; }
.mini-card span { color: var(--gold); font-weight: 900; font-size: 0.78rem; }
.mini-card strong { display: block; color: var(--navy); margin: 0.28rem 0; line-height: 1.2; }
.mini-card p { margin: 0; font-size: 0.82rem; line-height: 1.4; }

.section-heading { text-align: center; max-width: 790px; margin: 0 auto 3rem; }
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading h2 {
  color: var(--navy);
  font-size: clamp(2.15rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}
.section-heading p { font-size: 1.08rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card, .sample-card, .process-card, .contact-card, .metric-card, .feature-band, .cta-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.service-card {
  padding: 1.55rem;
  background: var(--white);
  min-height: 280px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-card:hover, .sample-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 163, 90, 0.42);
}
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff7df, #f5f7fa);
  border: 1px solid rgba(201, 163, 90, 0.28);
  font-weight: 900;
  font-size: 0.86rem;
}
.service-card h3, .sample-card h3, .process-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.service-card p, .sample-card p, .process-card p { margin-bottom: 0; }
.wide-card { grid-column: span 2; }

.two-col { display: grid; grid-template-columns: 0.9fr 1fr; gap: 4rem; align-items: center; }
.audience-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.audience-list span { background: var(--white); color: var(--navy); }

.why-panel { position: relative; min-height: 460px; }
.metric-card {
  background: var(--white);
  padding: 1.5rem;
  max-width: 440px;
}
.metric-card.offset { margin: 1.2rem 0 0 4rem; background: linear-gradient(180deg, #fff, #f8f9fb); }
.metric-card span { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 900; }
.metric-card strong { display: block; color: var(--navy); font-size: 1.75rem; letter-spacing: -0.04em; line-height: 1.1; margin: 0.65rem 0; }
.check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.85rem; }
.check-list li { position: relative; padding-left: 2rem; color: #3d4758; font-weight: 650; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 5px #fff1cc;
}

.dark-section {
  background: radial-gradient(circle at 80% 10%, rgba(201, 163, 90, 0.22), transparent 28rem), linear-gradient(135deg, #071b31, #111820);
  color: var(--white);
}
.dark-section .section-heading h2, .dark-section .process-card h3 { color: var(--white); }
.dark-section .section-heading p, .process-card p { color: rgba(255,255,255,0.72); }
.gold { color: var(--gold-2); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.process-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}
.process-card span { color: var(--gold-2); font-weight: 900; letter-spacing: 0.1em; }

.feature-band {
  display: grid;
  grid-template-columns: 0.82fr 1.08fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #fff, #f8fafc);
}
.feature-band h2 { color: var(--navy); font-size: clamp(2rem, 3.8vw, 3.3rem); line-height: 1; letter-spacing: -0.055em; margin: 0; }
.feature-band > p { font-size: 1.06rem; margin: 0; }
.seo-points { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.seo-points span { background: var(--white); }

.sample-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sample-card { background: var(--white); padding: 1.1rem; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.sample-preview {
  min-height: 210px;
  margin-bottom: 1.2rem;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.carousel-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; padding: 1rem; }
.carousel-preview span { border-radius: 14px; background: linear-gradient(160deg, var(--navy), #1c466b); box-shadow: inset 0 -70px 80px rgba(201,163,90,0.2); }
.reel-preview { display: grid; place-items: center; }
.reel-preview div { width: 96px; height: 170px; border: 8px solid var(--navy); border-radius: 24px; background: linear-gradient(160deg, #fff, #eff3f8); box-shadow: var(--shadow-soft); }
.content-preview { padding: 1.2rem; display: grid; align-content: center; gap: 0.8rem; }
.content-preview span { height: 18px; border-radius: 99px; background: linear-gradient(90deg, var(--navy), rgba(201,163,90,0.55)); }
.content-preview span:nth-child(2) { width: 72%; }
.content-preview span:nth-child(3) { width: 88%; }
.content-preview span:nth-child(4) { width: 55%; }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  background: linear-gradient(135deg, #071b31, #102d4a 65%, #7d622e);
  overflow: hidden;
  position: relative;
}
.cta-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
}
.cta-panel h2 { position: relative; color: var(--white); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; letter-spacing: -0.055em; margin-bottom: 0.8rem; }
.cta-panel p { color: rgba(255,255,255,0.78); margin-bottom: 0; }
.cta-panel .btn { position: relative; flex: 0 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: 3rem; align-items: start; }
.contact-card {
  padding: 1rem;
  background: var(--white);
  font-style: normal;
  display: grid;
  gap: 0.7rem;
}
.contact-card a {
  display: block;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 800;
  word-break: break-word;
  transition: background 180ms ease, border-color 180ms ease;
}
.contact-card a:hover { background: var(--soft); border-color: rgba(201,163,90,0.45); }
.contact-card span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer { padding: 38px 0; background: #07111f; color: var(--white); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; }
.footer-brand { color: var(--white); }
.site-footer p { color: rgba(255,255,255,0.7); margin: 0; }
.footer-links { display: flex; gap: 1rem; color: rgba(255,255,255,0.72); font-weight: 700; }
.footer-links a:hover { color: var(--white); }

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: sectionFade 700ms ease both;
}
.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 220ms; }

@keyframes sectionFade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .nav-cta { display: none; }
  .hero-grid, .two-col, .contact-grid, .feature-band { grid-template-columns: 1fr; }
  .hero-grid { gap: 2.5rem; }
  .hero-panel { max-width: 680px; }
  .service-grid, .process-grid, .sample-grid { grid-template-columns: repeat(2, 1fr); }
  .wide-card { grid-column: span 1; }
  .why-panel { min-height: auto; }
}

@media (max-width: 780px) {
  .section-pad { padding: 72px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem; border-radius: 12px; }
  .nav-links a:hover { background: var(--soft); }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .mini-card-grid, .service-grid, .process-grid, .sample-grid { grid-template-columns: 1fr; }
  .footer-grid, .cta-panel { flex-direction: column; align-items: flex-start; }
  .metric-card.offset { margin-left: 0; }
}

@media (max-width: 520px) {
  .container, .nav-shell { width: min(100% - 28px, var(--container)); }
  .brand-logo { width: 148px; height: 46px; }
  .hero-actions .btn { width: 100%; }
  .section-heading h2 { font-size: 2.15rem; }
  .primary-card { min-height: 210px; }
  .primary-card h2 { font-size: 1.75rem; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
