:root {
  color-scheme: light;
  --bg: #f6f8fc;
  --bg-soft: #eef3fb;
  --surface: rgba(255, 255, 255, .88);
  --surface-solid: #ffffff;
  --surface-2: #f7f9fd;
  --text: #151922;
  --text-soft: #343b49;
  --muted: #687083;
  --line: rgba(32, 40, 55, .13);
  --line-strong: rgba(32, 40, 55, .22);
  --primary: #405de6;
  --primary-hover: #3048c8;
  --cyan: #12b7d6;
  --violet: #8d5cf6;
  --pink: #ee4b8f;
  --orange: #ff8a3d;
  --green: #20ad76;
  --danger: #e24657;
  --shadow-sm: 0 12px 30px -24px rgba(28, 35, 48, .42);
  --shadow-md: 0 22px 58px -34px rgba(28, 35, 48, .42);
  --shadow-lg: 0 40px 95px -48px rgba(28, 35, 48, .52);
  --radius-sm: 16px;
  --radius: 25px;
  --radius-lg: 34px;
  --max: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090b11;
  --bg-soft: #10141d;
  --surface: rgba(21, 25, 35, .82);
  --surface-solid: #141923;
  --surface-2: #191f2b;
  --text: #f7f8fc;
  --text-soft: #d9ddea;
  --muted: #9ba4b8;
  --line: rgba(255, 255, 255, .105);
  --line-strong: rgba(255, 255, 255, .19);
  --primary: #7792ff;
  --primary-hover: #91a7ff;
  --cyan: #4fd8ef;
  --violet: #ad8aff;
  --pink: #ff78ae;
  --orange: #ffab71;
  --green: #49d39d;
  --shadow-sm: 0 14px 34px -24px rgba(0, 0, 0, .78);
  --shadow-md: 0 26px 64px -34px rgba(0, 0, 0, .86);
  --shadow-lg: 0 42px 100px -50px rgba(0, 0, 0, .95);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body,
button,
input,
select,
textarea { font-family: var(--font); }
body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 6% 2%, color-mix(in srgb, var(--cyan) 13%, transparent), transparent 27rem),
    radial-gradient(circle at 93% 8%, color-mix(in srgb, var(--violet) 12%, transparent), transparent 29rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 48%, var(--bg) 100%);
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: -.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .55s var(--ease), color .4s ease;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--text) 11%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 72%);
  opacity: .3;
}
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -3;
  pointer-events: none;
  background: conic-gradient(from 120deg at 50% 50%, transparent, color-mix(in srgb, var(--cyan) 7%, transparent), transparent 28%, color-mix(in srgb, var(--violet) 7%, transparent), transparent 58%, color-mix(in srgb, var(--pink) 6%, transparent), transparent);
  filter: blur(80px);
  animation: ambient-shift 22s linear infinite;
  opacity: .75;
}

::selection { background: color-mix(in srgb, var(--primary) 28%, transparent); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; outline: none; }
button { border: 0; background: none; }
img { max-width: 100%; }
.container { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s ease, border-color .3s ease, color .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.975); transition-duration: .12s; }
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #222936 0%, #0e1118 100%);
  box-shadow: 0 16px 30px -20px rgba(17, 24, 39, .8);
}
html[data-theme="dark"] .btn.primary {
  color: #10131a;
  background: linear-gradient(135deg, #ffffff, #dce5ff);
  box-shadow: 0 18px 34px -24px rgba(154, 176, 255, .7);
}
.btn.primary:hover { box-shadow: 0 22px 38px -22px rgba(17, 24, 39, .85); }
.btn.dark {
  color: var(--text);
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface-solid) 86%, transparent);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.btn.dark:hover { border-color: var(--line-strong); background: var(--surface-solid); }
.btn-xl { min-height: 58px; padding: 0 29px; font-size: 16px; }
.btn.wide { width: 100%; }

.theme-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: color-mix(in srgb, var(--surface-solid) 84%, transparent);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: transform .35s var(--ease), background-color .3s ease, border-color .3s ease;
}
.theme-toggle:hover { transform: translateY(-2px) rotate(8deg); border-color: var(--line-strong); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle.floating { position: fixed; top: 18px; right: 18px; z-index: 100; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  box-shadow: 0 12px 30px -30px rgba(20, 25, 35, .45);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  transition: background-color .35s ease, border-color .35s ease;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; min-width: max-content; }
.brand-logo { height: 42px; width: auto; display: block; }
.brand-logo.small { height: 31px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-solid) 72%, transparent);
  box-shadow: var(--shadow-sm);
}
.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: 9px; }

