*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

:root {
  --white: #FFFFFF;
  --black: #0A0A0B;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D8;
  --gray-400: #A1A1AA;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --gray-900: #18181B;
  --gray-950: #09090B;
  --blue: #2563EB;
  --blue-hover: #1D4ED8;
  --blue-light: #EFF6FF;
  --blue-muted: rgba(37, 99, 235, 0.08);
  --green: #10B981;
  --green-light: #ECFDF5;
  --red: #EF4444;
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-tertiary: var(--gray-100);
  --bg-nav: rgba(255, 255, 255, 0.85);
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --text-on-dark: var(--white);
  --border-color: var(--gray-200);
  --border-muted: var(--gray-100);
  --card-bg: var(--white);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
  --card-hover-shadow: 0 12px 32px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.02);
  --hero-glow: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 65%);
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1200px;
  --section-py: clamp(5rem, 10vw, 8rem);
  --section-px: clamp(1.25rem, 4vw, 2rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease-out);
}

html.dark-mode {
  --bg-primary: #09090B;
  --bg-secondary: #0F0F12;
  --bg-tertiary: #16161B;
  --bg-nav: rgba(9, 9, 11, 0.85);
  --text-primary: #F4F4F5;
  --text-secondary: #A1A1AA;
  --text-muted: #52525B;
  --text-on-dark: #FFFFFF;
  --border-color: #27272A;
  --border-muted: #1F1F23;
  --card-bg: #0F0F12;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
  --card-hover-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  --hero-glow: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
  --gray-50: #0F0F12;
  --gray-100: #16161B;
  --gray-200: #27272A;
  --gray-300: #3F3F46;
  --gray-400: #52525B;
  --gray-500: #71717A;
  --gray-600: #A1A1AA;
  --gray-700: #D4D4D8;
  --gray-800: #E5E5E5;
  --gray-900: #F4F4F5;
  --gray-950: #FAFAFA;
  --white: #09090B;
  --black: #FFFFFF;
  --blue-light: rgba(37, 99, 235, 0.15);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s, color 0.3s;
}

img {
  max-width: 100%; height: auto; display: block;
}

a {
  color: inherit; text-decoration: none;
}

button {
  font-family: inherit; cursor: pointer; border: none; background: none;
}

ul, ol {
  list-style: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color); border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-px);
  width: 100%;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-color);
  box-shadow: var(--card-shadow);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
  outline: none;
}

.theme-toggle:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--gray-300);
}

.theme-toggle .sun-icon {
  display: none;
}

.theme-toggle .moon-icon {
  display: block;
}

html.dark-mode .theme-toggle .sun-icon {
  display: block;
}

html.dark-mode .theme-toggle .moon-icon {
  display: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  padding: 0.25rem 0;
  position: relative;
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--black);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blue);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta-btn:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--gray-100);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem var(--section-px) 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover {
  background: var(--gray-50); color: var(--black);
}

.mobile-nav .mobile-nav-cta {
  margin-top: 0.5rem;
  background: var(--black);
  color: white;
  font-weight: 600;
  justify-content: center;
  border-radius: var(--radius-md);
}

.mobile-nav .mobile-nav-cta:hover {
  background: var(--gray-800);
}

#hero {
  padding-top: calc(72px + clamp(4rem, 8vw, 7rem));
  padding-bottom: var(--section-py);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 80vw, 800px);
  height: clamp(300px, 80vw, 800px);
  background: var(--hero-glow);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }

}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.hero-headline-accent {
  color: var(--blue);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  padding: 0.8125rem 1.625rem;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  color: var(--black);
  transform: translateY(-1px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 280px;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  background: var(--gray-950);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
  0 0 0 1px rgba(0, 0, 0, 0.08),
  0 25px 60px -10px rgba(0, 0, 0, 0.25),
  0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #111118;
  position: relative;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: var(--gray-950);
  border-radius: 20px;
  z-index: 10;
}

.screen-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  overflow: hidden;
}

