@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --blue-deep:  #0D3B7C;
  --blue-mid:   #1A5BA8;
  --blue-dark:  #071E47;
  --blue-light: #E8F0FB;
  --blue-xlight:#F2F6FC;
  --gold:       #C9963A;
  --gold-light: #F7EDD8;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --text-dark:  #0A1628;
  --text-mid:   #2C3E5C;
  --text-muted: #6B7A90;
  --border:     #D4DFF0;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;

  --nav-h:    72px;
  --r:        12px;
  --r-lg:     20px;
  --r-xl:     32px;
  --shadow:   0 4px 24px rgba(13,59,124,0.10);
  --shadow-lg:0 16px 56px rgba(13,59,124,0.18);
  --t:        0.3s cubic-bezier(0.4,0,0.2,1);

  --max-w: 1140px;
  --px: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE TEXTURE OVERLAY ───────────────────────────────── */
body::before {
  content:'';
  position:fixed; inset:0; z-index:0; pointer-events:none;
  opacity:.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }
p  { font-size: 1rem; color: var(--text-mid); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); position: relative; z-index: 1; }
.section    { padding: clamp(64px, 10vw, 120px) 0; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.text-gold  { color: var(--gold); }
.text-blue  { color: var(--blue-mid); }
.text-muted { color: var(--text-muted); }
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── BUTTON ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--r); cursor: pointer;
  border: none; transition: var(--t);
}
.btn-primary {
  background: var(--blue-mid); color: var(--white);
  box-shadow: 0 4px 20px rgba(26,91,168,0.35);
}
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 6px 28px rgba(26,91,168,0.45); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--blue-mid);
  border: 1.5px solid var(--blue-mid);
}
.btn-outline:hover { background: var(--blue-light); }
.btn-white {
  background: var(--white); color: var(--blue-deep);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 20px rgba(201,150,58,0.35);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(212,223,240,0.6);
  transition: var(--t);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  display: flex; align-items: center; gap: 12px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
  width: 100%;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 600;
  color: var(--blue-deep); letter-spacing: -0.02em;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: var(--blue-deep); color: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; font-family: var(--font-display);
}
.nav__links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin-left: 32px;
}
.nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
  padding: 6px 14px; border-radius: var(--r);
  transition: var(--t);
}
.nav__links a:hover, .nav__links a.active { color: var(--blue-mid); background: var(--blue-light); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; align-items: center;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; gap: 2px; padding: 3px;
}
.lang-btn {
  font-size: 0.75rem; font-weight: 600; padding: 4px 10px;
  border-radius: 5px; cursor: pointer; transition: var(--t);
  color: var(--text-muted); background: transparent; border: none;
  font-family: var(--font-body);
}
.lang-btn.active { background: var(--blue-mid); color: var(--white); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: var(--blue-dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 80% 70% at 60% 50%, rgba(26,91,168,0.5) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 80%, rgba(7,30,71,0.8) 0%, transparent 60%);
}
.hero::after {
  content:''; position:absolute;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: -200px; right: -100px;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding-top: 80px; padding-bottom: 80px;
}
.hero__label { color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); }
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__title em { font-style: italic; color: rgba(201,150,58,0.9); }
.hero__subtitle { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__badges { display: flex; gap: 24px; }
.hero__badge {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
}

/* ── PHONE MOCKUP ────────────────────────────────────────── */
.phone-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 1;
}
.phone-wrap::before {
  content:''; position:absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,91,168,0.4) 0%, transparent 70%);
  z-index: 0;
}
.phone {
  width: 260px; height: 530px;
  background: var(--blue-dark);
  border-radius: 40px;
  border: 7px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 32px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative; overflow: hidden; z-index: 1;
  animation: floatPhone 6s ease-in-out infinite;
}
.phone::before {
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width: 80px; height: 22px;
  background: rgba(0,0,0,0.8); border-radius: 0 0 14px 14px; z-index: 10;
}
.phone__screen {
  position: absolute; inset: 0;
  background: var(--blue-mid);
  overflow: hidden;
}
.phone__topbar {
  background: var(--blue-deep); padding: 32px 14px 10px;
  font-size: 0.55rem; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.05em;
}
.phone__topbar h5 { font-family: var(--font-display); font-size: 0.9rem; color: white; font-weight: 600; }
.phone__topbar p { font-family: var(--font-body); font-size: 0.52rem; opacity: 0.7; margin-top: 2px; }
.phone__card {
  background: white; margin: 8px; border-radius: 10px; padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.phone__card-label { font-size: 0.5rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.phone__card-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--blue-deep); }
