/* =========================
   BASE
========================= */
:root{
  --bg:#ffffff;
  --text:#121212;
  --muted:#5a5a5a;
  --card:#ffffff;
  --alt:#f7f7fb;
  --line:#e7e7ee;

  --primary:#ff6a3d;
  --primary2:#ffb100;

  --radius:18px;
  --shadow: 0 10px 25px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; border-radius:var(--radius); }
.container{ width:min(1100px, 92%); margin:0 auto; }

/* =========================
   TOPBAR
========================= */
.topbar{
  background:#111;
  color:#fff;
  font-size:14px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.topbar-left{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.topbar .sep{ opacity:.6; }
.topbar-cta{
  background:rgba(255,255,255,.14);
  padding:8px 12px;
  border-radius:999px;
}
.topbar a:hover{ opacity:.9; }

/* =========================
   HEADER + NAV
========================= */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo-mark{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  box-shadow: var(--shadow);
}
.logo-text{ display:flex; flex-direction:column; line-height:1.05; }
.logo-title{ font-weight:800; }
.logo-sub{ font-size:12px; color:var(--muted); }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-weight:600;
  color:#1e1e1e;
  opacity:.88;
}
.nav a:hover{ opacity:1; }
.nav-btn{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background:#111;
  margin:4px auto;
  border-radius:2px;
}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  padding:42px 0 0;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.badge{
  display:inline-flex;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: #fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight:700;
  font-size:13px;
}
h1{
  font-size: clamp(30px, 3.6vw, 48px);
  line-height:1.05;
  margin:14px 0 12px;
}
.lead{
  font-size:18px;
  color:var(--muted);
  line-height:1.6;
  margin:0 0 18px;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  cursor:pointer;
}
.btn.primary{
  border:0;
  color:#fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: var(--shadow);
}
.btn.ghost:hover{ background:var(--alt); }

.hero-stats{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.stat{
  border:1px solid var(--line);
  background:#fff;
  border-radius:16px;
  padding:10px 12px;
  min-width:92px;
}
.stat-num{ font-weight:900; font-size:18px; }
.stat-label{ color:var(--muted); font-size:12px; }

.hero-media img{
  border-radius: 28px;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
}

.wave{
  display:block;
  width:100%;
  height:110px;
  margin-top:30px;
}
.wave path{ fill: var(--alt); }

/* =========================
   SECTIONS
========================= */
.section{ padding:58px 0; }
.section.alt{ background: var(--alt); }
.section-head{ margin-bottom:22px; }
.section-head h2{
  font-size: clamp(22px, 2.2vw, 32px);
  margin:0 0 6px;
}
.section-head p{ margin:0; color:var(--muted); }

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

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); line-height:1.6; }

.bullets{
  margin:10px 0 0;
  padding:0;
  list-style:none;
}
.bullets li{
  margin:8px 0;
  padding-left:18px;
  position:relative;
  color:var(--muted);
  line-height:1.5;
}
.bullets li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color: var(--primary);
  font-weight:900;
}

/* =========================
   SPLIT (image + text)
========================= */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:center;
}
.steps{ display:grid; gap:12px; margin:16px 0 16px; }
.step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  align-items:flex-start;
}
.step-num{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:900;
  color:#fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}
.step-body h3{ margin:0 0 4px; }
.step-body p{ margin:0; color:var(--muted); line-height:1.6; }

/* =========================
   PRICING
========================= */
.price-num{
  font-size:24px;
  font-weight:950;
  margin:8px 0 6px;
}
.price.featured{
  outline: 3px solid rgba(255,106,61,.25);
}
.note{
  margin-top:18px;
  color:var(--muted);
}

/* =========================
   GALLERY
========================= */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

/* =========================
   QUOTES
========================= */
.quote p{
  font-size:16px;
  color:#2b2b2b;
  line-height:1.7;
}
.quote-author{
  margin-top:12px;
  color:var(--muted);
  font-weight:700;
}

/* =========================
   FAQ
========================= */
.faq{
  display:grid;
  gap:10px;
}
.faq-q{
  width:100%;
  text-align:left;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-weight:900;
}
.faq-a{
  display:none;
  padding:0 16px 12px;
  color:var(--muted);
}
.faq-a p{ margin:10px 0 0; line-height:1.6; }

/* =========================
   CONTACT
========================= */
.contact-cards{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.contact-card{
  display:flex;
  gap:12px;
  align-items:center;
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
}
.cc-ico{
  width:42px; height:42px;
  border-radius:16px;
  display:grid; place-items:center;
  background: var(--alt);
  border:1px solid var(--line);
}
.cc-title{ font-weight:900; }
.cc-sub{ color:var(--muted); font-weight:600; }

.form label{
  display:block;
  font-weight:800;
  margin:10px 0 6px;
}
.form input, .form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  outline:none;
  font:inherit;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(255,106,61,.45);
}
.form-note{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
}

/* =========================
   FOOTER
========================= */
.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-brand{ font-weight:950; }
.footer-small{ color:var(--muted); font-size:13px; margin-top:4px; }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; }
.footer-links a:hover{ opacity:.85; }

.to-top{
  position:fixed;
  right:16px;
  bottom:16px;
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 920px){
  .hero-inner{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .nav{
    position:absolute;
    right:4%;
    top:72px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow: var(--shadow);
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    width:min(320px, 92vw);
  }
  .nav a{ padding:10px 10px; border-radius:12px; }
  .nav a:hover{ background:var(--alt); }
  .nav.open{ display:flex; }
}