:root {
  --bg: #0b1020;
  --bg2: #10172e;
  --card: #151d38;
  --line: #253055;
  --txt: #eaf0ff;
  --mut: #92a0c4;
  --pri: #4f7cff;
  --pri2: #7c5cff;
  --gold: #ffb02e;
  --wa: #25d366;
  --rad: 18px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Roboto", "Google Sans", "Segoe UI", system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--txt); line-height: 1.65; letter-spacing: .1px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }
.center { text-align: center; }
h1, h2, h3, .logo, .btn { font-family: "Roboto", "Google Sans", "Segoe UI", system-ui, sans-serif; }
h1, h2, h3 { letter-spacing: -.3px; }
h2 { font-size: 2.1rem; font-weight: 700; text-align: center; margin-bottom: 36px; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(11,16,32,.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.logo { font-weight: 800; font-size: 1.15rem; color: var(--txt); text-decoration: none; }
.logo span { color: var(--pri); }
.nav nav a { color: var(--mut); text-decoration: none; margin-left: 22px; font-size: .95rem; }
.nav nav a:hover { color: var(--txt); }

/* HERO */
@keyframes bgDrift { 0%, 100% { background-position: 50% -20%; } 50% { background-position: 50% -8%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes floatOrb { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-14px, 18px) scale(1.06); } }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(79,124,255,.45); } 50% { box-shadow: 0 0 0 10px rgba(79,124,255,0); } }

.hero {
  position: relative;
  padding: 70px 0 50px;
  text-align: center;
  background: radial-gradient(ellipse at 50% -20%, #24346b 0%, var(--bg) 60%);
  background-size: 100% 140%;
  animation: bgDrift 14s ease-in-out infinite;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 0; border-radius: 50%; filter: blur(60px); opacity: .35; pointer-events: none;
}
.hero::before { width: 320px; height: 320px; background: var(--pri); top: -80px; left: 8%; animation: floatOrb 9s ease-in-out infinite; }
.hero::after { width: 260px; height: 260px; background: var(--pri2); top: 40px; right: 10%; animation: floatOrb 11s ease-in-out infinite reverse; }
.hero > .container { position: relative; z-index: 1; }

.badge { display: inline-block; background: #1c2748; border: 1px solid var(--line); border-radius: 99px; padding: 6px 16px; font-size: .85rem; color: var(--mut); margin-bottom: 22px; opacity: 0; animation: fadeInUp .7s ease .05s forwards; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.15; font-weight: 800; opacity: 0; animation: fadeInUp .7s ease .15s forwards; }
.grad { background: linear-gradient(90deg, var(--pri), var(--pri2), #ff5c8a, var(--pri2), var(--pri)); background-size: 300% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradientShift 6s ease-in-out infinite; }
.sub { max-width: 640px; margin: 18px auto 34px; color: var(--mut); font-size: 1.1rem; opacity: 0; animation: fadeInUp .7s ease .28s forwards; }
.trust { margin-top: 14px; color: var(--mut); font-size: .85rem; opacity: 0; animation: fadeInUp .7s ease .55s forwards; }

/* SEARCH CARD */
.search-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--rad); padding: 22px; max-width: 860px; margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,.4); text-align: left; opacity: 0; animation: fadeInUp .7s ease .4s forwards; transition: border-color .2s, box-shadow .2s; }
.search-card:focus-within { border-color: var(--pri); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 3px rgba(79,124,255,.2); }
.search-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; }
.field label { display: block; font-size: .8rem; color: var(--mut); margin-bottom: 6px; font-weight: 600; letter-spacing: .3px; }
.field input, .field select { width: 100%; background: var(--bg2); border: 1px solid var(--line); border-radius: 10px; color: var(--txt); padding: 12px 14px; font-size: 1rem; outline: none; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field select:focus { border-color: var(--pri); box-shadow: 0 0 0 3px rgba(79,124,255,.15); }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2392a0c4'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%2392a0c4' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 36px; cursor: pointer;
}
.filters { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 14px; }
.filters summary { cursor: pointer; color: var(--mut); font-size: .92rem; user-select: none; }
.filter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin-top: 14px; }

