/* ============================================================
   SpicyChat Landing — Design System
   Base: white, spacious | Accent: spicy rose #E11D48 → orange
   Font: Inter | Style: AI-Native, clean & modern
   ============================================================ */
body { margin: 0 !important; }
.wp-site-blocks { padding: 0 !important; }
.entry-content { max-width: none !important; margin: 0 !important; padding: 0 !important; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

.sc-landing {
  /* tokens */
  --sc-primary: #E11D48;
  --sc-primary-dark: #BE123C;
  --sc-accent: #F97316;
  --sc-grad: linear-gradient(120deg, #E11D48 0%, #F43F5E 55%, #F97316 100%);
  --sc-ink: #0F172A;
  --sc-body-c: #475569;
  --sc-muted: #7C8AA0;
  --sc-bg: #FFFFFF;
  --sc-bg-soft: #FFF8F6;
  --sc-bg-slate: #F8FAFC;
  --sc-bg-rose: #FFF1F2;
  --sc-border: #E9EEF5;
  --sc-border-rose: #FDD9DF;
  --sc-r-lg: 22px;
  --sc-r-md: 16px;
  --sc-r-pill: 999px;
  --sc-shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 4px 14px rgba(15,23,42,.05);
  --sc-shadow-md: 0 6px 24px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.04);
  --sc-shadow-lg: 0 24px 70px rgba(15,23,42,.14), 0 8px 24px rgba(15,23,42,.06);
  --sc-shadow-cta: 0 10px 28px rgba(225,29,72,.32);

  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--sc-body-c);
  background: var(--sc-bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.sc-landing *, .sc-landing *::before, .sc-landing *::after { box-sizing: border-box; }
.sc-landing img { max-width: 100%; height: auto; display: block; }
.sc-landing h1, .sc-landing h2, .sc-landing h3, .sc-landing h4 {
  color: var(--sc-ink); line-height: 1.12; margin: 0; font-family: inherit;
}
.sc-landing p { margin: 0; }
.sc-landing a { color: inherit; text-decoration: none; }
.sc-landing ul { margin: 0; padding: 0; list-style: none; }
.sc-landing button { font-family: inherit; cursor: pointer; }
.sc-landing :focus-visible {
  outline: 3px solid rgba(225,29,72,.4); outline-offset: 2px; border-radius: 6px;
}
.sc-landing .sc-ico { width: 24px; height: 24px; flex: none; }

/* layout */
.sc-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sc-section { padding: clamp(72px, 9vw, 118px) 0; }
.sc-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sc-primary); margin-bottom: 18px;
}
.sc-kicker::before { content: ""; width: 22px; height: 2px; background: var(--sc-grad); border-radius: 2px; }
.sc-h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.025em; }
.sc-lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--sc-body-c); max-width: 620px; margin-top: 18px; }
.sc-center { text-align: center; }
.sc-center .sc-lead { margin-left: auto; margin-right: auto; }
.sc-grad-text {
  background: var(--sc-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* buttons */
.sc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 28px; border-radius: var(--sc-r-pill);
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.sc-btn .sc-ico { width: 19px; height: 19px; }
.sc-btn-primary { background: var(--sc-grad); color: #fff; box-shadow: var(--sc-shadow-cta); }
.sc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(225,29,72,.4); }
.sc-btn-ghost { background: #fff; color: var(--sc-ink); border-color: #DDE4EE; }
.sc-btn-ghost:hover { border-color: var(--sc-primary); color: var(--sc-primary); transform: translateY(-2px); }
.sc-btn-light { background: #fff; color: var(--sc-primary); box-shadow: 0 10px 30px rgba(15,23,42,.18); }
.sc-btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(15,23,42,.24); }

/* reveal animations — nascoste solo se il JS è attivo (.sc-js), altrimenti tutto visibile */
.sc-js .sc-reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.sc-js .sc-reveal.sc-in { opacity: 1; transform: none; }
.sc-reveal[data-d="1"] { transition-delay: .08s; }
.sc-reveal[data-d="2"] { transition-delay: .16s; }
.sc-reveal[data-d="3"] { transition-delay: .24s; }
.sc-reveal[data-d="4"] { transition-delay: .32s; }
.sc-reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .sc-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sc-landing * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ============ HEADER ============ */
.sc-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease;
}
.sc-header.sc-scrolled { border-bottom-color: var(--sc-border); box-shadow: 0 4px 20px rgba(15,23,42,.06); }
.sc-header.sc-hdark { background: linear-gradient(to bottom, rgba(10,6,14,.62), rgba(10,6,14,0)); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: transparent; box-shadow: none; }
.sc-header.sc-hdark .sc-logo { color: #fff; }
.sc-header.sc-hdark .sc-nav-links a { color: rgba(255,255,255,.88); }
.sc-header.sc-hdark .sc-nav-links a:hover { color: #fff; }
.sc-header.sc-hdark .sc-burger { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #fff; }
.sc-nav { display: flex; align-items: center; gap: 28px; min-height: 76px; }
.sc-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 21px; letter-spacing: -0.02em; color: var(--sc-ink); }
.sc-logo-mark {
  width: 38px; height: 38px; border-radius: 12px; background: var(--sc-grad);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 6px 16px rgba(225,29,72,.35);
}
.sc-logo-mark .sc-ico { width: 21px; height: 21px; }
.sc-nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.sc-nav-links a { font-size: 15px; font-weight: 600; color: #334155; padding: 8px 2px; transition: color .2s ease; }
.sc-nav-links a:hover { color: var(--sc-primary); }
.sc-nav-cta { margin-left: 8px; }
.sc-nav .sc-btn { min-height: 46px; padding: 11px 22px; font-size: 15px; }
.sc-burger {
  display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--sc-border); background: #fff; color: var(--sc-ink);
  align-items: center; justify-content: center;
}
.sc-mobile-menu { display: none; border-top: 1px solid var(--sc-border); background: #fff; padding: 12px 24px 22px; }
.sc-mobile-menu a { display: block; padding: 13px 4px; font-weight: 600; color: var(--sc-ink); border-bottom: 1px solid #F1F5F9; }
.sc-mobile-menu .sc-btn { width: 100%; margin-top: 16px; }
.sc-mobile-open .sc-mobile-menu { display: block; }

/* ============ HERO (dark, immersive) ============ */
.sc-hero {
  position: relative; overflow: clip; background: #0C0812; color: #E8E3EF;
  margin-top: -77px;
  padding: clamp(160px, 18vw, 215px) 0 clamp(110px, 12vw, 170px);
}
.sc-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.sc-eyebrow {
  display: block; font-size: clamp(13px, 1.3vw, 15px); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px;
  color: #FDA4AF;
}
.sc-h1-accent {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 600;
  letter-spacing: 0; padding-right: .06em;
  background: var(--sc-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sc-hero .sc-18 { background: #fff; color: #0C0812; }
.sc-hero-bg { position: absolute; inset: 0; z-index: 0; }
.sc-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; opacity: .8; }
.sc-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.sc-hero-panel {
  background: linear-gradient(160deg, rgba(14,8,18,.86) 0%, rgba(14,8,18,.62) 55%, rgba(24,13,26,.44) 100%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: clamp(32px, 3.8vw, 52px);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 32px 80px rgba(4,2,8,.55),
    0 24px 70px -20px rgba(225,29,72,.35);
}
@keyframes sc-hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.sc-js .sc-hero-panel { animation: sc-hero-in .8s cubic-bezier(0.16, 1, 0.3, 1) .1s backwards; }
.sc-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px;
  border-radius: var(--sc-r-pill); background: rgba(225,29,72,.18); border: 1px solid rgba(251,113,133,.38);
  color: #FECDD3; font-size: 13.5px; font-weight: 700;
}
.sc-badge .sc-ico { width: 15px; height: 15px; color: #FDA4AF; }
.sc-landing .sc-h1 { font-size: clamp(36px, 4.4vw, 54px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-top: 0; color: #fff; }
.sc-hero-sub { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; max-width: 46ch; margin-top: 20px; color: rgba(236,231,241,.78); }
.sc-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.sc-hero .sc-btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.3); }
.sc-hero .sc-btn-ghost:hover { background: rgba(255,255,255,.13); border-color: #fff; color: #fff; }
.sc-hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.sc-avatars { display: flex; }
.sc-avatars img {
  width: 40px; height: 40px; border-radius: 50%; border: 3px solid rgba(255,255,255,.9); object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.4); margin-left: -10px;
}
.sc-avatars img:first-child { margin-left: 0; }
.sc-hero-trust p { font-size: 14px; color: rgba(232,227,239,.78); line-height: 1.45; }
.sc-hero-trust strong { color: #fff; font-weight: 700; }
.sc-18 {
  display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 6px;
  background: var(--sc-ink); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .04em;
  vertical-align: 1px;
}
.sc-badge .sc-18 { background: #fff; color: #0C0812; }

/* hero visual — chat mockup */
.sc-hero-visual { position: relative; }
.sc-chat-card {
  background: #fff; border: 1px solid var(--sc-border); border-radius: var(--sc-r-lg);
  box-shadow: var(--sc-shadow-lg); overflow: hidden; max-width: 480px; margin-left: auto;
}
.sc-chat-head { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid #F1F5F9; }
.sc-chat-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--sc-grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex: none;
}
.sc-chat-head strong { display: block; color: var(--sc-ink); font-size: 16px; letter-spacing: -0.01em; }
.sc-chat-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--sc-muted); }
.sc-chat-status i { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; display: inline-block; }
.sc-chat-tag {
  margin-left: auto; font-size: 12px; font-weight: 700; color: var(--sc-primary-dark);
  background: var(--sc-bg-rose); border: 1px solid var(--sc-border-rose); padding: 5px 12px; border-radius: var(--sc-r-pill);
}
.sc-chat-body { padding: 22px 20px 8px; display: flex; flex-direction: column; gap: 14px; min-height: 240px; }
.sc-msg { max-width: 82%; }
.sc-msg p { padding: 13px 16px; border-radius: 18px; font-size: 14.5px; line-height: 1.55; }
.sc-msg span { display: block; font-size: 11.5px; color: var(--sc-muted); margin-top: 5px; padding: 0 6px; }
.sc-msg-ai p { background: var(--sc-bg-slate); color: var(--sc-ink); border-bottom-left-radius: 6px; }
.sc-msg-me { align-self: flex-end; }
.sc-msg-me p { background: var(--sc-grad); color: #fff; border-bottom-right-radius: 6px; }
.sc-msg-me span { text-align: right; }
.sc-typing p { display: inline-flex; gap: 5px; align-items: center; }
.sc-dot { width: 7px; height: 7px; border-radius: 50%; background: #94A3B8; animation: sc-blink 1.2s infinite ease-in-out; }
.sc-dot:nth-child(2) { animation-delay: .18s; }
.sc-dot:nth-child(3) { animation-delay: .36s; }
@keyframes sc-blink { 0%, 70%, 100% { opacity: .35; transform: translateY(0); } 35% { opacity: 1; transform: translateY(-3px); } }
.sc-chat-input {
  display: flex; align-items: center; gap: 12px; margin: 10px 16px 16px; padding: 13px 18px;
  border: 1px solid var(--sc-border); border-radius: var(--sc-r-pill); background: #fff; color: var(--sc-muted); font-size: 14px;
}
.sc-chat-send {
  margin-left: auto; width: 36px; height: 36px; border-radius: 50%; background: var(--sc-grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.sc-chat-send .sc-ico { width: 17px; height: 17px; }
.sc-float {
  position: absolute; background: #fff; border: 1px solid var(--sc-border); border-radius: var(--sc-r-md);
  box-shadow: var(--sc-shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px;
}
.sc-float-rating { top: -22px; right: 8%; animation: sc-float 5s ease-in-out infinite; }
.sc-float-rating .sc-stars { display: inline-flex; color: #F59E0B; }
.sc-float-rating .sc-ico { width: 15px; height: 15px; }
.sc-float-rating strong { color: var(--sc-ink); font-size: 15px; }
.sc-float-rating small { display: block; color: var(--sc-muted); font-size: 11.5px; }
.sc-float-char { bottom: -24px; left: -4%; animation: sc-float 6s ease-in-out .8s infinite; }
.sc-float-char .sc-chat-avatar { width: 38px; height: 38px; font-size: 15px; background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.sc-float-char strong { display: block; color: var(--sc-ink); font-size: 14px; }
.sc-float-char small { color: var(--sc-muted); font-size: 11.5px; }
.sc-float-char em {
  font-style: normal; margin-left: 8px; font-size: 12.5px; font-weight: 700; color: var(--sc-primary);
  background: var(--sc-bg-rose); padding: 6px 14px; border-radius: var(--sc-r-pill);
}
@keyframes sc-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* dark variants for chat card & floats inside hero */
.sc-hero .sc-chat-card { background: rgba(20,13,26,.74); border-color: rgba(255,255,255,.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.sc-hero .sc-chat-head { border-bottom-color: rgba(255,255,255,.09); }
.sc-hero .sc-chat-head strong { color: #fff; }
.sc-hero .sc-chat-status { color: rgba(232,227,239,.62); }
.sc-hero .sc-msg-ai p { background: rgba(255,255,255,.09); color: #F3EDF8; }
.sc-hero .sc-msg span { color: rgba(232,227,239,.5); }
.sc-hero .sc-chat-input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: rgba(232,227,239,.6); }
.sc-hero .sc-float { background: rgba(22,14,28,.85); border-color: rgba(255,255,255,.14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.sc-hero .sc-float strong { color: #fff; }
.sc-hero .sc-float small { color: rgba(232,227,239,.65); }
.sc-hero .sc-float .sc-avatars img { width: 30px; height: 30px; border-width: 2px; border-color: #221528; }

/* ============ STATS ============ */
.sc-stats { border-block: 1px solid var(--sc-border); background: var(--sc-bg-slate); }
.sc-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; }
.sc-stat { text-align: center; }
.sc-stat strong { display: block; font-size: clamp(28px, 3vw, 38px); font-weight: 800; letter-spacing: -0.03em; color: var(--sc-ink); }
.sc-stat span { font-size: 14px; color: var(--sc-muted); font-weight: 600; }

/* ============ FEATURES ============ */
.sc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.sc-card {
  background: #fff; border: 1px solid var(--sc-border); border-radius: var(--sc-r-lg);
  padding: 30px 28px; box-shadow: var(--sc-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sc-card:hover { transform: translateY(-5px); box-shadow: var(--sc-shadow-md); border-color: var(--sc-border-rose); }
.sc-card-ico {
  width: 52px; height: 52px; border-radius: 15px; background: var(--sc-bg-rose); color: var(--sc-primary);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.sc-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 10px; }
.sc-card p { font-size: 15.5px; line-height: 1.6; }
.sc-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.sc-pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: var(--sc-r-pill);
  background: #fff; border: 1px solid var(--sc-border); font-size: 14px; font-weight: 600; color: #334155;
}
.sc-pill .sc-ico { width: 15px; height: 15px; color: var(--sc-primary); }

/* ============ HOW IT WORKS ============ */
.sc-how { background: var(--sc-bg-soft); border-block: 1px solid #FDEBE4; }
.sc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; counter-reset: step; }
.sc-step { position: relative; background: #fff; border: 1px solid var(--sc-border); border-radius: var(--sc-r-lg); padding: 34px 28px; box-shadow: var(--sc-shadow-sm); }
.sc-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--sc-grad); color: #fff;
  font-weight: 800; font-size: 17px; margin-bottom: 20px; box-shadow: 0 8px 18px rgba(225,29,72,.3);
}
.sc-step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.sc-step p { font-size: 15.5px; }

/* ============ CHARACTERS ============ */
.sc-chars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.sc-char-card {
  position: relative; border-radius: var(--sc-r-lg); overflow: hidden; border: 1px solid var(--sc-border);
  box-shadow: var(--sc-shadow-sm); background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sc-char-card:hover { transform: translateY(-5px); box-shadow: var(--sc-shadow-md); }
.sc-char-card img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.sc-char-info { position: absolute; inset: auto 0 0 0; padding: 46px 20px 18px; background: linear-gradient(to top, rgba(9,12,20,.92), rgba(9,12,20,0)); color: #fff; }
.sc-char-info h3 { color: #fff; font-size: 19px; font-weight: 700; }
.sc-char-info p { font-size: 13.5px; color: rgba(255,255,255,.85); margin-top: 3px; }
.sc-char-tags { display: flex; gap: 8px; margin-top: 12px; }
.sc-char-tags span {
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em; padding: 4px 11px; border-radius: var(--sc-r-pill);
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px);
}
.sc-chars-cta { text-align: center; margin-top: 44px; }

/* ============ CREATOR ============ */
.sc-creator { background: var(--sc-bg-slate); border-block: 1px solid var(--sc-border); }
.sc-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.sc-checklist { margin-top: 28px; display: grid; gap: 15px; }
.sc-checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: #334155; }
.sc-checklist .sc-check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--sc-bg-rose); color: var(--sc-primary);
  display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 2px;
}
.sc-checklist .sc-check .sc-ico { width: 13px; height: 13px; }
.sc-checklist strong { color: var(--sc-ink); }
.sc-frame { position: relative; border-radius: var(--sc-r-lg); background: #fff; border: 1px solid var(--sc-border); box-shadow: var(--sc-shadow-lg); overflow: hidden; }
.sc-frame-bar { display: flex; gap: 7px; padding: 14px 18px; border-bottom: 1px solid #F1F5F9; }
.sc-frame-bar i { width: 11px; height: 11px; border-radius: 50%; background: #E2E8F0; }
.sc-frame-bar i:first-child { background: #FCA5A5; }
.sc-frame-bar i:nth-child(2) { background: #FCD34D; }
.sc-frame-bar i:nth-child(3) { background: #86EFAC; }
.sc-frame img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }

/* ============ PRICING ============ */
.sc-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; align-items: stretch; }
.sc-price-card {
  position: relative; background: #fff; border: 1px solid var(--sc-border); border-radius: var(--sc-r-lg);
  padding: 34px 30px; box-shadow: var(--sc-shadow-sm); display: flex; flex-direction: column;
}
.sc-price-card.sc-featured { border: 2px solid var(--sc-primary); box-shadow: var(--sc-shadow-lg); }
.sc-price-flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--sc-grad); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 16px; border-radius: var(--sc-r-pill); box-shadow: 0 6px 16px rgba(225,29,72,.35); white-space: nowrap;
}
.sc-price-card h3 { font-size: 19px; font-weight: 700; }
.sc-price-card > p { font-size: 14.5px; margin-top: 6px; }
.sc-price { display: flex; align-items: baseline; gap: 7px; margin: 22px 0 6px; }
.sc-price strong { font-size: 44px; font-weight: 800; letter-spacing: -0.04em; color: var(--sc-ink); }
.sc-price span { font-size: 15px; color: var(--sc-muted); font-weight: 600; }
.sc-price-feats { margin: 22px 0 30px; display: grid; gap: 12px; }
.sc-price-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: #334155; }
.sc-price-feats .sc-ico { width: 18px; height: 18px; color: var(--sc-primary); margin-top: 3px; flex: none; }
.sc-price-card .sc-btn { margin-top: auto; width: 100%; }
.sc-price-note { text-align: center; font-size: 13.5px; color: var(--sc-muted); margin-top: 26px; }

/* ============ TESTIMONIALS ============ */
.sc-testi { background: var(--sc-bg-soft); border-block: 1px solid #FDEBE4; }
.sc-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.sc-testi-card { background: #fff; border: 1px solid var(--sc-border); border-radius: var(--sc-r-lg); padding: 30px 28px; box-shadow: var(--sc-shadow-sm); display: flex; flex-direction: column; }
.sc-stars { display: inline-flex; gap: 3px; color: #F59E0B; }
.sc-stars .sc-ico { width: 17px; height: 17px; }
.sc-testi-card blockquote { margin: 18px 0 24px; font-size: 15.5px; line-height: 1.65; color: #334155; }
.sc-testi-who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.sc-testi-who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.sc-testi-who strong { display: block; color: var(--sc-ink); font-size: 15px; }
.sc-testi-who span { font-size: 13px; color: var(--sc-muted); }

/* ============ FAQ ============ */
.sc-faq-list { max-width: 780px; margin: 50px auto 0; display: grid; gap: 14px; }
.sc-faq-item { background: #fff; border: 1px solid var(--sc-border); border-radius: var(--sc-r-md); box-shadow: var(--sc-shadow-sm); overflow: hidden; }
.sc-faq-item summary {
  list-style: none; display: flex; align-items: center; gap: 16px; padding: 21px 24px;
  font-weight: 700; font-size: 16.5px; color: var(--sc-ink); cursor: pointer;
}
.sc-faq-item summary::-webkit-details-marker { display: none; }
.sc-faq-plus {
  margin-left: auto; width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--sc-bg-rose); color: var(--sc-primary);
  display: inline-flex; align-items: center; justify-content: center; transition: transform .25s ease;
}
.sc-faq-plus .sc-ico { width: 15px; height: 15px; }
.sc-faq-item[open] .sc-faq-plus { transform: rotate(45deg); }
.sc-faq-item p { padding: 0 24px 22px; font-size: 15.5px; max-width: 660px; }

/* ============ FINAL CTA ============ */
.sc-cta-band { position: relative; border-radius: 28px; overflow: hidden; background: var(--sc-grad); padding: clamp(56px, 7vw, 88px) clamp(28px, 5vw, 80px); text-align: center; box-shadow: 0 30px 80px rgba(225,29,72,.35); }
.sc-cta-band::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,255,255,.14); filter: blur(70px); top: -180px; right: -120px; pointer-events: none;
}
.sc-cta-band h2 { color: #fff; font-size: clamp(30px, 3.8vw, 46px); font-weight: 800; letter-spacing: -0.025em; }
.sc-cta-band p { color: rgba(255,255,255,.92); font-size: clamp(16px, 1.5vw, 18.5px); max-width: 560px; margin: 18px auto 0; }
.sc-cta-band .sc-btn { margin-top: 34px; }
.sc-cta-fine { margin-top: 20px !important; font-size: 13.5px !important; color: rgba(255,255,255,.8) !important; }

/* ============ FOOTER ============ */
.sc-footer { background: #0B1220; color: #94A3B8; padding: clamp(56px, 6vw, 80px) 0 36px; }
.sc-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.sc-footer .sc-logo { color: #fff; }
.sc-footer-blurb { font-size: 14.5px; line-height: 1.7; margin-top: 18px; max-width: 320px; }
.sc-footer h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.sc-footer-col a { display: block; padding: 6.5px 0; font-size: 15px; color: #94A3B8; transition: color .2s ease; }
.sc-footer-col a:hover { color: #fff; }
.sc-footer-social { display: flex; gap: 12px; margin-top: 24px; }
.sc-footer-social a {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid #1E293B; color: #CBD5E1;
  display: inline-flex; align-items: center; justify-content: center; transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.sc-footer-social a:hover { border-color: var(--sc-primary); color: #fff; transform: translateY(-2px); }
.sc-footer-social .sc-ico { width: 19px; height: 19px; }
.sc-footer-bottom {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid #1E293B;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; font-size: 13.5px;
}
.sc-footer-bottom .sc-18 { margin-right: 10px; background: #fff; color: #0B1220; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .sc-hero-grid { grid-template-columns: 1fr; }
  .sc-hero-visual { max-width: 520px; margin: 10px auto 0; }
  .sc-chat-card { margin: 0 auto; }
  .sc-features-grid, .sc-steps, .sc-chars-grid, .sc-testi-grid, .sc-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-split { grid-template-columns: 1fr; }
  .sc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .sc-nav-links { display: none; }
  .sc-burger { display: inline-flex; }
}
@media (max-width: 640px) {
  .sc-landing { font-size: 16px; }
  .sc-features-grid, .sc-steps, .sc-chars-grid, .sc-testi-grid, .sc-pricing-grid { grid-template-columns: 1fr; }
  .sc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .sc-hero-ctas .sc-btn { width: 100%; }
  .sc-float-rating { display: none; }
  .sc-float-char { bottom: -18px; left: 4px; }
  .sc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sc-price-card.sc-featured { order: -1; }
}
