/* =========================================
   LEADSMITH — Landing Page Styles
   Professional UK property-tech design
   ========================================= */

:root {
  --navy:      #0b1d3a;
  --navy-deep: #060f1f;
  --navy-light:#152844;
  --white:     #ffffff;
  --off-white: #f7f8fa;
  --grey:      #eef0f3;
  --grey-dark: #e2e5ea;
  --text:      #1a2235;
  --text-mid:  #4a5568;
  --text-muted:#8a95a3;
  --accent:    #1d6fff;
  --accent-hover: #1662e0;
  --lime:      #c8f526;
  --lime-dim:  rgba(200, 245, 38, 0.12);
}

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

body {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* =========================================
   STICKY HEADER NAV
   ========================================= */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-dark);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--off-white);
  text-decoration: none;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px !important;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent-hover) !important; text-decoration: none !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
  .site-nav { padding: 0 20px; }
  .nav-hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-dark);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 10px 14px; }
  .nav-cta { text-align: center; }
}

/* =========================================
   HERO
   ========================================= */

.hero-section {
  background: var(--navy-deep);
  color: var(--white);
  padding: 100px 40px 80px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Syne', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-primary:hover { background: var(--accent-hover); text-decoration: none; }

.hero-muted {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.hero-agency-cta {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.hero-agency-link {
  color: var(--lime);
  font-weight: 600;
  text-decoration: none;
}

.hero-agency-link:hover {
  text-decoration: underline;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.trust-item {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  padding: 0 20px;
}

.trust-dot {
  color: rgba(255,255,255,0.2);
}

@media (max-width: 700px) {
  .hero-section { padding: 72px 20px 60px; }
  .hero-sub { font-size: 16px; }
  .trust-bar { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .trust-dot { display: none; }
}

/* =========================================
   FOR AGENTS
   ========================================= */

.agents-section {
  background: var(--off-white);
  padding: 100px 40px;
}

.section-container { max-width: 1100px; margin: 0 auto; }

.agents-header { text-align: center; margin-bottom: 64px; }

.agents-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.agents-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.agents-intro {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.agents-stat {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.agents-answer-header {
  text-align: center;
  margin-bottom: 48px;
}

.agents-answer-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--grey-dark);
  border-radius: 16px;
  padding: 36px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--lime-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { color: var(--text); }

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Dark proof tile (for agents section) */
.proof-tile--dark {
  background: var(--navy);
  border: 1px solid var(--navy-light);
  color: var(--white);
}

.proof-tile--dark .proof-label {
  color: var(--lime);
  background: var(--lime-dim);
}

.proof-tile--dark .proof-title { color: var(--white); }

.proof-tile--dark .proof-sub { color: rgba(255,255,255,0.6); }

.proof-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.proof-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.proof-btn:hover { background: var(--accent-hover); text-decoration: none; }

.proof-sub-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: left;
}

/* Shared proof tile */
.proof-tile {
  background: var(--white);
  border: 1px solid var(--grey-dark);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.proof-left { flex: 1; }

.proof-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.proof-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.proof-sub { font-size: 14px; color: var(--text-muted); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover { background: var(--accent); color: var(--white); text-decoration: none; }

@media (max-width: 800px) {
  .agents-section { padding: 72px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-tile { flex-direction: column; align-items: flex-start; }
  .proof-tile--dark { flex-direction: column; }
  .proof-right { align-items: stretch; }
  .proof-btn { text-align: center; }
}

/* =========================================
   PRICING
   ========================================= */

.pricing-section {
  background: var(--white);
  padding: 100px 40px;
}

.pricing-header { text-align: center; margin-bottom: 56px; }

.pricing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing-sub { font-size: 16px; color: var(--text-muted); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--grey-dark);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}

.pricing-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.07); }

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(29,111,255,0.08);
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pricing-price sup { font-size: 18px; vertical-align: super; }

.pricing-price--contact {
  font-size: 28px;
  color: var(--text);
}

.pricing-billed { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

.pricing-divider { height: 1px; background: var(--grey-dark); margin-bottom: 28px; }

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 36px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-btn {
  display: block;
  text-align: center;
  background: var(--off-white);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.pricing-btn:hover { background: var(--grey); text-decoration: none; }

.pricing-card--featured .pricing-btn {
  background: var(--accent);
  color: var(--white);
}

.pricing-card--featured .pricing-btn:hover { background: var(--accent-hover); }

.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 36px;
}

@media (max-width: 800px) {
  .pricing-section { padding: 72px 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: var(--off-white);
  border-top: 1px solid var(--grey-dark);
  padding: 40px 40px;
  text-align: center;
}

.footer-text {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .site-footer { padding: 32px 20px; }
}

/* =========================================
   MODALS
   ========================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 29, 58, 0.65);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px 44px 36px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: translateY(16px);
  transition: transform 0.25s;
}

.modal-overlay.is-open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.modal-close:hover { color: var(--text); background: var(--off-white); }

.modal-headline {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.modal-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--grey-dark);
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--accent); }

.form-textarea { resize: vertical; min-height: 80px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--accent-hover); }

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-feedback {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 16px;
  display: none;
}

.form-feedback--success {
  background: #e8f5e9;
  color: #2e7d32;
  display: block;
}

.form-feedback--error {
  background: #fde8e8;
  color: #c62828;
  display: block;
}

@media (max-width: 600px) {
  .modal-box { padding: 36px 24px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================
   INTERACTIVE DEMO WIDGET
   ========================================= */

.idemo-section {
  background: var(--navy-deep);
  padding: 100px 40px;
  color: var(--white);
}

.idemo-header {
  text-align: center;
  margin-bottom: 48px;
}

.idemo-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 16px;
}

.idemo-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 14px;
}

.idemo-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
}

/* Widget card */
.idemo-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  max-width: 860px;
  margin: 0 auto;
}

/* Example chips */
.idemo-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.idemo-examples-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.idemo-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.idemo-chip:hover,
.idemo-chip:focus-visible {
  background: rgba(29, 111, 255, 0.25);
  border-color: var(--accent);
  color: var(--white);
  outline: none;
}

/* Textarea */
.idemo-input-wrap {
  margin-bottom: 20px;
}

.idemo-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.idemo-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color 0.18s;
}

.idemo-textarea::placeholder { color: rgba(255,255,255,0.25); }

.idemo-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.idemo-char-count {
  text-align: right;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}

/* Submit button */
.idemo-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s;
  margin-bottom: 32px;
}

.idemo-submit-btn:hover:not(:disabled) { background: var(--accent-hover); }

.idemo-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.idemo-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: idemo-spin 0.7s linear infinite;
}

