  :root {
    --red: #e30614;
    --red-dark: #b8040f;
    --red-light: #fff0f0;
    --black: #111111;
    --gray-700: #444444;
    --gray-500: #777777;
    --gray-300: #cccccc;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;
    --border: #e8e8e8;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 2px 16px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--black);
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }
  nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 600; color: var(--gray-700); text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--red); }

  .btn-primary {
    background: var(--red); color: var(--white);
    border: none; border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .2s; white-space: nowrap;
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(227,6,20,.3); }

  .btn-secondary {
    background: transparent; color: var(--black);
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 15px;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .2s; white-space: nowrap;
  }
  .btn-secondary:hover { border-color: var(--red); color: var(--red); }

  /* HERO */
  .hero {
    padding: 130px 0 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(227,6,20,.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red-light); border: 1px solid rgba(227,6,20,.2);
    border-radius: 100px; padding: 5px 14px;
    font-size: 12px; font-weight: 700; color: var(--red);
    margin-bottom: 24px; letter-spacing: .5px; text-transform: uppercase;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 400; line-height: 1.0; letter-spacing: 1px;
    color: var(--black); margin-bottom: 24px;
  }
  .hero h1 em { font-style: normal; color: var(--red); }

  .hero p { font-size: 17px; color: var(--gray-500); line-height: 1.7; margin-bottom: 36px; max-width: 460px; }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  /* Dashboard mockup */
  .hero-dashboard {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
  }
  .dashboard-header {
    background: var(--gray-50); padding: 12px 18px;
    display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--border);
  }
  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: #FF5F57; } .dot-y { background: #FFBD2E; } .dot-g { background: #28CA41; }
  .dash-url {
    flex: 1; background: var(--white); border: 1px solid var(--border);
    border-radius: 6px; padding: 4px 12px; font-size: 11px; color: var(--gray-500); margin-left: 10px;
  }
  .live-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: #e8faf0; border: 1px solid #a3e4be;
    border-radius: 100px; padding: 3px 10px;
    font-size: 10px; font-weight: 700; color: #1d9c58;
  }
  .live-dot { width: 6px; height: 6px; background: #1d9c58; border-radius: 50%; animation: blink 1.5s infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

  .dashboard-body { padding: 20px; }
  .dash-title { font-weight: 700; font-size: 14px; color: var(--black); margin-bottom: 16px; }
  .dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
  .dash-stat { background: var(--gray-50); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
  .dash-stat-label { font-size: 10px; color: var(--gray-500); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .4px; font-weight: 600; }
  .dash-stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--black); line-height: 1; }
  .dash-stat-value.red { color: var(--red); }
  .dash-stat-value.green { color: #1d9c58; }

  .dash-sources { background: var(--gray-50); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
  .dash-sources-title { font-size: 10px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
  .source-row { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
  .source-row:last-child { margin-bottom: 0; }
  .source-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
  .source-name { font-size: 12px; color: var(--gray-700); flex: 1; font-weight: 500; }
  .source-bar-wrap { flex: 2; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
  .source-bar { height: 100%; border-radius: 3px; }
  .source-count { font-size: 12px; font-weight: 700; color: var(--black); min-width: 28px; text-align: right; }

  /* STATS BAR */
  .stats-bar { background: var(--black); padding: 48px 0; }
  .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
  .stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-right: none; }
  .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--white); line-height: 1; margin-bottom: 6px; }
  .stat-number span { color: var(--red); }
  .stat-label { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; }

  /* SECTIONS */
  section { padding: 96px 0; }
  .section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
  .section-tag::before { content: ''; width: 18px; height: 2px; background: var(--red); border-radius: 1px; }
  h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px,4vw,52px); font-weight: 400; line-height: 1.05; letter-spacing: 1px; color: var(--black); margin-bottom: 14px; }
  .section-sub { font-size: 17px; color: var(--gray-500); line-height: 1.65; max-width: 520px; margin-bottom: 56px; }

  /* SEGMENTS */
  .segments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .segment-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    transition: all .25s; position: relative; overflow: hidden;
  }
  .segment-card::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); opacity: 0; transition: opacity .25s; }
  .segment-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .segment-card:hover::after { opacity: 1; }
  .segment-icon { width: 44px; height: 44px; background: var(--red-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; }
  .segment-label { font-size: 10px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
  .segment-card h3 { font-weight: 800; font-size: 17px; color: var(--black); line-height: 1.35; margin-bottom: 14px; }
  .segment-pain { font-size: 15px; color: var(--gray-500); line-height: 1.65; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
  .segment-solution h4 { font-size: 11px; font-weight: 700; color: #1d9c58; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
  .segment-solution p { font-size: 15px; color: var(--gray-700); line-height: 1.65; }

  /* ADVANTAGE */
  .advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .advantage-list { list-style: none; margin-top: 36px; }
  .advantage-list li { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
  .advantage-list li:first-child { padding-top: 0; }
  .advantage-list li:last-child { border-bottom: none; }
  .adv-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--red); line-height: 1; flex-shrink: 0; width: 32px; padding-top: 2px; }
  .adv-text strong { display: block; font-weight: 700; color: var(--black); font-size: 15px; margin-bottom: 3px; }
  .adv-text span { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

  .adv-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); }
  .adv-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
  .adv-card-title { font-size: 15px; font-weight: 700; color: var(--black); }

  .funnel-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .funnel-label { font-size: 14px; color: var(--gray-700); min-width: 120px; font-weight: 500; }
  .funnel-bar-wrap { flex: 1; height: 24px; background: var(--gray-100); border-radius: 5px; overflow: hidden; }
  .funnel-bar { height: 100%; border-radius: 5px; display: flex; align-items: center; padding-left: 10px; font-size: 11px; font-weight: 700; color: white; }
  .funnel-num { font-size: 14px; font-weight: 700; color: var(--black); min-width: 34px; text-align: right; }

  /* FEATURES */
  .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
  .feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: all .2s; }
  .feature-card:hover { box-shadow: var(--shadow); border-color: rgba(227,6,20,.2); transform: translateY(-2px); }
  .feature-card.highlight { background: var(--black); border-color: var(--black); grid-column: span 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
  .feature-card.highlight h3 { color: var(--white); }
  .feature-card.highlight p { color: rgba(255,255,255,.55); }
  .feature-badge { background: var(--red); border-radius: 8px; padding: 10px 16px; font-size: 11px; font-weight: 700; color: white; white-space: nowrap; text-align: center; line-height: 1.5; }
  .feature-icon { font-size: 26px; margin-bottom: 14px; display: block; }
  .feature-card h3 { font-weight: 700; font-size: 16px; color: var(--black); margin-bottom: 8px; line-height: 1.45; }
  .feature-card p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

  /* SPORTS */
  .sports-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
  .sport-chip { background: var(--gray-50); border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px; font-size: 15px; font-weight: 500; color: var(--gray-700); transition: all .2s; cursor: default; }
  .sport-chip:hover { background: var(--red-light); border-color: rgba(227,6,20,.3); color: var(--red); }

  /* STEPS */
  .steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
  .steps-grid::before { content: ''; position: absolute; top: 28px; left: calc(100%/6 + 20px); right: calc(100%/6 + 20px); height: 1px; background: repeating-linear-gradient(90deg,var(--red) 0,var(--red) 6px,transparent 6px,transparent 14px); opacity: .35; }
  .step { text-align: center; padding: 0 36px; }
  .step-num { width: 56px; height: 56px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: white; margin: 0 auto 22px; position: relative; z-index: 1; box-shadow: 0 4px 20px rgba(227,6,20,.3); }
  .step h3 { font-weight: 700; font-size: 16px; color: var(--black); margin-bottom: 8px; }
  .step p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

  /* REVIEWS */
  .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: all .2s; }
  .review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
  .review-stars { color: #F59E0B; font-size: 32px; letter-spacing: 2px; margin-bottom: 12px; }
  .review-text { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 10px; }
  .review-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: white; flex-shrink: 0; }
  .review-name { font-weight: 700; font-size: 16px; color: var(--black); }
  .review-role { font-size: 15px; color: var(--gray-500); }

  /* PRICING */
  .pricing-wrap { max-width: 820px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
  .pricing-top { background: var(--black); padding: 52px 56px; text-align: center; }
  .pricing-top h2 { color: var(--white); margin-bottom: 12px; }
  .pricing-top h2 span { color: var(--red); }
  .pricing-top p { color: rgba(255,255,255,.55); font-size: 16px; max-width: 460px; margin: 0 auto; line-height: 1.6; }
  .pricing-body { padding: 48px 56px; }
  .pricing-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
  .tier { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; text-align: center; transition: all .2s; }
  .tier:hover { border-color: var(--red); }
  .tier-type { font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
  .tier-price { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--red); line-height: 1; margin-bottom: 4px; letter-spacing: 1px; }
  .tier-note { font-size: 15px; color: var(--gray-500); }
  .pricing-note { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; font-size: 15px; color: var(--gray-500); line-height: 1.65; margin-bottom: 32px; }
  .pricing-note strong { color: var(--black); }
  .pricing-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

  /* FAQ */
  .faq-list { max-width: 740px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--black); gap: 16px; user-select: none; transition: color .2s; }
  .faq-q:hover { color: var(--red); }
  .faq-icon { width: 28px; height: 28px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--gray-500); flex-shrink: 0; transition: all .25s; }
  .faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: white; transform: rotate(45deg); }
  .faq-a { display: none; padding: 0 0 22px; font-size: 15px; color: var(--gray-500); line-height: 1.7; }
  .faq-item.open .faq-a { display: block; }

  /* CTA FINAL */
  .cta-final { background: var(--red); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
  .cta-final::before { content: ''; position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.06); pointer-events: none; }
  .cta-final::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 300px; height: 300px; border-radius: 50%; background: rgba(0,0,0,.1); pointer-events: none; }
  .cta-final h2 { color: var(--white); margin-bottom: 14px; }
  .cta-final p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 40px; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.65; }
  .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .btn-white { background: var(--white); color: var(--red); border: none; border-radius: var(--radius-sm); padding: 14px 32px; font-family: 'Manrope',sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
  .btn-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,.2); transform: translateY(-1px); }
  .btn-white-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); border-radius: var(--radius-sm); padding: 14px 32px; font-family: 'Manrope',sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
  .btn-white-outline:hover { border-color: white; background: rgba(255,255,255,.1); }

  /* FOOTER */
  footer { background: var(--black); padding: 56px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.65; margin-top: 12px; }
  .footer-links h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
  .footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,.7); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
  .footer-links a:hover { color: var(--red); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px; }
  .footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
  .footer-bottom a:hover { color: white; }

  /* ANIMATIONS */
  @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
  .hero-content > * { animation: fadeUp .6s ease both; }
  .hero-content > *:nth-child(1){animation-delay:.05s}
  .hero-content > *:nth-child(2){animation-delay:.15s}
  .hero-content > *:nth-child(3){animation-delay:.25s}
  .hero-content > *:nth-child(4){animation-delay:.35s}

  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* MOBILE */
  @media(max-width:900px){
    body{font-size:16px}
    .hero-grid{grid-template-columns:1fr;gap:40px} .hero-visual{display:none} .hero{padding:100px 0 56px}
    .nav-links{display:none}
    .stats-grid{grid-template-columns:1fr 1fr}
    .stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.1);padding-bottom:24px;margin-bottom:12px}
    .stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,.1)}
    .stat-item:last-child,.stat-item:nth-last-child(2):nth-child(odd){border-bottom:none}
    .segments-grid{grid-template-columns:1fr}
    .advantage-grid{grid-template-columns:1fr;gap:40px} .adv-visual{display:none}
    .features-grid{grid-template-columns:1fr}
    .feature-card.highlight{grid-column:span 1;grid-template-columns:1fr}
    .steps-grid{grid-template-columns:1fr;gap:36px} .steps-grid::before{display:none} .step{padding:0}
    .reviews-grid{grid-template-columns:1fr}
    .pricing-top,.pricing-body{padding:36px 24px} .pricing-tiers{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:1fr;gap:32px} .footer-bottom{flex-direction:column;text-align:center}
    section{padding:64px 0}
  }
  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none; transition: opacity .25s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }

  .modal {
    background: var(--white); border-radius: 20px;
    padding: 44px 40px; max-width: 480px; width: 100%;
    position: relative;
    transform: translateY(16px); transition: transform .25s;
    box-shadow: 0 24px 80px rgba(0,0,0,.2);
  }
  .modal-overlay.open .modal { transform: translateY(0); }

  .modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--gray-100); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--gray-500); transition: background .15s;
  }
  .modal-close:hover { background: var(--border); }

  .modal-logo { margin-bottom: 20px; }

  .modal h3 {
    font-weight: 800; font-size: 22px; color: var(--black);
    margin-bottom: 8px; line-height: 1.25;
  }

  .modal-sub {
    font-size: 14px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.55;
  }

  .modal-steps {
    display: flex; gap: 0; margin-bottom: 28px;
    background: var(--gray-50); border: 1px solid var(--border);
    border-radius: var(--radius-sm); overflow: hidden;
  }

  .modal-step {
    flex: 1; padding: 10px 8px; text-align: center;
    border-right: 1px solid var(--border); position: relative;
  }
  .modal-step:last-child { border-right: none; }

  .modal-step-num {
    width: 20px; height: 20px; background: var(--red); color: white;
    border-radius: 50%; font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 5px;
  }

  .modal-step-text { font-size: 10px; color: var(--gray-500); font-weight: 600; line-height: 1.3; }

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

  .form-label {
    display: block; font-size: 12px; font-weight: 700;
    color: var(--gray-700); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px;
  }

  .form-input {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--black);
    background: var(--white); outline: none; transition: border-color .2s;
    appearance: none;
  }
  .form-input:focus { border-color: var(--red); }
  .form-input::placeholder { color: var(--gray-300); }

  select.form-input { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

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

  .form-submit {
    width: 100%; padding: 15px;
    background: var(--red); color: white; border: none;
    border-radius: var(--radius-sm); font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 700; cursor: pointer;
    transition: background .18s, transform .18s;
    margin-top: 4px;
  }
  .form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

  .modal-tg {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 14px; font-size: 13px; color: var(--gray-500);
    text-decoration: none; transition: color .15s;
  }
  .modal-tg:hover { color: #2AABEE; }
  .modal-tg svg { color: #2AABEE; }

  .modal-success {
    text-align: center; padding: 20px 0;
    display: none;
  }
  .modal-success.show { display: block; }
  .modal-form.hide { display: none; }

  .success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: #e8faf0; display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 20px;
  }

  .modal-success h3 { font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
  .modal-success p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

  /* ── FLOATING WIDGET ── */
  .float-widget {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  }

  .float-menu {
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; pointer-events: none;
    transform: translateY(8px); transition: all .22s;
  }
  .float-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }

  .float-option {
    display: flex; align-items: center; gap: 10px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 100px; padding: 10px 18px 10px 12px;
    text-decoration: none; font-size: 14px; font-weight: 600; color: var(--black);
    box-shadow: 0 4px 16px rgba(0,0,0,.1); white-space: nowrap;
    transition: all .18s; cursor: pointer;
  }
  .float-option:hover { border-color: var(--red); color: var(--red); transform: translateX(-3px); }

  .float-option-icon {
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
  }

  .float-toggle {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--red); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(227,6,20,.4);
    transition: all .22s; position: relative;
  }
  .float-toggle:hover { background: var(--red-dark); transform: scale(1.05); }

  .float-toggle svg { transition: transform .22s; }
  .float-toggle.open svg.icon-chat { display: none; }
  .float-toggle.open svg.icon-close { display: block !important; }

  .float-pulse {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid rgba(227,6,20,.3);
    animation: ripple 2s infinite;
  }

  @keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  @media(max-width:480px) {
    .float-widget { bottom: 16px; right: 16px; }
    .modal { padding: 32px 20px; }
    .form-row { grid-template-columns: 1fr; }
  }

.form-errors {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(227, 6, 20, 0.28);
  border-radius: var(--radius-sm);
  background: #fff4f4;
  color: #8f1018;
  font-size: 13px;
  line-height: 1.5;
}

.form-errors ul {
  margin: 0;
  padding-left: 18px;
}

.form-input[aria-invalid='true'] {
  border-color: var(--red);
}

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

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
