:root {
  --navy-900: #0a2840;
  --navy-800: #0d3d62;
  --navy-700: #134e7a;
  --pink: #e11d48;
  --pink-hover: #be123c;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --radius: 12px;
  --shadow: 0 18px 50px -24px rgba(10, 40, 64, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(10, 40, 64, 0.2);
  --max: 760px;
  --content: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-800);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  width: min(var(--content), calc(100% - 3rem));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 1.5rem);
  }
}

/* ——— Top bar ——— */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  text-align: center;
}

.topbar a {
  color: #fff;
  font-weight: 600;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-900);
  text-decoration: none;
}

.logo-mark-img {
  width: 300px;
  height: auto;
  max-width: min(62vw, 320px);
  flex-shrink: 0;
  filter: drop-shadow(0 3px 8px rgba(10, 40, 64, 0.2));
}

.logo:hover {
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
}

.logo-name {
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
}

.logo-tagline {
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--slate-500);
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
}

@media (max-width: 560px) {
  .logo-mark-img {
    width: 230px;
  }
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-main a {
  color: var(--slate-700);
  text-decoration: none;
}

.nav-main a:hover {
  color: var(--pink);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.1s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--pink-hover);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--slate-200);
}

.btn-outline:hover {
  border-color: var(--navy-800);
  text-decoration: none;
}

/* ——— Hero ——— */
.hero {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, var(--slate-50) 0%, #fff 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
}

.hero-deck {
  font-size: 1.15rem;
  color: var(--slate-500);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.hero-deck strong {
  color: var(--navy-900);
  font-weight: 700;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--slate-200);
  color: var(--navy-800);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -12% -8% auto auto;
  width: 45%;
  height: 45%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ——— Article ——— */
.article {
  padding: 0 0 3rem;
}

.article-body {
  max-width: var(--max);
}

.article-body > p {
  margin: 0 0 1.25rem;
}

.article-body > p.lead-strong {
  font-size: 1.05rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--slate-900);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--pink);
}

.section-sub {
  margin: 0 0 2rem;
  color: var(--slate-500);
  font-size: 1.05rem;
}

/* Role cards */
.roles-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.role-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  align-items: start;
}

@media (max-width: 560px) {
  .role-card {
    grid-template-columns: 1fr;
  }
}

.role-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.role-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
}

.role-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--slate-700);
}

.role-card .why {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--slate-200);
  font-size: 0.95rem;
}

.role-card .why strong {
  color: var(--navy-900);
}

/* Split band (follows article — closing argument before FAQ) */
.band-split {
  margin: 2.5rem 0 3rem;
  padding: 3rem 0;
  background: var(--slate-100);
  border-radius: 24px;
}

.band-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  width: min(var(--content), calc(100% - 3rem));
  margin-inline: auto;
}

@media (max-width: 860px) {
  .band-split-inner {
    grid-template-columns: 1fr;
  }
}

.band-split h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.band-split p {
  margin: 0 0 1rem;
}

.band-split .cta-line {
  font-weight: 800;
  color: var(--slate-900);
  margin-top: 1.25rem;
}

/* About (after hero — company context before long article) */
.about-after-hero .about-box {
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
}

/* About box */
.about-box {
  max-width: var(--content);
  margin: 3rem 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.about-box-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  min-height: 280px;
}

@media (max-width: 800px) {
  .about-box-grid {
    grid-template-columns: 1fr;
  }

  .about-box-media {
    order: -1;
  }

  .about-box-media img {
    max-height: 260px;
  }
}

.about-box-copy {
  padding: 2rem 2rem 2.25rem;
}

.about-box-media {
  position: relative;
  min-height: 260px;
}

.about-box-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-box h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.about-box p {
  margin: 0 0 1rem;
}

.about-box a {
  color: #fda4af;
  font-weight: 600;
}

/* FAQ */
.faq-wrap {
  max-width: var(--max);
  margin: 2.5rem 0;
}

