:root {
  --paper: #faf6ee;
  --card: #fffdf8;
  --ink: #26231d;
  --ink-soft: #3a362e;
  --muted: #6f6859;
  --faint: #a89d89;
  --line: #e7ddc8;
  --line-soft: #efe7d6;
  --accent: #b84a2a;
  --accent-deep: #91361c;
  --olive: #5f6f3c;
  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 1px 2px rgba(38, 35, 29, 0.05), 0 8px 24px -18px rgba(38, 35, 29, 0.18);
  --max-w: 1100px;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-deep);
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--paper);
}
::-webkit-scrollbar-thumb {
  background: #d8ccb2;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #faf6ee;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  isolation: isolate;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(38, 35, 29, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.logo span {
  color: var(--accent);
}

.logo-swoosh {
  position: absolute;
  left: 2%;
  bottom: 0px;
  width: 96%;
  height: 14px;
  color: var(--accent);
  pointer-events: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a:not(.nav-cta) {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover:not(.nav-cta),
.nav-links a.active {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--paper);
  color: var(--ink);
}

.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 7rem 0 5.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.hero h1 span {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  stroke: var(--olive);
}

/* ---------- Sections ---------- */
section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  color: var(--ink);
}

.section-sub {
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

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

.card h3 {
  font-family: var(--font-head);
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.card h3 svg {
  width: 20px;
  height: 20px;
  vertical-align: -3px;
  color: var(--accent);
  stroke: currentColor;
  margin-right: 0.4rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card .icon {
  font-size: 1.5rem;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: #f2e9d7;
  border: 1px solid var(--line);
  color: var(--accent);
}

.card .icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* ---------- Steps ---------- */
.step-num {
  display: inline-grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- Feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split .visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.mock-window {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.mock-bar {
  display: flex;
  gap: 6px;
  padding: 0.7rem 1rem;
  background: #f6f0e2;
  border-bottom: 1px solid var(--line-soft);
}

.mock-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8ccb2;
}

.mock-bar i:first-child { background: var(--accent); }

.mock-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.mock-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.mock-line {
  height: 10px;
  border-radius: 4px;
  background: #f0e8d6;
  margin-bottom: 0.6rem;
}

.mock-line:nth-child(2) { width: 92%; }
.mock-line:nth-child(3) { width: 78%; }
.mock-line:nth-child(4) { width: 60%; }

.mock-btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
}

.check-list {
  list-style: none;
  margin-top: 1.5rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.check-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--olive);
  margin-top: 4px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-bottom: none;
  background: var(--card);
}

.faq-item:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.faq-item:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
  border-bottom: 1px solid var(--line);
}

.faq-item.open {
  background: #fff;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-q .plus {
  font-family: var(--font);
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.25s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 1.4rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 4rem 2.5rem;
  text-align: center;
  color: var(--paper);
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 200px at 12% 20%, rgba(184, 74, 42, 0.35), transparent),
    radial-gradient(420px 200px at 88% 80%, rgba(95, 111, 60, 0.3), transparent);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.cta-band p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* ---------- Page header ---------- */
.page-header {
  padding: 5rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(184, 74, 42, 0.06), transparent);
}

.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.page-header p {
  color: var(--muted);
  max-width: 640px;
  margin: 0.9rem auto 0;
  font-size: 1.08rem;
}

/* ---------- Pricing ---------- */
.price-tag {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
}

.includes {
  list-style: none;
  margin-top: 1.2rem;
}

.includes li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.includes li::before {
  content: '\2713';
  color: var(--olive);
  font-weight: 700;
}

/* ---------- Team ---------- */
.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #f2e9d7;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.card .role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.info-cards {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
}

.info-card .ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: #f2e9d7;
  font-size: 1.1rem;
  color: var(--accent);
}

.info-card .ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.info-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
}

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

.contact-note {
  color: var(--muted);
  font-size: 0.95rem;
  background: #f2e9d7;
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
}

form .field {
  margin-bottom: 1.1rem;
}

form label {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 74, 42, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--olive);
  margin-top: 0.9rem;
  font-weight: 600;
}

.form-note.error {
  color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d8cfbd;
  padding: 4rem 0 0;
  margin-top: 3rem;
}

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

.footer-grid h4 {
  font-family: var(--font-head);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--paper);
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.55rem;
}

.footer-grid a {
  color: #b8ac93;
  font-size: 0.93rem;
}

.footer-grid a:hover {
  color: var(--paper);
}

.footer-brand .logo {
  color: var(--paper);
}

.footer-brand .logo span {
  color: #e08a62;
}

.footer-brand .logo-swoosh {
  color: #e08a62;
}

.footer-brand p {
  color: #b8ac93;
  font-size: 0.93rem;
  margin-top: 0.6rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: #b8ac93;
  transition: all 0.2s;
}

.socials a:hover {
  color: var(--paper);
  border-color: var(--accent);
  transform: translateY(-2px);
}

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

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 90;
  box-shadow: var(--shadow);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  section {
    padding: 4rem 0;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem;
    gap: 1.1rem;
    display: none;
    box-shadow: 0 20px 40px -20px rgba(38, 35, 29, 0.35);
  }

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

  .nav-cta {
    text-align: center;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero-trust {
    gap: 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}