.idemo-submit-btn.is-loading .idemo-submit-spinner { display: block; }

@keyframes idemo-spin { to { transform: rotate(360deg); } }

/* Output sections */
.idemo-output {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}

.idemo-phase {
  margin-bottom: 28px;
  display: none; /* shown progressively via JS */
}

.idemo-phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.idemo-phase-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.idemo-phase-badge--email  { background: rgba(29,111,255,0.2); color: #7eb3ff; }
.idemo-phase-badge--verdict{ background: rgba(200,245,38,0.15); color: var(--lime); }
.idemo-phase-badge--crm    { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }

.idemo-phase-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.idemo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  white-space: pre-wrap;
  word-break: break-word;
}

.idemo-text--mono {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* Verdict row */
.idemo-verdict-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.idemo-verdict-label {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 6px;
  white-space: nowrap;
}

.idemo-verdict-reason {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* CTA row */
.idemo-cta-row {
  background: rgba(200,245,38,0.06);
  border: 1px solid rgba(200,245,38,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.idemo-cta-copy {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.idemo-cta-btn {
  display: inline-block;
  background: var(--lime);
  color: var(--navy-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s;
}

.idemo-cta-btn:hover { background: #b8e020; text-decoration: none; }

/* Error state */
.idemo-error {
  background: rgba(198, 40, 40, 0.15);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 8px;
  color: #ff9f9f;
  font-size: 14px;
  padding: 12px 16px;
  margin-top: 16px;
}

@media (max-width: 700px) {
  .idemo-section { padding: 72px 20px; }
  .idemo-card { padding: 28px 20px; }
  .idemo-examples { gap: 8px; }
  .idemo-cta-row { flex-direction: column; align-items: flex-start; }
}