/* ═══════════════════════════════════════════════════════════
   itsSoft — Hoja de estilos principal
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #4f8ef7;
  --brand-dark: #2d6bdb;
  --accent:     #7c3aed;
  --bg:         #0d0f1a;
  --bg2:        #141627;
  --bg3:        #1c1f35;
  --surface:    #1e2136;
  --border:     #2a2d4a;
  --text:       #e2e8f0;
  --muted:      #8892a4;
  --green:      #22c55e;
  --red:        #ef4444;
  --yellow:     #f59e0b;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.4);
  --font:       'Inter', sans-serif;
  --mono:       'JetBrains Mono', monospace;
  --nav-h:      64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

code {
  font-family: var(--mono);
  background: var(--surface);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: .88em;
  color: #a5b4fc;
}

/* ─── Logo imagen ───────────────────────────────────────────── */
.nav-logo-img {
  width: 28px; height: 28px; border-radius: 6px;
  object-fit: cover; vertical-align: middle; margin-right: 6px;
}

.product-logo-img {
  width: 64px; height: 64px; border-radius: 14px;
  object-fit: cover; display: block;
}

.section-logo-img {
  width: 80px; height: 80px; border-radius: 18px;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}

.itsusbcam-header {
  display: flex; align-items: flex-start; gap: 24px;
  margin-bottom: 0;
}
.itsusbcam-header .section-title { margin-bottom: 12px; }
.itsusbcam-header .section-desc  { margin-bottom: 48px; }

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(13,15,26,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.navbar.scrolled { background: rgba(13,15,26,.97); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}

.nav-logo {
  font-size: 1.5rem; font-weight: 800; color: #fff; white-space: nowrap;
}
.nav-logo span { color: var(--brand); }

.nav-links {
  display: flex; list-style: none; gap: 8px; margin-left: auto;
}
.nav-links a {
  color: var(--muted); padding: 6px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; transition: all .2s;
}
.nav-links a:hover { color: #fff; background: var(--surface); }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.4rem; cursor: pointer; margin-left: auto;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 11px 26px;
  border-radius: 9px; font-weight: 600; font-size: .95rem;
  transition: all .2s; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 0 20px rgba(79,142,247,.35);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-sm { padding: 7px 16px; font-size: .85rem; }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; position: relative;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  text-align: center; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(79,142,247,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(124,58,237,.12) 0%, transparent 60%);
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-eyebrow {
  font-size: .9rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); font-weight: 600; margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.hero-title span { color: var(--brand); }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--muted);
  margin-bottom: 36px; line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block; width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  margin: 0 auto; animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.2); }
}

/* ─── Sections ──────────────────────────────────────────── */
.section { padding: 96px 24px; }
.section-dark { background: var(--bg2); }

.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block; padding: 4px 14px;
  background: rgba(79,142,247,.15); border: 1px solid rgba(79,142,247,.3);
  border-radius: 20px; color: var(--brand); font-size: .8rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  color: #fff; margin-bottom: 20px; line-height: 1.2;
}
.section-title span { color: var(--brand); }

.section-desc {
  font-size: 1.05rem; color: var(--muted); max-width: 680px;
  line-height: 1.8; margin-bottom: 48px;
}

/* ─── Features grid ─────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 40px;
}

.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.feature-card.dark { background: var(--bg3); }

.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.feature-card p  { font-size: .9rem; color: var(--muted); }

/* ─── Products grid ─────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 40px;
}

.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  cursor: pointer; transition: all .25s; position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(79,142,247,.06), transparent);
  opacity: 0; transition: opacity .3s;
}
.product-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card:hover::before { opacity: 1; }

.product-badge {
  display: inline-block; padding: 3px 10px;
  background: rgba(79,142,247,.15); border-radius: 20px;
  font-size: .75rem; color: var(--brand); font-weight: 600;
  margin-bottom: 16px;
}

.product-icon { font-size: 2.5rem; margin-bottom: 12px; }
.product-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 10px; font-weight: 700; }
.product-card p  { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }

.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.product-tags span {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 20px;
  font-size: .75rem; color: var(--muted);
}

/* ─── Manual blocks ─────────────────────────────────────── */
.manual-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  margin-bottom: 28px;
}

.manual-title { font-size: 1.2rem; color: #fff; margin-bottom: 24px; font-weight: 700; }

.step-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }

.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
}

