/* ============================================
   UCaaS Marketing — Global Styles
   ============================================ */
:root {
  --navy: #0b1f3a;
  --navy-2: #122b4e;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #06b6d4;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --green: #10b981;
  --amber: #f59e0b;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.14);
  --max: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-block { display: block; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}
.logo span em { font-style: normal; color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(6, 182, 212, 0.18), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(37, 99, 235, 0.14), transparent 60%),
    var(--navy);
  color: #fff;
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--cyan); }
.hero .sub {
  font-size: 19px;
  color: #b8c6dd;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: #94a8c7;
  font-size: 14px;
}
.hero-proof strong { color: #fff; display: block; font-size: 22px; }

/* Hero mockup card */
.mockup {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--ink);
  transform: rotate(1.5deg);
}
.mockup-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #f87171; } .dot-y { background: #fbbf24; } .dot-g { background: #34d399; }
.mockup-body { padding: 22px; }
.mockup-body h4 { font-size: 15px; margin-bottom: 14px; color: var(--navy); }
.deliverable {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  background: #fff;
}
.deliverable .d-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}
.d-blue { background: #dbeafe; } .d-cyan { background: #cffafe; }
.d-green { background: #d1fae5; } .d-amber { background: #fef3c7; }
.d-purple { background: #ede9fe; }
.deliverable .d-meta { flex: 1; }
.deliverable .d-meta strong { display: block; font-size: 14px; }
.deliverable .d-meta span { font-size: 12px; color: var(--muted); }
.badge-ready {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: #d1fae5;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .eyebrow-dark {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-head p { font-size: 17px; color: var(--muted); }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 34px 0; border-bottom: 1px solid var(--line); }
.logo-strip p {
  text-align: center;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 600;
}
.logo-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 17px;
  color: #94a3b8;
}

/* ---------- Problem / pain ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.pain-card .p-icon { font-size: 30px; margin-bottom: 16px; display: block; }
.pain-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.pain-card p { font-size: 15px; color: var(--muted); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.step { position: relative; padding: 34px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- Deliverables ---------- */
.deliv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deliv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.deliv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.deliv-card .d-emoji {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #eff6ff;
  display: grid; place-items: center;
  font-size: 23px;
  margin-bottom: 16px;
}
.deliv-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.deliv-card p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.deliv-card .qty { font-size: 13px; font-weight: 700; color: var(--blue); }

/* ---------- Sample content ---------- */
.samples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sample-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.sample-top {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sample-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.tag-blog { background: #dbeafe; color: var(--blue-dark); }
.tag-social { background: #cffafe; color: #0e7490; }
.tag-email { background: #ede9fe; color: #6d28d9; }
.sample-body { padding: 22px 24px; flex: 1; }
.sample-body h3 { font-size: 17px; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.sample-body p { font-size: 14px; color: var(--muted); }
.sample-foot { padding: 16px 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; }

/* ---------- Pricing ---------- */
.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 46px;
  font-weight: 600;
  font-size: 15px;
}
.toggle-wrap .save { color: var(--green); font-size: 13px; font-weight: 700; }
.switch {
  position: relative;
  width: 54px; height: 30px;
  background: var(--line);
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.switch.on { background: var(--blue); }
.switch .knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.switch.on .knob { transform: translateX(24px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.price-card .tier-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; min-height: 42px; }
.price {
  font-size: 46px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
}
.price .cur { font-size: 24px; vertical-align: super; font-weight: 700; }
.price-per { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.feature-list { list-style: none; margin-bottom: 30px; flex: 1; }
.feature-list li {
  padding: 9px 0;
  font-size: 14.5px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  border-bottom: 1px dashed var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check { color: var(--green); font-weight: 800; flex-shrink: 0; }
.feature-list .muted-item { color: #cbd5e1; }
.feature-list .muted-item .check { color: #cbd5e1; }

/* ---------- AI Objection ---------- */
.objection {
  background:
    radial-gradient(900px 450px at 15% 0%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(800px 400px at 90% 100%, rgba(6, 182, 212, 0.14), transparent 60%),
    var(--navy);
  color: #fff;
}
.objection .section-head h2 { color: #fff; }
.objection .section-head p { color: #b8c6dd; }
.obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.obj-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(6px);
}
.obj-card .o-icon { font-size: 30px; display: block; margin-bottom: 16px; }
.obj-card h3 { font-size: 18px; color: #fff; margin-bottom: 10px; line-height: 1.35; }
.obj-card p { font-size: 15px; color: #b8c6dd; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.quote-card p { font-size: 15px; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.quote-who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.av-1 { background: #2563eb; } .av-2 { background: #0e7490; } .av-3 { background: #7c3aed; }
.quote-who strong { display: block; font-size: 14px; color: var(--navy); }
.quote-who span { font-size: 13px; color: var(--muted); }

/* ---------- About / Founder ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-photo-col { text-align: center; }
.founder-photo {
  width: 260px;
  height: 260px;
  margin: 0 auto 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--blue) 60%, var(--cyan));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -2px;
  box-shadow: var(--shadow-lg);
}
.founder-card strong { display: block; font-size: 20px; color: var(--navy); }
.founder-card span { font-size: 14px; color: var(--muted); }
.about-copy .eyebrow-dark {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.about-copy h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  letter-spacing: -0.7px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
}
.about-copy p { font-size: 16px; color: var(--ink); margin-bottom: 16px; }
.about-copy p em { color: var(--blue-dark); font-style: italic; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq-q .chev { transition: transform 0.25s; color: var(--blue); font-size: 14px; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { padding: 0 24px 20px; font-size: 15px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 300px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(6, 182, 212, 0.2), transparent 60%),
    var(--navy);
  border-radius: 22px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.8px; margin-bottom: 14px; }
.cta-band p { color: #b8c6dd; font-size: 17px; max-width: 560px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #94a8c7;
  padding: 56px 0 32px;
  margin-top: 88px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.site-footer p { font-size: 14px; max-width: 300px; }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #94a8c7; text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ---------- Signup page ---------- */
.signup-wrap {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.signup-left {
  background:
    radial-gradient(700px 400px at 20% 100%, rgba(37, 99, 235, 0.25), transparent 60%),
    var(--navy);
  color: #fff;
  padding: 72px 56px;
}
.signup-left h1 { font-size: 32px; letter-spacing: -0.8px; margin-bottom: 16px; }
.signup-left .sub { color: #b8c6dd; margin-bottom: 36px; font-size: 16px; }
.signup-perks { list-style: none; }
.signup-perks li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #d5e0f0;
}
.signup-perks .check {
  color: var(--cyan);
  font-weight: 800;
  flex-shrink: 0;
}
.signup-right { padding: 72px 56px; background: var(--bg-soft); }
.signup-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  max-width: 480px;
  box-shadow: var(--shadow);
}
.signup-card h2 { font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--navy); }
.field input, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s;
  background: #fff;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 16px; }
.success-box {
  background: #d1fae5;
  border: 1px solid var(--green);
  color: #065f46;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  font-weight: 600;
  display: none;
}

/* ---------- Sample Pack page ---------- */
.pack-gate { padding: 72px 0 88px; }
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.article-card h1 {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.7px;
  color: var(--navy);
  margin-bottom: 16px;
}
.article-lede { font-size: 18px; color: var(--muted); font-style: italic; margin-bottom: 24px; }
.article-card h3 { font-size: 20px; color: var(--navy); margin: 28px 0 12px; }
.article-card p { font-size: 16px; margin-bottom: 14px; }
.article-card ul { margin: 0 0 16px 22px; }
.article-card ul li { font-size: 15.5px; margin-bottom: 8px; }
.article-cta {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  margin-top: 30px;
  text-align: center;
}
.article-cta strong { display: block; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.article-cta p { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; }

.social-post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.sp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--muted);
}
.social-post p { font-size: 15px; margin-bottom: 10px; }
.sp-tags { color: var(--blue); font-size: 14px; font-weight: 600; }

.email-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.email-head {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 18px 28px;
  font-size: 14px;
  color: var(--muted);
}
.email-subjects { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; font-size: 13.5px; }
.email-body { padding: 26px 28px; }
.email-body p { font-size: 15px; margin-bottom: 13px; }
.email-ps { color: var(--muted); font-style: italic; }
.email-outline-item {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--muted);
}
.email-outline-item strong { color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .mockup { transform: none; max-width: 480px; margin: 0 auto; }
  .pain-grid, .steps, .deliv-grid, .samples, .pricing-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .obj-grid { grid-template-columns: 1fr; }
  .article-card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .signup-wrap { grid-template-columns: 1fr; }
  .signup-left { padding: 48px 28px; }
  .signup-right { padding: 48px 28px; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    gap: 18px;
  }
  .pain-grid, .steps, .deliv-grid, .samples, .pricing-grid, .quote-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 64px 0 72px; }
  .cta-band { padding: 44px 24px; }
}
