:root {
  --bg: #050505;
  --bg-2: #0b0b0d;
  --panel: rgba(255,255,255,.035);
  --panel-2: rgba(255,255,255,.06);
  --text: #f5f1ea;
  --muted: #b9ada0;
  --accent: #c78a3b;
  --accent-2: #f0c27a;
  --accent-3: #8f5a24;
  --accent-soft: rgba(199, 138, 59, 0.16);
  --border: rgba(199,138,59,.18);
  --shadow: 0 24px 60px rgba(0,0,0,.42);
  --max: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}



body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  background:
    radial-gradient(circle at top center, rgba(240,194,122,.10), transparent 18%),
    radial-gradient(circle at 20% 20%, rgba(199,138,59,.08), transparent 24%),
    radial-gradient(circle at 80% 35%, rgba(143,90,36,.10), transparent 26%),
    linear-gradient(180deg, #020202 0%, #070707 40%, #0d0b09 100%);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.hidden-field { display: none; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 6, 5, 0.86);
  border-bottom: 1px solid rgba(199,138,59,.10);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo,
.brand-fallback {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  flex: 0 0 auto;
}

.brand-logo {
  object-fit: cover;
  border: 1px solid rgba(199,138,59,.20);
  background: rgba(255,255,255,.03);
  box-shadow: 0 0 20px rgba(199,138,59,.10);
}

.brand-fallback {
  display: none;
  place-items: center;
  background: linear-gradient(145deg, #2b2016, #8e602a);
  border: 1px solid rgba(199,138,59,.18);
  font-weight: 900;
  color: #fff3e2;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -.03em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  margin-top: 2px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(199,138,59,.18);
  background: rgba(255,255,255,.03);
  color: white;
  border-radius: 14px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
  transition: color .18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff3df;
}

.site-nav .nav-btn {
  padding: 11px 15px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f0c27a, #a86b2d);
  color: #1a1208;
  box-shadow: 0 10px 24px rgba(199,138,59,.20);
}

.hero,
.page-hero {
  padding: 48px 0 26px;
}

.hero-grid,
.grid-3,
.grid-2,
.split-grid,
.contact-grid,
.stats-row,
.mock-cards,
.footer-wrap {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2,
.split-grid,
.contact-grid,
.footer-wrap { grid-template-columns: repeat(2, 1fr); }

.hero-copy,
.hero-visual,
.card,
.pricing-card,
.compare,
.sidebar,
.form-panel,
.sidebar-card,
.cta-banner,
.mock-browser,
.template-card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual,
.card,
.pricing-card,
.compare,
.sidebar,
.form-panel,
.sidebar-card,
.template-card {
  padding: 26px;
}

.eyebrow,
.tag,
.number-pill,
.compare span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(199,138,59,.10);
  border: 1px solid rgba(199,138,59,.16);
  font-size: .76rem;
  font-weight: 800;
  color: #f1c98b;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.3rem, 7vw, 4.7rem);
  line-height: .95;
  letter-spacing: -.06em;
  margin: 16px 0 0;
  max-width: 780px;
  color: #fff7ee;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.05em;
  color: #fff3e6;
}

h3 {
  font-size: 1.08rem;
  letter-spacing: -.03em;
  color: #fff0dd;
}

p, li {
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero-copy p,
.page-hero p,
.section-head p,
.card p,
.pricing-card p,
.compare p,
.sidebar p,
.sidebar-card p,
.template-card p,
.site-footer p,
.helper-text,
.mini-card span,
.stat-box span {
  color: var(--muted);
}

.hero-actions,
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn,
button {
  border: 0;
  border-radius: 16px;
  padding: 13px 18px;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .16s ease, filter .16s ease, background .16s ease, box-shadow .16s ease;
}

.btn:hover,
button:hover {
  filter: brightness(1.04);
}

.btn-primary {
  background: linear-gradient(145deg, #f0c27a, #a86b2d);
  color: #1a1208;
  box-shadow: 0 10px 30px rgba(199,138,59,.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(199,138,59,.35);
}

.btn-secondary {
  background: linear-gradient(145deg, #d6a869, #73431f);
  color: #170f08;
}

.btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--text);
  border: 1px solid rgba(199,138,59,.16);
}

.stats-row,
.mock-cards { grid-template-columns: repeat(3, 1fr); }

.stat-box,
.mini-card {
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(199,138,59,.12);
  border-radius: 20px;
  padding: 16px;
}

.stat-box strong,
.mini-card strong,
.card h3,
.pricing-card h3,
.template-card h3 {
  display: block;
  margin-bottom: 6px;
}

.mock-browser {
  overflow: hidden;
  padding: 0;
}

.mock-top {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(199,138,59,.10);
  background: rgba(255,255,255,.02);
}

.mock-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(240,194,122,.30);
}

.mock-body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.mock-main {
  min-height: 190px;
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(199,138,59,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  position: relative;
  overflow: hidden;
}

.mock-main::before,
.mock-main::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: .9;
}

.mock-main::before {
  width: 130px;
  height: 130px;
  background: rgba(240,194,122,.16);
  top: -18px;
  right: -12px;
}

.mock-main::after {
  width: 160px;
  height: 160px;
  background: rgba(143,90,36,.16);
  left: -30px;
  bottom: -60px;
}

.mock-main h2,
.mock-main small,
.mock-main p {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 120px;
  margin-bottom: 18px;
  opacity: .95;
  filter: drop-shadow(0 8px 22px rgba(199,138,59,.18));
}

.floating { animation: floatY 5s ease-in-out infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.section { padding: 30px 0; }

.section-soft {
  background: linear-gradient(180deg, rgba(199,138,59,.03), rgba(255,255,255,0));
}

.section-head { margin-bottom: 20px; }

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

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f0c27a;
  font-weight: 900;
}

.compact { margin-top: 8px; }

.before-after {
  display: grid;
  gap: 14px;
}

.compare-bad {
  background: linear-gradient(145deg, rgba(120,60,35,.20), rgba(255,255,255,.02));
}

.compare-good {
  background: linear-gradient(145deg, rgba(199,138,59,.12), rgba(255,255,255,.02));
}

.pricing-card ul,
.template-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.pricing-card li,
.template-card li {
  position: relative;
  padding-left: 18px;
}

.pricing-card li::before,
.template-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f0c27a;
}

.pricing-card.featured {
  border-color: rgba(240,194,122,.22);
  background: linear-gradient(145deg, rgba(199,138,59,.14), rgba(255,255,255,.02));
}

.price {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin: 8px 0 10px;
  letter-spacing: -.04em;
  color: #f3ca88;
}

.price span {
  font-size: .95rem;
  color: var(--muted);
  margin-left: 4px;
}

.cta-banner {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(145deg, rgba(199,138,59,.10), rgba(143,90,36,.10));
}

.contact-grid { align-items: start; }
.sidebar { display: grid; gap: 16px; }

.email-link {
  color: #f0c27a;
  text-decoration: none;
  font-weight: 700;
}

.form-panel { padding: 26px; }

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

label {
  display: block;
  margin: 14px 0 8px;
  font-weight: 800;
  font-size: .95rem;
  color: #fff1dd;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(199,138,59,.16);
  background: rgba(10,8,7,.88);
  color: var(--text);
  padding: 13px 14px;
  font-size: 16px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: #8f8274;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(240,194,122,.45);
  box-shadow: 0 0 0 3px rgba(199,138,59,.10);
}

textarea {
  min-height: 120px;
  resize: none;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.chip {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(199,138,59,.14);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  color: #eadfce;
}

.chip.active {
  background: rgba(199,138,59,.18);
  border-color: rgba(240,194,122,.30);
  color: #fff0d8;
}

.form-status {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(199,138,59,.12);
  display: none;
}

.form-status.show { display: block; }

.template-card {
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
}

.card,
.pricing-card {
  transition: all .35s ease;
}

.card:hover,
.pricing-card:hover,
.template-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.template-dark { background: linear-gradient(145deg, #080808, #23170f); }
.template-light { background: linear-gradient(145deg, #2c221a, #7b562c); }
.template-bold { background: linear-gradient(145deg, #120d09, #9b6429); }

.site-footer {
  padding: 28px 0 20px;
  border-top: 1px solid rgba(199,138,59,.10);
  margin-top: 26px;
}

.footer-wrap {
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(199,138,59,.18);
  box-shadow: 0 0 18px rgba(199,138,59,.10);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: transform, opacity;
}

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

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .split-grid,
  .contact-grid,
  .stats-row,
  .mock-cards,
  .row,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
    background: rgba(10,8,7,.97);
    border: 1px solid rgba(199,138,59,.14);
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .hero-logo {
    width: 90px;
    margin-bottom: 12px;
  }

  .section {
    padding: 22px 0;
  }

  .hero-copy,
  .hero-visual,
  .card,
  .pricing-card,
  .compare,
  .sidebar,
  .form-panel,
  .sidebar-card,
  .cta-banner,
  .template-card {
    padding: 20px;
    border-radius: 22px;
  }

  h1 { font-size: clamp(2.1rem, 12vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 9vw, 2.2rem); }

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

  .btn,
  button {
    width: 100%;
  }

  .brand strong {
    font-size: .95rem;
  }

  .brand small {
    font-size: .78rem;
  }

  .footer-logo {
    width: 54px;
    height: 54px;
  }

  .chips {
    gap: 8px;
  }

  .chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.template-visual {
  height: 190px;
  border-radius: 22px;
  margin-bottom: 16px;
  border: 1px solid rgba(199,138,59,.12);
  position: relative;
  overflow: hidden;
  background: #0b0b0d;
}

.template-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.template-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.25), rgba(0,0,0,.05));
  pointer-events:none;
}