.layer-dashboard {
  z-index: 1;
  opacity: 1;
}

.layer-lockscreen {
  animation: screen-step-1 15s infinite var(--ease-out);
}

.layer-camera {
  animation: screen-step-2 15s infinite var(--ease-out);
}

.layer-location {
  animation: screen-step-3 15s infinite var(--ease-out);
}

.layer-telegram {
  animation: screen-step-4 15s infinite var(--ease-out);
}

@keyframes screen-step-1 {

  0%, 18% { opacity: 1; z-index: 5; }
  20%, 98% { opacity: 0; z-index: 1; }
  100% { opacity: 1; z-index: 5; }

}

@keyframes screen-step-2 {

  0%, 18% { opacity: 0; z-index: 1; }
  20%, 38% { opacity: 1; z-index: 5; }
  40%, 100% { opacity: 0; z-index: 1; }

}

@keyframes screen-step-3 {

  0%, 38% { opacity: 0; z-index: 1; }
  40%, 58% { opacity: 1; z-index: 5; }
  60%, 100% { opacity: 0; z-index: 1; }

}

@keyframes screen-step-4 {

  0%, 58% { opacity: 0; z-index: 1; }
  60%, 78% { opacity: 1; z-index: 5; }
  80%, 100% { opacity: 0; z-index: 1; }

}

.layer-lockscreen {
  background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.lockscreen-wallpaper {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  z-index: 0;
}

.lockscreen-time {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-top: 1rem;
  z-index: 1;
}

.lockscreen-date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 3.5rem;
  z-index: 1;
}

.lockscreen-lock-icon {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
  z-index: 1;
  animation: shake-lock 15s infinite;
}

.lockscreen-dots {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  z-index: 1;
}

.ls-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s;
}

.ls-dot.filled {
  background: var(--white);
}

.ls-dot.error {
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: blink-error 1s infinite;
}

.lockscreen-status {
  font-size: 0.8125rem;
  color: var(--red);
  font-weight: 600;
  z-index: 1;
}

@keyframes shake-lock {

  0%, 10% { transform: translateX(0); }
  2%, 4%, 6%, 8% { transform: translateX(-4px); }
  3%, 5%, 7% { transform: translateX(4px); }
  12%, 100% { transform: translateX(0); }

}

@keyframes blink-error {

  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }

}

.layer-camera {
  background: #000;
}

.camera-grid {
  position: absolute;
  inset: 0;
  background-image:
  linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 33.33% 33.33%;
}

.camera-target {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.target-corners::before, .target-corners::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
}

.target-corners::before {
  top: -2px; left: -2px; border-right: none; border-bottom: none;
}

.target-corners::after {
  bottom: -2px; right: -2px; border-left: none; border-top: none;
}

.camera-rec {
  position: absolute;
  top: 48px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.rec-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red);
  animation: blink-error 1s infinite;
}

.camera-shutter {
  position: absolute;
  inset: 0;
  background: var(--white);
  opacity: 0;
  animation: shutter-flash 15s infinite;
}

@keyframes shutter-flash {

  0%, 21% { opacity: 0; }
  22% { opacity: 1; }
  24%, 100% { opacity: 0; }

}

.layer-location {
  background: #1e1e24;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
  radial-gradient(circle, rgba(99, 102, 241, 0.08) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.map-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  animation: map-pulse 3s infinite linear;
}

.map-marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.2);
}

.map-marker-pulse::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.5);
  animation: map-pulse 2s infinite ease-out;
}

.map-coords {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-family: monospace;
  color: #60A5FA;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes map-pulse {

  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }

}

.layer-telegram {
  padding: 1rem;
}

.lockscreen-wallpaper.dimmed {
  background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
  filter: brightness(0.6) blur(2px);
}

.telegram-toast {
  position: absolute;
  top: 48px;
  left: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-80px);
  animation: slide-toast 15s infinite var(--ease-out);
}

.tg-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.tg-icon-svg {
  color: #229ED9;
}

