/* Created: 2026-03-28 20:00 PHT */
:root {
  --blue: #3b7cf5;
  --blue-dark: #2a5fc4;
  --blue-light: #e8f0fe;
  --blue-muted: #a0bdf0;
  --orange: #f5851f;
  --orange-dark: #d4700a;
  --orange-light: #fef3e8;
  --green: #00c896;
  --green-dark: #00a07a;
  --green-light: #e6f9f3;
  --text: #1a2332;
  --text-light: #5a6578;
  --bg: var(--bg-page);
  --bg-warm: var(--bg-warm);
  --bg-hero: #f4f7fb;
  --border: #e2e6ec;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(26,35,50,0.06);
  --shadow-lg: 0 8px 32px rgba(26,35,50,0.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg-page);
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.2; }

/* NAV */
body { padding-top: 80px; }
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100; padding: 0 24px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.nav-logo img { height: 38px; }
.nav-logo span { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; }
.nav-links { display: flex; gap: 18px; list-style: none; align-items: center; flex-wrap: nowrap; white-space: nowrap; }
.nav-links a {
  text-decoration: none; color: var(--text-light);
  font-size: 0.92rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff;
  padding: 9px 20px; border-radius: 8px;
  text-decoration: none; font-weight: 600;
  font-size: 0.88rem; transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue-dark); }
.nav-biz-name {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem;
  color: #1a1a2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 280px;
}
.nav-biz-name:empty { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; }
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown > a::after { content: " \25BE"; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid #e0e0e0; border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10); min-width: 200px;
  padding: 16px 0 8px; z-index: 100; list-style: none; margin: 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block; padding: 10px 20px; color: #333;
  text-decoration: none; font-size: 0.9rem; white-space: nowrap;
}
.nav-dropdown-menu li a:hover { background: #f0f4ff; color: #2563eb; }

/* SECTIONS */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue); margin-bottom: 12px;
}

