@font-face {
  font-family: 'PowerGrotesk';
  src: url('Assets/Fonts/PowerGrotesk-Regular.woff2') format('woff2'),
       url('Assets/Fonts/PowerGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:       #1F3652;
  --navy-deep:  #162B3F;
  --navy3:      #222A30;
  --green:      #6FAC9C;
  --gray:       #E6E9EF;
  --white:      #FFFFFF;
  --gold:       #C7B28B;
  --gold2:      #AA9777;
  --gold3:      #EACF4E;
  --text-muted: #577A8B;
  --navy-rgb:       31, 54, 82;
  --navy3-rgb:      34, 42, 48;
  --navy-dark-rgb:  22, 43, 63;
  --gold-rgb:   199, 178, 139;
  --green-rgb:  111, 172, 156;
  --white-rgb:  255, 255, 255;
  --gray-rgb:   230, 233, 239;
  --radius: 18px;
  --shadow: 0 4px 24px rgba(var(--navy-rgb),0.08), 0 1px 4px rgba(var(--navy-rgb),0.06);
  --shadow-lg: 0 24px 64px rgba(var(--navy-rgb),0.16);
  --shadow-gold: 0 8px 32px rgba(var(--gold-rgb),0.25);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --noise-bg: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
html { scroll-behavior: smooth; }
h1, h2,
.hero-headline, .section-title, .stat-number,
.form-title {
  font-family: 'PowerGrotesk', system-ui, sans-serif;
  font-weight: 400;
}
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  background: rgba(var(--gold-rgb),0.15);
  color: var(--gold2);
  border: 1px solid rgba(var(--gold-rgb),0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tag.light {
  background: rgba(var(--white-rgb),0.1);
  color: rgba(var(--white-rgb),0.75);
  border-color: rgba(var(--white-rgb),0.2);
}
h1, h2, h3 { line-height: 1.2; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(var(--gold-rgb),0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(var(--white-rgb),0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  will-change: opacity, transform;
}
.anim.visible {
  opacity: 1; transform: none;
}
.anim-delay-1 { transition-delay: .08s; }
.anim-delay-2 { transition-delay: .16s; }
.anim-delay-3 { transition-delay: .24s; }
.anim-delay-4 { transition-delay: .32s; }
.anim--right { transform: translateX(32px); }
.anim--down  { transform: translateY(-28px); }
.anim--scale { transform: scale(0.97) translateY(18px); }

@keyframes float {
  0%, 100% { transform: scale(1.05) translateY(0px); }
  50% { transform: scale(1.05) translateY(-10px); }
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
nav.scrolled {
  background: rgba(var(--navy-rgb), 0.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(var(--gold-rgb),0.08);
  box-shadow: 0 1px 40px rgba(var(--navy-dark-rgb),0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}
.nav-logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}
.btn-login {
  background: transparent;
  color: rgba(var(--white-rgb),0.65);
  border: 1px solid rgba(var(--white-rgb),0.15);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 8px;
  transition: border-color .2s var(--ease), color .2s var(--ease), background-color .2s var(--ease);
}
.btn-login:hover {
  border-color: rgba(var(--white-rgb),0.35);
  color: var(--white);
  background: rgba(var(--white-rgb),0.05);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(var(--white-rgb),0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: .01em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(var(--white-rgb),0.8);
  border-radius: 2px;
  transition: background-color .3s, transform .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(var(--navy3-rgb), 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  border-bottom: 1px solid rgba(var(--gold-rgb),0.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(var(--white-rgb),0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

#hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: clip;
  padding: 120px 0 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: var(--noise-bg);
  background-size: 256px 256px;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.hero-circle-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(var(--gold-rgb),0.22), transparent 60%);
  top: -350px; right: -200px;
}
.hero-circle-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(var(--navy-rgb),0.9), transparent 65%);
  bottom: -200px; left: -150px;
}
.hero-circle-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(var(--navy-rgb),0.35), transparent 65%);
  bottom: 10%; left: 30%;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--white-rgb),0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--white-rgb),0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 55% at 65% 40%, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.hero-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy-deep), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--gold-rgb),0.08);
  border: 1px solid rgba(var(--gold-rgb),0.2);
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--gold); }
  50% { opacity: .7; transform: scale(0.85); box-shadow: 0 0 3px var(--gold); }
}
.hero-badge span { font-size: 12px; font-weight: 500; color: rgba(var(--gold-rgb),0.9); letter-spacing: .02em; }
.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin-bottom: 18px;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #C4B090 0%, #AA9777 40%, #8F7D62 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-sub {
  font-size: 17px;
  color: rgba(var(--gray-rgb),0.55);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--white-rgb),0.15), transparent 60%);
  opacity: 0;
  transition: opacity .2s;
}
.btn-gold:hover::before { opacity: 1; }
.dashboard-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
  transform-origin: left center;
  margin-left: 32px;
  margin-top: -64px;
}
.dashboard-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--gold-rgb),0.10) 0%, rgba(var(--navy-rgb),0.22) 45%, transparent 65%);
  pointer-events: none;
}
.browser-screen {
  width: 192%;
  height: auto;
  display: block;
  margin-left: -36%;
  object-fit: cover;
  object-position: top;
  vertical-align: bottom;
  image-rendering: high-quality;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
#stats {
  background: var(--white);
  padding: 36px 0;
  position: relative;
}
#stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray), transparent);
}
#stats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 8px 0;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gray), transparent);
}
.stat-number {
  font-size: 52px;
  color: var(--navy);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .01em;
}

