:root {
  --bg: #f8f4ed;
  --surface: #fffdfa;
  --surface-alt: #efe4d2;
  --ink: #143932;
  --ink-soft: #35534d;
  --gold: #b98a2c;
  --gold-soft: #d3a648;
  --line: rgba(20, 57, 50, 0.12);
  --shadow: 0 18px 40px rgba(28, 35, 31, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(214, 180, 110, 0.18), transparent 30%),
    linear-gradient(180deg, #fcfaf6 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 251, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 57, 50, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: clamp(48px, 4.5vw, 62px);
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-tagline {
  color: #486760;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(20, 57, 50, 0.14);
}

.button-solid {
  background: linear-gradient(180deg, #0f534a 0%, #113c35 100%);
  color: #fff;
}

.button-outline,
.button-ghost {
  border-color: rgba(185, 138, 44, 0.45);
  background: rgba(255, 255, 255, 0.7);
  color: var(--gold);
}

.button-gold {
  background: linear-gradient(180deg, #d4aa4b 0%, #b98a2c 100%);
  color: #fffdf8;
}

.play-badge {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(185, 138, 44, 0.5);
  border-radius: 999px;
  font-size: 0.68rem;
}

.hero {
  padding: 34px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.1fr;
  align-items: center;
  gap: 30px;
}

.hero-copy h1,
.feature-copy h2,
.faq-heading h2,
.cta-title,
.plans h2,
.site-footer h2 {
  font-family: "Cormorant Garamond", serif;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(185, 138, 44, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.8);
  box-shadow: 0 16px 30px rgba(20, 57, 50, 0.08);
}

.hero-brand-lockup img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.hero-brand-name,
.hero-brand-note {
  margin: 0;
}

.hero-brand-name {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-brand-note {
  margin-top: 4px;
  color: #486760;
  font-size: 0.96rem;
}

.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(3.1rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-copy p {
  max-width: 590px;
  margin: 0 0 34px;
  font-size: 1.5rem;
  line-height: 1.55;
  color: #27453e;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #27453e;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.2em;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  overflow: hidden;
  border-radius: 0 0 0 var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  min-height: 780px;
  object-fit: cover;
}

.compliance-card {
  position: absolute;
  left: -40px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 370px;
  padding: 18px 22px;
  background: rgba(255, 249, 241, 0.92);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.shield-icon {
  flex: 0 0 52px;
}

.shield-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.compliance-card p,
.detail-card,
.cta-text,
.footer-list,
.site-footer p {
  font-size: 1.02rem;
  line-height: 1.55;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.section-kicker span {
  display: block;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 138, 44, 0.6), transparent);
}

.section-kicker p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.24em;
}

.service-strip {
  padding: 22px 0 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item {
  padding: 28px 18px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-item:last-child {
  border-right: 0;
}

.service-icon {
  margin-bottom: 18px;
  font-size: 2.4rem;
  line-height: 1;
}

.service-item h2,
.plan-card h2,
.onboarding-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.service-item h2 {
  font-size: 1.15rem;
  line-height: 1.45;
}

.feature-band {
  padding: 36px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: 42px 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 5% 5%, rgba(212, 170, 75, 0.16), transparent 28%),
    linear-gradient(135deg, #08352e 0%, #0d4a40 100%);
  color: #fff;
}

.feature-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 3.6vw, 4.1rem);
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 38px;
  font-size: 1.15rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(212, 170, 75, 0.8);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.feature-visual {
  position: relative;
}

.feature-image-frame {
  overflow: hidden;
  aspect-ratio: 1774 / 887;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.feature-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 250px;
  padding: 14px 18px;
  background: rgba(8, 53, 46, 0.92);
  border-radius: 16px;
}

.plans {
  padding: 34px 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  background: rgba(255, 253, 250, 0.88);
  border: 1px solid rgba(185, 138, 44, 0.25);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(45, 49, 46, 0.08);
}

.plan-card-featured {
  position: relative;
  border-color: rgba(185, 138, 44, 0.55);
  box-shadow: 0 18px 36px rgba(185, 138, 44, 0.18);
}

.plan-tag {
  position: absolute;
  top: -14px;
  left: 24px;
  margin: 0;
  padding: 8px 16px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #d4aa4b 0%, #b98a2c 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.price {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 1;
}

.subtitle {
  margin: 4px 0 18px;
  color: #425f58;
  line-height: 1.55;
}

.plan-card ul,
.footer-list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
}

.plan-card .button {
  margin-top: auto;
}

.onboarding-card {
  background:
    radial-gradient(circle at top left, rgba(212, 170, 75, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(244, 238, 227, 0.96), rgba(241, 235, 225, 0.92));
}

.onboarding-prices {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
}

.onboarding-prices span {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.faq-section {
  padding: 18px 0 36px;
}

.faq-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.faq-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  line-height: 0.98;
}

.faq-heading p,
.faq-item p {
  margin: 0;
  color: #35534d;
  line-height: 1.65;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  padding: 22px 24px;
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid rgba(185, 138, 44, 0.22);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(45, 49, 46, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.5;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  margin-left: 16px;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

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

.faq-item p {
  margin-top: 14px;
}

.cta-banner {
  padding: 12px 0 42px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 34px;
  border-radius: 20px;
  background: linear-gradient(90deg, #0b4038 0%, #0e564a 100%);
  color: #fff;
}

.cta-title {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1;
}

.cta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
  text-align: center;
}

.cta-actions p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  padding: 30px 0 16px;
}

.footer-shell {
  display: flex;
  justify-content: center;
}

.footer-contacts {
  padding: 26px 0 12px;
  text-align: center;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.footer-contacts {
  max-width: 320px;
}

.footer-email {
  margin: 0;
  color: #35534d;
  line-height: 1.7;
}

.footer-email a {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

@media (max-width: 1200px) {
  .main-nav {
    gap: 14px;
    font-size: 0.78rem;
  }

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

  .service-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .header-inner,
  .hero-grid,
  .feature-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    min-height: auto;
    padding: 18px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .brand-mark {
    width: 56px;
  }

  .brand-copy {
    gap: 2px;
  }

  .brand-tagline {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .hero-brand-lockup {
    width: 100%;
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .hero-copy p {
    font-size: 1.15rem;
  }

  .hero-image-card img {
    min-height: 520px;
  }

  .compliance-card {
    position: static;
    margin-top: 18px;
  }

  .service-grid,
  .faq-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .cta-actions {
    width: 100%;
    text-align: left;
  }

  .header-cta,
  .button,
  .cta-actions .button {
    width: 100%;
  }
}
