
  :root {
    --teal: #20c4b2;
    --teal-d: #137a6e;
    --teal-l: #e6f7f5;
    --gold: #c9a84c;
    --gold-l: #fdf6e3;
    --dark: #0f1f1d;
    --mid: #2d4a47;
    --muted: #7a9995;
    --light: #f4faf9;
    --white: #ffffff;
    --danger: #e05252;
    --radius: 16px;
    --shadow: 0 8px 40px rgba(26,158,143,.13);
    --shadow-card: 0 2px 16px rgba(15,31,29,.08);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Noto Sans', sans-serif; background: var(--light); color: var(--dark); min-height: 100vh; overflow-x: hidden; }
  .hero-wrap { padding: 15px 11vw 0; background: var(--light); }
  .hero { background: linear-gradient(rgba(10,28,26,.55), rgba(10,28,26,.68)), url('https://static.tildacdn.com/stor6330-6162-4662-a633-393433373930/5e0189a16bf4bd01a0531553605e2718.jpg') center/cover no-repeat; color: var(--white); padding: 56px 24px 52px; text-align: center; border-radius: 24px; box-shadow: 0 12px 48px rgba(15,31,29,.22); }
  .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,.25); border: 1px solid rgba(32,196,178,.3); color: var(--teal); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
  .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 1.8s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
  .hero h1 { font-family: 'Noto Sans', sans-serif; font-size: clamp(28px, 6vw, 52px); line-height: 1.15; margin-bottom: 16px; }
  .hero h1 em { color: var(--teal); font-style: italic; }
  .hero-sub { font-size: 16px; color: white; max-width: 500px; margin: 0 auto 28px; line-height: 1.6; }
  .hero-stats { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
  .stat { display: flex; flex-direction: column; align-items: center; }
  .stat-num { font-family: 'Noto Sans', sans-serif; font-size: 26px; font-weight: 600; color: var(--teal); line-height: 1; }
  .stat-label { font-size: 11px; color: white; margin-top: 2px; text-transform: uppercase; letter-spacing: .05em; }
  .stat-divider { width: 1px; background: rgba(255,255,255,.15); height: 38px; }
  .page-body { max-width: 100%; margin: 0; padding: 30px 11vw 80px; }
  .form-card { background: var(--white); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
  .form-header { background: linear-gradient(90deg, var(--teal-l) 0%, var(--white) 100%); border-bottom: 1px solid rgba(26,158,143,.1); padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; }
  .form-title-small { font-size: 13px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .07em; }
  .step-counter { font-size: 12px; color: var(--muted); }
  .progress-wrap { height: 4px; background: rgba(26,158,143,.12); overflow: hidden; }
  .progress-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--gold)); border-radius: 0 4px 4px 0; transition: width .5s cubic-bezier(.4,0,.2,1); }
  .steps-wrap { padding: 32px 28px; }
  .step { display: none; animation: slideIn .4s cubic-bezier(.4,0,.2,1); }
  .step.active { display: block; }
  @keyframes slideIn { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
  .step-q { font-family: 'Noto Sans', sans-serif; font-size: 22px; line-height: 1.3; color: var(--dark); margin-bottom: 6px; }
  .step-hint { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
  .options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .options-grid.cols-1 { grid-template-columns: 1fr; }
  .opt-card { background: var(--light); border: 2px solid transparent; border-radius: var(--radius); padding: 16px 14px; cursor: pointer; transition: all .22s ease; display: flex; flex-direction: column; gap: 6px; text-align: left; -webkit-tap-highlight-color: transparent; }
  .opt-card:hover { border-color: var(--teal); background: var(--teal-l); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,158,143,.15); }
  .opt-card.selected { border-color: var(--teal); background: var(--teal-l); box-shadow: 0 0 0 3px rgba(26,158,143,.18); }
  .opt-icon { font-size: 24px; line-height: 1; }
  .opt-label { font-size: 14px; font-weight: 600; color: var(--dark); }
  .opt-sub { font-size: 12px; color: var(--muted); line-height: 1.4; }
  .loc-wrap { display: flex; flex-direction: column; gap: 12px; }
  .loc-input { width: 100%; padding: 14px 18px; border: 2px solid rgba(26,158,143,.2); border-radius: var(--radius); font-family: 'Noto Sans', sans-serif; font-size: 15px; color: var(--dark); background: var(--light); outline: none; transition: border-color .2s; }
  .loc-input:focus { border-color: var(--teal); background: var(--white); }
  .loc-input::placeholder { color: var(--muted); }
  .loc-hint { display: flex; align-items: flex-start; gap: 8px; background: var(--gold-l); border: 1px solid rgba(201,168,76,.3); border-radius: 10px; padding: 12px 14px; font-size: 12px; color: #7a6130; line-height: 1.5; }
  .summary-wrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .summary-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: var(--light); border-radius: 10px; border-left: 3px solid var(--teal); }
  .sum-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 2px; }
  .sum-value { font-size: 14px; font-weight: 600; color: var(--dark); }
  .sum-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
  .btn-wa { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: linear-gradient(135deg, #25d366 0%, #1db954 100%); color: var(--white); font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; padding: 18px 28px; border-radius: var(--radius); border: none; cursor: pointer; text-decoration: none; transition: all .22s ease; box-shadow: 0 6px 24px rgba(37,211,102,.35); letter-spacing: .02em; }
  .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.45); }
  .btn-wa:active { transform: translateY(0); }
  .wa-icon { width: 22px; height: 22px; }
  .btn-back { display: block; text-align: center; margin-top: 14px; font-size: 13px; color: var(--muted); cursor: pointer; background: none; border: none; font-family: inherit; transition: color .2s; }
  .btn-back:hover { color: var(--teal); }
  .restart-link { display: block; text-align: center; margin-top: 12px; font-size: 12px; color: var(--muted); cursor: pointer; background: none; border: none; font-family: inherit; text-decoration: underline; }
  .response-time { text-align: center; font-size: 12px; color: var(--muted); margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .below-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
  .info-block { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-card); }
  .info-block-icon { font-size: 24px; margin-bottom: 10px; }
  .info-block h3 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
  .info-block p { font-size: 12px; color: var(--muted); line-height: 1.6; }
  .faq-section { margin-top: 40px; }
  .faq-title { font-family: 'Noto Sans', sans-serif; font-size: 22px; color: var(--dark); margin-bottom: 16px; text-align: center; }
  .faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 10px; box-shadow: var(--shadow-card); overflow: hidden; }
  .faq-q { padding: 16px 20px; font-size: 14px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
  .faq-q::after { content: '+'; font-size: 20px; color: var(--teal); transition: transform .2s; }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; padding: 0 20px; font-size: 13px; color: var(--muted); line-height: 1.7; }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 16px; }
  .reviews-section { margin-top: 40px; }
  .reviews-title { font-family: 'Noto Sans', sans-serif; font-size: 22px; text-align: center; margin-bottom: 16px; }
  .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .review-card { background: var(--white); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-card); border-left: 3px solid var(--gold); }
  .review-stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
  .review-text { font-size: 13px; color: var(--mid); line-height: 1.6; font-style: italic; margin-bottom: 10px; }
  .review-author { font-size: 12px; font-weight: 600; color: var(--muted); }
  .sticky-cta { display: block; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid rgba(26,158,143,.12); padding: 12px 11vw env(safe-area-inset-bottom, 12px); z-index: 100; box-shadow: 0 -4px 20px rgba(15,31,29,.08); }
  .disclaimer-block { display: flex; gap: 14px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 20px 22px; margin-top: 28px; border-left: 3px solid rgba(26,158,143,.25); }
  .disclaimer-body { display: flex; flex-direction: column; gap: 8px; }
  .disclaimer-body p { font-size: 12px; color: var(--muted); line-height: 1.6; }
  .disclaimer-body strong { color: var(--dark); font-weight: 600; }
  .disclaimer-body a { color: var(--teal); text-decoration: underline; }
  .webhook-toast { position: fixed; bottom: 80px; right: 20px; background: var(--teal); color: var(--white); padding: 10px 18px; border-radius: 10px; font-size: 13px; font-weight: 600; opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 200; box-shadow: 0 4px 16px rgba(26,158,143,.3); }
  .webhook-toast.show { opacity: 1; }
  @media (max-width: 480px) {
    .steps-wrap { padding: 24px 18px; }
    .options-grid { grid-template-columns: 1fr; }
    .below-grid { grid-template-columns: 1fr; }
    .hero { padding: 24px 18px 28px; border-radius: 18px; }
    .hero-wrap { padding: 5px 12px 0; }
    .stat-divider { display: none; }
    .form-header { padding: 16px 18px; }
    .page-body { padding: 10px 16px 80px; }
    .sticky-cta { padding: 12px 20px env(safe-area-inset-bottom, 12px); }
  }