.hero {
  position: relative;
  padding: 102px 0 92px;
  overflow: clip;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr); gap: 68px; align-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: color-mix(in srgb, var(--surface-solid) 78%, transparent);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .01em;
}
.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--green) 14%, transparent);
}
.hero-content h1 {
  max-width: 690px;
  margin-bottom: 25px;
  color: var(--text);
  font-size: clamp(50px, 5.45vw, 78px);
  font-weight: 830;
  line-height: .98;
  letter-spacing: -.064em;
}
.hero-content h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--primary), var(--violet), var(--pink));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient-text 9s ease infinite;
}
.hero-divider {
  position: relative;
  width: min(390px, 78%);
  height: 4px;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line-strong) 60%, transparent);
}
.hero-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 220%;
  background: linear-gradient(90deg, var(--cyan), var(--primary), var(--violet), var(--pink), var(--orange), var(--cyan));
  filter: saturate(1.2);
  animation: rgb-line 5.5s linear infinite;
}
.hero-divider::after {
  content: "";
  position: absolute;
  inset: -7px 0;
  background: inherit;
  filter: blur(10px);
  opacity: .45;
}
.hero-desc { max-width: 570px; margin-bottom: 35px; color: var(--muted); font-size: 18px; line-height: 1.74; font-weight: 520; }
.hero-actions { display: flex; align-items: center; gap: 19px; flex-wrap: wrap; }
.trust-mini { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 680; }
.trust-mini .trust-icon { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: color-mix(in srgb, var(--green) 12%, transparent); }
.hero-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 27px; }
.hero-pills span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: color-mix(in srgb, var(--surface-solid) 65%, transparent); font-size: 12px; font-weight: 660; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 680px; perspective: 1200px; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: conic-gradient(from 30deg, color-mix(in srgb, var(--cyan) 27%, transparent), color-mix(in srgb, var(--violet) 22%, transparent), color-mix(in srgb, var(--pink) 18%, transparent), color-mix(in srgb, var(--cyan) 27%, transparent));
  filter: blur(35px);
  opacity: .42;
  animation: visual-orbit 16s linear infinite;
}
.iphone-frame {
  position: relative;
  z-index: 2;
  width: 330px;
  height: 670px;
  border: 12px solid #11151e;
  border-radius: 56px;
  background: var(--surface-solid);
  box-shadow: inset 0 0 0 2px #303744, 0 0 0 2px color-mix(in srgb, var(--line-strong) 70%, transparent), var(--shadow-lg);
  transform: rotate(-3.5deg);
  transition: transform .8s var(--ease), box-shadow .5s ease;
}
.iphone-frame:hover { transform: rotate(0deg) translateY(-9px); }
.dynamic-island { position: absolute; top: 11px; left: 50%; z-index: 20; width: 112px; height: 32px; border-radius: 20px; background: #07090d; transform: translateX(-50%); }
.iphone-screen {
  width: 100%;
  height: 100%;
  padding: 69px 20px 20px;
  overflow: hidden;
  position: relative;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--cyan) 13%, transparent), transparent 34%),
    linear-gradient(180deg, var(--surface-2), var(--surface-solid));
}
.network-ring {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin: 0 auto 23px;
  border: 1px solid color-mix(in srgb, var(--primary) 34%, transparent);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--cyan) 13%, transparent), transparent 68%);
  box-shadow: 0 18px 45px -31px color-mix(in srgb, var(--primary) 80%, transparent);
  animation: soft-pulse 5s ease-in-out infinite;
}
.network-ring img { width: 58px; height: 58px; }
.phone-title { text-align: center; color: var(--text); font-size: 22px; font-weight: 800; letter-spacing: -.035em; }
.phone-sub { margin: 3px 0 23px; text-align: center; color: var(--muted); font-size: 12px; font-weight: 580; }
.usage-card,
.mini {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-solid) 88%, transparent);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.usage-card { margin-bottom: 13px; padding: 16px; border-radius: 20px; }
.usage-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; color: var(--muted); font-size: 12px; font-weight: 620; }
.usage-top b { color: var(--text); font-size: 15px; font-weight: 780; }
.bar { height: 7px; overflow: hidden; border-radius: 999px; background: var(--line); }
.bar i { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--primary), var(--violet)); background-size: 180% 100%; animation: rgb-line 5s linear infinite; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini { padding: 12px; border-radius: 18px; text-align: center; }
.mini span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 10px; font-weight: 730; letter-spacing: .06em; text-transform: uppercase; }
.mini b { color: var(--text); font-size: 15px; font-weight: 770; }
.ui-popout {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 21px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface-solid) 82%, transparent);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px) saturate(1.2);
  font-size: 13px;
  font-weight: 750;
  transition: transform .5s var(--ease), border-color .3s ease;
}
.ui-popout:hover { transform: translateY(-5px) scale(1.025); border-color: var(--line-strong); }
.ui-popout .pop-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 14px; color: var(--green); background: color-mix(in srgb, var(--green) 12%, transparent); font-size: 18px; }
.ui-popout.one { top: 112px; left: -34px; animation: float-card 6s ease-in-out infinite; }
.ui-popout.two { right: -38px; bottom: 148px; animation: float-card 6.5s 1s ease-in-out infinite; }

