:root {
  --navy-950: #071828;
  --navy-900: #0a2034;
  --navy-800: #10314d;
  --blue-600: #2f6fa3;
  --blue-100: #eaf2f8;
  --green-500: #2fc27d;
  --green-600: #23a96b;
  --green-100: #e9f8f0;
  --ink: #132536;
  --muted: #607284;
  --line: #dce5ec;
  --surface: #ffffff;
  --surface-soft: #f6f9fb;
  --shadow: 0 24px 60px rgba(8, 31, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 24, 40, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Branding */

.brand,
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 5px;
  color: white;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.brand-your,
.brand-guy {
  font-weight: 650;
}

.brand-it {
  display: inline-block;
  margin: 0 2px;
  color: var(--green-500);
  font-family: "Arial Black", "Segoe UI Black", Inter, sans-serif;
  font-weight: 900;
  letter-spacing: -0.08em;
  transform: skew(-4deg);
}

.brand-tagline {
  font-family: "Caveat", cursive;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #aebdca;
  text-align: center;
}

/* Navigation */

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a:not(.nav-cta) {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 8px 0;
  white-space: nowrap;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 6%;
  bottom: 0;
  width: 88%;
  height: 3px;
  background: var(--green-500);
  border-radius: 60% 40% 55% 45%;
  transform: scaleX(0) rotate(-1.5deg);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:not(.nav-cta):hover::after,
.nav a:not(.nav-cta).active::after {
  transform: scaleX(1) rotate(-1.5deg);
}

.nav-cta {
  margin-left: 4px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--green-500);
  color: var(--navy-950) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero */

.hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(47, 194, 125, 0.16), transparent 28%),
    radial-gradient(circle at 18% 8%, rgba(47, 111, 163, 0.22), transparent 26%),
    var(--navy-950);
  color: white;
  padding: 94px 0 92px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b7c6d2;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(47, 194, 125, 0.12);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 760px;
  color: white;
}

.hero-it {
  color: var(--green-500);
  font-weight: 900;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 30px;
  color: #c7d3dd;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #98adbd;
  font-size: 0.83rem;
  font-weight: 650;
}

.hero-points span::before {
  content: "✓";
  color: var(--green-500);
  margin-right: 7px;
}

/* Buttons */

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 12px;
  font-weight: 760;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-500);
  color: var(--navy-950);
  box-shadow: 0 12px 28px rgba(47, 194, 125, 0.18);
}

.btn-primary:hover {
  background: #3bd78d;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.17);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.full {
  width: 100%;
}

/* Common problems */

.hero-panel {
  background: #fdfefe;
  color: var(--ink);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}

.availability {
  font-size: 0.75rem;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.availability-dot {
  width: 7px;
  height: 7px;
  background: var(--green-500);
  border-radius: 50%;
}

.issue-list {
  display: grid;
  gap: 10px;
}

.issue {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px;
  background: var(--surface-soft);
  border-radius: 15px;
  border: 1px solid #edf2f5;
}

.issue-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--green-500);
}

.issue strong,
.issue small {
  display: block;
}

.issue strong {
  font-size: 0.94rem;
}

.issue small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
  line-height: 1.4;
}

.panel-note {
  margin: 18px 2px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Icon consistency */

.service-icon .fi,
.issue-icon .fi,
.coverage-icon .fi {
  display: block;
  color: inherit;
  line-height: 1;
}

.service-icon .fi,
.issue-icon .fi {
  font-size: 1.35rem;
}

.coverage-icon .fi {
  font-size: 1.15rem;
}

/* Trust strip */

.trust-strip {
  background: #0d2942;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 25px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 0.92rem;
}

.trust-grid span {
  color: #9fb3c3;
  font-size: 0.78rem;
  margin-top: 3px;
}

/* Shared sections */

.section {
  padding: 92px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-intro.narrow {
  max-width: 700px;
}

.section-label {
  margin: 0 0 10px;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 850;
}

.section-label.light {
  color: #78e5ae;
}

.section h2 {
  margin: 0 0 17px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.section-intro > p:last-child,
.process-copy > p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

/* Services */

.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.service-card {
  min-height: 225px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: white;
  position: relative;
  overflow: hidden;
  transition: 0.22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cbd8e1;
}

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

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--navy-900);
  color: var(--green-500);
}

.service-card h3 {
  margin: 24px 0 9px;
  font-size: 1.03rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Process */

.process {
  background: var(--navy-900);
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.process-copy > p:last-child {
  color: #afbfcb;
}

.process-copy .btn {
  margin-top: 24px;
}

.process-steps {
  display: grid;
  gap: 13px;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
}

.process-step > span {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--green-500);
  color: var(--navy-950);
  font-weight: 900;
}

.process-step strong {
  font-size: 1rem;
}

.process-step p {
  color: #aebdca;
  margin: 5px 0 0;
  font-size: 0.9rem;
}

/* Coverage */

.coverage {
  background: linear-gradient(180deg, #f6faf8 0%, #eef6f3 100%);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.coverage-card {
  padding: 27px;
  border-radius: 20px;
  background: white;
  border: 1px solid #d8e7df;
  box-shadow: 0 10px 30px rgba(11, 58, 37, 0.04);
}

.coverage-card.featured {
  border-color: rgba(47, 194, 125, 0.55);
  background: #fbfffd;
}

.coverage-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.coverage-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--green-500);
}

.coverage-card p {
  margin: 0;
  color: var(--muted);
}

.coverage-note {
  margin-top: 18px;
  padding: 17px 20px;
  border-radius: 14px;
  background: var(--navy-900);
  color: #d5e1e8;
  font-size: 0.9rem;
}

.coverage-note strong {
  color: white;
}

/* About */

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.about-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 700px;
}