.step-header h3 { font-size: 1.15rem; color: #fff; font-weight: 700; }

.manual-block > p { color: var(--muted); font-size: .97rem; margin-bottom: 20px; line-height: 1.7; }

/* ─── Req grid ──────────────────────────────────────────── */
.req-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.req-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; text-align: center;
}
.req-icon { font-size: 1.8rem; margin-bottom: 8px; }
.req-card strong { display: block; color: #fff; font-size: .9rem; margin-bottom: 6px; }
.req-card p { font-size: .82rem; color: var(--muted); }

/* ─── Steps list ────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.step-item { display: flex; align-items: flex-start; gap: 12px; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(79,142,247,.2); border: 1.5px solid var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--brand); flex-shrink: 0;
}
.step-item span:last-child { color: var(--text); font-size: .95rem; padding-top: 3px; }

/* ─── Tip box ───────────────────────────────────────────── */
.tip-box {
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25);
  border-radius: 9px; padding: 14px 18px;
  color: #fcd34d; font-size: .9rem; margin-top: 18px;
}

/* ─── OBS methods ───────────────────────────────────────── */
.obs-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.obs-method {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px;
}
.obs-method h4 { color: var(--brand); font-size: .95rem; margin-bottom: 8px; }
.obs-method p  { color: var(--muted); font-size: .88rem; }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 9px; overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px; cursor: pointer; font-weight: 600;
  color: var(--text); font-size: .95rem; list-style: none;
  display: flex; justify-content: space-between;
  transition: background .2s;
}
.faq-item summary:hover { background: rgba(79,142,247,.08); }
.faq-item summary::after { content: '＋'; color: var(--brand); font-weight: 400; }
.faq-item[open] summary::after { content: '－'; }
.faq-item p { padding: 0 20px 16px; color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ─── CTA box ───────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, rgba(79,142,247,.15), rgba(124,58,237,.1));
  border: 1px solid rgba(79,142,247,.3);
  border-radius: var(--radius); padding: 48px;
  text-align: center; margin-top: 40px;
}
.cta-box h3 { font-size: 1.6rem; color: #fff; margin-bottom: 10px; }
.cta-box p  { color: var(--muted); margin-bottom: 28px; }

/* ─── Coming soon ───────────────────────────────────────── */
.coming-soon-banner {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; margin-top: 40px;
}
.cs-icon { font-size: 2.2rem; }
.coming-soon-banner > div { flex: 1; min-width: 200px; }
.coming-soon-banner strong { color: #fff; display: block; margin-bottom: 4px; }
.coming-soon-banner p { color: var(--muted); font-size: .9rem; }
.cs-form { display: flex; gap: 10px; flex-wrap: wrap; }
.cs-form input {
  flex: 1; min-width: 180px; padding: 10px 16px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: .9rem;
}
.cs-form input:focus { outline: none; border-color: var(--brand); }

/* ─── Contact ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(79,142,247,.15); border: 1px solid rgba(79,142,247,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; gap: 3px; }
.contact-item strong { color: #fff; font-size: .9rem; }
.contact-item a, .contact-item span { color: var(--muted); font-size: .9rem; }
.contact-item a:hover { color: var(--brand); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; color: var(--muted); font-weight: 500; }
.form-group input, .form-group textarea {
  padding: 11px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 9px;
  color: var(--text); font-family: var(--font); font-size: .93rem;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brand);
}
.form-group textarea { resize: vertical; }

/* ─── Footer ────────────────────────────────────────────── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 24px 32px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; display: block; margin-bottom: 10px; }
.footer-logo span { color: var(--brand); }
.footer-brand p { color: var(--muted); font-size: .88rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: #fff; font-size: .9rem; margin-bottom: 6px; }
.footer-links a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: var(--muted); font-size: .83rem; }

/* ─── Phone/Desktop mockups ─────────────────────────────── */
.mockup-phone {
  display: flex; justify-content: center; margin: 24px 0;
}
.phone-screen {
  width: 240px; background: #111; border-radius: 24px;
  border: 3px solid #333; padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  min-height: 160px; position: relative;
}
.phone-screen.dark { background: #0a0a0a; }
.phone-screen.camera { background: #000; overflow: hidden; }
.phone-status-bar {
  height: 6px; background: #222; border-radius: 3px; margin-bottom: 12px;
}
.phone-app-icon { font-size: 2.5rem; text-align: center; margin: 10px 0 6px; }
.phone-app-name { text-align: center; color: #fff; font-size: .9rem; font-weight: 600; margin-bottom: 12px; }
.phone-install-btn {
  background: var(--brand); color: #fff; text-align: center;
  padding: 8px; border-radius: 8px; font-size: .85rem; cursor: pointer;
}
.phone-setting { display: flex; align-items: center; gap: 10px; color: #ccc; font-size: .85rem; margin-bottom: 12px; }
.setting-icon { font-size: 1.1rem; }
.phone-toggle-row {
  display: flex; justify-content: space-between; align-items: center;
  color: #ccc; font-size: .82rem; margin-bottom: 14px;
}
.toggle { width: 36px; height: 20px; border-radius: 10px; background: #333; position: relative; }
.toggle.on { background: var(--green); }
.toggle::after {
  content: ''; position: absolute; top: 3px; right: 3px;
  width: 14px; height: 14px; border-radius: 50%; background: #fff;
}
.phone-dialog {
  background: #1a1a1a; border-radius: 10px; padding: 12px;
  border: 1px solid #333;
}
.phone-dialog p { color: #ddd; font-size: .82rem; margin-bottom: 10px; }
.dialog-btns { display: flex; gap: 8px; justify-content: flex-end; }
.dialog-btns button { background: #333; border: none; color: #aaa; padding: 5px 12px; border-radius: 6px; font-size: .78rem; cursor: pointer; }
.dialog-btns button.active { background: var(--brand); color: #fff; }

.camera-preview {
  height: 90px; background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
  border-radius: 8px;
}
.camera-viewfinder { width: 60px; height: 60px; position: relative; }
.vf-corner {
  position: absolute; width: 14px; height: 14px;
  border: 2px solid rgba(79,142,247,.7);
}
.vf-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.vf-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.vf-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.vf-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }
.camera-controls { padding: 4px 0; }
.camera-status { font-size: .72rem; text-align: center; margin-bottom: 8px; }
.camera-status.streaming { color: #ff6b6b; }
.camera-btns { display: flex; justify-content: center; gap: 8px; }
.cam-btn { padding: 5px 14px; border: none; border-radius: 6px; font-size: .85rem; cursor: pointer; }
.cam-btn.stop { background: var(--red); color: #fff; }

.mockup-desktop { margin: 24px 0; }
.desktop-titlebar {
  background: #1a1a2e; border-radius: 10px 10px 0 0;
  padding: 10px 14px; display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-bottom: none;
}
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28ca42; }
.titlebar-text { color: var(--muted); font-size: .82rem; margin-left: 6px; }
.desktop-body {
  background: #0d0f1a; border: 1px solid var(--border);
  border-radius: 0 0 10px 10px; padding: 16px;
  min-height: 120px;
}
.desktop-toolbar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.dtb-btn {
  padding: 6px 14px; border: none; border-radius: 6px;
  font-size: .8rem; font-weight: 600; cursor: pointer; color: #fff;
}
.dtb-btn.blue   { background: #1a4a7a; }
.dtb-btn.green  { background: #2d6a4f; }
.dtb-btn.red    { background: #7b2d2d; }
.dtb-count { color: var(--muted); font-size: .8rem; margin-left: auto; }
.desktop-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px;
}
.panel-title { color: #ccc; font-size: .83rem; margin-bottom: 10px; font-weight: 600; }
.panel-video {
  background: #000; border: 1px solid #4CAF50;
  border-radius: 6px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.panel-video-inner { color: #555; font-size: .8rem; }
.video-signal { color: #4CAF50; font-size: .78rem; }
.panel-info { color: #88cc88; font-size: .75rem; text-align: center; margin-bottom: 4px; }
.panel-status { font-size: .8rem; text-align: center; margin-bottom: 10px; }
.panel-status.connected { color: #4CAF50; }
.panel-btns { display: flex; gap: 6px; }
.pnl-btn {
  flex: 1; padding: 5px; border: none; border-radius: 5px;
  font-size: .78rem; cursor: pointer; color: #fff;
}
.pnl-btn.green { background: #2d6a4f; }
.pnl-btn.red   { background: #7b2d2d; }
.pnl-btn:disabled { opacity: .4; cursor: default; }

.desktop-body.installer { text-align: center; padding: 24px; }
.installer-logo { font-size: 1.4rem; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.installer-msg  { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.installer-progress { background: var(--bg3); border-radius: 4px; height: 8px; margin-bottom: 8px; }
.progress-bar   { background: var(--bg3); border-radius: 4px; height: 8px; overflow: hidden; }
.progress-fill  { background: var(--brand); height: 100%; border-radius: 4px; }
.installer-step { color: var(--muted); font-size: .8rem; }

.desktop-body.obs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.obs-preview {
  background: #000; border: 1px solid #333; border-radius: 6px;
  height: 100px; display: flex; align-items: center; justify-content: center;
}
.obs-video { color: #555; font-size: .85rem; }
.obs-sources { background: var(--bg3); border-radius: 6px; padding: 10px; }
.obs-source-title { color: var(--muted); font-size: .75rem; margin-bottom: 8px; font-weight: 600; }
.obs-source-item { color: #ccc; font-size: .8rem; padding: 5px 8px; background: var(--surface); border-radius: 5px; }
.obs-controls { grid-column: 1/-1; display: flex; gap: 8px; }
.obs-btn { padding: 6px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; color: #ccc; font-size: .8rem; cursor: pointer; }
.obs-btn.active { background: #1a4a2a; border-color: #2d6a4f; color: #4CAF50; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .obs-methods  { grid-template-columns: 1fr; }
  .desktop-body.obs { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--bg2); padding: 16px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .manual-block { padding: 24px 18px; }
  .coming-soon-banner { flex-direction: column; }
  .cs-form { flex-direction: column; }
  .cta-box { padding: 32px 20px; }
}