.phone__card-sub { font-size: 0.48rem; color: var(--text-muted); margin-top: 1px; }
.phone__metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; margin: 0 8px;
}
.phone__metric {
  background: rgba(255,255,255,0.12); border-radius: 8px; padding: 8px 10px;
  color: white;
}
.phone__metric-lbl { font-size: 0.46rem; opacity: 0.7; }
.phone__metric-val { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; }
.phone__metric-val.green { color: #4ade80; }
.phone__metric-val.red { color: #f87171; }
.phone__metric-val.gold { color: #fbbf24; }
.phone__bar-chart {
  margin: 8px 8px 0;
  display: flex; align-items: flex-end; gap: 4px; height: 50px; padding: 0 4px;
}
.phone__bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,0.2);
}
.phone__bar.accent { background: #4ade80; }
.phone__nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  display: flex; height: 54px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.phone__nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  font-size: 0.42rem; color: var(--text-muted); font-weight: 500;
}
.phone__nav-item.active { color: var(--blue-mid); }
.phone__nav-icon { font-size: 0.9rem; }

@keyframes floatPhone {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--blue-deep);
  padding: 36px 0;
}
.stats-bar__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats-bar__item {
  text-align: center; padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.stats-bar__num span { color: var(--gold); }
.stats-bar__lbl { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ── FEATURES ────────────────────────────────────────────── */
.features__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}
.feature-card {
  background: var(--off-white); border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--t);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content:''; position:absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--blue-light); opacity: 0;
  top: -80px; right: -80px; transition: var(--t);
}
.feature-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-light); color: var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.feature-card__num {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.feature-card h3 { margin-bottom: 12px; font-size: 1.5rem; }
.feature-card p { color: var(--text-muted); line-height: 1.7; }
.feature-card__tag {
  display: inline-block; margin-top: 16px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--blue-mid); background: var(--blue-light);
  padding: 4px 12px; border-radius: 100px;
}