/* HERO — two column layout */
.hero {
  background: var(--bg-hero);
  padding: 20px 24px 40px;
}
.hero-split {
  display: flex; align-items: center;
  gap: 40px; padding-top: 40px;
}
.hero-text { flex: 1; min-width: 280px; }
.hero-image { flex: 1; min-width: 280px; }
.hero-image img {
  width: 100%; max-width: 100%;
  max-height: 300px; object-fit: contain;
  border-radius: 12px;
  display: block; margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px; font-weight: 700;
  color: #000; text-align: left;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero .section-label { font-weight: 700; color: #000; }
.hero-bottom {
  text-align: center; max-width: 700px;
  margin: 40px auto 20px;
}
.hero-bottom p {
  font-size: 1.15rem; color: #000;
  font-weight: 500; margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 14px 32px; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: var(--blue-muted); color: #fff;
  padding: 14px 32px; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  border: none; transition: all 0.2s; display: inline-block;
}
.btn-secondary:hover { background: var(--blue); color: #fff; }

/* VIDEO */
.try-section { background: var(--bg-try); }
.video-section { background: var(--bg-video); padding: 60px 24px; }
.video-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.video-inner h2 { font-size: 1.8rem; margin-bottom: 28px; }
.video-placeholder {
  background: var(--bg-hero); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-image-wrap {
  position: relative;
  max-width: 800px; margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.hero-image {
  width: 100%; display: block;
}
.hero-carousel .hero-slide {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-carousel .hero-slide.active { position: relative; opacity: 1; }

/* Hero carousel images — ensure full image visible on all screen sizes */
.hero-carousel img.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.video-coming-soon {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-light); gap: 12px;
}
.video-coming-soon svg { opacity: 0.4; }
.video-coming-soon p { font-size: 0.95rem; }

/* HOW IT WORKS */
.how-it-works { background: var(--bg-howitworks); }
.how-it-works h2 { text-align: center; font-size: 2rem; margin-bottom: 48px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; transition: all 0.25s;
}
.feature-card:hover {
  border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon.blue { background: var(--blue-light); color: var(--blue); }
.feature-icon.orange { background: var(--orange-light); color: var(--orange); }
.feature-icon.green { background: var(--green-light); color: var(--green); }
.feature-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* DIFFERENCE */
.difference { background: var(--bg-difference); }
.difference-inner { margin: 0 auto; text-align: center; }
.difference h2 { font-size: 2rem; margin-bottom: 20px; }
.difference p { font-size: 1.08rem; color: var(--text-light); line-height: 1.8; }

/* PRICING */
.pricing { background: var(--bg-pricing); }
.pricing h2 { text-align: center; font-size: 2rem; margin-bottom: 16px; }
.pricing > .container > p { text-align: center; color: var(--text-light); margin-bottom: 48px; font-size: 1.05rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 36px 20px; position: relative; transition: all 0.25s;
}
.pricing-card.featured {
  background: var(--bg-card-featured);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  padding-top: 48px;
}

/* Pricing extras row — 66/34 split, outside the grid */
.pricing-extras {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 16px 0;
  margin-top: 20px;
}
.pricing-extras > .pricing-card { display: table-cell; }
.pricing-extras-large { width: 66%; }
.pricing-extras-small { width: 34%; }

@media (max-width: 1024px) {
  .pricing-extras { flex-direction: column; }
  .pricing-extras-large,
  .pricing-extras-small { width: auto; }
}

.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  padding: 3px 14px;
  border-radius: 20px; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
  line-height: 1.4;
}
.pricing-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pricing-amount { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700; margin-bottom: 4px; }
.pricing-amount span { font-size: 1rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; }
.pricing-card ul { list-style: none; margin: 20px 0; }
.pricing-card li {
  padding: 6px 0; font-size: 0.92rem; color: var(--text-light);
  display: flex; align-items: flex-start; gap: 8px;
  word-break: break-word; overflow-wrap: anywhere;
}
.pricing-card li::before { content: "\2713"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-card.wide { grid-column: span 2; }
.pricing-card.wide:last-child { grid-column: 1 / -1; }
.service-name { font-size: 1.3rem; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.pricing-note { font-size: 0.82rem; color: var(--text-light); font-style: italic; }

/* TESTIMONIALS */
.testimonials { background: var(--bg-testimonials); padding: 80px 20px; }
.testimonials h2 { text-align: center; font-size: 2rem; margin-bottom: 48px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.testimonial-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 32px 28px; text-align: left;
}
.testimonial-stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-light); font-style: italic; }
.testimonial-author { margin-top: 16px; font-size: 0.88rem; font-weight: 600; color: var(--text); }

/* ABOUT THE FOUNDER */
.about-founder {
  background: linear-gradient(135deg, #1a2332 0%, #243044 100%);
  color: #fff;
}
.about-founder .about-inner { margin: 0 auto; }
.about-founder .section-label { color: rgba(255,255,255,0.7); }
.about-founder h2 { font-size: 2rem; margin-bottom: 20px; color: #fff; }
.about-founder p { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 16px; }

/* CONTACT / INTRO CALL */
.contact { background: linear-gradient(135deg, #e8edf4 0%, #dde4ef 100%); }
.contact-inner { max-width: 620px; margin: 0 auto; }
.contact h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-inner > p { color: var(--text-light); margin-bottom: 20px; font-size: 1.02rem; line-height: 1.7; }
.form-box {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(59,124,245,0.12);
  margin-top: 8px;
}
.form-box-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
  text-align: center;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text); background: #fff; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  background: var(--blue); color: #fff; padding: 14px 32px;
  border-radius: 10px; border: none; font-weight: 600; font-size: 1rem;
  cursor: pointer; width: 100%; margin-top: 8px;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.btn-submit:hover { background: var(--blue-dark); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success h3 { font-family: 'DM Sans', sans-serif; font-size: 1.3rem; margin-bottom: 10px; color: var(--green-dark); }
.form-success p { color: var(--text-light); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { text-align: center; padding: 16px; }
.step-num {
  width: 32px; height: 32px; background: var(--blue-light); color: var(--blue);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; margin-bottom: 10px;
}
.step h4 { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.step p { font-size: 0.82rem; color: var(--text-light); }

/* WHY SERVICEFLOW / OBJECTIONS */
.why-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
}
.why-section h2 {
  text-align: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 2em;
  margin-bottom: 8px;
}
.why-section .section-label {
  color: rgba(255,255,255,0.7);
}
.objections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.objection-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
}
.objection-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2em;
  color: #f4b87a;
  margin-bottom: 12px;
}
.objection-card p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 0.95em;
}
.objection-card strong {
  color: #fff;
}
.objection-answer {
  color: #7edcb5 !important;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 0;
}
.objection-sources {
  text-align: center;
  margin-top: 36px;
  font-size: 0.8em;
  color: rgba(255,255,255,0.4);
}

/* FOOTER */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 48px 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 90px; }
.footer-brand span { font-family: 'Fraunces', serif; font-weight: 700; color: #fff; }
.footer-contact-form h4 {
  color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600; margin-bottom: 12px;
}
.general-form { display: flex; flex-direction: column; gap: 8px; max-width: 280px; }
.general-form input,
.general-form textarea {
  padding: 8px 12px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px; background: rgba(255,255,255,0.08);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
}
.general-form input::placeholder,
.general-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.general-form input:focus,
.general-form textarea:focus { outline: none; border-color: var(--blue); }
.btn-footer-submit {
  background: var(--blue); color: #fff; border: none;
  padding: 8px 16px; border-radius: 6px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.btn-footer-submit:hover { background: var(--blue-dark); }
.general-form-success { display: none; }
.general-form-success p { color: var(--green); font-size: 0.85rem; }
.footer-info { text-align: right; font-size: 0.85rem; line-height: 1.8; }
.footer-info a { color: var(--blue); text-decoration: none; }
.footer-info a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------
   Phone portrait    ≤480px
   Tablet portrait   481–768px   (plumber in van seat)
   Tablet landscape  769–1024px  (cataloguer walking with tablet)
   Desktop           >1024px
   ============================================================ */

/* ───────── Desktop (>1024px) — base styles, no override needed ───────── */

/* ───────── Tablet landscape (769–1024px) ───────── */
@media (max-width: 1024px) {
  body { padding-top: 68px; }
  /* Nav */
  .nav { padding: 0 16px; }
  .nav-inner { height: 60px; }
  .nav-logo img { height: 34px; }
  .nav-logo span { font-size: 1.1rem; }
  .nav-biz-name { max-width: 180px; font-size: 0.95rem; }
  .nav-links { gap: 12px; }
  .nav-links .free-promo,
  .nav-links li:last-child { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 60px; left: 0; right: 0;
    background: #fff; padding: 16px 20px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .nav-links.open .free-promo,
  .nav-links.open li:last-child { display: list-item; }
  .nav-dropdown-menu {
    position: static; box-shadow: none; border: none;
    padding: 0 0 0 14px; margin: 2px 0;
  }
  /* Section spacing */
  section { padding: 60px 20px; }
  /* Hero — keep side-by-side but tighter */
  .hero-split { gap: 28px; padding-top: 32px; }
  .hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
  /* Features — 2 columns */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  /* Pricing — 2 columns, wide card spans 2 */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pricing-card.wide { grid-column: span 2; }
  .pricing-card.wide75,

  /* Objections — 2 columns */
  .objections-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  /* Steps — 3 columns stays, tighter */
  .steps { gap: 14px; }
  /* Footer — side-by-side still works */
  .footer-inner { gap: 24px; }
}

/* ───────── Tablet portrait (481–768px) ───────── */
@media (max-width: 768px) {
  body { padding-top: 62px; }
  /* Nav */
  .nav { padding: 0 10px; }
  .nav-logo { gap: 6px; flex-shrink: 0; }
  .nav-logo span { font-size: 1rem; }
  .nav-logo img { height: 30px; }
  .nav-biz-name { font-size: 0.75rem; max-width: 100px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-inner > div:last-child { margin-left: 2px; flex-shrink: 0; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 60px; left: 0; right: 0;
    background: #fff; padding: 20px 24px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .nav-dropdown-menu {
    position: static; box-shadow: none; border: none;
    padding: 0 0 0 16px; margin: 4px 0;
  }
  /* Section spacing */
  section { padding: 48px 16px; }
  /* Hero — stacked */
  .hero { padding: 16px 16px 32px; }
  .hero-split { flex-direction: column; gap: 24px; padding-top: 24px; }
  .hero h1 { font-size: 1.8rem; text-align: center; }
  .hero .section-label { text-align: center; }
  .hero-bottom p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; text-align: center; }
  /* Video */
  .video-section { padding: 40px 16px; }
  .video-inner h2 { font-size: 1.4rem; }
  /* Features — 1 column */
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { padding: 28px 20px; }
  /* Difference */
  .difference h2 { font-size: 1.5rem; }
  .difference p { font-size: 1rem; }
  /* How it works steps */
  .steps { grid-template-columns: 1fr; gap: 16px; }
  /* Pricing — 1 column */
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card.wide { grid-column: span 1; }
  .pricing-card { grid-column: span 1; }
  .pricing-card.wide75,

  .pricing-card.featured { padding-top: 36px; }
  .pricing h2 { font-size: 1.6rem; }
  /* Objections — 1 column */
  .objections-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-section h2 { font-size: 1.5em; }
  .why-section { padding: 60px 16px; }
  /* About founder */
  .about-founder h2 { font-size: 1.5rem; }
  .about-founder p { font-size: 0.95rem; }
  /* Contact form */
  .contact h2 { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-box { padding: 24px 18px; }
  .contact-inner > p { font-size: 0.95rem; }
  /* Footer */
  .footer { padding: 36px 16px; }
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-info { text-align: center; }
  .footer-contact-form { width: 100%; max-width: 400px; }
  .general-form { max-width: 100%; }
  .footer-brand { justify-content: center; }
}

/* ───────── Phone portrait (≤480px) — tighten everything ───────── */
@media (max-width: 480px) {
  body { padding-top: 56px; }
  /* Nav */
  .nav { padding: 0 6px; }
  .nav-inner { height: 54px; }
  .nav-logo { gap: 4px; }
  .nav-logo span { font-size: 0.85rem; }
  .nav-logo img { height: 26px; }
  .nav-biz-name { font-size: 0.65rem; max-width: 70px; }
  .nav-toggle span { width: 18px; height: 1.5px; margin: 4px 0; }
  .nav-links.open { padding: 14px 16px; }
  /* Hero */
  .hero h1 { font-size: 1.5rem; }
  .hero-bottom p { font-size: 0.9rem; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.9rem; }
  /* Section spacing */
  section { padding: 36px 12px; }
  .how-it-works h2 { font-size: 1.3rem; margin-bottom: 32px; }
  .feature-card { padding: 20px 16px; }
  .feature-icon { width: 44px; height: 44px; border-radius: 10px; }
  .feature-card h3 { font-size: 1rem; }
  .feature-card p { font-size: 0.88rem; }
  /* Pricing */
  .pricing-grid { grid-template-columns: minmax(0, 1fr); }
  .pricing-card { padding: 24px 18px; }
  .pricing-amount { font-size: 2rem; }
  .pricing-card ul { margin: 14px 0; }
  .pricing-card li { font-size: 0.85rem; }
  .pricing-note { font-size: 0.75rem; }
  /* About */
  .about-founder h2 { font-size: 1.3rem; }
  .about-founder p { font-size: 0.9rem; }
  /* Contact */
  .contact h2 { font-size: 1.3rem; }
  .form-box { padding: 20px 14px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 10px 12px; font-size: 0.88rem; }
  /* Footer */
  .footer { padding: 28px 12px; }
  .footer-info { font-size: 0.78rem; }
}

/* ========== DEMO CALLS ========== */
.demo-calls {
  padding: 60px 24px;
  background: var(--bg-demo);
  text-align: center;
}
.demo-inner {
  max-width: 640px;
  margin: 0 auto;
}
.demo-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.demo-select {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  padding: 12px 16px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
  color: #1a1a2e;
  cursor: pointer;
  appearance: auto;
}
.demo-select:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.demo-play-btn {
  padding: 12px 28px;
  white-space: nowrap;
}
.demo-scenario {
  margin-top: 20px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e0e7ff;
  border-radius: 8px;
  text-align: left;
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.6;
}
/* Responsive */
@media (max-width: 480px) {
  .demo-calls { padding: 40px 14px; }
  .demo-controls { flex-direction: column; }
  .demo-select { min-width: 0; width: 100%; max-width: 100%; }
  .demo-play-btn { width: 100%; }
}