.faq-wrap h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 0 0 1.25rem;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px -12px rgba(10, 40, 64, 0.15);
}

.faq-item summary {
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--slate-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--pink);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .answer {
  padding: 0 1.15rem 1.1rem;
  color: var(--slate-500);
  font-size: 0.98rem;
  margin: 0;
}

/* Forms section */
.forms-section {
  background: var(--slate-50);
  padding: 3.5rem 0;
  border-top: 1px solid var(--slate-200);
}

.forms-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .forms-grid {
    grid-template-columns: 1fr;
  }
}

.form-panel {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.form-panel h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
}

.form-panel .sub {
  margin: 0 0 1.5rem;
  color: var(--slate-500);
  font-size: 0.95rem;
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--slate-700);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font: inherit;
  color: var(--slate-900);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(225, 29, 72, 0.35);
  outline-offset: 0;
  border-color: var(--pink);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-500);
  margin: 1rem 0;
}

.check input {
  margin-top: 0.2rem;
}

.newsletter-mini {
  background: var(--navy-900);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
}

.newsletter-mini h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.newsletter-mini p {
  margin: 0 0 1rem;
  opacity: 0.85;
  font-size: 0.95rem;
}

.newsletter-mini .row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-mini input {
  flex: 1;
  min-width: 180px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: none;
  font: inherit;
}

.newsletter-mini .btn {
  background: var(--pink);
  color: #fff;
}

/* Testimonials / social proof */
.trust-section {
  padding: 2.5rem 0 0;
  background: #fff;
}

.trust-banner {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.trust-banner img {
  width: 100%;
  display: block;
}

.trust-banner-cta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(
    125deg,
    rgba(10, 40, 64, 0.88) 0%,
    rgba(10, 40, 64, 0.65) 45%,
    rgba(13, 61, 98, 0.5) 100%
  );
}

.trust-banner-cta-title {
  margin: 0 0 0.5rem;
  max-width: 26rem;
  font-size: clamp(1.2rem, 3.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
}

.trust-banner-cta-text {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.trust-banner-cta-btn {
  flex-shrink: 0;
}

.trust-banner-cta-btn:hover {
  color: #fff;
}

.trust-head {
  text-align: center;
  margin: 1.75rem 0 2rem;
}

.trust-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
}

.trust-head p {
  margin: 0.5rem 0 0;
  color: var(--slate-500);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 1000px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.t-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.t-card .logo-row {
  height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.t-card .logo-row img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2);
}

.t-card .logo-fallback {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}

.t-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-900);
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.t-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.55;
}

/* Footer */
.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  padding: 4rem 0 2rem;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./images/footer-bg.svg") center bottom / cover no-repeat;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer a {
  color: #fff;
  display: block;
  margin: 0.35rem 0;
  font-size: 0.92rem;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin: 0.35rem 0;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* Photo assets & layout helpers */
.article-rule {
  border: none;
  height: 2px;
  margin: 2.5rem auto;
  max-width: min(800px, 100%);
  background: linear-gradient(
    90deg,
    transparent,
    var(--slate-200) 15%,
    var(--pink) 50%,
    var(--slate-200) 85%,
    transparent
  );
  border-radius: 999px;
}

.hero-badge-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}

.hero-badge-caption {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate-500);
  max-width: 16rem;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.band-photo {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.trust-banner-photo {
  width: 100%;
  min-height: 260px;
  height: 280px;
  object-fit: cover;
}

@media (max-width: 480px) {
  .trust-banner-photo {
    height: 300px;
  }

  .trust-banner-cta {
    padding: 1.25rem 1rem;
  }
}

.about-box p.mb-0 {
  margin-bottom: 0;
}

.btn-block {
  width: 100%;
}

.form-legal {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin: 1rem 0 0;
}

.footer-heading-spaced {
  margin-top: 1.25rem;
}

.footer-note {
  opacity: 0.75;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