section { padding: 112px 0; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-title { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.03em; }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 520px; line-height: 1.75; font-weight: 400; }

#problems {
  background-color: var(--gray);
  background-image:
    radial-gradient(ellipse at 88% -5%, rgba(var(--gold-rgb),0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 110%, rgba(var(--navy-rgb),0.05) 0%, transparent 45%),
    linear-gradient(rgba(var(--navy-rgb),0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--navy-rgb),0.032) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(var(--navy-rgb),0.06);
}
#problems::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .022;
  background-image: var(--noise-bg);
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
#problems .container { position: relative; z-index: 1; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(var(--navy-rgb),0.06);
  box-shadow: 0 1px 3px rgba(var(--navy-rgb),0.06), 0 4px 16px rgba(var(--navy-rgb),0.04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  opacity: 0;
  transition: opacity .3s;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(var(--gold-rgb),0.2); }
.problem-card:hover::after { opacity: 1; }
.problem-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(var(--navy-rgb),0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .3s;
}
.problem-card:hover .problem-icon { background: rgba(var(--gold-rgb),0.12); }
.problem-icon svg { width: 22px; height: 22px; stroke: var(--navy); transition: stroke .3s; }
.problem-card:hover .problem-icon svg { stroke: var(--gold2); }
.problem-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

#solution { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); overflow: hidden; position: relative; border-top: 1px solid rgba(var(--gold-rgb),0.06); }
#solution::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: var(--noise-bg);
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
.solution-bg {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),.08), transparent 65%);
  right: -250px; top: -200px;
  pointer-events: none;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.solution-content .section-title { color: var(--white); }
.solution-content .section-sub { color: rgba(var(--gray-rgb),0.65); }

.solution-points { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.solution-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sp-check {
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb),0.15);
  border: 1px solid rgba(var(--gold-rgb),0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.sp-check svg { width: 12px; height: 12px; }
.sp-text { font-size: 15px; color: rgba(var(--gray-rgb),0.8); line-height: 1.6; }
.solution-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-card {
  background: rgba(var(--white-rgb),0.05);
  border: 1px solid rgba(var(--white-rgb),0.08);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .3s, background .3s;
}
.sol-card:hover { border-color: rgba(var(--gold-rgb),0.3); background: rgba(var(--gold-rgb),0.05); }
.sol-card-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(var(--gold-rgb),0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-card-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.sol-card-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.sol-card-sub { font-size: 12px; color: rgba(var(--white-rgb),0.45); }

#features {
  background-color: var(--white);
  background-image:
    radial-gradient(ellipse at 92% 0%, rgba(var(--gold-rgb),0.08) 0%, transparent 48%),
    radial-gradient(ellipse at 5% 100%, rgba(var(--navy-rgb),0.04) 0%, transparent 42%),
    radial-gradient(rgba(var(--navy-rgb),0.048) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(var(--navy-rgb),0.07);
}
#features::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .018;
  background-image: var(--noise-bg);
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid rgba(var(--navy-rgb),0.07);
  background: var(--white);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold3), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.feature-card:hover {
  border-color: rgba(var(--gold-rgb),0.25);
  box-shadow: 0 4px 24px rgba(var(--navy-rgb),0.08), 0 1px 4px rgba(var(--navy-rgb),0.04);
  transform: translateY(-2px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(var(--navy-rgb),0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.feature-card:hover .feature-icon {
  background: rgba(var(--gold-rgb),0.12);
  transform: scale(1.05);
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--navy); transition: stroke .3s; }
.feature-card:hover .feature-icon svg { stroke: var(--gold2); }
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; }
.feature-card--featured {
  border-color: rgba(var(--gold-rgb),0.3);
  background: linear-gradient(160deg, rgba(var(--gold-rgb),0.05) 0%, var(--white) 60%);
  box-shadow: 0 4px 24px rgba(var(--gold-rgb),0.10), 0 1px 4px rgba(var(--navy-rgb),0.04);
}
.feature-card--featured::before { opacity: 1; }
.feature-card--featured .feature-icon {
  background: rgba(var(--gold-rgb),0.14);
}
.feature-card--featured .feature-icon svg { stroke: var(--gold2); }
.feature-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold2);
  background: rgba(var(--gold-rgb),0.12);
  border: 1px solid rgba(var(--gold-rgb),0.25);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 16px;
}