/* ── SECTION SPLIT ───────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* ── DATA TRUST ──────────────────────────────────────────── */
.trust {
  background: var(--blue-xlight);
  border-radius: var(--r-xl);
  padding: clamp(48px,8vw,80px);
  display: flex; gap: 64px; align-items: center;
}
.trust__icon {
  flex-shrink: 0; width: 90px; height: 90px; border-radius: 24px;
  background: var(--blue-mid); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.trust__title { font-size: 1.8rem; margin-bottom: 12px; }
.trust__body { color: var(--text-muted); line-height: 1.7; max-width: 540px; }
.trust__checks { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.trust__check { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text-mid); }
.trust__check::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-mid); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deep) 60%, #1A3D70 100%);
  border-radius: var(--r-xl); padding: clamp(56px,9vw,96px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(26,91,168,0.35) 0%, transparent 70%);
}
.cta-band h2 { color: white; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.coming-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6);
  font-size: 0.8rem; font-weight: 500;
  padding: 6px 14px; border-radius: 100px; margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ── VALUES GRID ─────────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: var(--t);
}
.value-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); }
.value-card__icon {
  font-size: 1.6rem; margin-bottom: 14px;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.value-card h4 { margin-bottom: 8px; font-size: 1.15rem; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 56px; }
.step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0 32px; position: relative; padding-bottom: 48px;
}
.step:last-child { padding-bottom: 0; }
.step::after {
  content:''; position:absolute; left: 39px; top: 64px; bottom: 0;
  width: 2px; background: var(--blue-light);
}
.step:last-child::after { display: none; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-deep); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--blue-light);
  margin: 0 auto;
}
.step__content h3 { margin-bottom: 10px; padding-top: 12px; }
.step__content p { color: var(--text-muted); line-height: 1.7; }
.step__tag { display: inline-block; margin-top: 12px; font-size: 0.78rem; font-weight: 600; color: var(--gold); background: var(--gold-light); padding: 3px 12px; border-radius: 100px; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px; align-items: start;
}
.plan-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 28px;
  transition: var(--t);
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.featured {
  background: var(--blue-deep); border-color: var(--blue-deep);
  color: white; transform: scale(1.03);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-card.featured p, .plan-card.featured .plan-feat { color: rgba(255,255,255,0.65); }
.plan-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
  background: var(--gold); color: white; margin-bottom: 16px;
}
.plan-name { font-size: 1.5rem; font-family: var(--font-display); font-weight: 600; margin-bottom: 8px; }
.plan-price {
  font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1;
  margin: 20px 0 4px;
}
.plan-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 8px; }
.plan-price .per { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.plan-card.featured .plan-price .per { color: rgba(255,255,255,0.5); }
.plan-divider { height: 1px; background: var(--border); margin: 24px 0; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,0.15); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid);
}
.plan-feat::before {
  content:'✓'; font-size: 0.7rem; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-light); color: var(--blue-mid);
}
.plan-card.featured .plan-feat::before { background: rgba(255,255,255,0.15); color: white; }
.plan-feat.no::before { content:'✕'; background: #FEE2E2; color: #EF4444; }
.plan-card .btn { width: 100%; justify-content: center; margin-top: 28px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 16px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--text-dark); text-align: left;
  transition: var(--t);
}
.faq-q:hover { color: var(--blue-mid); }
.faq-q svg { flex-shrink: 0; transition: var(--t); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; padding: 0 0 20px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── TEAM ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.team-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px; text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; color: var(--blue-deep); font-weight: 600;
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--blue-mid); font-weight: 500; margin-bottom: 8px; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--blue-dark); color: rgba(255,255,255,0.5);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-display); font-size: 1.6rem; color: white; font-weight: 600;
  margin-bottom: 10px;
}
.footer__brand-sub { font-size: 0.85rem; line-height: 1.65; max-width: 260px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  transition: var(--t);
}
.footer__social a:hover { background: var(--blue-mid); color: white; }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; }
.footer__col h5 {
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: var(--t); }
.footer__links a:hover { color: white; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; font-size: 0.82rem;
}
.footer__tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); padding: 5px 12px; border-radius: 100px;
  font-size: 0.78rem;
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 0; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .phone-wrap { display: none; }
  .hero__badges { justify-content: center; }
  .hero__actions { justify-content: center; }
  .features__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
  .trust { flex-direction: column; gap: 32px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .stats-bar__grid { grid-template-columns: 1fr; gap: 8px; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  padding: clamp(72px,12vw,120px) 0;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  top: -250px; left: 50%; transform: translateX(-50%);
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── LOGO IMG ─────────────────────────────────────────────── */
.nav__logo-img { width: 34px; height: 34px; border-radius: 8px; display:block; }

/* ── APP STORE BADGE ──────────────────────────────────────── */
.appstore-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; color: #fff;
  padding: 11px 22px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: var(--t); cursor: default;
  text-decoration: none; position: relative;
}
.appstore-btn:hover { background: #111; }
.appstore-btn__icon { font-size: 1.6rem; line-height:1; }
.appstore-btn__text { display:flex; flex-direction:column; gap:1px; }
.appstore-btn__soon { font-size: 0.6rem; letter-spacing: 0.08em; text-transform:uppercase; opacity:.7; }
.appstore-btn__store { font-size: 1rem; font-weight: 600; font-family: var(--font-body); letter-spacing:-0.01em; }

/* ── PRICING V2 ───────────────────────────────────────────── */
.pricing-section { margin-top: 56px; }
.pricing-section-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight:500;
  color: var(--text-muted); margin-bottom: 20px;
  display:flex; align-items:center; gap:12px;
}
.pricing-section-title::after {
  content:''; flex:1; height:1px; background:var(--border);
}
.payg-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-bottom: 16px;
}
.payg-bundle-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.payg-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 20px;
  transition: var(--t);
}
.payg-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); }
.payg-card.bundle { background: var(--blue-xlight); border-color: var(--blue-light); }
.payg-card__icon { font-size: 1.4rem; margin-bottom: 10px; }
.payg-card__name { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; }
.payg-card__desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; line-height:1.5; }
.payg-card__price {
  font-family: var(--font-display); font-size: 1.8rem; font-weight:600; color: var(--blue-deep);
}
.payg-card__price sup { font-size: 0.9rem; vertical-align: top; margin-top:5px; display:inline-block; }
.payg-card.bundle .payg-card__price { color: var(--gold); }
.payg-card__save {
  display: inline-block; font-size: 0.7rem; font-weight:700;
  background: var(--gold); color: white; padding: 2px 8px; border-radius: 100px; margin-left: 6px;
}

