/* =========================================================
   Wapfy Segmento — landing pages por nicho (barbearia, dentista,
   manicure, estética, médico, personal, salão, cabeleireiro)
   Inherits the same design tokens as /blog/blog.css.
   ========================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  --wapfy-primary: #438EF8;
  --wapfy-primary-2: #5FA3FF;
  --wapfy-dark: #1A274D;
  --wapfy-deep: #004DB8;
  --wapfy-accent: #73A3F1;

  --bg: #F4F4F4;
  --bg-warm: #EFEFEF;
  --bg-paper: #FFFFFF;
  --ink: #1A274D;
  --ink-2: #2B3654;
  --ink-soft: rgba(26, 39, 77, 0.72);
  --ink-mute: rgba(26, 39, 77, 0.55);
  --rule: rgba(26, 39, 77, 0.12);
  --rule-2: rgba(26, 39, 77, 0.20);
  --whatsapp: #25d366;

  --gradient-blue: linear-gradient(135deg, #438EF8 0%, #004DB8 100%);
  --gradient-blue-deep: linear-gradient(180deg, #2C5FBF 0%, #1A3A8A 100%);

  --shadow-card: 0 1px 2px rgba(26, 39, 77, 0.04), 0 8px 24px rgba(26, 39, 77, 0.06);
  --shadow-hero: 0 30px 60px rgba(26, 39, 77, 0.18);
  --shadow-deep: 0 40px 80px rgba(26, 39, 77, 0.2);

  --maxw: 1200px;
  --readw: 720px;

  --font-display: "Public Sans", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font-display); font-size: 16px; line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
}

/* ============ Navbar (matches chrome.js, identical to blog) ============ */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); border-bottom: 1px solid var(--rule); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 18px 28px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.nav-logo { display: inline-flex; align-items: center; transition: opacity 0.18s ease; }
.nav-logo:hover { opacity: 0.78; }
.nav-logo svg { width: auto; height: 30px; display: block; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); letter-spacing: -0.005em; transition: color 0.18s ease; padding: 6px 0; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.nav-link-active { color: var(--wapfy-primary); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; justify-self: end; }
.nav-login { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--wapfy-primary); background: white; border: 1px solid rgba(67,142,248,0.2); transition: all 0.18s ease; white-space: nowrap; }
.nav-login:hover { border-color: rgba(67,142,248,0.5); background: rgba(67,142,248,0.04); }
.nav-trial { display: inline-flex; align-items: center; gap: 10px; padding: 10px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; color: white; background: var(--gradient-blue); box-shadow: 0 6px 18px rgba(67,142,248,0.32); transition: all 0.18s ease; letter-spacing: -0.005em; white-space: nowrap; }
.nav-trial:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(67,142,248,0.42); }
.nav-menu-btn { display: none; width: 44px; height: 44px; border-radius: 999px; align-items: center; justify-content: center; color: var(--wapfy-primary); transition: background 0.18s ease; }
.nav-menu-btn:hover { background: rgba(67,142,248,0.10); }
.nav-menu-btn svg { width: 20px; height: 20px; }
@media (max-width: 920px) {
  .nav-inner { grid-template-columns: auto auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: inline-flex; }
}
.nav-drawer { position: fixed; inset: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); z-index: 100; padding: 96px 32px 48px; display: none; flex-direction: column; gap: 4px; }
.nav-drawer.open { display: flex; }
.nav-drawer-close { position: absolute; top: 18px; right: 28px; width: 44px; height: 44px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--wapfy-primary); }
.nav-drawer a { font-size: clamp(28px, 6vw, 44px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--rule); transition: color 0.18s ease; }
.nav-drawer a:hover { color: var(--wapfy-primary); }
.nav-drawer-cta { margin-top: 24px; display: inline-flex; align-items: center; justify-content: center; background: var(--gradient-blue); color: white !important; padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 18px; align-self: flex-start; }