#how {
  background-color: var(--white);
  background-image:
    radial-gradient(ellipse at 50% -15%, rgba(var(--gold-rgb),0.11) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 115%, rgba(var(--navy-rgb),0.05) 0%, transparent 45%),
    linear-gradient(rgba(var(--navy-rgb),0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--navy-rgb),0.038) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 64px 64px, 64px 64px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(var(--navy-rgb),0.06);
}
#how::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .022;
  background-image: var(--noise-bg);
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
#how .container { position: relative; z-index: 1; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--gold-rgb),0.2), var(--gold), rgba(var(--gold-rgb),0.2));
  z-index: 1;
}
.steps::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 1) 50%, transparent);
  background-size: 32% 100%;
  background-repeat: no-repeat;
  background-position: -32% center;
  filter: blur(3px);
  animation: lineFlow 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes lineFlow {
  0%   { background-position: -32% center; opacity: 0; }
  8%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { background-position: 132% center; opacity: 0; }
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1.5px solid rgba(var(--gold-rgb),0.4);
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb),0.08), var(--shadow);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover .step-num {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb),0.12), var(--shadow-gold);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

#benefits-dev {
  background-color: var(--gray);
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(var(--navy-rgb),0.045) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 50%, rgba(var(--gold-rgb),0.08) 0%, transparent 50%),
    linear-gradient(rgba(var(--navy-rgb),0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--navy-rgb),0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(var(--navy-rgb),0.07);
}
#benefits-dev::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .018;
  background-image: var(--noise-bg);
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
#benefits-dev .container { position: relative; z-index: 1; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefit-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(var(--navy-rgb),0.08);
  background: rgba(var(--white-rgb), 0.6);
  box-shadow: 0 1px 4px rgba(var(--navy-rgb),0.04);
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
  cursor: default;
}
.benefit-item:hover {
  border-color: rgba(var(--gold-rgb), 0.5);
  background: rgba(var(--gold-rgb), 0.10);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.08), 0 4px 20px rgba(var(--gold-rgb), 0.18);
  transform: translateY(-2px);
}
.benefit-item-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(var(--navy-rgb),0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s var(--ease);
}
.benefit-item:hover .benefit-item-icon { background: rgba(var(--gold-rgb),0.12); }
.benefit-item-icon svg { width: 20px; height: 20px; stroke: var(--navy); transition: stroke .3s; }
.benefit-item:hover .benefit-item-icon svg { stroke: var(--gold2); }
.benefit-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.benefits-grid .section-sub { margin-top: 16px; }
.metrics-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.metric-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.metric-name { font-size: 13px; color: rgba(var(--white-rgb),0.6); font-weight: 500; }
.metric-val { font-size: 13px; color: var(--gold); font-weight: 700; }
.metric-bar {
  height: 6px;
  background: rgba(var(--white-rgb),0.08);
  border-radius: 100px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  width: 0%;
  transition: width 1.2s ease;
}
.metrics-panel .panel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.metrics-panel .panel-sub {
  font-size: 12px;
  color: rgba(var(--white-rgb),0.4);
}