.trust-rail { padding: 0 0 44px; }
.trust-rail-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
  box-shadow: var(--shadow-md);
}
.trust-item { min-height: 92px; padding: 19px 21px; background: color-mix(in srgb, var(--surface-solid) 90%, transparent); }
.trust-item strong { display: block; color: var(--text); font-size: 15px; font-weight: 780; }
.trust-item span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 550; }

section { position: relative; padding: 82px 0; }
section:nth-of-type(even):not(.hero) { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface-solid) 48%, transparent), transparent); }
.section-head { max-width: 660px; margin-bottom: 42px; }
.section-kicker { margin-bottom: 11px; color: var(--primary); font-size: 12px; font-weight: 790; letter-spacing: .12em; text-transform: uppercase; }
.section-title { margin-bottom: 15px; color: var(--text); font-size: clamp(31px, 4vw, 46px); font-weight: 810; line-height: 1.08; letter-spacing: -.048em; }
.section-desc { color: var(--muted); font-size: 16px; line-height: 1.7; font-weight: 500; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx) var(--my), color-mix(in srgb, var(--primary) 7%, transparent), transparent 34%),
    var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px) saturate(1.08);
  transition: transform .6s var(--ease), box-shadow .45s var(--ease), border-color .35s ease, background-color .35s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.38), transparent 28%);
  opacity: .45;
}
html[data-theme="dark"] .card::before { opacity: .06; }
.card > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--primary) 31%, var(--line)); box-shadow: var(--shadow-lg); }
.iconbox { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(135deg, color-mix(in srgb, var(--cyan) 15%, var(--surface-solid)), color-mix(in srgb, var(--violet) 12%, var(--surface-solid))); box-shadow: var(--shadow-sm); font-size: 23px; }
.card h3 { margin-bottom: 10px; color: var(--text); font-size: 20px; font-weight: 780; letter-spacing: -.025em; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.68; }

.timeline { display: grid; gap: 13px; }
.step { display: flex; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 21px; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), border-color .3s ease; }
.step:hover { transform: translateX(6px); border-color: var(--line-strong); }
.step b { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 39px; border: 1px solid var(--line); border-radius: 14px; color: var(--text); background: var(--surface-2); font-weight: 780; }
.step strong { display: block; margin-bottom: 3px; color: var(--text); font-size: 15px; font-weight: 760; }
.step span { color: var(--muted); font-size: 13px; }

.plan { display: flex; flex-direction: column; min-height: 100%; padding-top: 34px; }
.plan.featured { border-color: color-mix(in srgb, var(--primary) 44%, var(--line)); box-shadow: 0 30px 75px -46px color-mix(in srgb, var(--primary) 62%, transparent); }
.plan.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan), var(--primary), var(--violet), var(--pink));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .8;
}
.plan-badge { align-self: flex-start; display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px; margin-bottom: 20px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--surface-2); font-size: 11px; font-weight: 730; }
.popular { position: absolute; top: 16px; right: 16px; z-index: 4; padding: 6px 11px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--violet)); box-shadow: 0 12px 25px -17px var(--violet); font-size: 10px; font-weight: 790; letter-spacing: .02em; }
.price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 22px; color: var(--text); }
.price b { font-size: 47px; font-weight: 820; line-height: 1; letter-spacing: -.065em; }
.price span { color: var(--muted); font-size: 14px; font-weight: 620; }
.features { display: grid; flex-grow: 1; gap: 11px; margin-bottom: 27px; list-style: none; }
.features li { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; font-weight: 570; }
.features li::before { content: "✓"; width: 20px; height: 20px; display: inline-grid; place-items: center; flex: 0 0 20px; border-radius: 50%; color: var(--green); background: color-mix(in srgb, var(--green) 13%, transparent); font-size: 11px; font-weight: 850; }