.tg-app-name {
  font-weight: 700;
  color: var(--gray-700);
}

.tg-time {
  margin-left: auto;
}

.tg-body {
  display: flex;
  flex-direction: column;
}

.tg-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
}

.tg-msg {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.3;
}

@keyframes slide-toast {

  0%, 58% { transform: translateY(-80px); }
  60%, 76% { transform: translateY(0); }
  78%, 100% { transform: translateY(-80px); }

}

.wf-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
  opacity: 0.4;
  z-index: 20;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.wf-card.wf-detect {
  animation: highlight-step-1 15s infinite var(--ease-out);
}

.wf-card.wf-capture {
  animation: highlight-step-2 15s infinite var(--ease-out);
}

.wf-card.wf-location {
  animation: highlight-step-3 15s infinite var(--ease-out);
}

.wf-card.wf-alert {
  animation: highlight-step-4 15s infinite var(--ease-out);
}

.wf-card.wf-log {
  animation: highlight-step-5 15s infinite var(--ease-out);
}

@keyframes highlight-step-1 {

  0%, 18% { opacity: 1; transform: translateY(0) scale(1.05); border-color: var(--blue); box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1); }
  20%, 98% { opacity: 0.4; transform: translateY(0) scale(1); border-color: var(--gray-200); box-shadow: none; }
  100% { opacity: 1; transform: translateY(0) scale(1.05); border-color: var(--blue); box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1); }

}

@keyframes highlight-step-2 {

  0%, 18% { opacity: 0.4; transform: translateY(0) scale(1); border-color: var(--gray-200); box-shadow: none; }
  20%, 38% { opacity: 1; transform: translateY(0) scale(1.05); border-color: var(--blue); box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1); }
  40%, 100% { opacity: 0.4; transform: translateY(0) scale(1); border-color: var(--gray-200); box-shadow: none; }

}

@keyframes highlight-step-3 {

  0%, 38% { opacity: 0.4; transform: translateY(0) scale(1); border-color: var(--gray-200); box-shadow: none; }
  40%, 58% { opacity: 1; transform: translateY(0) scale(1.05); border-color: var(--blue); box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1); }
  60%, 100% { opacity: 0.4; transform: translateY(0) scale(1); border-color: var(--gray-200); box-shadow: none; }

}

@keyframes highlight-step-4 {

  0%, 58% { opacity: 0.4; transform: translateY(0) scale(1); border-color: var(--gray-200); box-shadow: none; }
  60%, 78% { opacity: 1; transform: translateY(0) scale(1.05); border-color: var(--blue); box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1); }
  80%, 100% { opacity: 0.4; transform: translateY(0) scale(1); border-color: var(--gray-200); box-shadow: none; }

}

@keyframes highlight-step-5 {

  0%, 78% { opacity: 0.4; transform: translateY(0) scale(1); border-color: var(--gray-200); box-shadow: none; }
  80%, 98% { opacity: 1; transform: translateY(0) scale(1.05); border-color: var(--blue); box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1); }
  100% { opacity: 0.4; transform: translateY(0) scale(1); border-color: var(--gray-200); box-shadow: none; }

}

.wf-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-icon svg {
  width: 16px; height: 16px;
}

.wf-icon-red {
  background: #FEF2F2; color: var(--red);
}

.wf-icon-blue {
  background: var(--blue-light); color: var(--blue);
}

.wf-icon-green {
  background: var(--green-light); color: var(--green);
}

.wf-icon-amber {
  background: #FFFBEB; color: #D97706;
}