#benefits-client {
  background-color: var(--gray);
  background-image:
    radial-gradient(ellipse at 100% 0%, rgba(var(--gold-rgb),0.1) 0%, transparent 52%),
    radial-gradient(ellipse at 0% 100%, rgba(var(--navy-rgb),0.05) 0%, transparent 45%),
    linear-gradient(rgba(var(--navy-rgb),0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--navy-rgb),0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
  position: relative;
  overflow: clip;
  border-top: 1px solid rgba(var(--navy-rgb),0.06);
  padding: 0;
}
#benefits-client::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .022;
  background-image: var(--noise-bg);
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
.app-story { height: 350vh; position: relative; }
.app-story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px 0;
}
.app-story-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
.app-story-head .section-title { margin-top: 8px; color: var(--navy); }
.app-story-panels { position: relative; min-height: 320px; }
.app-panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}
.app-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.app-panel-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(var(--gold-rgb),0.45);
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(var(--gold-rgb),0.12);
}
.app-panel h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.app-panel > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 380px; }
.app-panel-features { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.app-panel-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--navy); font-weight: 500;
}
.app-panel-feature svg { width: 15px; height: 15px; stroke: var(--green); flex-shrink: 0; }
.story-dots { display: flex; gap: 8px; align-items: center; margin-top: 12px; }
.story-dot {
  width: 6px; height: 6px; border-radius: 100px;
  background: rgba(var(--navy-rgb),0.2);
  transition: background-color .45s var(--ease), width .45s var(--ease), box-shadow .45s var(--ease);
  cursor: pointer;
}
.story-dot.active { background: var(--gold); width: 22px; box-shadow: 0 0 8px rgba(var(--gold-rgb),0.35); }
.app-story-right {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.phone-ambient-glow {
  position: absolute;
  width: 320px; height: 380px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(var(--gold-rgb),0.12) 0%, rgba(var(--navy-rgb),0.28) 50%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: story-glow 5s ease-in-out infinite;
}
@keyframes story-glow {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.phone-story-shell {
  width: 248px; height: 494px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 46px;
  border: 5px solid rgba(var(--white-rgb),0.17);
  box-shadow:
    0 0 0 1px rgba(var(--white-rgb),0.06) inset,
    0 0 0 1px rgba(var(--navy3-rgb),0.5),
    0 64px 140px rgba(var(--navy-rgb),0.78),
    0 24px 56px rgba(var(--navy-rgb),0.45);
  position: relative; overflow: hidden; z-index: 1;
  animation: story-float 7s ease-in-out infinite;
}
@keyframes story-float {
  0%, 100% { transform: translateY(0) rotate(.3deg); }
  40% { transform: translateY(-8px) rotate(-.2deg); }
  70% { transform: translateY(-4px) rotate(.4deg); }
}
.phone-story-shell::before {
  content: '';
  position: absolute; top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--white-rgb),0.32), transparent);
  z-index: 10;
}
.phone-story-shell::after {
  content: '';
  position: absolute; top: 10%; bottom: 10%; left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(var(--white-rgb),0.07), transparent);
  z-index: 10;
}
.phone-status-bar {
  height: 46px;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 0 16px 7px;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  transition: background .4s ease;
}
.phone-story-shell.immersive-slide .phone-status-bar { background: transparent; }
.phone-story-shell.immersive-slide .ph-sb-time,
.phone-story-shell.immersive-slide .ph-sb-icons { opacity: 0; transition: opacity .4s ease; }
.ph-sb-notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 88px; height: 26px;
  background: var(--navy3);
  border-radius: 0 0 18px 18px;
}
.ph-sb-time {
  font-size: 11px; font-weight: 700;
  color: rgba(var(--white-rgb),0.92);
  letter-spacing: .01em;
  flex: 1; position: relative; z-index: 1;
  transition: opacity .4s ease;
}
.ph-sb-icons {
  display: flex; align-items: center; gap: 5px;
  position: relative; z-index: 1;
  transition: opacity .4s ease;
}
.phone-story-slides { position: absolute; inset: 0; top: 46px; }
.phone-story-slide {
  position: absolute; inset: 0;
  padding: 12px 16px;
  opacity: 0;
  transform: scale(.96) translateY(10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.phone-story-slide.active { opacity: 1; transform: scale(1) translateY(0); }
.phone-reflection {
  position: absolute;
  bottom: -22px; left: 18%; right: 18%; height: 22px;
  background: radial-gradient(ellipse at center, rgba(var(--gold-rgb),0.2) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none; z-index: 0;
}
.ph-slide-img { padding: 0; }
.ph-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  image-rendering: high-quality;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.phone-story-slide[data-slide="3"] { top: -46px; bottom: 0; height: calc(100% + 46px); }

#cta { background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-deep) 100%); position: relative; overflow: hidden; border-top: 1px solid rgba(var(--gold-rgb),0.06); }
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: var(--noise-bg);
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
.cta-bg-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),.07), transparent 65%);
  top: -200px; right: 0%;
  pointer-events: none;
}
.cta-bg-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--navy-rgb),0.7), transparent 65%);
  bottom: -150px; left: 5%;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-content .section-title { color: var(--white); }
