:root {
  --navy: #111a1f;
  --navy-2: #17242b;
  --charcoal: #252a2d;
  --ink: #101518;
  --muted: #667076;
  --line: rgba(20, 30, 35, 0.12);
  --panel: rgba(255, 255, 255, 0.78);
  --gold: #b8955d;
  --gold-2: #d5bb86;
  --ivory: #f8f6f1;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(17, 26, 31, 0.14);
  --soft-shadow: 0 14px 42px rgba(17, 26, 31, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 4%, rgba(184, 149, 93, 0.13), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, #f3f0eb 58%, #ffffff 100%);
  letter-spacing: 0;
}

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

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

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

.section-pad {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 26, 31, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: 244px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-2);
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 5.7vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span {
  color: var(--gold);
}

.subhead {
  max-width: 620px;
  color: #2f383d;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.72;
}

.primary-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(184, 149, 93, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #9d7a42);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(157, 122, 66, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(157, 122, 66, 0.32);
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(17, 26, 31, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.browser-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: linear-gradient(180deg, #1b272e, #111a1f);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.browser-top strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
}

.carousel {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e9e5dc;
}

.carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 680ms ease, transform 720ms ease;
}

.carousel img.active {
  opacity: 1;
  transform: scale(1);
}

.process-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -34px;
  overflow: hidden;
  border: 1px solid rgba(17, 26, 31, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.77);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.process-strip article {
  display: flex;
  gap: 18px;
  min-height: 132px;
  padding: 30px;
  border-right: 1px solid rgba(17, 26, 31, 0.09);
}

.process-strip article:last-child {
  border-right: 0;
}

.step-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(213, 187, 134, 0.28);
}

.process-strip h3,
.feature-card h3,
.price-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.process-strip p,
.feature-card p,
.price-card p,
.accordion p,
.footer p {
  color: var(--muted);
  line-height: 1.62;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head.compact {
  margin: 0 0 24px;
  text-align: left;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.choice {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 78% 18%, rgba(37, 42, 45, 0.08), transparent 24rem);
}

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

.feature-card,
.price-card,
.contact-card,
.faq {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 244px;
  padding: 34px 26px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 149, 93, 0.38);
}

.line-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(184, 149, 93, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}

.line-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing {
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 149, 93, 0.12), transparent 30rem),
    linear-gradient(135deg, rgba(17, 26, 31, 0.04), rgba(255, 255, 255, 0.64));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(270px, 410px));
  justify-content: center;
  gap: 28px;
}

.price-card {
  overflow: hidden;
  min-height: 305px;
}

.price-card.featured {
  border-color: rgba(184, 149, 93, 0.34);
}

.price-top {
  padding: 32px;
  text-align: center;
}

.price-card h3 {
  margin: -32px -32px 28px;
  padding: 18px;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  color: #fff;
}

.price {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 850;
}

.price span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 750;
}

.price-card ul {
  margin: 0;
  padding: 0 42px 36px;
  list-style: none;
  color: #30383d;
}

.price-card li {
  padding: 11px 0;
  border-top: 1px solid rgba(17, 26, 31, 0.09);
}

.cancel-note {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.example-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.example-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(17, 26, 31, 0.09);
}

.example-card div {
  display: grid;
  gap: 6px;
  padding: 20px 22px 22px;
}

.example-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.example-card strong {
  color: var(--navy);
  font-size: 1.12rem;
}

.faq-contact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(248, 246, 241, 0.92)),
    radial-gradient(circle at 70% 35%, rgba(184, 149, 93, 0.1), transparent 26rem);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.faq,
.contact-card {
  padding: 32px;
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
  border: 1px solid rgba(17, 26, 31, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 18px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

label:nth-child(3),
label:nth-child(4) {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 26, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(184, 149, 93, 0.64);
  box-shadow: 0 0 0 4px rgba(184, 149, 93, 0.13);
}

form .primary-cta {
  width: fit-content;
  border: 0;
}

.footer {
  padding: 34px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer nav {
  display: flex;
  gap: 28px;
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

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

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(17, 26, 31, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .process-strip,
  .feature-grid,
  .example-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-strip {
    margin-top: 0;
  }

  .process-strip article:nth-child(2) {
    border-right: 0;
  }

  .process-strip article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(17, 26, 31, 0.09);
  }
}

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

  .section-pad {
    padding: 48px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .brand {
    width: 190px;
  }

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

  .hero-grid {
    gap: 26px;
  }

  .hero-visual {
    min-height: 230px;
  }

  .browser-frame {
    border-radius: 12px;
  }

  .process-strip,
  .feature-grid,
  .pricing-grid,
  .example-grid,
  form {
    grid-template-columns: 1fr;
  }

  .process-strip article,
  .process-strip article:nth-child(2),
  .process-strip article:last-child {
    border-right: 0;
    border-top: 1px solid rgba(17, 26, 31, 0.09);
  }

  .process-strip article:first-child {
    border-top: 0;
  }

  .footer-grid,
  .footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