.wf-icon svg {
  stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.wf-text {
  display: flex; flex-direction: column; gap: 1px;
}

.wf-title {
  font-size: 0.75rem; font-weight: 700; color: var(--gray-900); letter-spacing: -0.01em;
}

.wf-desc {
  font-size: 0.6875rem; color: var(--gray-500); font-weight: 450;
}

.wf-detect {
  top: 8%;   left: -30%;
}

.wf-capture {
  top: 28%;  right: -25%;
}

.wf-location {
  bottom: 35%; right: -30%;
}

.wf-alert {
  bottom: 18%; left: -35%;
}

.wf-log {
  bottom: 2%;  left: -10%;
}

.hero-timeline-mobile {
  display: none;
  width: 100%;
  margin-top: 2rem;
}

#trust-strip {
  padding: 3rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.trust-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.trust-label {
  font-size: 0.8125rem;
  color: var(--gray-600);
  font-weight: 450;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-300);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

#features {
  padding: var(--section-py) 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
}

.feature-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--blue-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

#how-it-works {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
  color: var(--gray-600);
}

.step-number svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-item:hover .step-number {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  transform: scale(1.05);
}

.step-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

#screenshots {
  padding: var(--section-py) 0;
  background: var(--white);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.screenshot-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--gray-300);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-caption {
  padding: 1rem 1.25rem;
  background: var(--white);
}

.screenshot-caption-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.screenshot-caption-desc {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

#security {
  padding: var(--section-py) 0;
  background: var(--gray-950);
  color: var(--white);
}

#security .section-label {
  color: var(--blue);
}

#security .section-title {
  color: var(--white);
}

#security .section-subtitle {
  color: var(--gray-400);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.security-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.security-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.security-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #60A5FA;
}

.security-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.security-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

#faq {
  padding: var(--section-py) 0;
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
  background: none;
  border: none;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-question:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--gray-400);
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-chevron {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

.faq-item.open .faq-chevron svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

#download {
  padding: var(--section-py) 0;
  background: var(--blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#download::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.download-content {
  position: relative;
  z-index: 1;
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.download-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--white);
  color: var(--blue);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-download svg {
  width: 20px; height: 20px; fill: currentColor;
}

.download-meta {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.download-meta span + span::before {
  content: '·';
  margin: 0 0.5rem;
}

#contact {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-detail-card + .contact-detail-card {
  margin-top: 0.625rem;
}

.contact-detail-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--blue-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.contact-detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-detail-value {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition);
}

a.contact-detail-value:hover {
  color: var(--blue);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 0.8125rem;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#form-status {
  display: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  text-align: center;
  animation: status-fade-in 0.3s var(--ease-out);
}

@keyframes status-fade-in {

  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }

}

.site-footer {
  background: var(--gray-950);
  color: var(--gray-400);
  padding: 4rem 0 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-credit {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) {
  transition-delay: 0s;
}

.reveal-stagger > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-stagger > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-stagger > .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal-stagger > .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.reveal-stagger > .reveal:nth-child(6) {
  transition-delay: 0.40s;
}

.loader-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.7s linear infinite;
  margin-right: 0.5rem;
  vertical-align: middle;
}

@keyframes spin {
 to { transform: rotate(360deg); } 
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

a:focus:not(:focus-visible), button:focus:not(:focus-visible) {
  outline: none;
}

@media (max-width: 1024px) {
.hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 3rem;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-subtitle {
  margin: 0 auto 2rem;
}

.hero-actions {
  justify-content: center;
}

.hero-visual {
  order: -1;
  flex-direction: column;
}

.features-grid {
  grid-template-columns: repeat(2, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1rem;
}

.steps-grid::before {
  display: none;
}

.screenshots-grid {
  grid-template-columns: repeat(2, 1fr);
}

.wf-card {
  display: none;
}

.hero-timeline-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 280px;
  margin: 2rem auto 0 auto;
  text-align: left;
}

.mobile-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  opacity: 0.4;
  transition: all var(--transition);
}

.mobile-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-400);
  transition: background var(--transition);
}

.mobile-step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--transition);
}

.mobile-step.step-1 {
  animation: mobile-highlight-1 15s infinite var(--ease-out);
}

.mobile-step.step-2 {
  animation: mobile-highlight-2 15s infinite var(--ease-out);
}

