/*
 * styles.css — myfngroup landing page.
 * v2: visual overhaul. Inter typography, browser-mockup hero, SVG icons,
 * richer gradients and shadows, founder initial-avatars with fallback.
 *
 * Design system in one glance:
 *   - Accent: #0B5FFF blue (confident, not aggressive)
 *   - Surface: white on a near-white #F7F8FA wash
 *   - Type: Inter variable, 400-900 weights, -0.011em letterspacing on heads
 *   - Shadows: layered (soft + crisp) for depth without darkness
 *   - Borders: 1px #e5e7eb, radius scale 8 / 12 / 16 / 24
 */

/* ── Reset / base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #0F172A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01", "ss03";
}
h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.022em;
}
p { margin: 0 0 1em; }
a { color: var(--accent); }
img { max-width: 100%; display: block; }
::selection { background: rgba(11, 95, 255, 0.18); }

/* ── Variables ───────────────────────────────────────────────────────── */
:root {
  --accent: #0B5FFF;
  --accent-dark: #0846C2;
  --accent-light: #4D88FF;
  --accent-glow: rgba(11, 95, 255, 0.32);
  --ink: #0F172A;
  --ink-soft: #475569;
  --ink-muted: #94A3B8;
  --line: #E5E7EB;
  --line-soft: #F1F5F9;
  --bg: #fff;
  --bg-soft: #F7F8FA;
  --bg-cream: #FBFBFD;
  --error: #DC2626;
  --max-w: 1140px;
  --pad: 24px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.06), 0 12px 28px rgba(15,23,42,0.06);
  --shadow-lg: 0 8px 24px rgba(15,23,42,0.08), 0 24px 48px rgba(15,23,42,0.10);
  --shadow-accent: 0 12px 32px rgba(11, 95, 255, 0.20);
}

/* ── Topbar ──────────────────────────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  z-index: 50;
}
.brand {
  display: inline-block;
  line-height: 0;
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .brand-logo { height: 26px; }
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.topbar-link:hover { color: var(--accent); }
.topbar-cta {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.05s, box-shadow 0.15s;
  box-shadow: 0 1px 2px rgba(11, 95, 255, 0.15);
}
.topbar-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 12px rgba(11, 95, 255, 0.30);
}
@media (max-width: 640px) {
  .topbar-link { display: none; }
  .topbar-nav { gap: 0; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 64px var(--pad) 80px;
  background:
    radial-gradient(ellipse at top right, rgba(11, 95, 255, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(11, 95, 255, 0.04), transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero::before {
  /* Subtle dot grid pattern in the background */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11,95,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .hero { padding: 88px var(--pad) 100px; }
}

.hero-copy { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.08); }
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #6BA1FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero-trust { font-size: 14px; color: var(--ink-muted); }