/* ============ Tokens shared with blog ============ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wapfy-primary); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow .sep { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.crumb { font-size: 13px; color: var(--ink-mute); margin-top: 32px; display: flex; gap: 8px; align-items: center; font-weight: 500; }
.crumb a:hover { color: var(--wapfy-primary); }
.crumb .arrow { opacity: 0.4; }

/* ============ HERO (product page) ============ */
.seg-hero { padding: 56px 0 80px; }
.seg-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 920px) { .seg-hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.seg-hero h1 { font-size: clamp(42px, 6.4vw, 78px); letter-spacing: -0.04em; line-height: 0.98; font-weight: 700; color: var(--ink); margin: 24px 0 24px; max-width: 16ch; }
.seg-hero h1 em { font-style: italic; font-weight: 400; color: var(--wapfy-primary); }
.seg-hero .lead { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 56ch; margin-bottom: 32px; }
.seg-hero-bullets { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 10px; }
.seg-hero-bullets li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--ink); font-family: var(--font-mono); letter-spacing: 0.02em; text-transform: uppercase; }
.seg-hero-bullets li::before { content: ""; width: 14px; height: 14px; border-radius: 4px; background: var(--gradient-blue); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(67,142,248,0.12); position: relative; }
.seg-hero-bullets li[data-check]::after { content: "✓"; position: absolute; transform: translate(-22px, 0); color: white; font-weight: 700; font-size: 11px; line-height: 14px; pointer-events: none; }
.seg-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; border-radius: 999px; background: var(--gradient-blue); color: white !important; font-weight: 600; font-size: 16px; letter-spacing: -0.005em; box-shadow: 0 10px 28px rgba(67,142,248,0.36); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(67,142,248,0.46); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 999px; background: white; color: var(--ink) !important; font-weight: 500; font-size: 15px; border: 1px solid var(--rule-2); transition: all 0.18s ease; }
.btn-secondary:hover { border-color: var(--wapfy-primary); color: var(--wapfy-primary) !important; }

/* Hero visual: stylized phone with chat */
.seg-hero-visual { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.seg-phone {
  position: relative; width: 320px; height: 600px;
  background: linear-gradient(160deg, #1A274D 0%, #2C5FBF 100%);
  border-radius: 36px; box-shadow: var(--shadow-deep);
  padding: 18px; overflow: hidden;
}
.seg-phone::before {
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 22px; background: #0a1830; border-radius: 999px;
}
.seg-phone-screen {
  background: #075E54;
  background-image:
    radial-gradient(60% 40% at 50% 0%, rgba(255,255,255,0.05), transparent 70%),
    linear-gradient(180deg, #0b8167 0%, #075e54 30%, #054d40 100%);
  border-radius: 22px; height: 100%; padding: 56px 16px 16px; position: relative; overflow: hidden;
}
.seg-phone-header { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 14px; }
.seg-phone-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-blue); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 13px; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(255,255,255,0.18); }
.seg-phone-name { color: white; font-weight: 600; font-size: 14px; line-height: 1.2; }
.seg-phone-status { color: rgba(255,255,255,0.6); font-size: 11px; margin-top: 2px; font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; }
.seg-bubble { max-width: 80%; padding: 10px 12px; border-radius: 14px; font-size: 13px; line-height: 1.4; margin-bottom: 8px; box-shadow: 0 1px 1px rgba(0,0,0,0.18); }
.seg-bubble--user { background: #ffffff; color: #0c1a2e; border-bottom-left-radius: 4px; align-self: flex-start; margin-right: auto; }
.seg-bubble--ai { background: #DCF8C6; color: #0c1a2e; border-bottom-right-radius: 4px; align-self: flex-end; margin-left: auto; }
.seg-bubble small { display: block; font-size: 10px; color: rgba(0,0,0,0.45); margin-top: 4px; text-align: right; font-family: var(--font-mono); }
.seg-phone-thread { display: flex; flex-direction: column; gap: 0; }
.seg-typing { display: inline-flex; align-items: center; gap: 4px; padding: 10px 12px; background: #DCF8C6; border-radius: 14px; align-self: flex-end; margin-left: auto; }
.seg-typing span { width: 6px; height: 6px; background: rgba(0,0,0,0.4); border-radius: 50%; animation: blink 1.4s infinite; }
.seg-typing span:nth-child(2) { animation-delay: 0.2s; }
.seg-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,100% { opacity: 0.3 } 50% { opacity: 1 } }
.seg-hero-visual::before {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(67,142,248,0.45), transparent 70%);
  filter: blur(60px); top: -40px; right: -40px; z-index: -1;
}
.seg-hero-visual::after {
  content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(37,211,102,0.35), transparent 70%);
  filter: blur(50px); bottom: -20px; left: -20px; z-index: -1;
}

/* ============ PROOF BAR ============ */
.seg-proof { background: var(--ink); color: white; padding: 28px 0; position: relative; overflow: hidden; }
.seg-proof::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(67,142,248,0.18), transparent 70%); pointer-events: none; }
.seg-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; align-items: start; }
@media (max-width: 860px) { .seg-proof-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 560px) { .seg-proof-grid { grid-template-columns: 1fr; gap: 18px; } }
.seg-proof-item { text-align: left; }
.seg-proof-stat { font-size: clamp(18px, 1.6vw, 22px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 6px; color: white; }
.seg-proof-stat em { font-style: normal; color: var(--wapfy-accent); }
.seg-proof-label { font-size: 11px; color: rgba(255,255,255,0.65); font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============ COMPARE (antes / depois) ============ */
.seg-section { padding: 96px 0; }
.seg-section h2 { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -0.035em; line-height: 1.04; font-weight: 700; color: var(--ink); margin: 24px 0 24px; max-width: 24ch; }
.seg-section .lead { font-size: 18px; color: var(--ink-soft); max-width: 56ch; margin: 0; }
.seg-compare { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
@media (max-width: 720px) { .seg-compare { grid-template-columns: 1fr; } }
.seg-compare-col { background: var(--bg-paper); padding: 36px 32px; }
.seg-compare-col[data-state=before] { background: #FBFBFB; }
.seg-compare-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 18px; font-weight: 600; }
.seg-compare-col[data-state=before] .seg-compare-label { color: var(--ink-mute); }
.seg-compare-col[data-state=after] .seg-compare-label { color: var(--wapfy-primary); }
.seg-compare-col h3 { font-size: 22px; letter-spacing: -0.02em; line-height: 1.2; font-weight: 700; color: var(--ink); margin: 0 0 18px; }
.seg-compare-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.seg-compare-col li { font-size: 15px; line-height: 1.5; color: var(--ink-2); padding-left: 24px; position: relative; }
.seg-compare-col[data-state=before] li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--ink-mute); font-weight: 700; }
.seg-compare-col[data-state=after] li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--wapfy-primary); font-weight: 700; }