/* ── FAQ PAGE ─────────────────────────────────────────────── */
.faq-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.faq-tab {
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  padding: 8px 18px; border-radius: 100px; cursor: pointer;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text-muted); transition: var(--t);
}
.faq-tab:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
.faq-tab.active { background: var(--blue-mid); color: white; border-color: var(--blue-mid); }
.faq-category { display: none; }
.faq-category.active { display: block; }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-body {
  max-width: 760px; margin: 0 auto;
  padding: clamp(48px,8vw,80px) var(--px);
}
.legal-body h2 {
  font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 12px; margin-top: 48px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-section { margin-bottom: 36px; }
.legal-section h3 {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 10px; margin-top: 28px;
}
.legal-section p, .legal-section li {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.8;
}
.legal-section ul { padding-left: 20px; }
.legal-section ul li { margin-bottom: 6px; }
.legal-updated {
  font-size: 0.82rem; color: var(--text-muted);
  border-top: 1px solid var(--border); padding-top: 24px; margin-top: 48px;
}
.legal-intro {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.8;
  background: var(--blue-xlight); padding: 24px 28px; border-radius: var(--r);
  border-left: 3px solid var(--blue-mid); margin-bottom: 40px;
}

/* ── CHI SIAMO EXTRAS ─────────────────────────────────────── */
.vision-block {
  background: linear-gradient(135deg, #FFF8ED 0%, #FEF3E0 100%);
  border: 1px solid #F5E0B0; border-radius: var(--r-xl);
  padding: 40px 36px; margin-bottom: 20px;
}
.vision-block__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.vision-block h3 { font-size: 1.6rem; color: var(--text-dark); margin-bottom: 10px; }
.vision-block p { color: var(--text-mid); line-height: 1.75; }
.dati-block {
  background: var(--blue-xlight);
  border: 1px solid var(--blue-light); border-radius: var(--r-xl);
  padding: 40px 36px; display:flex; gap:24px; align-items:flex-start;
}
.dati-block__icon {
  width:56px; height:56px; flex-shrink:0; border-radius:14px;
  background: var(--blue-mid); color:white;
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}
.dati-block h3 { font-size:1.4rem; margin-bottom:10px; }
.dati-block p { color:var(--text-muted); line-height:1.75; }
.company-info {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 24px;
  display:flex; gap:16px; align-items:center; margin-top:48px;
  font-size:0.875rem; color:var(--text-muted);
}
.company-info strong { color: var(--text-dark); display:block; margin-bottom:2px; }
@media(max-width:700px){
  .payg-grid { grid-template-columns:1fr; }
  .payg-bundle-grid { grid-template-columns:1fr; }
  .dati-block { flex-direction:column; }
}

/* ── FOOTER TEXT COLOR FIX ───────────────────────────────── */
.footer__brand-sub { color: rgba(255,255,255,0.5) !important; }
.footer p { color: rgba(255,255,255,0.5); }

/* ── HAMBURGER MENU ──────────────────────────────────────── */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; z-index: 200;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--blue-deep); border-radius: 2px;
  transition: var(--t);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--px) 24px;
  transform: translateY(-8px); opacity: 0;
  pointer-events: none;
  transition: var(--t);
  z-index: 99;
  box-shadow: 0 8px 32px rgba(13,59,124,0.12);
}
.nav__mobile.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav__mobile ul a {
  display: block; font-size: 1rem; font-weight: 500;
  color: var(--text-mid); padding: 10px 14px; border-radius: var(--r);
  transition: var(--t);
}
.nav__mobile ul a:hover, .nav__mobile ul a.active {
  color: var(--blue-mid); background: var(--blue-light);
}
.nav__mobile__footer {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links  { display: none !important; }
}
@media (max-width: 480px) {
  .nav__right .lang-toggle { transform: scale(0.92); }
}

