:root {
  --navy: #172438;
  --navy-deep: #0f1726;
  --blue: #2b4d72;
  --gold: #b68448;
  --gold-light: #d8b17a;
  --cream: #fbf7f0;
  --white: #ffffff;
  --gray: #657080;
  --light-gray: #eef2f6;
  --line: #dde5ec;
  --shadow: 0 24px 70px rgba(20, 31, 48, 0.13);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy-deep);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 229, 236, 0.8);
}

.header-inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 450px;
  height: auto;
  max-width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--light-gray);
  color: var(--navy-deep);
}

.main-nav .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 11px 17px;
}

.main-nav .nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(216, 177, 122, 0.22), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 46%, #eef3f7 100%);
  padding: 86px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -170px auto;
  width: 520px;
  height: 520px;
  background: rgba(39, 73, 109, 0.08);
  border-radius: 50%;
}

.hero-bg-mark {
  position: absolute;
  right: 5%;
  top: 12%;
  font-size: 190px;
  font-weight: 900;
  letter-spacing: -12px;
  color: rgba(23, 36, 56, 0.035);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
  color: var(--navy-deep);
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-text,
.lead,
.section-heading p {
  color: var(--gray);
  font-size: 19px;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(23, 36, 56, 0.22);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 600px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(20, 31, 48, 0.08);
  overflow: hidden;
}

.trust-strip div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  color: var(--navy);
}

.trust-strip span {
  display: block;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(221, 229, 236, 0.95);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 38px;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(216, 177, 122, 0.9), transparent 42%, rgba(39, 73, 109, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.status-pill {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: #f3eadc;
  color: #755224;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-card p {
  color: var(--gray);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--navy);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.scenario-grid,
.service-grid {
  display: grid;
  gap: 22px;
}

.scenario-grid {
  grid-template-columns: repeat(3, 1fr);
}

.scenario-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(20, 31, 48, 0.06);
  padding: 28px;
}

.scenario-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 20px;
}

.scenario-card p,
.service-card p,
.process-item p,
.cta-box p,
.site-footer p {
  color: var(--gray);
}

.process-section {
  background: linear-gradient(135deg, rgba(23, 36, 56, 0.96), rgba(39, 73, 109, 0.94));
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.process-section h2,
.process-section .lead {
  color: var(--white);
}

.process-section .lead {
  opacity: 0.86;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.process-item h3 {
  color: var(--white);
  margin-bottom: 6px;
}

.process-item p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.process-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
}

.services-preview {
  background: #f7f9fb;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f3eadc;
  color: var(--gold);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 18px;
}

.quote-card {
  max-width: 940px;
  margin: 0 auto;
  background: radial-gradient(circle at 12% 20%, rgba(216, 177, 122, 0.16), transparent 30%), var(--cream);
  border: 1px solid #eee1ce;
  border-radius: 30px;
  padding: 46px;
  box-shadow: 0 18px 46px rgba(20, 31, 48, 0.07);
}

.quote-mark {
  color: var(--gold);
  font-size: 82px;
  line-height: 0.8;
  font-family: Georgia, serif;
}

.quote-card p {
  font-size: 24px;
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 22px;
}

.quote-author strong,
.quote-author span {
  display: block;
}

.quote-author span {
  color: var(--gray);
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 177, 122, 0.3), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 32px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box p {
  opacity: 0.86;
  max-width: 770px;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 12%, rgba(182, 132, 72, 0.16), transparent 28%),
    linear-gradient(135deg, #0f1726, #111d2f);
  color: var(--white);
  padding: 62px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr;
  gap: 42px;
  padding-bottom: 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.footer-brand span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
  margin-top: 5px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.58);
  max-width: 520px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1180px) {
  .brand img {
    width: 390px;
  }

  .header-inner {
    min-height: 120px;
  }

  .main-nav a {
    font-size: 13px;
    padding: 9px 11px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .process-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    align-items: start;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 96px;
  }

  .brand img {
    width: 300px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 96px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 54px 0 50px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: 32px;
  }

  .hero-card,
  .quote-card,
  .cta-box {
    padding: 28px;
    border-radius: 24px;
  }

  .trust-strip,
  .scenario-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 56px 0;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .quote-card p {
    font-size: 20px;
  }

  .hero-bg-mark {
    font-size: 120px;
    top: 8%;
  }

  .footer-brand strong {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 245px;
  }

  .header-inner {
    min-height: 88px;
  }

  .main-nav {
    top: 88px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 26px, 1160px);
  }

  .brand img {
    width: 220px;
  }

  .main-nav {
    left: 13px;
    right: 13px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 38px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .footer-brand span {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 177, 122, 0.2), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 48%, #eef3f7 100%);
  padding: 76px 0 68px;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 860px;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
}

