/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #FFFDF8;
  --bg2:          #FFFFFF;
  --card:         #FFFFFF;
  --border:       #EFE5D4;
  --border2:      #DFD0BB;
  --accent:       #F97316;
  --accent2:      #C2570A;
  --accent3:      #FB923C;
  --accent-light: #FFF4E8;
  --accent-glow:  rgba(249,115,22,.14);
  --text:         #1C1008;
  --text2:        #3D2C1E;
  --muted:        #6B5B4E;
  --green:        #16A34A;
  --red:          #DC2626;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.05rem; }
a  { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
section    { padding: 6rem 0; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.65rem;
  border-radius: 10px; font-weight: 600; font-size: .92rem;
  cursor: pointer; border: none; transition: all .22s;
  font-family: 'Inter', sans-serif; letter-spacing: -.01em;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 18px rgba(249,115,22,.28);
}
.btn-primary:hover {
  background: var(--accent2); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.38);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-light);
}
.btn-white {
  background: #fff; color: var(--accent);
  border: 1.5px solid rgba(255,255,255,.5);
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.14); }

/* ── Pill badge ─────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent-light); border: 1px solid rgba(249,115,22,.22);
  color: var(--accent); font-size: .76rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
}
.pill-white {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: .76rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
}

/* ── Nav ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,253,248,.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.05rem;
  color: var(--text);
}
.nav-logo .mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; font-weight: 800;
  box-shadow: 0 3px 10px rgba(249,115,22,.35);
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a { font-size: .86rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta   { display: flex; align-items: center; gap: .75rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text); }

/* ── Hero ───────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 64px;
  background: linear-gradient(145deg, #FFF8F0 0%, #FFFDF8 45%, #FFF3E5 100%);
}
/* dot grid texture */
#hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
/* orange blob top-right */
#hero::after {
  content: ''; position: absolute;
  top: -160px; right: -160px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 65%);
  pointer-events: none;
}
/* bottom-left blob */
.hero-blob-bl {
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,146,60,.1) 0%, transparent 65%);
  pointer-events: none;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: .5;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  width: 100%;
}
.hero-content .pill { margin-bottom: 1.5rem; }
.hero-content h1 { color: var(--text); margin-bottom: 1.25rem; }
.hero-content h1 span {
  background: linear-gradient(135deg, #F97316 10%, #FBBF24 90%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.08rem; color: var(--muted);
  max-width: 500px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat .label { font-size: .78rem; color: var(--muted); margin-top: .25rem; }

/* hero right — visual showcase */
.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.hero-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.hero-card-top {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.hero-card-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.hc-red   { background: #FC695A; }
.hc-amber { background: #FDBA74; }
.hc-green { background: #16A34A; }
.hero-card-label {
  font-size: .78rem; font-weight: 700; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase; margin-left: auto;
}
.hero-feats {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.hero-feat {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: .85rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.hero-feat-icon { font-size: 1.25rem; }
.hero-feat-title { font-size: .82rem; font-weight: 700; color: var(--text); }
.hero-feat-sub { font-size: .72rem; color: var(--muted); }
.hero-badge-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-badge {
  background: var(--accent-light); border: 1px solid rgba(249,115,22,.2);
  color: var(--accent); font-size: .75rem; font-weight: 700;
  padding: .35rem .85rem; border-radius: 999px;
}

/* ── Section headers ────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .pill { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: .95rem; line-height: 1.7; }

/* ── Services ───────────────────────────────── */
#services { background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 28px var(--accent-glow);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-light); border: 1px solid rgba(249,115,22,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: .4rem; font-size: .98rem; color: var(--text); }
.service-card p  { color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* ── PWA section ─────────────────────────────── */
#pwa {
  background: var(--accent);
  position: relative; overflow: hidden;
}
#pwa::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #C2570A 0%, #F97316 50%, #FB923C 100%);
}
/* decorative circles */
#pwa::after {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.pwa-circle-bl {
  position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(0,0,0,.05);
  pointer-events: none;
}
#pwa .container { position: relative; z-index: 2; }
#pwa .section-header .pill {
  background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); color: #fff;
}
#pwa .section-header h2 { color: #fff; }
#pwa .section-header p  { color: rgba(255,255,255,.82); }
.pwa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.pwa-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px; padding: 1.65rem;
  backdrop-filter: blur(6px);
  transition: background .22s, transform .22s;
}
.pwa-card:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }
.pwa-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1rem;
}
.pwa-card h3 { font-size: .98rem; color: #fff; margin-bottom: .4rem; }
.pwa-card p  { color: rgba(255,255,255,.78); font-size: .88rem; line-height: 1.65; }
.pwa-note {
  text-align: center; margin-top: 2.75rem;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.pwa-note strong { color: #fff; }

/* ── How It Works ───────────────────────────── */
#how-it-works { background: var(--bg); }
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.5rem; position: relative;
}
.steps-wrap::before {
  content: ''; position: absolute;
  top: 27px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light) 20%, var(--border2) 50%, var(--accent-light) 80%, transparent);
  z-index: 0;
}
.step-card {
  text-align: center; position: relative; z-index: 1;
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.85rem 1.25rem;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}
.step-card:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 6px 28px var(--accent-glow);
}
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.step-card h3 { font-size: .95rem; color: var(--text); margin-bottom: .4rem; }
.step-card p  { color: var(--muted); font-size: .82rem; line-height: 1.6; }