/* ============ FEATURE ROWS (alternating) ============ */
.seg-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 96px 0; border-top: 1px solid var(--rule); }
@media (max-width: 920px) { .seg-feature { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; } }
.seg-feature--reverse .seg-feature-text { order: 2; }
@media (max-width: 920px) { .seg-feature--reverse .seg-feature-text { order: 0; } }
.seg-feature-text .eyebrow { margin-bottom: 18px; }
.seg-feature-text h2 { font-size: clamp(30px, 3.8vw, 42px); letter-spacing: -0.03em; line-height: 1.1; font-weight: 700; color: var(--ink); margin: 0 0 20px; max-width: 18ch; }
.seg-feature-text p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; margin: 0 0 24px; max-width: 52ch; }
.seg-feature-text ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.seg-feature-text ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--ink); }
.seg-feature-text ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--wapfy-primary); margin-top: 9px; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(67,142,248,0.18); }
.seg-feature-visual { position: relative; aspect-ratio: 1.1; background: var(--bg-paper); border-radius: 4px; box-shadow: var(--shadow-card); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 32px; }
.seg-feature-visual--blue { background: var(--gradient-blue-deep); color: white; }
.seg-feature-visual .bracket { position: absolute; width: 24px; height: 24px; border: 1.5px solid rgba(255,255,255,0.35); }
.seg-feature-visual--blue .bracket.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.seg-feature-visual--blue .bracket.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.seg-feature-visual--blue .bracket.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.seg-feature-visual--blue .bracket.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.seg-feature-visual svg { width: 100%; height: 100%; max-height: 380px; }

