/* =========================
   Cream theme + Dizmo-ish layout
   ========================= */

:root{
  --bg: #fbf7ee;         /* cream */
  --panel: #ffffff;
  --ink: #14131a;
  --muted: rgba(20,19,26,.72);
  --line: rgba(20,19,26,.10);
  --shadow: 0 18px 40px rgba(20,19,26,.10);

  --radius: 18px;
  --radius2: 26px;

  --wrap: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left: 16px; top: 16px; width:auto; height:auto;
  background: var(--panel); padding: 10px 12px; border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,238,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brandMark{
  width: 14px; height: 14px;
  border-radius: 6px;
  background: var(--accent);
  box-shadow: 0 10px 18px rgba(91,87,244,.25);
}
.brandText{ font-size: 16px; }

.navLinks{
  display:flex;
  align-items:center;
  gap: 18px;
  font-weight: 600;
}
.navLinks a{ opacity: .88; }
.navLinks a:hover{ opacity: 1; text-decoration:none; }

.navToggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 10px 22px rgba(20,19,26,.06);
}
.navToggle span{
  display:block;
  height: 2px;
  width: 18px;
  background: var(--ink);
  margin: 4px auto;
  border-radius: 4px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  border: 1px solid rgba(0,0,0,0);
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(91,87,244,.25);
}
.btn:hover{ filter: brightness(.98); text-decoration:none; }
.btn:active{ transform: translateY(1px); }

.btnGhost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btnSmall{ padding: 10px 14px; }

/* Sections */
.section{ padding: 72px 0; }
.sectionAlt{ background: rgba(255,255,255,.55); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sectionHead{
  max-width: 720px;
  margin-bottom: 28px;
}
.sectionHead h2{ margin:0 0 8px; font-size: clamp(26px, 3vw, 38px); line-height: 1.1; }
.sectionHead p{ margin:0; color: var(--muted); }

.kicker{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(91,87,244,.10);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Hero */
.hero{
  padding: 64px 0 30px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items:center;
}
.heroCopy h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -.03em;
  line-height: 1.02;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}
.heroCtas{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }

.trusted{
  margin-top: 18px;
}
.trustedLabel{
  display:block;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .7;
  margin-bottom: 10px;
}
.trustedRow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip{
  padding: 10px 12px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

/* Hero art */
.heroArt{ position: relative; }
.heroCard{
  border-radius: var(--radius2);
  overflow:hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.heroCard img{ width:100%; height: 440px; object-fit: cover; }

.floating{
  position:absolute;
  padding: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(20,19,26,.10);
  font-weight: 900;
}
.floatingA{ left: -10px; top: 22px; color: var(--accent); }
.floatingB{ right: -10px; bottom: 24px; color: var(--accent2); }

/* Cards */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 30px rgba(20,19,26,.06);
}
.card .icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(91,87,244,.10);
  margin-bottom: 12px;
  font-size: 18px;
}
.card h3{ margin: 0 0 6px; font-size: 18px; }
.card p{ margin: 0 0 12px; color: var(--muted); }
.link{ font-weight: 900; color: var(--accent); }

/* Split layout */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items:center;
}
.rounded{ border-radius: var(--radius2); border: 1px solid var(--line); box-shadow: var(--shadow); }
.bullets{
  margin: 16px 0 18px;
  padding-left: 18px;
}
.bullets li{ margin: 10px 0; color: var(--muted); }
.bullets strong{ color: var(--ink); }

.miniCta{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 16px 0 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
}
.badge{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,138,61,.14);
  color: var(--accent2);
  font-weight: 900;
}

/* CTA */
.cta{
  position: relative;
  padding: 70px 0;
  overflow:hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.ctaGrid{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items:center;
}
.ctaCopy h2{ margin:0 0 10px; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.05; }
.ctaCopy p{ margin:0 0 16px; color: var(--muted); }

.stats{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 16px 30px rgba(20,19,26,.06);
}
.statVal{ font-weight: 1000; font-size: 22px; letter-spacing: -.02em; }
.statLbl{ color: var(--muted); font-weight: 700; font-size: 13px; }

.ctaBg{
  position:absolute;
  inset: 0;
  z-index: 1;
  opacity: .14;
  transform: scale(1.05);
}
.ctaBg img{ width:100%; height:100%; object-fit: cover; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{
  display:flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 30px rgba(20,19,26,.06);
}
.stepNum{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(91,87,244,.12);
  color: var(--accent);
  font-weight: 1000;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.step h3{ margin: 0 0 6px; font-size: 16px; }
.step p{ margin: 0; color: var(--muted); }

/* FAQ */
.faq{ display:grid; grid-template-columns: 1fr; gap: 10px; max-width: 820px; }
.faqItem{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 16px 30px rgba(20,19,26,.06);
}
.faqItem summary{
  cursor:pointer;
  font-weight: 900;
}
.faqBody{ margin-top: 10px; color: var(--muted); }

/* Form */
.form{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
label{ display:block; font-weight: 800; font-size: 13px; margin-bottom: 12px; }
input, select, textarea{
  margin-top: 6px;
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  font: inherit;
}
textarea{ resize: vertical; }

.contactMeta{ margin: 14px 0 10px; color: var(--muted); }
.small{ font-size: 13px; }
.muted{ color: var(--muted); }

/* Footer */
.footer{
  padding: 46px 0 22px;
}
.footGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
  align-items:start;
}
.brandFoot{ font-weight: 1000; font-size: 16px; margin-bottom: 8px; }
.footLinks{ display:flex; flex-direction: column; gap: 10px; font-weight: 800; }
.footBottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 960px){
  .heroGrid{ grid-template-columns: 1fr; }
  .heroCard img{ height: 360px; }
  .cards3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .ctaGrid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footGrid{ grid-template-columns: 1fr; }
  .navToggle{ display:inline-flex; align-items:center; justify-content:center; }
  .navLinks{
    position:absolute;
    right: 20px;
    top: 64px;
    display:none;
    flex-direction: column;
    background: rgba(255,255,255,.95);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    min-width: 220px;
  }
  .navLinks.isOpen{ display:flex; }
}