.page-hero p:not(.eyebrow) {
  color: var(--gray);
  font-size: 20px;
  max-width: 780px;
}

.testimonials-page {
  background: var(--white);
}

.testimonial-intro-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 177, 122, 0.14), transparent 30%),
    var(--cream);
  border: 1px solid #eee1ce;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 46px rgba(20, 31, 48, 0.07);
  margin-bottom: 34px;
}

.testimonial-intro-card h2 {
  margin-bottom: 0;
}

.testimonial-intro-card p {
  margin: 0;
  color: var(--gray);
  font-size: 18px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 12px 36px rgba(20, 31, 48, 0.06);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(216, 177, 122, 0.24));
  border-radius: 999px;
}

.testimonial-card p {
  position: relative;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.7;
}

.testimonial-quote-mark {
  color: rgba(182, 132, 72, 0.28);
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 0.8;
  margin-bottom: 2px;
}

.testimonial-meta {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.testimonial-meta strong,
.testimonial-meta span {
  display: block;
}

.testimonial-meta strong {
  color: var(--navy-deep);
  font-size: 15px;
}

.testimonial-meta span {
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.featured-testimonial {
  grid-column: span 2;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 177, 122, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}

.featured-testimonial p {
  font-size: 21px;
  line-height: 1.62;
}

.rotating-quote-card {
  transition: opacity 0.2s ease;
}

@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-intro-card {
    grid-template-columns: 1fr;
  }

  .featured-testimonial {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding: 54px 0 48px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 18px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-intro-card {
    padding: 28px;
    border-radius: 24px;
  }

  .testimonial-card {
    padding: 26px;
  }

  .featured-testimonial p {
    font-size: 18px;
  }
}
.media-hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(182, 132, 72, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 44%, #eef3f7 100%);
}

.media-ribbon {
  background: var(--navy-deep);
  padding: 18px 0;
}

.media-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.media-ribbon-inner span {
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 13px;
}

.media-ribbon-inner a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 15px;
  padding: 6px 9px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.media-ribbon-inner a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.media-page {
  background: var(--white);
}

.media-intro-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 177, 122, 0.14), transparent 30%),
    var(--cream);
  border: 1px solid #eee1ce;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 46px rgba(20, 31, 48, 0.07);
  margin-bottom: 34px;
}

.media-intro-card h2 {
  margin-bottom: 0;
}

.media-intro-card p {
  margin: 0;
  color: var(--gray);
  font-size: 18px;
}

.media-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}

.media-feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(20, 31, 48, 0.08);
}

.media-logo-text {
  min-height: 112px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 177, 122, 0.24), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 24px;
}

.media-card-body {
  padding: 28px;
}

.media-tag {
  display: inline-flex;
  background: #f3eadc;
  color: #755224;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.media-card-body p {
  color: var(--gray);
}

.media-link {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.media-link:hover {
  color: var(--gold);
}

.media-directory {
  margin-top: 8px;
}

.media-outlet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.media-outlet-card {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(20, 31, 48, 0.05);
  transition: 0.2s ease;
}

.media-outlet-card:hover {
  transform: translateY(-3px);
  border-color: rgba(182, 132, 72, 0.45);
  box-shadow: 0 16px 38px rgba(20, 31, 48, 0.09);
}

.media-outlet-card span {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--light-gray);
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
}

.media-outlet-card strong {
  display: block;
  color: var(--navy-deep);
  line-height: 1.2;
}

.media-outlet-card small {
  display: block;
  color: var(--gray);
  font-weight: 700;
  margin-top: 3px;
}

