/* ============================================================
   COUNTDOWN APP – STYLESHEET
   countdown.mikas.at | MIKAS ISP Werbe GmbH
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === CUSTOM PROPERTIES === */
:root {
  --c-primary:    #333333;
  --c-dark:       #1F1F1F;
  --c-darker:     #141414;
  --c-orange:     #FF7007;
  --c-orange-dim: rgba(255,112,7,0.12);
  --c-blue:       #14A9C7;
  --c-light:      #F5F5F5;
  --c-white:      #FFFFFF;
  --c-text:       #202020;
  --c-muted:      #666666;
  --c-border:     #E2E2E2;
  --c-border-dk:  #2D2D2D;

  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-w:  1120px;
  --px:     clamp(1.25rem, 5vw, 2.5rem);
  --sec-py: clamp(56px, 8vw, 96px);

  --r:    16px;
  --r-sm: 10px;
  --r-xs: 6px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 28px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 56px rgba(0,0,0,0.18);
  --shadow-or:  0 4px 24px rgba(255,112,7,0.28);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t:    240ms;
  --t-lg: 480ms;
}

/* === BASE RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--c-orange);
  text-decoration: none;
  transition: color var(--t) var(--ease);
}
a:hover { color: #d95e00; }
a:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* === UTILITY === */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-text);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-title--white { color: #fff; }

.section-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--c-muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-sub--white { color: rgba(255,255,255,0.62); }

.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  min-height: 52px;
  line-height: 1.2;
}

.btn-primary {
  background: var(--c-orange);
  color: #fff;
  border-color: var(--c-orange);
  box-shadow: var(--shadow-or);
}
.btn-primary:hover {
  background: #d95e00;
  border-color: #d95e00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,112,7,0.38);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.btn-light {
  background: #fff;
  color: var(--c-text);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.24);
  color: var(--c-text);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
  min-height: 60px;
}

/* Google Play badge button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--c-text);
  border-radius: 14px;
  padding: 14px 24px;
  text-decoration: none;
  font-size: 15px;
  transition: all var(--t) var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  min-height: 64px;
}
.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.28);
  color: var(--c-text);
}
.btn-play svg { flex-shrink: 0; }
.btn-play__text { display: flex; flex-direction: column; line-height: 1.15; }
.btn-play__sub { font-size: 11px; font-weight: 400; color: var(--c-muted); }
.btn-play__main { font-size: 17px; font-weight: 700; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--px);
  transition: background var(--t) var(--ease), padding var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav.scrolled {
  background: rgba(22,22,22,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--c-orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 7px;
  transition: all var(--t) var(--ease);
  text-decoration: none;
}
.nav__links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 201;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--c-darker);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: translateX(100%);
  transition: transform var(--t-lg) var(--ease);
}
.nav-overlay.is-open { transform: translateX(0); }
.nav-overlay a {
  color: rgba(255,255,255,0.75);
  font-size: 22px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--t) var(--ease);
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.nav-overlay a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-overlay .nav-overlay__cta {
  margin-top: 20px;
}
.nav-overlay__close {
  position: absolute;
  top: 20px; right: 22px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--t);
}
.nav-overlay__close:hover { color: #fff; }

/* === HERO === */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(ellipse 80% 60% at 75% 45%, rgba(255,112,7,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(20,169,199,0.05) 0%, transparent 60%),
    linear-gradient(150deg, #191919 0%, #202020 50%, #1A1A1A 100%);
  display: flex;
  align-items: center;
  padding-block: clamp(100px, 14vw, 140px) clamp(60px, 8vw, 90px);
  overflow: hidden;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__content { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,112,7,0.12);
  border: 1px solid rgba(255,112,7,0.22);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 24px;
  color: #FF9846;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--c-orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(1.35); }
}

.hero__h1 {
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 22px;
}
.hero__h1 em {
  font-style: normal;
  color: var(--c-orange);
}

.hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.60);
  line-height: 1.72;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 36px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.52);
}
.hero__trust-item svg { color: var(--c-orange); flex-shrink: 0; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* === PHONE MOCKUP === */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 80px;
}

.phone-wrap {
  position: relative;
  filter: drop-shadow(0 32px 80px rgba(0,0,0,0.55));
}