.cover-wrap { display: grid; grid-template-columns: .82fr 1.35fr; gap: 22px; align-items: stretch; }
.search-box { display: flex; gap: 10px; margin-top: 22px; }
.input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: var(--text);
  background: var(--surface-solid);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), var(--shadow-sm);
  font-size: 14px;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.input:focus { border-color: color-mix(in srgb, var(--primary) 65%, transparent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 14%, transparent), var(--shadow-sm); }
.input::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); }
#kapsonuc { min-height: 24px; margin-top: 12px; color: var(--green); font-size: 13px; font-weight: 700; }
.map-shell { position: relative; min-height: 450px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 27px; background: var(--surface-2); box-shadow: var(--shadow-md); }
#mapTR { width: 100%; height: 450px; z-index: 1; }
.leaflet-container { background: var(--surface-2); font-family: var(--font); }
.map-fallback { position: absolute; inset: 0; z-index: 2; display: none; align-items: center; justify-content: center; padding: 28px; text-align: center; color: var(--muted); background: var(--surface-2); font-weight: 650; }
.map-shell.map-error .map-fallback { display: flex; }
.legend { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 22px; color: var(--muted); font-size: 12px; font-weight: 620; }
.dot { width: 9px; height: 9px; display: inline-block; margin-right: 6px; border-radius: 50%; }
.dot.green { background: var(--green); box-shadow: 0 0 12px color-mix(in srgb, var(--green) 56%, transparent); }
.dot.cyan { background: var(--cyan); box-shadow: 0 0 12px color-mix(in srgb, var(--cyan) 56%, transparent); }

.app-card { display: flex; align-items: center; gap: 22px; }
.app-logo { width: 80px; height: 80px; display: grid; place-items: center; flex: 0 0 80px; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: var(--surface-solid); box-shadow: var(--shadow-md); }
.app-logo img { width: 100%; height: 100%; padding: 8px; border-radius: 24px; object-fit: cover; }
.app-platform { display: inline-flex; margin-bottom: 7px; color: var(--primary); font-size: 11px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }

details { padding: 18px 0; border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--text); cursor: pointer; list-style: none; font-size: 15px; font-weight: 710; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); transition: transform .4s var(--ease), color .3s ease; }
details[open] summary::after { transform: rotate(45deg); color: var(--text); }
details p { padding-top: 13px; color: var(--muted); font-size: 13px; animation: details-in .45s var(--ease); }