.media-proof-section {
  padding-top: 0;
}

.media-proof-box {
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 34px;
  background:
    radial-gradient(circle at 86% 16%, rgba(216, 177, 122, 0.2), transparent 32%),
    linear-gradient(135deg, #f7f9fb, #ffffff);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 18px 46px rgba(20, 31, 48, 0.07);
}

.media-proof-box p {
  color: var(--gray);
  max-width: 760px;
}

.media-proof-stat {
  min-height: 180px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 24px;
}

.media-proof-stat strong {
  display: block;
  font-size: 58px;
  line-height: 1;
  color: var(--gold-light);
}

.media-proof-stat span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  .media-outlet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .media-feature-grid,
  .media-intro-card,
  .media-proof-box {
    grid-template-columns: 1fr;
  }

  .media-proof-stat {
    min-height: 140px;
  }
}

@media (max-width: 760px) {
  .media-feature-grid,
  .media-outlet-grid {
    grid-template-columns: 1fr;
  }

  .media-intro-card,
  .media-proof-box {
    padding: 28px;
    border-radius: 24px;
  }

  .media-logo-text {
    min-height: 94px;
    font-size: 22px;
  }

  .media-ribbon-inner {
    justify-content: flex-start;
  }
}
.about-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 177, 122, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 46%, #eef3f7 100%);
}

.founder-section {
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 54px;
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-photo-ring {
  width: 230px;
  height: 230px;
  padding: 10px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(182, 132, 72, 0.95), rgba(216, 177, 122, 0.45), rgba(23, 36, 56, 0.12));
  box-shadow: 0 22px 54px rgba(20, 31, 48, 0.14);
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #ffffff;
  display: block;
}

.founder-badge {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(23, 36, 56, 0.18);
}

.founder-content .founder-lead {
  color: var(--gray);
  font-size: 20px;
}

.founder-content p {
  color: var(--gray);
}

.founder-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.founder-point {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(20, 31, 48, 0.05);
  padding: 18px 20px;
}

.founder-point strong,
.founder-point span {
  display: block;
}

.founder-point strong {
  color: var(--navy-deep);
  margin-bottom: 6px;
  font-size: 17px;
}

.founder-point span {
  color: var(--gray);
}

.about-focus-section {
  background: #f7f9fb;
}

.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-focus-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(20, 31, 48, 0.06);
  padding: 30px;
}

.about-focus-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f3eadc;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.about-focus-card p {
  color: var(--gray);
}

.about-approach-section {
  background: var(--white);
}

.about-approach-box {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 177, 122, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, #f9fbfc);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 18px 46px rgba(20, 31, 48, 0.07);
}

.about-approach-box p {
  color: var(--gray);
}

.about-approach-list {
  display: grid;
  gap: 16px;
}

.about-approach-item {
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 22px;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(23, 36, 56, 0.16);
}

.about-approach-item span {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 8px;
}

.about-approach-item p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

.about-contact-section {
  padding-top: 8px;
}

.about-contact-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

.about-contact-copy,
.about-contact-card {
  border-radius: 30px;
  padding: 36px;
}

.about-contact-copy {
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 177, 122, 0.24), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7f9fb);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(20, 31, 48, 0.07);
}

.about-contact-copy p {
  color: var(--gray);
}

.about-contact-card {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(23, 36, 56, 0.16);
}

.about-contact-card h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.about-contact-card .check-list li {
  color: var(--white);
  font-weight: 700;
}

.about-contact-card .check-list li::before {
  color: var(--gold-light);
}

@media (max-width: 980px) {
  .founder-grid,
  .about-focus-grid,
  .about-approach-box,
  .about-contact-box {
    grid-template-columns: 1fr;
  }

  .founder-photo-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .founder-photo-ring {
    width: 200px;
    height: 200px;
  }

  .about-focus-card,
  .about-contact-copy,
  .about-contact-card,
  .about-approach-box {
    padding: 28px;
    border-radius: 24px;
  }

  .founder-content .founder-lead {
    font-size: 18px;
  }
}
.services-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 177, 122, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 46%, #eef3f7 100%);
}

.services-core-section {
  background: var(--white);
}