.phone-body {
  width: 248px;
  background: #1A1A1A;
  border-radius: 40px;
  border: 2.5px solid #2D2D2D;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.phone-notch {
  width: 72px; height: 5px;
  background: #2D2D2D;
  border-radius: 3px;
  margin: 12px auto 0;
}

.phone-screen {
  background: #0D0D0D;
  margin: 7px;
  border-radius: 30px;
  overflow: hidden;
  padding-bottom: 18px;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.phone-status-time { font-weight: 700; font-size: 12px; color: rgba(255,255,255,0.85); }
.phone-status-icons { display: flex; gap: 6px; align-items: center; }
.phone-status-icons span { font-size: 10px; color: rgba(255,255,255,0.5); }

.phone-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 12px;
}
.phone-app-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.phone-add-btn {
  width: 26px; height: 26px;
  background: var(--c-orange);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 300;
}

.phone-cards { padding: 0 10px; display: flex; flex-direction: column; gap: 7px; }

.pcard {
  border-radius: 13px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.pcard-1 { background: linear-gradient(130deg, #FF7007, #FF4D00); }
.pcard-2 { background: linear-gradient(130deg, #14A9C7, #0B7D9A); }
.pcard-3 { background: linear-gradient(130deg, #7C5CE7, #9B59B6); }
.pcard-4 { background: linear-gradient(130deg, #00B894, #00917A); }

.pcard-glow {
  position: absolute;
  top: -20px; right: -20px;
  width: 70px; height: 70px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
}

.pcard-em { font-size: 20px; flex-shrink: 0; z-index: 1; }
.pcard-info { flex: 1; min-width: 0; z-index: 1; }
.pcard-name {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.88);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pcard-count {
  display: flex; align-items: baseline; gap: 2px; margin-top: 1px;
}
.pcard-num { font-size: 20px; font-weight: 900; color: #fff; line-height: 1; }
.pcard-unit { font-size: 10px; color: rgba(255,255,255,0.65); }

/* Floating widget */
.widget-float {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-55%);
  width: 132px;
  background: #242424;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 14px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.03);
  animation: hovering 4s ease-in-out infinite;
}
@keyframes hovering {
  0%,100% { transform: translateY(-55%); }
  50%  { transform: translateY(calc(-55% - 7px)); }
}

.wf-label {
  font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.wf-em { font-size: 22px; margin-bottom: 4px; }
.wf-event { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.70); margin-bottom: 5px; }
.wf-count { display: flex; align-items: baseline; gap: 3px; }
.wf-num { font-size: 38px; font-weight: 900; color: var(--c-orange); line-height: 1; }
.wf-unit { font-size: 11px; color: rgba(255,255,255,0.40); }
.wf-bar {
  margin-top: 10px; height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 1px; overflow: hidden;
}
.wf-progress { height: 100%; width: 68%; background: var(--c-orange); border-radius: 1px; }

/* === TRUST STRIP === */
.trust-strip {
  background: var(--c-light);
  border-bottom: 1px solid var(--c-border);
  padding: 20px var(--px);
}
.trust-strip__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  align-items: center;
  justify-content: center;
}
.t-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
}
.t-badge svg { color: var(--c-orange); }

/* === APP SUMMARY (GEO) === */
.geo-summary {
  padding: 56px var(--px);
  background: var(--c-white);
}
.geo-summary__card {
  max-width: 740px;
  margin-inline: auto;
  background: var(--c-light);
  border-radius: var(--r);
  padding: 32px 36px;
  border-left: 4px solid var(--c-orange);
}
.geo-summary__tag {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-orange);
  margin-bottom: 10px;
}
.geo-summary__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-text);
}

/* === SECTION BASE === */
.section { padding-block: var(--sec-py); }
.section--light { background: var(--c-light); }
.section--dark { background: var(--c-dark); }

/* === FEATURE CARDS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feat-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 28px;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.feat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255,112,7,0.18);
  transform: translateY(-3px);
}
.feat-card:hover::after { transform: scaleX(1); }

.feat-card__icon {
  width: 46px; height: 46px;
  background: var(--c-orange-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-orange);
  margin-bottom: 16px;
}
.feat-card h3 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px; color: var(--c-text);
}
.feat-card p {
  font-size: 14px; color: var(--c-muted); line-height: 1.65;
}

/* === WIDGET SECTION === */
.widget-section {
  background: var(--c-dark);
  padding-block: var(--sec-py);
  overflow: hidden;
  position: relative;
}
.widget-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,112,7,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.widget-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

.widget-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.w-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
}
.w-point__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,112,7,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--c-orange);
  margin-top: 2px;
}

/* Widget demos */
.widget-demos { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

.wdemo {
  background: #252525;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 18px 22px;
  width: 100%;
  max-width: 310px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  transition: transform var(--t) var(--ease);
}
.wdemo:hover { transform: translateX(5px); }
.wdemo--sm { max-width: 240px; padding: 14px 18px; }

.wdemo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.wdemo-app { font-size: 10px; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.1em; }
.wdemo-em { font-size: 18px; }
.wdemo-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.72); margin-bottom: 5px; }

