/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: hsl(222,65%,14%); background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
img { max-width: 100%; display: block; }

:root {
  --primary: hsl(222,65%,30%);
  --primary-light: hsl(222,65%,95%);
  --bg: hsl(228,55%,97%);
  --about-bg: hsl(222,65%,24%);
  --text: hsl(222,65%,14%);
  --muted: hsl(220,18%,48%);
  --border: hsl(220,13%,90%);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media(min-width:768px){ .container { padding: 0 2rem; } }

/* ===== HEADER ===== */
#site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 1px 6px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
@media(min-width:768px){ .header-inner { height: 80px; } }
.logo-link { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
@media(min-width:768px){ .logo-img { height: 68px; } }
.desktop-nav { display: none; gap: 1.5rem; }
@media(min-width:768px){ .desktop-nav { display: flex; } }
.desktop-nav a { font-size: .875rem; font-weight: 500; color: var(--muted); transition: color .2s; padding: .25rem 0; border-bottom: 2px solid transparent; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); border-bottom-color: var(--primary); }

/* Burger */
.burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; width: 40px; height: 40px; }
@media(min-width:768px){ .burger { display: none; } }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; transform-origin: center; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { display: none; background: #fff; border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-link { padding: .9rem 1.25rem; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text); display: block; }
.mobile-link:last-child { border-bottom: none; }
.mobile-link:active { background: var(--primary-light); }

/* ===== HERO ===== */
.hero-section { background: var(--bg); padding: 2rem 0 2.5rem; }
@media(min-width:1024px){ .hero-section { padding: 5rem 0; } }
.hero-inner { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
@media(min-width:1024px){ .hero-inner { flex-direction: row; align-items: center; gap: 4rem; } }

.hero-text { flex: 1; text-align: center; }
@media(min-width:1024px){ .hero-text { text-align: left; } }
.hero-text h1 { font-size: 1.75rem; font-weight: 800; line-height: 1.15; color: var(--text); margin-bottom: 1rem; }
@media(min-width:480px){ .hero-text h1 { font-size: 2.1rem; } }
@media(min-width:768px){ .hero-text h1 { font-size: 2.75rem; } }
@media(min-width:1024px){ .hero-text h1 { font-size: 3.25rem; } }
.hero-highlight { color: var(--primary); }
.hero-sub { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
@media(min-width:1024px){ .hero-sub { margin-left: 0; margin-right: 0; font-size: .95rem; } }

/* Trust badges */
.trust-badges { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media(min-width:480px){ .trust-badges { flex-direction: row; justify-content: center; } }
@media(min-width:1024px){ .trust-badges { justify-content: flex-start; } }
.stars-box { display: flex; flex-direction: column; gap: .25rem; }
.stars { display: flex; align-items: center; gap: .2rem; }
.stars svg { width: 18px; height: 18px; }
.stars strong { margin-left: .4rem; font-weight: 700; color: var(--text); }
.stars-box p { font-size: .8rem; color: var(--muted); }
.sep { display: none; width: 1px; height: 36px; background: var(--border); }
@media(min-width:480px){ .sep { display: block; } }
.verified-badge { display: flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: .4rem 1rem; box-shadow: 0 1px 4px rgba(0,0,0,.06); font-size: .85rem; font-weight: 600; }
.verified-badge svg { width: 16px; height: 16px; color: #16a34a; }

/* Form card */
.form-card { width: 100%; background: #fff; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,.12); padding: 1.25rem; border: 1px solid rgba(0,0,0,.06); }
@media(min-width:480px){ .form-card { padding: 1.75rem; } }
@media(min-width:1024px){ .form-card { width: 440px; flex-shrink: 0; padding: 2rem; } }
.form-card h2 { font-size: 1rem; font-weight: 700; text-align: center; margin-bottom: 1.25rem; color: var(--text); line-height: 1.4; }
.field { margin-bottom: .75rem; }
.field input, .field select, .field textarea {
  width: 100%; height: 48px; padding: 0 1rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: #fff; font-size: 1rem; /* 16px — prevents iOS zoom */
  color: var(--text); outline: none; transition: border .2s;
  -webkit-appearance: none; appearance: none;
}
.field select { cursor: pointer; }
.field textarea { height: auto; padding: .75rem 1rem; resize: none; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(34,65,120,.1); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); font-size: .9rem; }

/* intl-tel-input overrides */
.phone-field .iti { width: 100%; }
.phone-field .iti__selected-dial-code { font-size: .875rem; }
#f-phone { height: 48px; font-size: 1rem; }

.btn-primary {
  display: block; width: 100%; height: 52px;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer; transition: opacity .2s, transform .1s;
}
.btn-primary:hover { opacity: .88; }
.btn-primary:active { transform: scale(.98); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

.form-msg { padding: .75rem 1rem; border-radius: 8px; font-size: .875rem; margin-bottom: .75rem; }
.form-msg.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.form-msg.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* ===== ABOUT ===== */
.about-section { background: var(--about-bg); color: #fff; padding: 2.5rem 0; }
@media(min-width:768px){ .about-section { padding: 5rem 0; } }
.about-inner { display: flex; flex-direction: column; gap: 2rem; }
@media(min-width:1024px){ .about-inner { flex-direction: row; align-items: flex-start; gap: 3rem; } }
.about-text { flex: 1; }
.about-text h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: .5rem; }
@media(min-width:768px){ .about-text h2 { font-size: 2.5rem; } }
.about-sub { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: hsl(222,65%,75%); margin-bottom: 1rem; }
.about-text p:last-child { color: hsl(220,30%,80%); line-height: 1.75; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; flex-shrink: 0; }
@media(min-width:1024px){ .stats-grid { width: 360px; } }
.stat-item { text-align: center; background: rgba(255,255,255,.06); border-radius: 12px; padding: 1rem .5rem; }
.stat-val { font-size: 1.75rem; font-weight: 900; color: #fff; }
@media(min-width:768px){ .stat-val { font-size: 2.5rem; } }
.stat-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: hsl(222,65%,75%); margin-top: .25rem; }

/* ===== PROBLEM ===== */
.problem-section { padding: 2.5rem 0; background: #fff; }
@media(min-width:768px){ .problem-section { padding: 5rem 0; } }
.problem-inner { display: flex; flex-direction: column; gap: 2rem; }
@media(min-width:1024px){ .problem-inner { flex-direction: row; align-items: center; gap: 3rem; } }
.problem-left { flex: 1; }
.section-tag { display: inline-block; padding: .25rem .75rem; border-radius: 999px; background: rgba(34,65,120,.1); color: var(--primary); font-size: .8rem; font-weight: 600; margin-bottom: 1rem; }
.section-tag.center { display: block; text-align: center; }
.problem-left h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: .75rem; line-height: 1.3; }
@media(min-width:768px){ .problem-left h2 { font-size: 2rem; } }
.problem-left p { color: var(--muted); margin-bottom: 1.25rem; }
.problem-left blockquote { border-left: 4px solid #ef4444; padding: .75rem 1rem; background: rgba(239,68,68,.05); font-style: italic; font-size: .95rem; border-radius: 0 8px 8px 0; }
.problem-right { flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.problem-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.problem-icon { background: rgba(239,68,68,.08); padding: .5rem; border-radius: 8px; flex-shrink: 0; }
.problem-icon svg { width: 22px; height: 22px; color: #ef4444; display: block; }
.problem-item p { margin: 0; padding-top: .2rem; font-weight: 500; font-size: .9rem; }

/* ===== WHY US ===== */
.whyus-section { padding: 2.5rem 0; background: #fff; }
@media(min-width:768px){ .whyus-section { padding: 5rem 0; } }
.section-heading { text-align: center; margin-bottom: 2rem; }
@media(min-width:768px){ .section-heading { margin-bottom: 3.5rem; } }
.section-heading h2 { font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--text); margin-bottom: .75rem; line-height: 1.3; }
@media(min-width:768px){ .section-heading h2 { font-size: 1.875rem; } }
.heading-bar { width: 60px; height: 4px; background: var(--primary); border-radius: 2px; margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:560px){ .cards-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .cards-grid { grid-template-columns: 1fr 1fr 1fr; } }
.card { padding: 1.25rem; border: 1px solid var(--border); border-radius: 16px; background: #fff; transition: box-shadow .2s; }
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
@media(min-width:768px){ .card { padding: 1.75rem; } }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon svg { width: 26px; height: 26px; color: var(--primary); display: block; }
.card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.card-num { color: var(--primary); font-size: .875rem; font-weight: 600; margin-right: .25rem; }
.card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ===== HOW WE HELP ===== */
.howwehelp-section { padding: 2.5rem 0; background: hsl(222,65%,97%); }
@media(min-width:768px){ .howwehelp-section { padding: 5rem 0; } }
.section-title { font-size: 1.15rem; font-weight: 700; text-align: center; max-width: 700px; margin: .75rem auto 2rem; color: var(--text); line-height: 1.4; }
@media(min-width:768px){ .section-title { font-size: 1.625rem; margin-bottom: 3rem; } }
.timeline { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.tl-item { display: flex; align-items: flex-start; gap: .875rem; }
.tl-num { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem; }
.tl-content { flex: 1; padding: .875rem 1rem; background: #fff; border: 1px solid var(--border); border-radius: 12px; font-size: .9rem; line-height: 1.6; }

/* ===== PROCESS ===== */
.process-section { padding: 2.5rem 0; background: #fff; }
@media(min-width:768px){ .process-section { padding: 5rem 0; } }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media(min-width:1024px){ .process-grid { grid-template-columns: 1fr 1fr 1fr; } }
.process-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
@media(min-width:768px){ .process-card { padding: 2rem; } }
.process-num { font-size: 3.5rem; font-weight: 900; color: rgba(34,65,120,.1); position: absolute; top: 1rem; right: 1.25rem; line-height: 1; }
.process-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; padding-right: 3.5rem; line-height: 1.35; }
.process-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 2.5rem 0; background: hsl(228,55%,97%); }
@media(min-width:768px){ .reviews-section { padding: 5rem 0; } }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  justify-items: center;
}
@media(min-width:560px){
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:900px){
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; max-width: 280px; }

.review-circle {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 6px 28px rgba(0,0,0,.18);
  transition: transform .3s, box-shadow .3s;
  width: min(220px, 58vw);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  margin-bottom: 1.25rem;
}
@media(min-width:560px){ .review-circle { width: min(200px, 35vw); } }
@media(min-width:900px){ .review-circle { width: min(230px, 26vw); } }

.review-card:hover .review-circle { transform: scale(1.04) translateZ(0); box-shadow: 0 10px 36px rgba(0,0,0,.25); }
.review-card:active .review-circle { transform: scale(.98) translateZ(0); }
.review-circle video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.2); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.review-card:hover .play-overlay { background: rgba(0,0,0,.42); }
.play-btn {
  width: 56px; height: 56px; background: rgba(34,65,120,.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,.35); transition: transform .2s, background .2s;
}
.review-card:hover .play-btn { transform: scale(1.1); background: var(--primary); }
.play-btn svg { width: 22px; height: 22px; margin-left: 4px; }

.review-stars { color: #f59e0b; font-size: 1.15rem; letter-spacing: .08em; margin-bottom: .4rem; }
.review-name { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .6rem; }
.review-quote { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: .75rem; font-style: italic; }
.review-recovered { font-size: .8rem; color: var(--muted); }
.review-recovered strong { color: #16a34a; font-weight: 700; font-size: .875rem; }

/* ===== FAQ ===== */
.faq-section { padding: 2.5rem 0; background: #fff; }
@media(min-width:768px){ .faq-section { padding: 5rem 0; } }
.faq-inner { max-width: 800px; }
.faq-list { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .9rem 1.25rem; background: none; border: none; cursor: pointer; text-align: left; font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.4; }
@media(min-width:768px){ .faq-q { font-size: 1rem; padding: 1.25rem 1.5rem; } }
.faq-q:hover { color: var(--primary); background: var(--bg); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-a { display: none; padding: 0 1.25rem 1rem; font-size: .875rem; color: var(--muted); line-height: 1.75; }
@media(min-width:768px){ .faq-a { padding: 0 1.5rem 1.25rem; } }
.faq-a.open { display: block; }

/* ===== FOOTER ===== */
.site-footer { background: #0f172a; color: #94a3b8; padding: 2.5rem 0; border-top: 1px solid #1e293b; }
@media(min-width:768px){ .site-footer { padding: 3.5rem 0; } }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
@media(min-width:768px){ .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; text-align: left; } }
.footer-left { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
@media(min-width:768px){ .footer-left { align-items: flex-start; } }
.footer-logo { height: 64px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-copy { font-size: .8rem; color: #64748b; }
.footer-addr { display: flex; align-items: flex-start; gap: .4rem; font-size: .8rem; color: #64748b; max-width: 260px; }
.footer-addr svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.iso-badges { display: flex; gap: 1rem; }
.iso-badge { display: flex; flex-direction: column; align-items: center; gap: .25rem; opacity: .65; }
.iso-badge img { width: 48px; height: 48px; object-fit: contain; filter: brightness(0) invert(1); }
.iso-badge span { font-size: .65rem; color: #64748b; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.5rem; font-size: .875rem; }
@media(min-width:768px){ .footer-links { justify-content: flex-end; } }
.footer-links a { color: #94a3b8; transition: color .2s; }
.footer-links a:hover { color: #fff; }