/* ── Why Us ─────────────────────────────────── */
#why-us { background: var(--bg2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
  display: flex; gap: 1.25rem;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.why-card:hover {
  box-shadow: 0 6px 28px var(--accent-glow);
  transform: translateY(-2px); border-color: var(--accent);
}
.why-card .icon {
  font-size: 1.4rem; flex-shrink: 0;
  width: 50px; height: 50px;
  background: var(--accent-light); border: 1px solid rgba(249,115,22,.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.why-card h3 { margin-bottom: .35rem; font-size: 1rem; color: var(--text); }
.why-card p  { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ── Pricing ────────────────────────────────── */
#pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem; align-items: start;
}
.pricing-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 1.85rem;
  position: relative; transition: transform .22s, box-shadow .22s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.08); }
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #FFF4E8, #FFFFFF);
  box-shadow: 0 6px 32px rgba(249,115,22,.18);
}
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: .22rem .9rem; border-radius: 999px; white-space: nowrap;
  text-transform: uppercase; letter-spacing: .08em;
  box-shadow: 0 4px 14px rgba(249,115,22,.4);
}
.pricing-card .plan  { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: .5rem; }
.pricing-card .price { font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: .15rem; }
.pricing-card .price span { font-size: .95rem; font-weight: 500; color: var(--muted); }
.pricing-card .setup { font-size: .8rem; color: var(--muted); margin-bottom: 1.25rem; }
.pricing-card hr { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.pricing-card ul li { display: flex; gap: .6rem; font-size: .86rem; color: var(--muted); }
.pricing-card ul li::before { content: '✓'; color: var(--green); flex-shrink: 0; font-weight: 700; }
.pricing-card ul li.no { color: #c4c4c4; }
.pricing-card ul li.no::before { content: '×'; color: #c4c4c4; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── FAQ ────────────────────────────────────── */
#faq { background: var(--bg2); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .65rem; }
.faq-item {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color .22s;
}
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.2rem 1.5rem;
  background: none; border: none; cursor: pointer;
  color: var(--text); font-family: 'Inter', sans-serif;
  font-size: .92rem; font-weight: 600; text-align: left;
}
.faq-q .chevron { transition: transform .25s; flex-shrink: 0; color: var(--muted); }
.faq-item.open .chevron { transform: rotate(180deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); font-size: .88rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 1.5rem 1.2rem; }

/* ── Contact ────────────────────────────────── */
#contact { background: var(--bg); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; font-size: .95rem; line-height: 1.7; }
.contact-links { display: flex; flex-direction: column; gap: .85rem; }
.contact-link {
  display: flex; align-items: center; gap: .85rem;
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 12px; padding: .95rem 1.15rem;
  transition: border-color .22s, transform .22s;
}
.contact-link:hover { border-color: var(--accent); transform: translateY(-1px); }
.contact-link .icon { font-size: 1.2rem; }
.contact-link .label { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-link .val { font-weight: 600; font-size: .88rem; color: var(--text); }
.contact-form {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 2.25rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .4rem; color: var(--text2); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; padding: .72rem 1rem;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: .9rem;
  transition: border-color .2s, box-shadow .2s; resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-group textarea { height: 110px; }
.form-group select option { background: #fff; color: var(--text); }
.form-notice { font-size: .78rem; color: var(--muted); margin-top: .5rem; }
.form-msg { padding: .75rem 1rem; border-radius: 8px; font-size: .88rem; margin-bottom: 1rem; display: none; }
.form-msg.success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; display: block; }
.form-msg.error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; display: block; }

/* ── Footer ─────────────────────────────────── */
footer { background: #1A0E06; color: #E5D5C0; padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand .nav-logo { color: #fff; }
.footer-brand .nav-logo .mark { background: var(--accent); box-shadow: none; }
.footer-brand p { color: #9E8A74; font-size: .88rem; margin-top: .75rem; max-width: 300px; line-height: 1.65; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: #6B5040; margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .86rem; color: #9E8A74; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem;
  font-size: .8rem; color: #6B5040;
}
.footer-bottom a { color: #6B5040; transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ── Mobile nav overlay ─────────────────────── */
#nav-mobile {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: rgba(255,253,248,.98); backdrop-filter: blur(14px);
  z-index: 99; flex-direction: column; padding: 2rem 1.5rem; gap: 1.5rem;
  border-top: 1px solid var(--border);
}
#nav-mobile.open { display: flex; }
#nav-mobile a { font-size: 1rem; font-weight: 600; color: var(--muted); padding: .5rem 0; border-bottom: 1px solid var(--border); }
#nav-mobile a:hover { color: var(--accent); }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-wrap::before { display: none; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
}