.wdemo-count { display: flex; align-items: baseline; gap: 4px; }
.wdemo-n { font-size: 44px; font-weight: 900; line-height: 1; color: var(--c-orange); }
.wdemo-n--blue { color: var(--c-blue); }
.wdemo-u { font-size: 13px; color: rgba(255,255,255,0.40); }

.wdemo-bar {
  margin-top: 12px; height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 1px; overflow: hidden;
}
.wdemo-fill { height: 100%; border-radius: 1px; }
.wdemo-fill--or { background: var(--c-orange); width: 68%; }
.wdemo-fill--bl { background: var(--c-blue); width: 22%; }

/* === SCREENSHOTS === */
.screenshots-scroll {
  margin-top: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
  padding-bottom: 8px;
}
.screenshots-scroll::-webkit-scrollbar { height: 4px; }
.screenshots-scroll::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 2px; }

.screenshots-track { display: flex; gap: 18px; padding-block: 4px 12px; }

.ss-item { flex-shrink: 0; text-align: center; }

.ss-phone {
  width: 188px;
  background: #1C1C1C;
  border-radius: 30px;
  border: 2px solid #2A2A2A;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 10px;
}
.ss-phone::before {
  content: '';
  display: block;
  width: 48px; height: 4px;
  background: #2A2A2A;
  border-radius: 2px;
  margin: 10px auto 0;
}

.ss-screen {
  height: 340px;
  background: #0A0A0A;
  margin: 5px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.18);
  font-size: 11px;
  text-align: center;
  padding: 16px;
  border: 1px dashed rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
/* Placeholder comment markers */
.ss-screen__icon { font-size: 28px; opacity: 0.3; }
.ss-screen__label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.25); line-height: 1.4; }
.ss-screen__hint { font-size: 10px; color: rgba(255,255,255,0.12); }

.ss-caption {
  font-size: 13px; font-weight: 600;
  color: var(--c-muted);
  padding-inline: 4px;
}

/* === USE CASES === */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.uc-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--t) var(--ease);
}
.uc-card:hover {
  border-color: rgba(255,112,7,0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.uc-em { font-size: 26px; flex-shrink: 0; }
.uc-text { font-size: 14px; font-weight: 600; color: var(--c-text); line-height: 1.3; }

/* === HOW IT WORKS === */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.steps-row::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--c-border) 50%, transparent);
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__n {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-or);
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--c-muted); line-height: 1.6; }

/* === BACKUP === */
.backup-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.backup-steps { display: flex; flex-direction: column; gap: 18px; }
.b-step { display: flex; gap: 14px; align-items: flex-start; }
.b-step__n {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,112,7,0.12);
  border: 1px solid rgba(255,112,7,0.25);
  color: var(--c-orange);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.b-step__body h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.b-step__body p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.55; }

.backup-visual { display: flex; flex-direction: column; gap: 10px; align-items: center; }

.bv-card {
  background: #252525;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 13px;
  padding: 14px 18px;
  width: 100%;
  max-width: 270px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bv-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,112,7,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-orange);
  flex-shrink: 0;
}
.bv-text h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.82); }
.bv-text p { font-size: 11px; color: rgba(255,255,255,0.36); }
.bv-arrow { font-size: 18px; color: rgba(255,255,255,0.15); text-align: center; }

/* === PRIVACY TRUST === */
.privacy-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.priv-badge {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 22px 16px;
  text-align: center;
  transition: all var(--t) var(--ease);
}
.priv-badge:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(255,112,7,0.2);
  transform: translateY(-2px);
}
.priv-badge__icon {
  width: 44px; height: 44px;
  background: var(--c-orange-dim);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  color: var(--c-orange);
}
.priv-badge h3 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.priv-badge p { font-size: 12px; color: var(--c-muted); line-height: 1.4; }