.mobile-step.step-3 {
  animation: mobile-highlight-3 15s infinite var(--ease-out);
}

.mobile-step.step-4 {
  animation: mobile-highlight-4 15s infinite var(--ease-out);
}

.mobile-step.step-5 {
  animation: mobile-highlight-5 15s infinite var(--ease-out);
}

@keyframes mobile-highlight-1 {
  0%, 18% { opacity: 1; border-color: var(--blue); background: var(--blue-light); }
  20%, 98% { opacity: 0.4; border-color: var(--gray-200); background: var(--gray-50); }
  100% { opacity: 1; border-color: var(--blue); background: var(--blue-light); }
}

@keyframes mobile-highlight-2 {
  0%, 18% { opacity: 0.4; border-color: var(--gray-200); background: var(--gray-50); }
  20%, 38% { opacity: 1; border-color: var(--blue); background: var(--blue-light); }
  40%, 100% { opacity: 0.4; border-color: var(--gray-200); background: var(--gray-50); }
}

@keyframes mobile-highlight-3 {
  0%, 38% { opacity: 0.4; border-color: var(--gray-200); background: var(--gray-50); }
  40%, 58% { opacity: 1; border-color: var(--blue); background: var(--blue-light); }
  60%, 100% { opacity: 0.4; border-color: var(--gray-200); background: var(--gray-50); }
}

@keyframes mobile-highlight-4 {
  0%, 58% { opacity: 0.4; border-color: var(--gray-200); background: var(--gray-50); }
  60%, 78% { opacity: 1; border-color: var(--blue); background: var(--blue-light); }
  80%, 100% { opacity: 0.4; border-color: var(--gray-200); background: var(--gray-50); }
}

@keyframes mobile-highlight-5 {
  0%, 78% { opacity: 0.4; border-color: var(--gray-200); background: var(--gray-50); }
  80%, 98% { opacity: 1; border-color: var(--blue); background: var(--blue-light); }
  100% { opacity: 0.4; border-color: var(--gray-200); background: var(--gray-50); }
}

}

@media (max-width: 768px) {
.nav-links {
  display: none;
}

.nav-toggle {
  display: flex;
}

.mobile-nav {
  display: flex;
}

.hero-grid {
  gap: 2.5rem;
}

.phone-frame {
  width: 240px;
  height: 490px;
  border-radius: 34px;
  padding: 10px;
}

.phone-screen {
  border-radius: 26px;
}

.phone-screen-img {
  border-radius: 26px;
}

.phone-notch {
  width: 76px; height: 20px; top: 14px;
}



.wf-icon {
  width: 28px; height: 28px;
}

.wf-icon svg {
  width: 14px; height: 14px;
}

.features-grid {
  grid-template-columns: 1fr;
}

.steps-grid {
  grid-template-columns: 1fr;
  max-width: 320px;
  margin: 0 auto;
  gap: 1.5rem;
}

.step-item {
  flex-direction: row;
  text-align: left;
  gap: 1rem;
}

.step-number {
  margin-bottom: 0; width: 48px; height: 48px; flex-shrink: 0;
}

.screenshots-grid {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
}

.security-grid {
  grid-template-columns: 1fr;
}

.contact-layout {
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.trust-divider {
  display: none;
}

.trust-row {
  gap: 1.5rem;
}

.trust-item {
  flex: 1 1 40%;
  min-width: 120px;
}

.footer-top {
  flex-direction: column; gap: 1.5rem;
}

}

@media (max-width: 480px) {
.hero-actions {
  flex-direction: column;
  width: 100%;
  align-items: stretch;
}

.hero-actions .btn {
  justify-content: center;
  width: 100%;
}

.phone-frame {
  width: 220px;
  height: 448px;
  padding: 8px;
}

.phone-notch {
  width: 68px; height: 18px; top: 12px;
}

.trust-item {
  flex: 1 1 100%;
}

}

@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html {
  scroll-behavior: auto;
}

.reveal {
  opacity: 1; transform: none;
}

}