.about-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-checks > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.about-checks span {
  color: var(--green-600);
  font-weight: 900;
}

.about-checks p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.about-checks strong {
  color: var(--ink);
}

.about-side {
  display: grid;
  gap: 18px;
}

.about-photo-placeholder,
.about-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 25px;
}

.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--blue-600);
  background: linear-gradient(145deg, var(--surface-soft), var(--blue-100));
  border: 1px dashed #b9cfde;
  text-align: center;
  padding: 28px;
}

.about-photo-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  fill: none;
  stroke: var(--green-600);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-photo-placeholder span {
  color: var(--navy-900);
  font-weight: 800;
}

.about-photo-placeholder small {
  color: var(--muted);
}

.about-photo {
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
}

.about-card {
  background: var(--blue-100);
  border-radius: 25px;
  padding: 38px;
  border: 1px solid #dbe8f1;
}

.about-card-kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 850;
}

.about-card blockquote {
  margin: 0 0 20px;
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--navy-900);
}

.about-card > p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

/* Contact */

.contact {
  background: var(--navy-950);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 68px;
  align-items: start;
}

.contact-copy > p:not(.section-label) {
  color: #acbdca;
}

.contact-help {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.contact-help-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-help-number {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--green-500);
  color: var(--navy-950);
  font-weight: 850;
}

.contact-help-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.contact-help-item p {
  margin: 0;
  color: #b9c8d4;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-form {
  background: white;
  color: var(--ink);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  font-size: 0.87rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd9e1;
  border-radius: 11px;
  padding: 12px 13px;
  outline: none;
  background: #fbfcfd;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(47, 194, 125, 0.12);
  background: white;
}

.contact-method {
  margin: 2px 0 20px;
  padding: 0;
  border: 0;
}

.contact-method legend {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 750;
}

.radio-options {
  display: flex;
  gap: 12px;
}

.radio-option {
  flex: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  margin: 0 !important;
  padding: 0 16px;
  border: 1px solid #cfd8e5;
  border-radius: 10px;
  background: #fbfcfd;
  cursor: pointer;
  transition: 0.2s ease;
}

.radio-option:hover {
  border-color: var(--green-500);
  background: #f8fdfa;
}

.radio-option:has(input:checked) {
  border-color: var(--green-500);
  background: rgba(47, 194, 125, 0.09);
}

.radio-option input {
  width: auto;
  margin: 0;
  padding: 0;
  accent-color: var(--green-500);
  box-shadow: none;
}