footer { padding: 38px 0; border-top: 1px solid var(--line); color: var(--muted); background: color-mix(in srgb, var(--surface-solid) 72%, transparent); font-size: 13px; font-weight: 560; backdrop-filter: blur(16px); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { transition: color .25s ease, transform .25s ease; }
.footer-links a:hover { color: var(--text); transform: translateY(-1px); }

.motion-ready .reveal-item { opacity: 0; transform: translateY(24px) scale(.985); }
.motion-ready .reveal-item.is-visible { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.page-enter { animation: page-enter .7s var(--ease) both; }

@keyframes ambient-shift { to { transform: rotate(360deg) scale(1.08); } }
@keyframes gradient-text { 0%,100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } }
@keyframes rgb-line { to { transform: translateX(-54%); } }
@keyframes visual-orbit { to { transform: rotate(360deg); } }
@keyframes soft-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.045); } }
@keyframes float-card { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
@keyframes details-in { from { opacity: 0; transform: translateY(-7px); } }
@keyframes page-enter { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .hero { padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero-content { order: 2; }
  .hero-eyebrow { margin-inline: auto; }
  .hero-content h1, .hero-desc { margin-inline: auto; }
  .hero-divider { margin-inline: auto; }
  .hero-actions, .hero-pills { justify-content: center; }
  .hero-visual { order: 1; min-height: 610px; }
  .trust-rail-inner { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .cover-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .topbar { padding: 9px 0; }
  .nav { gap: 8px; }
  .brand-logo { height: 31px; max-width: 132px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn { min-height: 36px; padding: 0 11px; font-size: 11px; }
  .theme-toggle { width: 36px; height: 36px; flex-basis: 36px; }
  .theme-toggle svg { width: 17px; height: 17px; }
  .hero { padding: 14px 0 52px; }
  .hero-grid { gap: 12px; }
  .hero-visual { min-height: 475px; margin-top: -8px; }
  .hero-visual::before { width: 330px; height: 330px; }
  .iphone-frame { width: 260px; height: 526px; border-width: 10px; border-radius: 45px; transform: scale(.89) rotate(-3deg); }
  .iphone-screen { padding: 58px 16px 16px; border-radius: 35px; }
  .dynamic-island { width: 89px; height: 26px; }
  .network-ring { width: 91px; height: 91px; margin-bottom: 16px; }
  .network-ring img { width: 48px; height: 48px; }
  .phone-title { font-size: 19px; }
  .phone-sub { margin-bottom: 16px; }
  .ui-popout { padding: 11px 13px; border-radius: 17px; font-size: 11px; }
  .ui-popout .pop-icon { width: 31px; height: 31px; border-radius: 11px; }
  .ui-popout.one { top: 56px; left: -2px; }
  .ui-popout.two { right: -2px; bottom: 67px; }
  .hero-eyebrow { margin-bottom: 17px; }
  .hero-content h1 { margin-bottom: 21px; font-size: 41px; line-height: 1.01; }
  .hero-desc { margin-bottom: 28px; font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-actions .btn { width: 100%; }
  .hero-pills { margin-top: 22px; }
  .trust-rail { padding-bottom: 22px; }
  .trust-rail-inner { grid-template-columns: 1fr 1fr; border-radius: 21px; }
  .trust-item { min-height: 82px; padding: 15px; }
  .trust-item strong { font-size: 13px; }
  .trust-item span { font-size: 11px; }
  section { padding: 58px 0; }
  .section-head { margin-bottom: 30px; }
  .section-title { font-size: 32px; }
  .card { padding: 23px; border-radius: 22px; }
  .plan { padding-top: 31px; }
  .search-box { flex-direction: column; }
  .search-box .btn { width: 100%; }
  .map-shell, #mapTR { height: 360px; min-height: 360px; }
  .app-card { align-items: flex-start; gap: 16px; }
  .app-logo { width: 67px; height: 67px; flex-basis: 67px; border-radius: 21px; }
  .app-logo img { border-radius: 20px; }
  .footer-grid { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready .reveal-item { opacity: 1; transform: none; }
}
body.is-leaving { opacity: 0; transform: translateY(7px); transition: opacity .22s ease, transform .22s ease; }

/* =========================================================
   HILEMCELL REVISION 2 — viewport, logo and footer stability
   ========================================================= */
html {
  min-height: 100%;
  background-color: var(--bg);
  overscroll-behavior-y: none;
}
body {
  min-height: 100vh;
  min-height: 100dvh;
  overscroll-behavior-y: none;
}
body:not(.auth-body) {
  display: flex;
  flex-direction: column;
}
body > main {
  width: 100%;
  flex: 1 0 auto;
}
footer {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 100%;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-solid) 78%, transparent), var(--surface-solid));
  box-shadow: 0 -20px 55px -50px rgba(15, 23, 42, .45);
}
.brand-logo,
html[data-theme="dark"] .brand-logo {
  filter: none !important;
}
@supports (-webkit-touch-callout: none) {
  html,
  body { background-color: var(--bg); }
}

/* =========================================================
   HILEMCELL REVISION 3 — stable viewport + compact mobile UI
   ========================================================= */
html,
body {
  background-color: var(--bg) !important;
}
html {
  min-height: 100%;
  min-height: 100dvh;
  overscroll-behavior-y: none;
}
body {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 6% 2%, color-mix(in srgb, var(--cyan) 13%, transparent), transparent 27rem),
    radial-gradient(circle at 93% 8%, color-mix(in srgb, var(--violet) 12%, transparent), transparent 29rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 48%, var(--bg) 100%) !important;
  overscroll-behavior-y: none;
}
body::before { z-index: -1 !important; }
body::after { z-index: -2 !important; }
.page-enter { animation: hc-page-fade .55s ease both !important; }
body.is-leaving { opacity: 0; transform: none !important; transition: opacity .2s ease !important; }
@keyframes hc-page-fade { from { opacity: 0; } to { opacity: 1; } }

/* Gemini-inspired multicolor divider. */
.hero-divider {
  height: 5px !important;
  background: color-mix(in srgb, var(--line) 72%, transparent) !important;
  box-shadow: 0 8px 24px -12px color-mix(in srgb, var(--primary) 60%, transparent);
}
.hero-divider::before,
.hero-divider::after {
  background: linear-gradient(90deg,
    #4285f4 0%,
    #34a853 13%,
    #fbbc05 27%,
    #ff8a00 40%,
    #ea4335 54%,
    #ff4f81 67%,
    #a142f4 81%,
    #4285f4 100%) !important;
  background-size: 300% 100% !important;
  animation: hc-gemini-divider 7s linear infinite !important;
}
.hero-divider::before { width: 100% !important; }
.hero-divider::after { inset: -8px 0 !important; filter: blur(11px) saturate(1.25) !important; opacity: .38 !important; }
@keyframes hc-gemini-divider { to { background-position: -300% 0; } }

@media (max-width: 680px) {
  section { padding: 43px 0 !important; }
  .section-head { margin-bottom: 22px !important; }
  .section-title { font-size: 28px !important; line-height: 1.06 !important; }
  .section-desc { font-size: 13px !important; line-height: 1.52 !important; }

  /* Feature cards: one compact horizontal row. */
  .feature-strip,
  .plan-strip,
  .compact-timeline {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 11px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 3px 2px 10px !important;
    margin-right: calc((100vw - 100%) / -2) !important;
    padding-right: 18px !important;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .feature-strip::-webkit-scrollbar,
  .plan-strip::-webkit-scrollbar,
  .compact-timeline::-webkit-scrollbar { display: none; }

  .feature-card {
    flex: 0 0 min(78vw, 315px) !important;
    min-height: 112px !important;
    display: grid !important;
    grid-template-columns: 43px minmax(0, 1fr) !important;
    grid-template-rows: auto 1fr !important;
    align-content: center !important;
    column-gap: 13px !important;
    row-gap: 3px !important;
    padding: 16px !important;
    border-radius: 20px !important;
    scroll-snap-align: start;
  }
  .feature-card .iconbox {
    grid-row: 1 / 3 !important;
    width: 43px !important;
    height: 43px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    font-size: 19px !important;
  }
  .feature-card h3 { margin: 0 !important; font-size: 15px !important; line-height: 1.2 !important; }
  .feature-card p {
    margin: 0 !important;
    font-size: 11.5px !important;
    line-height: 1.42 !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  /* Steps: compact horizontal cards. */
  .compact-timeline .step {
    flex: 0 0 min(75vw, 300px) !important;
    min-height: 102px !important;
    padding: 15px !important;
    gap: 11px !important;
    border-radius: 19px !important;
    scroll-snap-align: start;
  }
  .compact-timeline .step b {
    width: 35px !important;
    height: 35px !important;
    flex-basis: 35px !important;
    border-radius: 12px !important;
  }
  .compact-timeline .step strong { font-size: 14px !important; }
  .compact-timeline .step span {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  /* Plans: smaller, swipeable and single-row. */
  .plan-strip .plan {
    flex: 0 0 min(79vw, 310px) !important;
    min-height: auto !important;
    padding: 20px 18px 18px !important;
    border-radius: 22px !important;
    scroll-snap-align: start;
  }
  .plan-strip .popular { top: 12px !important; right: 12px !important; padding: 5px 9px !important; }
  .plan-strip .plan-badge { margin-bottom: 12px !important; }
  .plan-strip .plan h3 { margin-bottom: 9px !important; font-size: 18px !important; }
  .plan-strip .price { margin-bottom: 14px !important; }
  .plan-strip .price b { font-size: 36px !important; }
  .plan-strip .features {
    grid-template-columns: 1fr 1fr !important;
    gap: 7px 10px !important;
    margin-bottom: 17px !important;
  }
  .plan-strip .features li { gap: 6px !important; font-size: 10.5px !important; line-height: 1.25 !important; }
  .plan-strip .features li::before { width: 17px !important; height: 17px !important; flex-basis: 17px !important; }
  .plan-strip .btn { min-height: 42px !important; font-size: 12px !important; }

  /* Coverage: compact controls and map. */
  #kapsama .section-head { margin-bottom: 18px !important; }
  .compact-cover-wrap { gap: 13px !important; }
  .compact-cover-wrap > .card { padding: 17px !important; border-radius: 20px !important; }
  .compact-cover-wrap > .card h3 { font-size: 17px !important; margin-bottom: 4px !important; }
  .compact-cover-wrap .search-box {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }
  .compact-cover-wrap .search-box .input { min-height: 43px !important; border-radius: 14px !important; font-size: 12px !important; padding-inline: 13px !important; }
  .compact-cover-wrap .search-box .btn { width: auto !important; min-height: 43px !important; padding-inline: 14px !important; font-size: 11px !important; }
  .compact-cover-wrap .legend { margin-top: 13px !important; gap: 9px !important; font-size: 10.5px !important; }
  .compact-cover-wrap .map-shell,
  .compact-cover-wrap #mapTR { height: 265px !important; min-height: 265px !important; border-radius: 20px !important; }
}
@media (hover: none) {
  .card:hover,
  .step:hover { transform: none !important; }
}

/* =========================================================
   HILEMCELL REVISION 4 — five-plan pricing
   ========================================================= */
.plan-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.plan-strip .plan {
  padding: 26px 20px 21px;
  border-radius: 24px;
}
.plan-location {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  margin: -10px 0 14px;
  border: 1px solid color-mix(in srgb, var(--green) 22%, var(--line));
  border-radius: 999px;
  color: color-mix(in srgb, var(--green) 82%, var(--text));
  background: color-mix(in srgb, var(--green) 9%, transparent);
  font-size: 10px;
  font-weight: 760;
  white-space: nowrap;
}
.plan-strip .price b { font-size: clamp(36px, 3.4vw, 45px); }
.plan-strip .features { gap: 9px; }
.plan-strip .features li { font-size: 12px; }
@media (max-width: 1120px) and (min-width: 681px) {
  .plan-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .plan-strip .plan { flex-basis: min(76vw, 292px) !important; }
  .plan-location { margin-top: -7px; margin-bottom: 10px; }
}


/* =========================================================
   HILEMCELL REVISION 5 — RGB details, map and operation flows
   ========================================================= */

/* The highlighted hero word continuously moves through the full Gemini spectrum. */
.hero-content h1 span {
  color: transparent !important;
  background-image: linear-gradient(90deg,
    #4285f4 0%, #34a853 15%, #fbbc05 30%, #ff8a00 44%,
    #ea4335 58%, #ff4f81 70%, #a142f4 84%, #4285f4 100%) !important;
  background-size: 320% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  animation: hc-waiting-rgb 5.5s linear infinite !important;
}
@keyframes hc-waiting-rgb { to { background-position: -320% 0; } }

/* Thin, calm RGB edge around the trust rail. */
.trust-rail-inner {
  border: 1px solid transparent !important;
  background:
    linear-gradient(var(--line), var(--line)) padding-box,
    linear-gradient(115deg, rgba(66,133,244,.65), rgba(52,168,83,.5), rgba(251,188,5,.55), rgba(234,67,53,.55), rgba(161,66,244,.6), rgba(66,133,244,.65)) border-box !important;
  background-size: 100% 100%, 260% 100% !important;
  animation: hc-trust-edge 11s linear infinite;
  box-shadow: 0 0 24px -18px rgba(66,133,244,.55), var(--shadow-md) !important;
}
@keyframes hc-trust-edge { to { background-position: 0 0, -260% 0; } }

/* Leaflet overlays remain transparent in light mode; SVG rendering prevents black canvas artifacts. */
#mapTR,
.leaflet-container,
.leaflet-map-pane,
.leaflet-overlay-pane,
.leaflet-overlay-pane svg,
.leaflet-overlay-pane canvas {
  background-color: transparent !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
html:not([data-theme="dark"]) .map-shell,
html:not([data-theme="dark"]) #mapTR,
html:not([data-theme="dark"]) .leaflet-container {
  background: #eef3f8 !important;
}

/* Four compact feature tiles; mobile uses a fixed 2 x 2 grid instead of sideways scrolling. */
.feature-strip { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 14px !important; }
.feature-strip .feature-card { padding: 19px 17px !important; border-radius: 21px !important; }
.feature-strip .feature-card .iconbox { margin-bottom: 13px; }
.feature-strip .feature-card h3 { font-size: 16px; }
.feature-strip .feature-card p { font-size: 12px; line-height: 1.48; }
@media (max-width: 900px) and (min-width: 681px) {
  .feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 680px) {
  .feature-strip {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    overflow: visible !important;
    margin-right: 0 !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
  }
  .feature-strip .feature-card {
    min-width: 0 !important;
    min-height: 126px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 13px !important;
    border-radius: 18px !important;
  }
  .feature-strip .feature-card .iconbox {
    width: 37px !important;
    height: 37px !important;
    flex: 0 0 37px !important;
    margin: 0 0 9px !important;
    border-radius: 12px !important;
    font-size: 17px !important;
  }
  .feature-strip .feature-card h3 { margin: 0 0 5px !important; font-size: 13px !important; line-height: 1.17 !important; }
  .feature-strip .feature-card p {
    margin: 0 !important;
    font-size: 10.5px !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: 3 !important;
  }
}

/* Generic full-page operation screen used by downloads and secure logout. */
.operation-processing[hidden] { display: none !important; }
.operation-processing {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, color-mix(in srgb, var(--cyan) 18%, transparent), transparent 31rem),
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--violet) 18%, transparent), transparent 30rem),
    color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  opacity: 0;
  transform: translateZ(0);
  transition: opacity .28s ease;
}
.operation-processing.is-visible { opacity: 1; }
.operation-processing-panel {
  width: min(410px, calc(100vw - 36px));
  max-height: calc(100dvh - 36px);
  overflow: auto;
  padding: 30px 26px 24px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 30px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface-solid) 95%, transparent), color-mix(in srgb, var(--surface) 90%, transparent)) padding-box,
    linear-gradient(115deg, #4285f4, #34a853, #fbbc05, #ff8a00, #ea4335, #a142f4, #4285f4) border-box;
  box-shadow: 0 35px 90px -46px rgba(0,0,0,.85), 0 0 42px -30px rgba(66,133,244,.82);
  transform: translateY(12px) scale(.97);
  transition: transform .4s var(--ease);
}
.operation-processing.is-visible .operation-processing-panel { transform: none; }
.operation-orbit { position: relative; width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 18px; }
.operation-orbit > i { position: absolute; inset: 0; border: 3px solid color-mix(in srgb, var(--line) 72%, transparent); border-top-color: #4285f4; border-right-color: #fbbc05; border-bottom-color: #ea4335; border-radius: 50%; animation: hc-operation-spin 1s linear infinite; }
.operation-orbit > span { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 20px; background: color-mix(in srgb, var(--surface-solid) 92%, transparent); box-shadow: var(--shadow-sm); }
.operation-orbit img { width: 38px; height: 38px; border-radius: 12px; }
@keyframes hc-operation-spin { to { transform: rotate(360deg); } }
.operation-kicker { margin-bottom: 7px; color: var(--primary); font-size: 10px; font-weight: 850; letter-spacing: .14em; }
.operation-processing-panel h2 { margin: 0 0 8px; color: var(--text); font-size: 24px; line-height: 1.08; letter-spacing: -.04em; }
.operation-processing-panel > p:not(.operation-kicker) { min-height: 40px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.operation-progress { height: 6px; margin: 19px 0 15px; overflow: hidden; border-radius: 999px; background: color-mix(in srgb, var(--line) 80%, transparent); }
.operation-progress i { display: block; width: 18%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ff8a00, #ea4335, #a142f4); background-size: 260% 100%; transition: width .5s var(--ease); animation: hc-operation-flow 3.5s linear infinite; }
.operation-processing[data-step="2"] .operation-progress i { width: 57%; }
.operation-processing[data-step="3"] .operation-progress i { width: 100%; }
@keyframes hc-operation-flow { to { background-position: -260% 0; } }
.operation-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.operation-steps span { min-height: 34px; display: grid; place-items: center; padding: 5px 6px; border: 1px solid var(--line); border-radius: 11px; color: var(--muted); background: color-mix(in srgb, var(--surface-2) 70%, transparent); font-size: 9.5px; font-weight: 750; }
.operation-steps span.is-active,
.operation-steps span.is-done { color: var(--text); border-color: color-mix(in srgb, var(--primary) 34%, var(--line)); background: color-mix(in srgb, var(--primary) 10%, var(--surface-2)); }
.operation-steps span.is-done::before { content: "✓ "; color: var(--green); }
body.operation-is-processing { overflow: hidden !important; }
@media (max-width: 560px) {
  .operation-processing { padding: max(14px, env(safe-area-inset-top)) 14px max(14px, env(safe-area-inset-bottom)); }
  .operation-processing-panel { width: min(360px, 100%); padding: 25px 18px 20px; border-radius: 25px; }
  .operation-processing-panel h2 { font-size: 21px; }
}
