/* Sparrow Grid — light static HTML website */
:root {
  --bg: #fffdf9;
  --bg-soft: #f6f7f9;
  --panel: #ffffff;
  --panel-2: #f3f4f6;
  --line: rgba(25, 29, 36, .11);
  --line-strong: rgba(25, 29, 36, .18);
  --text: #191d25;
  --muted: #626974;
  --orange: #ff6a00;
  --orange-2: #ff8a1f;
  --orange-soft: #fff1e5;
  --cream: #fff8f1;
  --white: #ffffff;
  --success: #258d55;
  --shadow: 0 22px 60px rgba(39, 31, 24, .11);
  --shadow-soft: 0 12px 32px rgba(39, 31, 24, .075);
  --radius: 22px;
  --max: 1180px;
}

* { 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(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 880px); margin-inline: auto; }
.section { padding: 88px 0; position: relative; }
.section.light { background: #f7f8fa; color: var(--text); }
.section.orange-wash { background: linear-gradient(135deg, #fffaf5, #ffe9d6); color: var(--text); }
.section.dark-soft { background: #fff; color: var(--text); border-block: 1px solid var(--line); }
.section-title { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -.04em; }
.section-lead { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.light .section-lead, .orange-wash .section-lead { color: var(--muted); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-weight: 850; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--orange); }

.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: #fff; color: #111; padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow-soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, .91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 185px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #262b34; font-size: .94rem; font-weight: 700; position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--orange); transition: .25s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--orange); }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; color: var(--text); width: 44px; height: 44px; border-radius: 12px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border-radius: 13px; font-weight: 850; border: 1px solid transparent; transition: transform .2s ease, filter .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.02); }
.btn-primary { background: linear-gradient(135deg, var(--orange), #ff8c1a); color: white; box-shadow: 0 12px 28px rgba(255, 106, 0, .22); }
.btn-outline { background: #fff; border-color: var(--line-strong); color: var(--text); box-shadow: var(--shadow-soft); }
.btn-dark { background: #181c23; color: white; }
.btn-sm { min-height: 42px; padding: 0 17px; font-size: .9rem; }
.text-link { color: var(--orange); font-weight: 850; }

.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 79% 35%, rgba(255, 145, 55, .20), transparent 26%),
    linear-gradient(120deg, #fffdf9 0%, #ffffff 55%, #fff5eb 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image: radial-gradient(rgba(255, 128, 20, .35) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(90deg, transparent 48%, black);
}
.hero::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 170px;
  right: -110px;
  bottom: 35px;
  transform: rotate(-24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, .19), transparent);
  filter: blur(38px);
  opacity: .9;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; padding: 72px 0; }
.hero h1 { margin: 18px 0 22px; font-size: clamp(3rem, 6vw, 5.45rem); line-height: .97; letter-spacing: -.065em; max-width: 740px; color: var(--text); }
.hero h1 span { display: block; color: var(--orange); }
.hero-copy { max-width: 650px; color: var(--muted); font-size: 1.12rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 24px; }
.price-row { display: flex; gap: 14px; flex-wrap: wrap; }
.price-chip { display: flex; align-items: center; gap: 13px; min-width: 205px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.price-chip strong { display: block; font-size: 1.32rem; line-height: 1.05; color: var(--text); }
.price-chip small { color: var(--muted); }
.chip-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); flex: 0 0 auto; }
.chip-icon svg { width: 22px; height: 22px; }
.hero-art { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-art::before {
  content: "";
  position: absolute;
  inset: 13% 0 10% 7%;
  border: 1px solid rgba(22, 26, 33, .09);
  border-radius: 28px;
  background:
    linear-gradient(#f0f1f3 0 0) 26px 24px / 45% 10px no-repeat,
    linear-gradient(#f0f1f3 0 0) 26px 48px / 33% 10px no-repeat,
    linear-gradient(#f0f1f3 0 0) 26px 78px / 57% 9px no-repeat,
    linear-gradient(#fff 0 0);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.hero-orb { position: absolute; width: min(540px, 100%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 45% 40%, rgba(255, 172, 97, .46), rgba(255, 106, 0, .10) 52%, transparent 72%); }
.hero-lines { position: absolute; inset: 18% -5% 2% 9%; border: 1px solid rgba(255, 132, 29, .16); border-radius: 42% 58% 60% 40%; transform: rotate(-12deg); }
.hero-art img { position: relative; z-index: 2; width: min(450px, 86%); max-height: 570px; object-fit: contain; filter: drop-shadow(0 28px 28px rgba(70, 50, 32, .22)); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; box-shadow: var(--shadow-soft); }
.light .card, .orange-wash .card { background: white; border-color: var(--line); box-shadow: var(--shadow-soft); }
.card h3 { margin: 16px 0 8px; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); }
.light .card p, .orange-wash .card p { color: var(--muted); }
.icon-box { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange); border: 1px solid rgba(255,106,0,.14); }
.icon-box svg { width: 29px; height: 29px; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.benefit { border: 1px solid rgba(255, 106, 0, .22); background: #fffaf5; border-radius: 18px; padding: 22px; box-shadow: var(--shadow-soft); }
.benefit strong { display: block; margin-bottom: 5px; color: var(--text); }
.benefit p { margin: 0; color: var(--muted); font-size: .93rem; }
.benefit .mini-icon { color: var(--orange); margin-bottom: 13px; }
.benefit .mini-icon svg { width: 32px; height: 32px; }

.package-band { background: linear-gradient(130deg, #fff4e8, #ffd7b5); color: var(--text); padding: 72px 0; overflow: hidden; border-block: 1px solid rgba(255,106,0,.15); }
.package-panel { display: grid; grid-template-columns: .72fr 1.1fr .8fr; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.package-name { background: #1b1f26; color: white; padding: 42px 34px; position: relative; clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%); }
.package-name .label { display: inline-block; background: var(--orange); padding: 6px 10px; border-radius: 999px; font-size: .72rem; font-weight: 900; letter-spacing: .05em; }
.package-name h2 { color: #ff9b43; margin: 18px 0 8px; font-size: 2.1rem; line-height: 1.05; }
.package-name p { color: #d9dce1; }
.package-list { padding: 40px 30px; align-self: center; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.package-price { padding: 42px 32px 42px 12px; align-self: center; }
.package-price small { font-weight: 850; color: #7a5130; }
.package-price .big { font-size: 3.65rem; font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: -.06em; }
.package-price .big span { font-size: 1.05rem; letter-spacing: 0; color: #333; }
.package-price p { margin: 10px 0 24px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 42px; counter-reset: steps; }
.step { position: relative; padding: 26px 20px 24px; border-top: 2px solid rgba(255, 106, 0, .35); background: #fff; border-radius: 0 0 18px 18px; }
.step::before { counter-increment: steps; content: counter(steps); width: 38px; height: 38px; display: grid; place-items: center; position: absolute; top: -20px; left: 20px; border-radius: 50%; background: var(--orange); color: white; font-weight: 900; box-shadow: 0 8px 18px rgba(255,106,0,.22); }
.step h3 { margin: 22px 0 7px; }
.step p { margin: 0; color: var(--muted); }
.light .step p { color: var(--muted); }

.page-hero { padding: 100px 0 72px; overflow: hidden; position: relative; background: radial-gradient(circle at 82% 28%, rgba(255, 137, 40, .22), transparent 28%), linear-gradient(125deg, #fffdf9, #fff4e9); border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 320px; height: 320px; right: 5%; top: -120px; border-radius: 50%; border: 1px solid rgba(255,106,0,.16); }
.page-hero h1 { margin: 13px 0 20px; font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1; letter-spacing: -.055em; color: var(--text); }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.12rem; margin: 0; }

.policy-box { background: #fff; border: 1px solid rgba(255, 106, 0, .34); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-soft); }
.policy-box h2, .policy-box h3 { margin-top: 0; }
.policy-box p:last-child { margin-bottom: 0; }
.light .policy-box { background: #fff; color: var(--text); border-color: rgba(255,106,0,.34); }
.light .policy-box p { color: var(--muted); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.list-clean { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.list-clean li { padding-left: 30px; position: relative; }
.list-clean li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.list-no li::before { content: "×"; color: #d94646; font-size: 1.25rem; line-height: 1; }

.price-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 34px; box-shadow: var(--shadow-soft); }
.price-card.featured { border-color: var(--orange); box-shadow: 0 18px 60px rgba(255, 106, 0, .13); }
.price-card h2 { margin: 0; }
.price-card .price { font-size: 3.3rem; font-weight: 900; color: var(--orange); letter-spacing: -.05em; line-height: 1; margin: 18px 0 4px; }
.price-card .price span { font-size: 1rem; color: var(--muted); letter-spacing: 0; }
.price-card p { color: var(--muted); }
.price-card .check-list { margin: 24px 0 30px; }

.template-card { border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); }
.template-preview { min-height: 250px; display: grid; place-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #fff8f0, #f8f9fb); border-bottom: 1px solid var(--line); }
.template-preview::before, .template-preview::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255, 106, 0, .13); filter: blur(8px); }
.template-preview::before { left: -80px; top: -80px; }
.template-preview::after { right: -80px; bottom: -80px; }
.template-preview svg { width: 110px; color: var(--orange); position: relative; z-index: 2; }
.template-body { padding: 28px; }
.template-body h2 { margin: 0 0 10px; }
.template-body p { color: var(--muted); }

.faq-list { display: grid; gap: 14px; margin-top: 36px; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; color: var(--text); text-align: left; font-weight: 850; }
.faq-question span:last-child { color: var(--orange); font-size: 1.5rem; transition: transform .2s ease; }
.faq-answer { display: none; padding: 0 22px 22px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; border-radius: 13px; border: 1px solid var(--line-strong); background: #fff; color: var(--text); padding: 14px 15px; outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 106, 0, .13); }
.form-note { color: var(--muted); font-size: .91rem; }

.callout { border-radius: 24px; border: 1px solid rgba(255, 106, 0, .26); background: rgba(255,255,255,.86); padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: var(--shadow-soft); }
.callout h2 { margin: 0 0 5px; }
.callout p { margin: 0; color: var(--muted); }

.site-footer { background: #f5f3ef; border-top: 1px solid var(--line); padding: 58px 0 24px; color: var(--text); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .9fr 1fr; gap: 38px; }
.footer-brand img { width: 185px; margin-bottom: 18px; }
.footer-brand p, .footer-col a, .footer-col p { color: var(--muted); font-size: .93rem; }
.footer-col h3 { font-size: .95rem; color: var(--text); margin: 0 0 15px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 38px; padding-top: 20px; color: #7b818b; font-size: .86rem; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.notice { border-left: 4px solid var(--orange); padding: 16px 18px; background: var(--orange-soft); border-radius: 0 12px 12px 0; color: #4f5660; }
.light .notice { color: #4f5660; }
.muted { color: var(--muted); }
.orange { color: var(--orange); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.mt-48 { margin-top: 48px; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 76px; display: none; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; flex-direction: column; align-items: stretch; gap: 15px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 7px 4px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { min-height: 470px; }
  .card-grid, .three-col { grid-template-columns: 1fr 1fr; }
  .benefit-grid, .steps { grid-template-columns: 1fr 1fr; }
  .package-panel { grid-template-columns: 1fr; }
  .package-name { clip-path: none; }
  .package-price { padding: 20px 34px 40px; }
  .package-list { padding: 34px; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .brand img { width: 160px; }
  .hero-grid { padding: 52px 0; }
  .hero h1 { font-size: 3.2rem; }
  .hero-art { min-height: 390px; }
  .hero-art img { max-height: 420px; }
  .hero-art::before { inset: 13% 0 12% 0; }
  .card-grid, .benefit-grid, .steps, .two-col, .three-col, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .price-row, .hero-actions { flex-direction: column; align-items: stretch; }
  .price-chip { width: 100%; }
  .callout { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .package-name, .package-list, .package-price { padding-left: 25px; padding-right: 25px; }
  .package-price .big { font-size: 3rem; }
}


/* Contact form status and spam trap */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}
.form-status-success {
  background: #eaf8ee;
  border: 1px solid #87c997;
  color: #17652b;
}
.form-status-error {
  background: #fff1f1;
  border: 1px solid #e2a0a0;
  color: #8b1f1f;
}

/* Contact form v2 fixes */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status { margin-bottom: 18px; padding: 14px 16px; border-radius: 12px; font-weight: 700; }
.form-status-success { background: #eaf8ee; border: 1px solid #87c997; color: #17652b; }
.form-status-error { background: #fff1f1; border: 1px solid #e2a0a0; color: #8b1f1f; }