/* ============ BUILT-FOR cards ============ */
.seg-built { padding: 96px 0; border-top: 1px solid var(--rule); }
.seg-built-head { max-width: 720px; margin-bottom: 56px; }
.seg-built-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
@media (max-width: 920px) { .seg-built-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .seg-built-grid { grid-template-columns: 1fr; } }
.seg-built-card { background: var(--bg-paper); padding: 32px 28px; min-height: 220px; display: flex; flex-direction: column; gap: 12px; transition: background 0.2s ease; }
.seg-built-card:hover { background: #fcfcfd; }
.seg-built-card .icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(67,142,248,0.12); color: var(--wapfy-primary); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 4px; }
.seg-built-card .icon svg { width: 22px; height: 22px; }
.seg-built-card h3 { font-size: 18px; letter-spacing: -0.01em; line-height: 1.3; font-weight: 700; color: var(--ink); margin: 0; }
.seg-built-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* ============ WORKFLOW (3 steps) ============ */
.seg-workflow { padding: 96px 0; background: var(--ink); color: white; position: relative; overflow: hidden; }
.seg-workflow::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 80% 0%, rgba(67,142,248,0.22), transparent 70%); pointer-events: none; }
.seg-workflow-head { max-width: 720px; margin-bottom: 56px; position: relative; }
.seg-workflow-head .eyebrow { color: var(--wapfy-accent); }
.seg-workflow-head h2 { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -0.035em; line-height: 1.04; font-weight: 700; color: white; margin: 24px 0; max-width: 18ch; }
.seg-workflow-head p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 56ch; }
.seg-workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.10); border-radius: 4px; overflow: hidden; position: relative; }
@media (max-width: 920px) { .seg-workflow-grid { grid-template-columns: 1fr; } }
.seg-step { background: rgba(255,255,255,0.02); padding: 40px 32px 36px; min-height: 280px; display: flex; flex-direction: column; gap: 18px; }
.seg-step-num { font-family: var(--font-display); font-size: 64px; font-weight: 800; line-height: 0.85; letter-spacing: -0.04em; color: white; opacity: 0.95; }
.seg-step-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wapfy-accent); margin-top: -8px; }
.seg-step h3 { font-size: 22px; letter-spacing: -0.02em; line-height: 1.25; font-weight: 700; color: white; margin: 0; }
.seg-step p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.55; margin: 0; }

/* ============ TESTIMONIAL (large pull quote) ============ */
.seg-quote { padding: 96px 0; border-top: 1px solid var(--rule); }
.seg-quote-inner { max-width: 980px; margin: 0 auto; }
.seg-quote .eyebrow { margin-bottom: 24px; }
.seg-quote blockquote { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -0.025em; line-height: 1.18; font-weight: 500; color: var(--ink); margin: 0 0 36px; max-width: 24ch; }
.seg-quote blockquote::before { content: "\201C"; font-size: 1.2em; color: var(--wapfy-primary); line-height: 0; vertical-align: -0.1em; margin-right: 4px; }
.seg-quote blockquote::after { content: "\201D"; font-size: 1.2em; color: var(--wapfy-primary); line-height: 0; vertical-align: -0.1em; margin-left: 4px; }
.seg-quote-meta { display: flex; align-items: center; gap: 18px; padding-top: 28px; border-top: 1px solid var(--rule); }
.seg-quote-meta .av { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-blue); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.seg-quote-meta-name { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0; }
.seg-quote-meta-detail { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.seg-quote-impact { margin-left: auto; text-align: right; }
@media (max-width: 720px) { .seg-quote-impact { margin-left: 0; text-align: left; } }
.seg-quote-impact strong { display: block; font-size: 28px; font-weight: 800; color: var(--wapfy-primary); letter-spacing: -0.02em; line-height: 1; }
.seg-quote-impact span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; display: block; }

/* ============ PRICING TEASER ============ */
.seg-pricing { padding: 96px 0; border-top: 1px solid var(--rule); }
.seg-pricing-head { max-width: 720px; margin-bottom: 48px; }
.seg-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 920px) { .seg-pricing-grid { grid-template-columns: 1fr; } }
.seg-plan { background: var(--bg-paper); border: 1px solid var(--rule); border-radius: 6px; padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; transition: all 0.18s ease; position: relative; }
.seg-plan:hover { border-color: var(--rule-2); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.seg-plan[data-popular] { background: var(--ink); color: white; border-color: var(--ink); }
.seg-plan[data-popular]::before { content: "MAIS POPULAR"; position: absolute; top: -10px; left: 26px; background: var(--wapfy-primary); color: white; padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
.seg-plan-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin: 0; }
.seg-plan[data-popular] .seg-plan-name { color: rgba(255,255,255,0.7); }
.seg-plan-price { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1; margin: 4px 0; }
.seg-plan-price em { font-style: normal; font-weight: 500; font-size: 16px; color: var(--ink-mute); }
.seg-plan[data-popular] .seg-plan-price { color: white; }
.seg-plan[data-popular] .seg-plan-price em { color: rgba(255,255,255,0.6); }
.seg-plan p.dek { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 8px; flex: 1; }
.seg-plan[data-popular] p.dek { color: rgba(255,255,255,0.78); }
.seg-plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.seg-plan li { font-size: 13px; line-height: 1.4; color: var(--ink-2); padding-left: 18px; position: relative; }
.seg-plan li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--wapfy-primary); font-weight: 700; }
.seg-plan[data-popular] li { color: rgba(255,255,255,0.85); }
.seg-plan[data-popular] li::before { color: var(--wapfy-accent); }
.seg-plan a.btn { margin-top: 14px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; }
.seg-plan a.btn--ghost { background: white; color: var(--ink) !important; border: 1px solid var(--rule-2); }
.seg-plan a.btn--ghost:hover { border-color: var(--wapfy-primary); color: var(--wapfy-primary) !important; }
.seg-plan[data-popular] a.btn { background: white; color: var(--wapfy-deep) !important; }