/* ── Hero browser-mockup preview ─────────────────────────────────────── */
.hero-preview {
  position: relative;
  perspective: 1400px;
  max-width: 100%;
}
.hero-preview-window {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.hero-preview:hover .hero-preview-window {
  transform: rotateY(-2deg) rotateX(1deg) translateY(-4px);
}
@media (max-width: 720px) {
  .hero-preview-window { transform: none; }
  .hero-preview:hover .hero-preview-window { transform: translateY(-2px); }
}
.hero-preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--line);
}
.hero-preview-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-preview-dot--red    { background: #FF5F57; }
.hero-preview-dot--yellow { background: #FEBC2E; }
.hero-preview-dot--green  { background: #28C840; }
.hero-preview-url {
  margin-left: 14px;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  flex: 1;
  text-align: center;
  max-width: 280px;
}
.hero-preview-content {
  padding: 28px 24px 24px;
}
.hero-preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.hero-preview-logo {
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.hero-preview-links {
  display: flex;
  gap: 10px;
}
.hero-preview-links span {
  display: block;
  width: 30px;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
}
.hero-preview-heading {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.022em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.15;
}
.hero-preview-text {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.hero-preview-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 7px;
  margin-bottom: 22px;
  box-shadow: 0 4px 10px rgba(11, 95, 255, 0.25);
}
.hero-preview-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.hero-preview-card {
  height: 64px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #EFF1F5 100%);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.hero-preview-badge {
  position: absolute;
  bottom: -18px;
  right: -12px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-accent);
  transform: rotate(-3deg);
}
@media (max-width: 720px) {
  .hero-preview-badge { right: 12px; bottom: -14px; }
}

/* ── CTA buttons ─────────────────────────────────────────────────────── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  background-image: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.08s, box-shadow 0.15s, filter 0.15s;
  box-shadow: 0 2px 6px rgba(11, 95, 255, 0.25), inset 0 1px 0 rgba(255,255,255,0.18);
}
.cta-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 18px rgba(11, 95, 255, 0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.cta-primary:active { transform: translateY(1px); }
.cta-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.2);
}
.cta-primary svg { display: block; }

/* ── Proof bar ───────────────────────────────────────────────────────── */
.proof-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px var(--pad);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .proof-bar { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.proof-item strong {
  display: block;
  font-size: 30px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.proof-item span {
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ── Shared: section subtitle ───────────────────────────────────────── */
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 17px;
}

/* ── Services ────────────────────────────────────────────────────────── */
.services {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px var(--pad);
}
.services h2 {
  font-size: clamp(28px, 4vw, 38px);
  text-align: center;
  margin-bottom: 14px;
}
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: rgba(11, 95, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.10), rgba(11, 95, 255, 0.03));
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; letter-spacing: -0.012em; }
.service-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ── Pricing ─────────────────────────────────────────────────────────── */
.pricing {
  margin: 0;
  padding: 88px var(--pad);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-cream) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing h2 {
  font-size: clamp(28px, 4vw, 38px);
  text-align: center;
  margin-bottom: 14px;
}
.pricing .section-sub { margin-bottom: 56px; }
.price-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 640px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .price-grid { grid-template-columns: repeat(4, 1fr); }
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card-featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-accent);
  transform: scale(1.03);
  background: linear-gradient(180deg, #fff 0%, #F8FBFF 100%);
}
.price-card-featured:hover { transform: scale(1.03) translateY(-2px); }
@media (max-width: 639px) {
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-2px); }
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(11, 95, 255, 0.30);
}
.price-card h3 { font-size: 21px; margin-bottom: 8px; font-weight: 700; }
.price {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.price strong {
  font-size: 36px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.025em;
}
.price-tagline {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}
.price-features li {
  font-size: 14.5px;
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--ink);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(11, 95, 255, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230B5FFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.price-monthly {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.care-plans { margin-top: 56px; }
.care-title {
  text-align: center;
  font-size: 13px;
  margin-bottom: 24px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.care-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .care-grid { grid-template-columns: repeat(3, 1fr); }
}
.care-item {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color 0.15s;
}
.care-item:hover { border-color: rgba(11, 95, 255, 0.3); }
.care-item strong {
  display: block;
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
}
.care-item span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ── How it works ────────────────────────────────────────────────────── */
.how {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px var(--pad);
}
.how h2 {
  font-size: clamp(28px, 4vw, 38px);
  text-align: center;
  margin-bottom: 48px;
}
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (min-width: 1000px) {
  .how-steps { grid-template-columns: repeat(4, 1fr); }
}
.how-steps li {
  padding: 28px 24px;
  background: var(--bg-soft);
  border-radius: 14px;
  border: 1px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
}
.how-steps li:hover { border-color: var(--line); transform: translateY(-2px); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 14px;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(11, 95, 255, 0.25);
}
.how-steps h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; letter-spacing: -0.012em; }
.how-steps p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ── Who this is for ─────────────────────────────────────────────────── */
.who {
  padding: 88px var(--pad);
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.who h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.who-sub {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-size: 17px;
}
.who-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.who-grid li {
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.15s, transform 0.15s;
}
.who-grid li:hover { border-color: rgba(11, 95, 255, 0.3); transform: translateY(-1px); }
.who-grid li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(11, 95, 255, 0.10) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B5FFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.who-cat {
  text-align: center;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin: 40px 0 18px;
}
.who-cat:first-of-type { margin-top: 8px; }

/* ── Founders ────────────────────────────────────────────────────────── */
.founders {
  max-width: 980px;
  margin: 0 auto;
  padding: 88px var(--pad);
  text-align: center;
}
.founders h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.founders-sub {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--ink-soft);
  font-size: 17px;
}
.founders-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .founders-grid { grid-template-columns: 1fr 1fr; }
}
.founder-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.founder-card:hover {
  border-color: rgba(11, 95, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
/* Avatar: initials are the base layer. <img> overlays on top if loaded. */
.founder-avatar {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}
.founder-avatar--mohamed {
  background: linear-gradient(135deg, #0B5FFF 0%, #4D88FF 100%);
}
.founder-avatar--fares {
  background: linear-gradient(135deg, #5B6BFF 0%, #8B5BFF 100%);
}
.founder-initials {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.founder-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-card h3 { font-size: 21px; margin-bottom: 4px; font-weight: 700; }
.founder-title {
  font-size: 12.5px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.founder-bio {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* ── Objections ──────────────────────────────────────────────────────── */
.objections {
  max-width: 760px;
  margin: 0 auto;
  padding: 88px var(--pad);
}
.objections h2 {
  font-size: clamp(28px, 4vw, 36px);
  text-align: center;
  margin-bottom: 40px;
}
.objections details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.objections details[open] {
  border-color: rgba(11, 95, 255, 0.35);
  box-shadow: var(--shadow-sm);
}
.objections summary {
  font-weight: 600;
  font-size: 16.5px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
  color: var(--ink);
}
.objections summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}
.objections details[open] summary::after { transform: rotate(45deg); }
.objections details p { margin: 16px 0 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }

/* ── Form section ────────────────────────────────────────────────────── */
.form-section {
  padding: 88px var(--pad) 96px;
  background:
    radial-gradient(ellipse at top, rgba(11, 95, 255, 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}
.form-card {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 480px) {
  .form-card { padding: 28px 22px; border-radius: 14px; }
}
.form-card h2 { font-size: 30px; margin-bottom: 10px; text-align: center; font-weight: 800; }
.form-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-size: 15.5px;
}

.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field-row { margin-bottom: 20px; }
.field-row label {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 7px;
  color: var(--ink);
}
.field-row input[type="text"],
.field-row input[type="email"],
.field-row input[type="tel"],
.field-row input[type="url"],
.field-row select,
.field-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 46px;
}
.field-row textarea { resize: vertical; min-height: 88px; }
.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(11, 95, 255, 0.14);
}
.field-row.field-row-split { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .field-row.field-row-split { grid-template-columns: 1fr; } }
.field-hint { display: block; margin-top: 6px; font-size: 12.5px; color: var(--ink-muted); }
.optional { font-weight: 400; color: var(--ink-muted); font-size: 12.5px; }

.checkboxes { display: flex; flex-direction: column; gap: 10px; }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.1s;
}
.checkbox-row:hover { background: var(--bg-soft); }
.checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.checkbox-row span { font-size: 14.5px; line-height: 1.4; }

.stage-2 { animation: fadeIn 0.35s ease-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-actions { margin-top: 28px; text-align: center; }
.form-actions .cta-primary { width: 100%; justify-content: center; }
.form-disclaimer {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.form-error {
  margin-top: 20px;
  padding: 14px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  color: var(--error);
  font-size: 14px;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px var(--pad) 40px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  background: var(--bg-soft);
}
.footer p { margin: 0 0 8px; }
.footer-logo {
  height: 30px;
  width: auto;
  margin: 0 auto 18px;
  display: block;
  opacity: 0.7;
}
.footer-links { margin-top: 10px; font-size: 13px; }
.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