.services-intro-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 177, 122, 0.14), transparent 30%),
    var(--cream);
  border: 1px solid #eee1ce;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 46px rgba(20, 31, 48, 0.07);
  margin-bottom: 34px;
}

.services-intro-card h2 {
  margin-bottom: 0;
}

.services-intro-card p {
  margin: 0;
  color: var(--gray);
  font-size: 18px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-detail-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(20, 31, 48, 0.06);
  padding: 30px;
}

.service-detail-featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 177, 122, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}

.service-detail-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f3eadc;
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-detail-card p {
  color: var(--gray);
}

.service-detail-featured p {
  font-size: 18px;
}

.service-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.service-mini-list li {
  background: var(--light-gray);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.services-list-section {
  background: #f7f9fb;
}

.services-list-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.services-list-box p {
  color: var(--gray);
}

.services-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.services-check-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(20, 31, 48, 0.05);
}

.services-check-card span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.services-check-card p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
  font-size: 15px;
}

.audience-section {
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 30px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  box-shadow: 0 16px 42px rgba(23, 36, 56, 0.14);
}

.audience-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(216, 177, 122, 0.16);
}

.audience-top span {
  display: inline-flex;
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  margin-bottom: 10px;
}

.audience-top strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.audience-card p {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.services-fit-section {
  background: var(--white);
  padding-top: 0;
}

.services-fit-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.services-fit-card {
  border-radius: 30px;
  padding: 38px;
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 177, 122, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7f9fb);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(20, 31, 48, 0.07);
}

.services-fit-card p {
  color: var(--gray);
}

.services-fit-card.dark {
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 177, 122, 0.25), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.services-fit-card.dark h2,
.services-fit-card.dark p {
  color: var(--white);
}

.services-fit-card.dark p {
  opacity: 0.84;
}

.services-fit-card.dark .btn {
  margin-top: 12px;
}

@media (max-width: 1100px) {
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .services-intro-card,
  .services-list-box,
  .audience-grid,
  .services-fit-box {
    grid-template-columns: 1fr;
  }

  .service-detail-featured {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .service-detail-grid,
  .services-check-grid {
    grid-template-columns: 1fr;
  }

  .services-intro-card,
  .service-detail-card,
  .services-fit-card,
  .audience-card {
    padding: 28px;
    border-radius: 24px;
  }

  .service-detail-featured p {
    font-size: 17px;
  }
}
.quote-hero,
.contact-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 177, 122, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 46%, #eef3f7 100%);
}

.form-section {
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
}

.form-info-card,
.form-card {
  border-radius: 30px;
  box-shadow: 0 18px 46px rgba(20, 31, 48, 0.07);
}

.form-info-card {
  background:
    radial-gradient(circle at 84% 16%, rgba(216, 177, 122, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 36px;
  position: sticky;
  top: 160px;
}

.form-info-card h2,
.form-info-card p {
  color: var(--white);
}

.form-info-card p {
  opacity: 0.84;
}

.form-info-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.form-info-list div {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.form-info-list strong,
.form-info-list span {
  display: block;
}

.form-info-list strong {
  color: var(--gold-light);
  margin-bottom: 5px;
  font-size: 18px;
}

.form-info-list span {
  color: rgba(255, 255, 255, 0.78);
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 38px;
}

.form-card > p {
  color: var(--gray);
  margin-top: -6px;
  margin-bottom: 24px;
}

.rh-form {
  display: grid;
  gap: 18px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--navy);
  font-weight: 900;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f9fbfc;
  color: var(--navy-deep);
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(182, 132, 72, 0.65);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(182, 132, 72, 0.12);
}

.form-submit {
  width: fit-content;
  margin-top: 6px;
}

.form-note {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 177, 122, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 46%, #eef3f7 100%);
  padding: 30px;
}

.form-response-card {
  max-width: 620px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow);
  text-align: center;
}

.form-response-card p {
  color: var(--gray);
  font-size: 18px;
}

@media (max-width: 980px) {
  .form-grid,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .form-info-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .form-info-card,
  .form-card,
  .form-response-card {
    padding: 28px;
    border-radius: 24px;
  }

  .form-submit {
    width: 100%;
  }
}