.privacy-note {
  max-width: 680px;
  margin: 28px auto 0;
  background: rgba(255,112,7,0.05);
  border: 1px solid rgba(255,112,7,0.14);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* === DOWNLOAD === */
.download-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,112,7,0.10) 0%, transparent 70%),
    linear-gradient(140deg, #181818 0%, #111 100%);
  padding-block: var(--sec-py);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-inner { position: relative; z-index: 1; }

.download-inner .section-sub--white {
  max-width: 520px;
  margin-inline: auto;
  margin-top: 0;
}

.download-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  margin-bottom: 28px;
}

.dl-pkg {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
  margin-top: 0;
}

/* === FAQ === */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t) var(--ease);
}
.faq-item.is-open { border-color: rgba(255,112,7,0.3); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  text-align: left;
  transition: color var(--t);
  min-height: 60px;
}
.faq-q:hover { color: var(--c-orange); }
.faq-item.is-open .faq-q { color: var(--c-orange); }

.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--c-muted);
  transition: all var(--t) var(--ease);
  font-size: 16px; line-height: 1; font-weight: 300;
}
.faq-item.is-open .faq-icon {
  background: var(--c-orange);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t) var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding: 2px 22px 18px;
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.72;
}

/* === SUPPORT CTA === */
.support-card {
  max-width: 560px;
  margin: 48px auto 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.support-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.support-card > p { color: var(--c-muted); font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
.support-email {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-orange);
  text-decoration: none;
  margin-bottom: 24px;
}
.support-email:hover { text-decoration: underline; }

/* === FOOTER === */
.footer {
  background: #171717;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 56px var(--px) 28px;
}
.footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer__brand-icon {
  width: 30px; height: 30px;
  background: var(--c-orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer__brand-name { font-size: 16px; font-weight: 700; color: #fff; }
.footer__brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  max-width: 260px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 14px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer__links a {
  color: rgba(255,255,255,0.48);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--t);
  line-height: 1.9;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__copy a { color: rgba(255,255,255,0.38); }
.footer__copy a:hover { color: rgba(255,255,255,0.7); }

/* === LEGAL PAGES === */
.legal-hero {
  background: linear-gradient(145deg, #191919, #1F1F1F);
  padding: clamp(100px,14vw,140px) var(--px) 48px;
  position: relative;
}
.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.05);
}
.legal-hero__h1 { font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: #fff; line-height: 1.2; }
.legal-hero__sub { color: rgba(255,255,255,0.42); margin-top: 6px; font-size: 14px; }

.legal-body {
  padding: 56px var(--px);
  max-width: 760px;
  margin-inline: auto;
}
.legal-body h2 {
  font-size: 20px; font-weight: 700;
  margin: 36px 0 12px;
  color: var(--c-text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 16px; font-weight: 700; margin: 20px 0 7px; color: var(--c-text); }
.legal-body p { font-size: 15px; line-height: 1.75; color: var(--c-muted); margin-bottom: 14px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { font-size: 15px; line-height: 1.72; color: var(--c-muted); margin-bottom: 3px; }
.legal-body a { color: var(--c-orange); text-decoration: underline; }
.legal-box {
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
}
.legal-highlight {
  background: rgba(255,112,7,0.05);
  border: 1px solid rgba(255,112,7,0.14);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.65;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .widget-float, .wf-label ~ * { animation: none !important; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .privacy-badges { grid-template-columns: repeat(3, 1fr); }
  .usecases-grid { grid-template-columns: repeat(3, 1fr); }
  .widget-float { right: -40px; }
}

@media (max-width: 800px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .widget-layout { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { grid-template-columns: 1fr; gap: 24px; }
  .steps-row::after { display: none; }
  .backup-layout { grid-template-columns: 1fr; gap: 40px; }
  .backup-visual { order: -1; }
  .privacy-badges { grid-template-columns: 1fr 1fr; }
  .usecases-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .trust-strip__inner { gap: 10px 20px; }
  .privacy-badges { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr; }
  .geo-summary__card { padding: 22px; }
  .support-card { padding: 24px; }
  .download-actions { flex-direction: column; align-items: center; }
}