/* ── VIDEO EMBED ──────────────────────────────────────────── */
.video-section { padding: clamp(48px,7vw,80px) 0; background: var(--off-white); }
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-top: 40px;
}
.video-wrap iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; }

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px var(--px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-banner p {
  color: rgba(255,255,255,0.75); font-size: 0.88rem; margin: 0; flex: 1; min-width: 200px;
}
.cookie-banner a { color: rgba(255,255,255,0.55); text-decoration: underline; font-size: 0.85rem; }
.cookie-banner a:hover { color: white; }
.cookie-banner__actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--blue-mid); color: white; border: none; cursor: pointer;
  padding: 8px 20px; border-radius: 8px; font-size: 0.88rem; font-weight: 600;
  font-family: var(--font-body); transition: var(--t);
}
.cookie-btn-accept:hover { background: var(--blue-deep); }
.cookie-btn-decline {
  background: transparent; color: rgba(255,255,255,0.5); border: none; cursor: pointer;
  padding: 8px 16px; border-radius: 8px; font-size: 0.85rem;
  font-family: var(--font-body); transition: var(--t);
}
.cookie-btn-decline:hover { color: white; }

/* ── APPSTORE BTN CURSOR FIX ──────────────────────────────── */
.appstore-btn { cursor: pointer; }

/* ── FEATURE CARD VIDEO LINK ─────────────────────────────── */
.feature-card__video-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue-mid);
  text-decoration: none;
  transition: var(--t);
  letter-spacing: 0.01em;
}
.feature-card__video-link:hover {
  color: var(--blue-deep);
  gap: 8px;
}

/* ── YOUTUBE SHORTS EMBED ─────────────────────────────────── */
.shorts-wrap {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
.shorts-wrap::before {
  content: ''; display: block; padding-bottom: 177.78%; /* 9:16 */
}
.shorts-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

/* ── FEATURE CARD VIDEO LINK ──────────────────────────────── */
.feature-card__video {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--blue-mid);
  text-decoration: none;
  transition: var(--t);
}
.feature-card__video:hover { color: var(--blue-deep); gap: 10px; }
.feature-card__video::before { content: '▶'; font-size: 0.78rem; }

/* ── 3-BUTTON LANGUAGE TOGGLE ─────────────────────────────── */
.lang-toggle { gap: 2px; }
.lang-btn { padding: 4px 9px; font-size: 0.78rem; }