/* ============ FAQ ============ */
.seg-faq { padding: 96px 0; border-top: 1px solid var(--rule); }
.seg-faq-grid { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }
@media (max-width: 920px) { .seg-faq-grid { grid-template-columns: 1fr; gap: 24px; } }
.seg-faq h2 { font-size: clamp(30px, 3.8vw, 44px); letter-spacing: -0.03em; line-height: 1.05; font-weight: 700; color: var(--ink); margin: 0; }
.seg-faq-aside .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px; }
.seg-faq details { border-bottom: 1px solid var(--rule); padding: 26px 0; }
.seg-faq details:first-child { border-top: 1px solid var(--rule); }
.seg-faq summary { font-size: 17px; font-weight: 600; color: var(--ink); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; letter-spacing: -0.01em; }
.seg-faq summary::-webkit-details-marker { display: none; }
.seg-faq summary::after { content: "+"; font-family: var(--font-mono); font-size: 22px; font-weight: 300; color: var(--wapfy-primary); transition: transform 0.2s ease; flex-shrink: 0; }
.seg-faq details[open] summary::after { content: "−"; }
.seg-faq summary + p { margin-top: 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

/* ============ CTA STRIP (closing) ============ */
.seg-cta-strip { background: var(--gradient-blue); color: white; position: relative; overflow: hidden; padding: 96px 0; }
.seg-cta-strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 100% 0%, rgba(255,255,255,0.18), transparent 70%); pointer-events: none; }
.seg-cta-strip-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end; position: relative; }
@media (max-width: 760px) { .seg-cta-strip-inner { grid-template-columns: 1fr; gap: 28px; } }
.seg-cta-strip h2 { font-size: clamp(48px, 9vw, 120px); letter-spacing: -0.04em; line-height: 0.92; font-weight: 800; color: white; margin: 14px 0 0; }
.seg-cta-strip-side { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.seg-cta-strip-side p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.55; }
.seg-cta-strip-side .btn { background: white; color: var(--wapfy-deep) !important; padding: 16px 32px; border-radius: 999px; font-weight: 600; font-size: 16px; transition: transform 0.2s ease; box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.seg-cta-strip-side .btn:hover { transform: translateY(-2px); }

/* ============ FOOTER (matches blog footer) ============ */
.footer { background: var(--gradient-blue); color: white; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 80% 20%, rgba(255,255,255,0.10), transparent 70%); pointer-events: none; }
.footer-headline { max-width: var(--maxw); margin: 0 auto; padding: 88px 28px 48px; position: relative; }
.footer-headline h2 { font-size: clamp(56px, 11vw, 132px); letter-spacing: -0.04em; line-height: 0.92; font-weight: 800; color: white; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 28px 56px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; position: relative; }
.footer-brand p { color: rgba(255,255,255,0.9); font-size: 14px; max-width: 320px; line-height: 1.55; margin: 22px 0 24px; }
.footer-contact { display: inline-flex; align-items: center; gap: 10px; padding: 11px 22px; border-radius: 999px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); color: white !important; font-size: 14px; font-weight: 500; }
.footer-contact:hover { background: rgba(255,255,255,0.22); }
.footer h4 { font-size: 14px; color: white; margin-bottom: 18px; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer li a { color: rgba(255,255,255,0.82); font-size: 14px; }
.footer li a:hover { color: white; }
.footer-address { color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.18); max-width: var(--maxw); margin: 0 auto; padding: 28px; font-size: 13px; color: rgba(255,255,255,0.78); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; position: relative; }
.footer-bottom .unkern { font-style: italic; font-weight: 600; color: white; letter-spacing: 0.04em; }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } .footer-headline { padding: 64px 28px 36px; } }
::selection { background: var(--wapfy-primary); color: white; }
:focus-visible { outline: 3px solid var(--wapfy-primary); outline-offset: 2px; border-radius: 6px; }