/* BUTTONS */
.btn { border: none; border-radius: 10px; padding: 13px 22px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: transform .15s ease, filter .15s ease, box-shadow .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-primary { background: linear-gradient(90deg, var(--pri), var(--pri2)); color: #fff; box-shadow: 0 4px 18px rgba(79,124,255,.35); }
.btn-primary:hover { box-shadow: 0 8px 26px rgba(79,124,255,.5); }
#findBtn { animation: pulseGlow 2.6s ease-in-out infinite; }
#findBtn:hover, #findBtn:focus { animation: none; }
.btn-gold { background: var(--gold); color: #221600; box-shadow: 0 4px 18px rgba(255,176,46,.3); }
.btn-wa { background: var(--wa); color: #04220f; box-shadow: 0 4px 18px rgba(37,211,102,.3); }
.btn.sm { padding: 9px 16px; font-size: .9rem; }
.btn.wide { width: 100%; margin-top: 10px; }

/* LOCATION AUTOCOMPLETE */
.loc-field { position: relative; }
.suggest { position: absolute; top: 100%; left: 0; right: 0; z-index: 60; background: var(--bg2); border: 1px solid var(--pri); border-radius: 10px; margin-top: 4px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.suggest-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; border-bottom: 1px solid var(--line); }
.suggest-item:last-child { border-bottom: none; }
.suggest-item:hover, .suggest-item.active { background: rgba(79,124,255,.15); }
.s-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.s-main small { color: var(--mut); font-size: .75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-type { font-size: .7rem; font-weight: 700; color: var(--pri); background: rgba(79,124,255,.12); border: 1px solid rgba(79,124,255,.3); padding: 2px 8px; border-radius: 99px; white-space: nowrap; }
.picked { margin-top: 8px; font-size: .82rem; color: #7ee2a8; }
.picked span { color: var(--mut); }

/* MAP */
.map { height: 380px; border: 1px solid var(--line); border-radius: var(--rad); margin-bottom: 18px; z-index: 1; }
.leaflet-container { background: #0e1428; }
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: var(--card); color: var(--txt); }
.leaflet-popup-content a { color: var(--pri); }
.data-note { margin-top: 12px; color: var(--mut); font-size: .82rem; }

/* LOADING */
.loading { padding: 70px 0; }
.radar { position: relative; width: 110px; height: 110px; margin: 0 auto 20px; border-radius: 50%; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 2rem; overflow: hidden; }
.radar-sweep { position: absolute; inset: 0; background: conic-gradient(from 0deg, transparent 70%, rgba(79,124,255,.5)); animation: spin 1.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
#loadingText { color: var(--mut); }

/* RESULTS */
.results { padding: 40px 0 60px; }
.results-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.results-head h2 { margin: 0; font-size: 1.4rem; text-align: left; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--rad); }
table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 820px; }
th, td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--bg2); color: var(--mut); font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; position: sticky; top: 0; }
tr:hover td { background: rgba(79,124,255,.06); }
.locked { color: var(--mut); font-family: monospace; }
.pill { display: inline-block; padding: 2px 9px; border-radius: 99px; font-size: .75rem; font-weight: 700; }
.pill.no { background: rgba(255,92,138,.15); color: #ff8aab; }
.pill.na { color: var(--mut); }
td a { color: var(--pri); text-decoration: none; }
.unlock-strip { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 16px; background: linear-gradient(90deg, rgba(79,124,255,.12), rgba(124,92,255,.12)); border: 1px solid var(--line); border-radius: var(--rad); padding: 14px 18px; }

/* LOCKED-ROWS TEASER — the highest-intent moment in the whole page, make it impossible to miss */
@keyframes lockWiggle { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-12deg); } 75% { transform: rotate(12deg); } }
@keyframes ctaGlow { 0%, 100% { box-shadow: 0 4px 18px rgba(255,176,46,.35), 0 0 0 0 rgba(255,176,46,.5); } 50% { box-shadow: 0 4px 26px rgba(255,176,46,.55), 0 0 0 8px rgba(255,176,46,0); } }
@keyframes shimmerSweep { 0% { transform: translateX(-120%) skewX(-20deg); } 100% { transform: translateX(220%) skewX(-20deg); } }
.teaser-row td { padding: 0 !important; border-bottom: none !important; }
.teaser-cta {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  padding: 22px; margin: 4px 0;
  background: linear-gradient(90deg, rgba(255,176,46,.1), rgba(255,176,46,.04));
  border-top: 1px dashed rgba(255,176,46,.4); border-bottom: 1px dashed rgba(255,176,46,.4);
}
.teaser-lock { font-size: 1.8rem; animation: lockWiggle 2.2s ease-in-out infinite; transform-origin: top center; }
.teaser-copy { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.teaser-copy strong { font-size: 1.02rem; }
.teaser-copy span { color: var(--mut); font-size: .85rem; }
.pulse-cta { position: relative; overflow: hidden; animation: ctaGlow 1.8s ease-in-out infinite; }
.pulse-cta::after {
  content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  animation: shimmerSweep 2.6s ease-in-out infinite;
}
.pulse-cta:hover { animation: none; }

/* LANGUAGE SUGGESTION BANNER */
.lang-suggest { position: sticky; top: 0; z-index: 60; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; background: linear-gradient(90deg, var(--pri), var(--pri2)); color: #fff; padding: 10px 20px; font-size: .88rem; animation: fadeInUp .4s ease; }
.lang-suggest a.btn { padding: 6px 14px; }
.lang-suggest-close { background: none; border: none; color: #fff; opacity: .8; cursor: pointer; font-size: 1rem; }
.lang-suggest-close:hover { opacity: 1; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* SECTIONS */
.how, .who, .pricing, .faq { padding: 70px 0; }
.who { background: var(--bg2); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--rad); padding: 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.35); border-color: rgba(79,124,255,.4); }
.card .ic { font-size: 1.8rem; margin-bottom: 10px; transition: transform .25s ease; }
.card:hover .ic { transform: scale(1.15) rotate(-4deg); }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--mut); font-size: .93rem; }

/* PRICING */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 780px; margin: 0 auto; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--rad); padding: 34px 30px; position: relative; text-align: left; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border-color: rgba(79,124,255,.5); box-shadow: 0 0 40px rgba(79,124,255,.2); }
.price-card.featured:hover { box-shadow: 0 12px 60px rgba(79,124,255,.35); }
.price-card .tag { display: table; margin: 0 0 18px; background: linear-gradient(90deg, var(--pri), var(--pri2)); color: #fff; font-size: .7rem; font-weight: 700; padding: 6px 14px; border-radius: 99px; letter-spacing: .4px; white-space: nowrap; }
.price-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.price-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.price-old { text-decoration: line-through; color: var(--mut); font-size: 1.05rem; font-weight: 500; }
.price-save { background: rgba(255,176,46,.15); color: var(--gold); font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; letter-spacing: .3px; }
.price { font-size: 2.6rem; font-weight: 900; margin: 4px 0 20px; letter-spacing: -1px; }
.price span { font-size: .95rem; color: var(--mut); font-weight: 400; letter-spacing: 0; }
.price-card ul { list-style: none; margin-bottom: 24px; }
.price-card li { padding: 6px 0; color: var(--mut); font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.price-card .btn { width: 100%; }

/* FAQ */
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; margin-bottom: 10px; max-width: 760px; margin-left: auto; margin-right: auto; transition: border-color .2s ease, transform .2s ease; }
.faq details:hover { border-color: rgba(79,124,255,.4); }
.faq details[open] { border-color: var(--pri); }
.faq summary { cursor: pointer; font-weight: 500; }
.faq p { color: var(--mut); margin-top: 10px; font-size: .95rem; }

/* FOOTER */
footer { border-top: 1px solid var(--line); padding: 30px 0; text-align: center; color: var(--mut); font-size: .85rem; }
.foot-keywords { margin-top: 8px; font-size: .75rem; opacity: .6; }

/* MODAL */
.modal { position: fixed; inset: 0; background: rgba(5,8,18,.75); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal-box { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 34px; max-width: 440px; width: 100%; text-align: center; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.modal-close { position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--mut); font-size: 1.1rem; cursor: pointer; }
.modal-ic { font-size: 2.6rem; margin-bottom: 8px; }
.modal-box h3 { font-size: 1.35rem; margin-bottom: 6px; }
.modal-box p { color: var(--mut); font-size: .95rem; }
.or { color: var(--mut); margin: 12px 0 2px; font-size: .85rem; }
.modal-note { margin-top: 14px; font-size: .8rem !important; }

/* CONTENT PAGES (landing + blog) */
.page-hero { padding: 50px 0 10px; }
.breadcrumb { color: var(--mut); font-size: .85rem; margin-bottom: 14px; }
.breadcrumb a { color: var(--mut); }
.stat-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 22px 0 30px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--rad); padding: 18px 22px; min-width: 160px; }
.stat b { display: block; font-size: 1.8rem; color: var(--pri); }
.stat span { color: var(--mut); font-size: .85rem; }
.article { max-width: 760px; margin: 40px auto 70px; padding: 0 20px; }
.article h1 { font-size: 2rem; margin-bottom: 10px; }
.article .meta { color: var(--mut); font-size: .85rem; margin-bottom: 30px; }
.article h2 { text-align: left; font-size: 1.4rem; margin: 30px 0 12px; }
.article p, .article li { color: var(--mut); font-size: 1.02rem; margin-bottom: 14px; }
.article ul, .article ol { padding-left: 22px; margin-bottom: 14px; }
.article a { color: var(--pri); }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.related-links a { background: var(--card); border: 1px solid var(--line); border-radius: 99px; padding: 6px 14px; font-size: .82rem; color: var(--mut); text-decoration: none; }
.related-links a:hover { color: var(--txt); border-color: var(--pri); }
.index-list { max-width: 760px; margin: 0 auto; }
.index-list .card { margin-bottom: 14px; }
.index-list .card a { color: var(--txt); text-decoration: none; }
.index-list .card p { margin-top: 6px; }
.cta-strip { text-align: center; margin: 40px 0; }

@media (max-width: 720px) {
  .search-row { grid-template-columns: 1fr; }
  .nav nav a { margin-left: 12px; font-size: .85rem; }
}