.contact-method-error {
  min-height: 1.2em;
  margin: 8px 0 0;
  color: #b42318;
  font-size: 0.78rem;
  font-weight: 650;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Footer */

.site-footer {
  background: #04111e;
  color: white;
  padding: 42px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 35px;
  align-items: center;
}

.footer-inner > p {
  color: #8fa3b3;
  font-size: 0.82rem;
  margin: 0;
}

.icon-credit {
  white-space: nowrap;
}

.icon-credit a {
  color: #aebdca;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.icon-credit a:hover {
  color: var(--green-500);
}

.copyright {
  text-align: right;
}

/*Reveal effects */

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.80s ease,
        transform 0.80s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Small stagger for groups of cards */
.reveal-delay-1 {
    transition-delay: 0.20s;
}

.reveal-delay-2 {
    transition-delay: 0.30s;
}

.reveal-delay-3 {
    transition-delay: 0.40s;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}



/* Responsive */

@media (max-width: 980px) {
  .hero-grid,
  .process-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-panel {
    max-width: 700px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand .brand-tagline {
    text-align: left;
  }

  .copyright {
    text-align: left;
  }

  .icon-credit {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 14px;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav.open {
    display: flex;
  }

  .nav a:not(.nav-cta) {
    padding: 11px 10px;
  }

  .nav a:not(.nav-cta)::after {
    left: 10px;
    bottom: 5px;
    width: 44px;
  }

  .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero {
    padding: 64px 0 68px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .section {
    padding: 70px 0;
  }

  .service-grid,
  .coverage-grid,
  .about-checks,
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Trust strip - mobile */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

.trust-grid > div {
    padding: 22px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-grid > div:nth-child(2n) {
    border-right: 0;
}

.trust-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.trust-grid > div:first-child {
    padding-left: 18px;
}

.trust-grid strong {
    font-size: 0.9rem;
    line-height: 1.3;
}

.trust-grid span {
    margin-top: 5px;
    font-size: 0.76rem;
    line-height: 1.45;
}


  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 28px;
  }

  .coverage-card {
    padding: 22px;
  }

.about-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.about-card-kicker {
    margin-bottom: 12px;
}

.about-card blockquote {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 14px;
}

.about-card > p:last-child {
    margin-bottom: 0;
}

.about-side {
    gap: 28px;
}

  .radio-options {
    flex-direction: column;
  }

  .radio-option {
    flex: none;
  }

  .contact-form {
    padding: 20px;
    border-radius: 20px;
  }
}

.form-error {
    min-height: 1.25em;
    margin: 0 0 12px;
    color: #b42318;
    font-size: 0.82rem;
    font-weight: 650;
}

#submit-button:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.form-success {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.form-success-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: var(--green-500);
    color: var(--navy-950);
    font-size: 1.7rem;
    font-weight: 900;
}

.form-success h3 {
    margin: 0 0 10px;
    color: var(--navy-900);
    font-size: 1.6rem;
    line-height: 1.2;
}

.form-success p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
}

/* Form + footer privacy links */

.form-note a,
.copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note a:hover {
  color: var(--green-600);
}

.copyright a:hover {
  color: var(--green-500);
}

.footer-separator {
  margin: 0 5px;
  color: #617789;
}


/* Privacy page */

.privacy-main {
  background: var(--surface);
}

.privacy-hero {
  padding: 76px 0 64px;
  background:
    radial-gradient(circle at 78% 25%, rgba(47, 194, 125, 0.12), transparent 30%),
    var(--navy-950);
  color: white;
}

.privacy-hero-inner {
  max-width: 820px;
}

.privacy-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.privacy-hero p:last-child {
  max-width: 680px;
  margin: 0;
  color: #c7d3dd;
  font-size: 1.08rem;
}

.privacy-content {
  padding: 72px 0 92px;
}

.privacy-article {
  width: min(820px, 100%);
  margin: 0 auto;
}

.privacy-updated {
  margin: 0 0 34px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.86rem;
}

.privacy-article h2 {
  margin: 42px 0 12px;
  color: var(--navy-900);
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.privacy-article h2:first-of-type {
  margin-top: 0;
}

.privacy-article p,
.privacy-article li {
  color: var(--muted);
}

.privacy-article p {
  margin: 0 0 16px;
}

.privacy-article ul {
  margin: 12px 0 20px;
  padding-left: 24px;
}

.privacy-article li {
  margin: 7px 0;
}

.privacy-article strong {
  color: var(--ink);
}

.privacy-article a {
  color: var(--green-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-contact-box {
  margin: 22px 0 8px;
  padding: 20px 22px;
  border-left: 4px solid var(--green-500);
  border-radius: 0 14px 14px 0;
  background: var(--green-100);
}

.privacy-contact-box p {
  margin: 0;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 46px;
  font-weight: 750;
  color: var(--navy-900) !important;
  text-decoration: none !important;
}

.privacy-back:hover {
  color: var(--green-600) !important;
}

@media (max-width: 760px) {
  .privacy-hero {
    padding: 56px 0 50px;
  }

  .privacy-hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .privacy-content {
    padding: 52px 0 70px;
  }

  .privacy-article h2 {
    margin-top: 34px;
    font-size: 1.3rem;
  }
}