.cta-content .section-sub { color: rgba(var(--gray-rgb),0.6); margin-top: 16px; }
.cta-proof {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.cta-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(var(--gray-rgb),0.7);
}
.cta-proof-item svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }
.demo-form {
  background: rgba(var(--white-rgb),0.04);
  border: 1px solid rgba(var(--white-rgb),0.1);
  border-radius: 20px;
  padding: 36px;
}
.form-title { font-size: 20px; color: var(--white); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: rgba(var(--white-rgb),0.4); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(var(--white-rgb),0.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 7px;
}
.form-group input, .form-group select {
  width: 100%;
  background: rgba(var(--white-rgb),0.06);
  border: 1px solid rgba(var(--white-rgb),0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(var(--white-rgb),0.25); }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background-color .2s, transform .2s, box-shadow .2s;
}
.form-submit:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(var(--gold-rgb),0.3); }
.form-note { font-size: 11px; color: rgba(var(--white-rgb),0.25); text-align: center; margin-top: 12px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(var(--green-rgb),0.15);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success-icon svg { width: 24px; height: 24px; stroke: var(--green); }
.form-success h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: rgba(var(--white-rgb),0.45); }

footer {
  background: var(--navy-deep);
  padding: 32px 0 16px;
  border-top: 1px solid rgba(var(--white-rgb),0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-brand .nav-logo img {
  width: 160px;
  height: auto;
  object-fit: contain;
  display: block;
}
.footer-brand > p {
  font-size: 12.5px;
  color: rgba(var(--white-rgb),0.48);
  max-width: 240px;
  line-height: 1.6;
  margin: 0;
}
.footer-apps { display: flex; flex-direction: row; gap: 8px; align-items: center; justify-content: flex-end; margin-top: 4px; }
.app-badge { display: inline-block; opacity: .45; transition: opacity .2s; }
.app-badge:hover { opacity: .75; }
.app-badge img { display: block; height: 30px; width: auto; border-radius: 5px; }
.footer-nav {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(var(--white-rgb),0.3);
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 12.5px;
  color: rgba(var(--white-rgb),0.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  justify-self: end;
}
.footer-right-section { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer-right-section h5 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(var(--white-rgb),0.3);
  margin: 0;
}
.fsocials { display: flex; gap: 8px; }
.fsocial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(var(--white-rgb),0.1);
  background: rgba(var(--white-rgb),0.04);
  color: rgba(var(--white-rgb),0.45);
  text-decoration: none;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  flex-shrink: 0;
}
.fsocial:hover {
  border-color: rgba(var(--gold-rgb),0.4);
  background: rgba(var(--gold-rgb),0.08);
  color: var(--gold);
  box-shadow: 0 0 12px rgba(var(--gold-rgb),0.15);
  transform: translateY(-2px);
}
.fsocial svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.fpay-logos { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.fpay-badge {
  height: 26px;
  padding: 0 9px;
  border-radius: 5px;
  border: 1px solid rgba(var(--white-rgb),0.1);
  background: rgba(var(--white-rgb),0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.fpay-badge:hover {
  border-color: rgba(var(--white-rgb),0.2);
  background: rgba(var(--white-rgb),0.07);
}
.fpay-badge svg { display: block; flex-shrink: 0; }
.footer-bottom {
  padding-top: 14px;
  border-top: 1px solid rgba(var(--white-rgb),0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(var(--white-rgb),0.25); }
.footer-gold { color: var(--gold); font-weight: 600; }
.footer-email {
  font-size: 11px;
  color: rgba(var(--gray-rgb),0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.footer-email:hover { color: var(--gold); }
.mobile-menu-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

@media (max-width: 900px) {
  .anim-delay-1 { transition-delay: .04s; }
  .anim-delay-2 { transition-delay: .08s; }
  .anim-delay-3 { transition-delay: .12s; }
  .anim-delay-4 { transition-delay: .16s; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Performance: disable expensive GPU effects on mobile */
  .anim { will-change: auto; }
  .hero-circle { display: none; }
  .hero-grid-lines { display: none; }
  .hero-headline em { animation: none; background-position: 0% center; }
  .hero-badge-dot { animation: none; }

  /* Hero */
  #hero { min-height: auto; padding: 100px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-badge { justify-content: center; }
  .dashboard-wrap { order: 1; margin-left: 0; margin-top: 0; animation: none; max-width: 500px; margin: 0 auto; overflow: hidden; border-radius: 12px; }
  .browser-screen { width: 100%; margin-left: 0; }
  .dashboard-glow { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 38px; }

  /* Problems */
  .problems-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Solution */
  .solution-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .steps::after { display: none; }
  .step { padding: 0 20px; }

  /* Benefits dev */
  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
  .metrics-panel { order: -1; }

  /* App story */
  .app-story { height: auto; }
  .app-story-sticky { position: static; height: auto; grid-template-columns: 1fr; gap: 36px; padding: 56px 20px; }
  .app-story-left { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .app-story-head { text-align: center; }
  .app-story-panels { min-height: 0; width: 100%; }
  .app-panel { position: static; opacity: 1; transform: none; pointer-events: auto; display: none; text-align: left; }
  .app-panel.active { display: block; }
  .story-dots { justify-content: center; margin-top: 20px; gap: 12px; }
  .story-dot { width: 10px; height: 10px; }
  .story-dot.active { width: 28px; }
  .app-story-right { order: 1; display: flex; justify-content: center; }
  .phone-story-shell { width: 210px; height: 418px; animation: none; transform: none; }
  .phone-ambient-glow { display: none; }
  .phone-reflection { display: none; }

  /* CTA */
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-proof { flex-direction: column; gap: 10px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-nav { justify-content: flex-start; }
  .footer-right { align-items: flex-start; justify-self: start; }
  .footer-right-section { align-items: flex-start; }
  .footer-apps { justify-content: flex-start; margin-top: 2px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 580px) {
  section { padding: 56px 0; }
  #hero { padding: 90px 0 40px; }

  /* Tipografía */
  .hero-headline { font-size: clamp(38px, 10vw, 48px); letter-spacing: -0.02em; }
  .section-title { font-size: clamp(32px, 8vw, 40px); }
  .section-sub { font-size: 14px; }
  .stat-number { font-size: 34px; }
  .stat-label { font-size: 12px; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 20px; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; max-width: 280px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; text-align: center; }
  .dashboard-wrap { max-width: none; width: calc(100% + 48px); margin-left: -24px; margin-right: -24px; border-radius: 0; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item { padding: 20px 12px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 24px 20px; }

  /* Steps */
  .step { padding: 0; }

  /* Phone */
  .phone-story-shell { width: 180px; height: 358px; }
  .section-header { text-align: center; align-items: center; }
  .benefits-grid > div:first-child { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .benefit-list { text-align: left; }

  /* Forms */
  .demo-form { padding: 24px 20px; }

  /* Footer */
  .footer-nav { flex-direction: row; gap: 28px; flex-wrap: wrap; }

  /* WhatsApp */
  .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .wa-float svg { width: 22px; height: 22px; }
  .wa-label { display: none; }

}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 1px 6px rgba(0,0,0,0.15);
  opacity: 0;
  transform: scale(0.6) translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), box-shadow .25s, background .2s;
  will-change: transform, opacity;
}
.wa-float.wa-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.wa-float:hover {
  background: #20bd5a;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.18);
  transform: scale(1.08) translateY(-2px);
}
.wa-float:active { transform: scale(0.97); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); flex-shrink: 0; }
.wa-label {
  position: absolute;
  right: 68px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.wa-label::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--navy-deep);
}
.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
