:root {
  --gp-dark:    #1A1033;
  --gp-dark2:   #120b25;
  --gp-purple:  #7C3AED;
  --gp-pink:    #DB2777;
  --gp-grad:    linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
  --gp-grad-r:  linear-gradient(135deg, #DB2777 0%, #7C3AED 100%);
  --gp-surface: #f8f7ff;
  --gp-border:  #e8e4f8;
  --gp-text:    #1a1033;
  --gp-soft:    #6b7280;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gp-text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(26,16,51,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,58,237,.2);
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.nav-logo svg, .nav-logo img { width: 36px; height: 36px; }
.nav-logo-text {
  font-size: 1.3rem; font-weight: 800;
  background: var(--gp-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: .9rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }

/* Language picker in navbar */
.nav-lang-picker { position: relative; }
.nav-lang-current {
  display: flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: .4rem .7rem;
  color: rgba(255,255,255,.85); font-size: 1rem; cursor: pointer;
  transition: background .2s;
}
.nav-lang-current:hover { background: rgba(255,255,255,.18); }
.nav-lang-menu {
  display: none; position: absolute; right: 0; top: calc(100% + 6px);
  background: #1e1040; border: 1px solid rgba(124,58,237,.3);
  border-radius: 10px; overflow: hidden; min-width: 120px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  z-index: 200;
}
.nav-lang-menu.open { display: block; }
.nav-lang-opt {
  display: flex; align-items: center; gap: .5rem;
  width: 100%; padding: .55rem 1rem;
  background: none; border: none; color: rgba(255,255,255,.8);
  font-size: .88rem; cursor: pointer; text-align: left;
  transition: background .15s;
}
.nav-lang-opt:hover, .nav-lang-opt.active { background: rgba(124,58,237,.3); color: #fff; }
.nav-lang-current .fi, .nav-lang-opt .fi, .lang-btn .fi {
  width: 1.2em; height: .9em; border-radius: 2px; flex-shrink: 0;
}
.nav-lang-soon, .lang-btn-soon {
  opacity: .4; cursor: not-allowed;
}
.soon-badge {
  font-size: .65em; background: rgba(124,58,237,.4);
  border-radius: 4px; padding: 1px 4px; margin-left: 2px;
  vertical-align: middle; color: rgba(255,255,255,.7);
}

.btn-ghost {
  color: rgba(255,255,255,.8); background: transparent;
  border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
  padding: .45rem 1.1rem; font-size: .88rem; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-primary {
  background: var(--gp-grad); color: #fff; border: none;
  border-radius: 8px; padding: .5rem 1.25rem;
  font-size: .88rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: opacity .2s; box-shadow: 0 2px 12px rgba(124,58,237,.4);
}
.btn-primary:hover { opacity: .88; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--gp-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 2rem 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(219,39,119,.2) 0%, transparent 50%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3);
  border-radius: 100px; padding: .3rem .9rem;
  font-size: .78rem; font-weight: 600; color: #c4a6ff;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #a78bfa; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  color: #fff; margin-bottom: 1.25rem;
  position: relative; z-index: 1;
  letter-spacing: -.02em;
}
.hero h1 span {
  background: var(--gp-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.65);
  max-width: 560px; margin: 0 auto 2.5rem;
  position: relative; z-index: 1; line-height: 1.7;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1; margin-bottom: 4rem;
}
.btn-hero {
  background: var(--gp-grad); color: #fff; border: none;
  border-radius: 10px; padding: .85rem 2rem;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  text-decoration: none; box-shadow: 0 4px 24px rgba(124,58,237,.5);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,.6); }
.btn-hero-ghost {
  background: transparent; color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.25); border-radius: 10px;
  padding: .85rem 2rem; font-size: 1rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.05); }

/* App mockup */
.hero-mockup {
  position: relative; z-index: 1;
  width: min(900px, 90vw);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(124,58,237,.2);
  transform: perspective(1200px) rotateX(4deg);
}
.mockup-bar {
  background: rgba(255,255,255,.06);
  padding: .6rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mockup-dot { width:10px;height:10px;border-radius:50%; }
.mockup-url {
  flex: 1; background: rgba(255,255,255,.08); border-radius: 6px;
  height: 22px; max-width: 300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; color: rgba(255,255,255,.4);
}
.mockup-body {
  display: grid; grid-template-columns: 220px 1fr; min-height: 380px;
}
.mockup-sidebar {
  background: rgba(26,16,51,.8);
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 1rem;
}
.mockup-nav-item {
  padding: .45rem .75rem; border-radius: 6px; margin-bottom: .25rem;
  font-size: .72rem; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: .5rem;
}
.mockup-nav-item.active {
  background: rgba(124,58,237,.25); color: #c4a6ff;
}
.mockup-nav-dot { width:6px;height:6px;border-radius:50%;background:currentColor;opacity:.6; }
.mockup-content { padding: 1.25rem; background: #f8f7ff; }
.mockup-topbar {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem;
}
.mockup-title { font-size: .85rem; font-weight: 700; color: #1a1033; }
.mockup-btn {
  background: var(--gp-grad); border-radius: 5px; padding: .3rem .7rem;
  font-size: .65rem; font-weight: 700; color: #fff;
}
.mockup-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-bottom: 1rem; }
.mockup-card {
  background: #fff; border-radius: 8px; padding: .75rem;
  border: 1px solid #e8e4f8;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.mockup-card-label { font-size: .6rem; color: #6b7280; margin-bottom: .25rem; }
.mockup-card-val { font-size: 1.1rem; font-weight: 800; color: #1a1033; }
.mockup-card-val span { font-size: .6rem; font-weight: 500; color: #7C3AED; }
.mockup-table { background: #fff; border-radius: 8px; border: 1px solid #e8e4f8; overflow: hidden; }
.mockup-row {
  display: grid; grid-template-columns: 1fr 80px 60px;
  padding: .4rem .75rem; font-size: .62rem;
  border-bottom: 1px solid #f0ecfb;
  align-items: center;
}
.mockup-row:last-child { border-bottom: none; }
.mockup-row.header { background: #f3f0fb; font-weight: 700; font-size: .58rem; color: #6b7280; }
.mockup-badge {
  display: inline-block; border-radius: 100px; padding: .1rem .45rem;
  font-size: .55rem; font-weight: 700;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-purple { background: #ede9fe; color: #5b21b6; }

/* ── SOCIAL PROOF ─────────────────────────────────────────────── */
.proof {
  background: var(--gp-surface);
  border-top: 1px solid var(--gp-border);
  border-bottom: 1px solid var(--gp-border);
  padding: 2rem;
  text-align: center;
}
.proof-label { font-size: .8rem; font-weight: 600; color: var(--gp-soft); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .08em; }
.proof-logos { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.proof-logo {
  font-size: .85rem; font-weight: 700; color: #9ca3af;
  letter-spacing: .04em; opacity: .7;
}

/* ── FEATURES ─────────────────────────────────────────────────── */
.section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gp-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--gp-soft); font-size: 1.05rem; max-width: 520px; line-height: 1.7;
  margin-bottom: 3rem;
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--gp-border);
  border-radius: 16px; padding: 1.75rem;
  transition: box-shadow .25s, transform .25s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(124,58,237,.12);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gp-grad); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-desc { font-size: .88rem; color: var(--gp-soft); line-height: 1.65; }

/* ── SPOTLIGHT ────────────────────────────────────────────────── */
.spotlight-wrap { background: var(--gp-surface); padding: 6rem 2rem; }
.spotlight { max-width: 1100px; margin: 0 auto; }
.spotlight-tabs {
  display: flex; gap: .5rem; margin-bottom: 2.5rem;
}
.sp-tab {
  padding: .55rem 1.25rem; border-radius: 8px; border: none;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all .2s;
  background: transparent; color: var(--gp-soft);
}
.sp-tab.active {
  background: var(--gp-grad); color: #fff;
  box-shadow: 0 2px 12px rgba(124,58,237,.35);
}
.spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.spotlight-features { list-style: none; }
.spotlight-features li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .85rem 0; border-bottom: 1px solid var(--gp-border);
  font-size: .95rem;
}
.spotlight-features li:last-child { border-bottom: none; }
.sp-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gp-grad); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .7rem; color: #fff; margin-top: .1rem;
}
.sp-feat-title { font-weight: 600; margin-bottom: .15rem; }
.sp-feat-desc { font-size: .82rem; color: var(--gp-soft); }
.spotlight-screen {
  background: #fff; border: 1px solid var(--gp-border);
  border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(124,58,237,.1);
}
.sp-screen-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 1px solid var(--gp-border);
}
.sp-screen-title { font-size: .85rem; font-weight: 700; }
.sp-count {
  font-size: .72rem; font-weight: 700;
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
  color: var(--gp-purple); border-radius: 100px; padding: .2rem .7rem;
}
.sp-member-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 0; border-bottom: 1px solid #f8f7ff;
}
.sp-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.sp-member-name { font-size: .82rem; font-weight: 600; }
.sp-member-role { font-size: .7rem; color: var(--gp-soft); }
.sp-status {
  margin-left: auto; font-size: .65rem; font-weight: 700;
  border-radius: 100px; padding: .15rem .55rem;
}

/* ── STATS ────────────────────────────────────────────────────── */
.stats-wrap { background: var(--gp-dark); padding: 5rem 2rem; }
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 2rem; text-align: center; }
.stat-val {
  font-size: 3rem; font-weight: 900; line-height: 1;
  background: var(--gp-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: .35rem;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* ── PRICING ──────────────────────────────────────────────────── */
.pricing-wrap { padding: 6rem 2rem; text-align: center; background: var(--gp-dark); }
.pricing-wrap .section-title { color: #fff; }
.pricing-wrap > .pricing-inner > p { color: rgba(255,255,255,.55); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.cycle-tabs { display: inline-flex; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: .25rem; margin-bottom: 3rem; }
.cycle-tab { padding: .45rem 1.25rem; border-radius: 7px; border: none; font-size: .85rem; font-weight: 600; cursor: pointer; background: transparent; color: rgba(255,255,255,.5); transition: all .2s; }
.cycle-tab.active { background: var(--gp-grad); color: #fff; box-shadow: 0 2px 8px rgba(124,58,237,.3); }
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; text-align: left; }
.pricing-card { border: 1px solid var(--gp-border); border-radius: 20px; padding: 2rem; background: #fff; transition: all .25s; }
.pricing-card:hover { box-shadow: 0 8px 32px rgba(124,58,237,.1); transform: translateY(-2px); }
.pricing-card.featured { background: var(--gp-dark); border-color: var(--gp-purple); position: relative; }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gp-grad); color: #fff; font-size: .7rem; font-weight: 700; padding: .25rem .9rem; border-radius: 100px; white-space: nowrap; }
.pc-name { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gp-soft); margin-bottom: .5rem; }
.pricing-card.featured .pc-name { color: rgba(255,255,255,.5); }
.pc-price { font-size: 2.75rem; font-weight: 900; color: var(--gp-text); line-height: 1; }
.pricing-card.featured .pc-price { color: #fff; }
.pc-price sup { font-size: 1.1rem; vertical-align: top; margin-top: .5rem; }
.pc-price sub { font-size: .85rem; font-weight: 400; color: var(--gp-soft); }
.pricing-card.featured .pc-price sub { color: rgba(255,255,255,.5); }
.pc-desc { font-size: .85rem; color: var(--gp-soft); margin: .75rem 0 1.5rem; line-height: 1.6; }
.pricing-card.featured .pc-desc { color: rgba(255,255,255,.55); }
.pc-divider { border: none; border-top: 1px solid var(--gp-border); margin: 1.25rem 0; }
.pricing-card.featured .pc-divider { border-color: rgba(255,255,255,.1); }
.pc-features { list-style: none; }
.pc-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; margin-bottom: .6rem; }
.pc-features li span { color: var(--gp-soft); }
.pricing-card.featured .pc-features li span { color: rgba(255,255,255,.6); }
.pc-check { color: var(--gp-purple); font-weight: 700; }
.pricing-card.featured .pc-check { color: #a78bfa; }
.pc-btn { width: 100%; padding: .75rem; border-radius: 10px; border: none; font-weight: 700; font-size: .9rem; cursor: pointer; margin-top: 1.5rem; }
.pc-btn-outline { background: transparent; border: 1.5px solid var(--gp-border); color: var(--gp-text); transition: all .2s; }
.pc-btn-outline:hover { border-color: var(--gp-purple); color: var(--gp-purple); }
.pc-btn-grad { background: var(--gp-grad); color: #fff; box-shadow: 0 4px 16px rgba(124,58,237,.4); transition: opacity .2s; }
.pc-btn-grad:hover { opacity: .88; }

/* ── PRICING — single card + slider ─────────────────────────── */
.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
}
.pricing-single-card {
  flex: 1 1 280px; min-width: 0; text-align: left; order: 2;
  background: rgba(255,255,255,.04); border: 1px solid rgba(124,58,237,.3);
  border-radius: 20px; padding: 2rem; position: relative; transition: border-color .25s;
}
.pricing-single-card.featured { border-color: var(--gp-purple); }
.psc-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gp-grad); color: #fff; font-size: .7rem; font-weight: 700;
  padding: .25rem .9rem; border-radius: 100px; white-space: nowrap;
}
.pricing-single-card .pc-name { color: rgba(255,255,255,.5); }
.psc-price-wrap { margin: .5rem 0 .25rem; }
.pricing-single-card .pc-price { color: #fff; }
.pricing-single-card .pc-price sup { color: rgba(255,255,255,.7); }
.pricing-single-card .pc-price sub { color: rgba(255,255,255,.4); }
.psc-saving { font-size: .8rem; color: #a78bfa; margin-top: .3rem; }
.pricing-single-card .pc-divider { border-color: rgba(255,255,255,.1); }
.psc-qty-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.psc-qty-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); }
.pc-slider {
  width: 100%; -webkit-appearance: none; appearance: none; height: 6px;
  border-radius: 3px; background: rgba(255,255,255,.12); outline: none; cursor: pointer;
  margin: .25rem 0; accent-color: var(--gp-purple);
}
.pc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 20px; height: 20px;
  border-radius: 50%; background: var(--gp-purple); cursor: pointer;
  box-shadow: 0 2px 8px rgba(124,58,237,.5);
}
.pc-slider::-moz-range-thumb {
  width: 20px; height: 20px; border: none; border-radius: 50%;
  background: var(--gp-purple); cursor: pointer; box-shadow: 0 2px 8px rgba(124,58,237,.5);
}
.psc-slider-hint { font-size: .75rem; color: rgba(255,255,255,.3); margin: .25rem 0 .5rem; }
.pricing-single-card .pc-features li span { color: rgba(255,255,255,.65); }
.pricing-single-card .pc-check { color: #a78bfa; }
.cycle-discount { font-size: .72rem; font-weight: 700; color: #a78bfa; margin-left: .2rem; }
.pricing-single-card .pc-btn-outline { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.8); }
.pricing-single-card .pc-btn-outline:hover { border-color: var(--gp-purple); color: #c4b5fd; }

/* ── PRICING — landing configurator (dark theme) ─────────────── */
.lc-wrap {
  flex: 1 1 280px; min-width: 0; text-align: left; order: 2;
  background: rgba(255,255,255,.04); border: 1px solid rgba(124,58,237,.3);
  border-radius: 20px; padding: 2rem; position: relative;
}
.lc-header { margin-bottom: .25rem; }
.lc-base-price { font-size: 2.25rem; font-weight: 900; color: #fff; line-height: 1.1; margin: .4rem 0 .2rem; }
.lc-base-price sup { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.7); vertical-align: super; }
.lc-base-price sub { font-size: .82rem; font-weight: 400; color: rgba(255,255,255,.4); }
.lc-wrap .pc-name { color: rgba(255,255,255,.5); }
.lc-wrap .psc-saving { font-size: .8rem; color: #a78bfa; margin-top: .2rem; }
.lc-metric-block { margin-bottom: 1.1rem; }
.lc-metric-label { display: flex; justify-content: space-between; align-items: baseline; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: .35rem; }
.lc-metric-qty { color: #a78bfa; font-weight: 700; }
.lc-metric-sub { display: flex; justify-content: space-between; font-size: .72rem; margin-top: .2rem; }
.lc-metric-bdown { color: rgba(255,255,255,.3); font-family: monospace; }
.lc-metric-cost { color: rgba(255,255,255,.5); font-weight: 600; }
.lc-total-section { margin-bottom: .75rem; }
.lc-total-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.35); margin-bottom: .5rem; }
.lc-total-row { display: flex; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: .25rem; }
.lc-grand-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: .6rem; padding-top: .5rem; border-top: 1px solid rgba(255,255,255,.1); }
.lc-grand-name { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.7); }
.lc-grand-amount { font-size: 2rem; font-weight: 900; color: #fff; }
.lc-grand-sub { font-size: .8rem; font-weight: 400; color: rgba(255,255,255,.4); margin-left: .2rem; }
.lc-wrap .pc-btn-outline { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.8); }
.lc-wrap .pc-btn-outline:hover { border-color: var(--gp-purple); color: #c4b5fd; }

/* ── TESTIMONIAL ──────────────────────────────────────────────── */
.testi-wrap { background: var(--gp-surface); padding: 6rem 2rem; }
.testi-inner { max-width: 900px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card { background: #fff; border: 1px solid var(--gp-border); border-radius: 16px; padding: 1.75rem; }
.testi-stars { color: #f59e0b; margin-bottom: .75rem; font-size: .9rem; }
.testi-quote { font-size: .92rem; line-height: 1.7; color: #374151; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gp-grad); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: #fff; }
.testi-name { font-size: .85rem; font-weight: 700; }
.testi-role { font-size: .75rem; color: var(--gp-soft); }

/* ── CTA FINALE ───────────────────────────────────────────────── */
.cta-wrap { padding: 6rem 2rem; text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.75rem,4vw,3rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -.02em; }
.cta-inner p { color: var(--gp-soft); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: .78rem; color: var(--gp-soft); margin-top: 1rem; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background: var(--gp-dark); color: rgba(255,255,255,.65); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-text { font-size: .85rem; line-height: 1.7; margin-top: .75rem; max-width: 260px; }
.footer-col h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.9); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .8rem; }
.footer-lang { display: flex; gap: .5rem; }
.lang-btn { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; padding: .2rem .6rem; font-size: .72rem; color: rgba(255,255,255,.5); cursor: pointer; transition: all .2s; }
.lang-btn:hover, .lang-btn.active { background: rgba(124,58,237,.25); border-color: rgba(124,58,237,.4); color: #c4a6ff; }

/* Utility */
.text-center { text-align: center; }
.grad-text { background: var(--gp-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── LOGIN MODAL ─────────────────────────────────────────────── */
.gp-modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(10,5,26,.75); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.gp-modal-backdrop.open { display: flex; }

.gp-modal-box {
  position: relative;
  background: #140c2e;
  border: 1px solid rgba(124,58,237,.35);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: min(420px, 94vw);
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(124,58,237,.15);
}

.gp-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.07); border: none; border-radius: 8px;
  color: rgba(255,255,255,.5); font-size: 1rem; width: 32px; height: 32px;
  cursor: pointer; line-height: 32px; text-align: center;
  transition: background .15s, color .15s;
}
.gp-modal-close:hover { background: rgba(255,255,255,.14); color: #fff; }

.gp-modal-logo {
  display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem;
}
.gp-modal-brand {
  font-size: 1.2rem; font-weight: 800;
  background: var(--gp-grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.gp-modal-title {
  font-size: 1.35rem; font-weight: 700; color: #fff;
  margin-bottom: 1.5rem; line-height: 1.25;
}

.gp-modal-form { display: flex; flex-direction: column; gap: 1rem; }

.gp-field { display: flex; flex-direction: column; gap: .4rem; }
.gp-field label {
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .05em;
}
.gp-field input {
  background: rgba(255,255,255,.06); border: 1px solid rgba(124,58,237,.25);
  border-radius: 10px; padding: .7rem 1rem;
  color: #fff; font-size: .95rem; font-family: inherit;
  transition: border-color .2s, background .2s;
  outline: none;
}
.gp-field input::placeholder { color: rgba(255,255,255,.25); }
.gp-field input:focus {
  border-color: rgba(124,58,237,.7);
  background: rgba(124,58,237,.08);
  box-shadow: 0 0 0 3px rgba(124,58,237,.15);
}

.gp-modal-submit {
  margin-top: .25rem;
  background: var(--gp-grad); color: #fff; border: none;
  border-radius: 10px; padding: .8rem;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
  transition: opacity .2s, transform .15s;
}
.gp-modal-submit:hover { opacity: .88; transform: translateY(-1px); }

.gp-modal-footer {
  text-align: center; margin-top: 1rem; font-size: .83rem;
}
.gp-modal-footer a { color: rgba(124,58,237,.9); text-decoration: none; }
.gp-modal-footer a:hover { color: #a78bfa; }

.gp-modal-divider {
  display: flex; align-items: center; gap: .75rem;
  margin: 1.25rem 0; color: rgba(255,255,255,.3); font-size: .8rem;
}
.gp-modal-divider::before, .gp-modal-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1);
}

.gp-modal-socials { display: flex; flex-direction: column; gap: .5rem; }
.gp-social-btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: .65rem 1rem;
  color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500;
  text-decoration: none; transition: background .2s, border-color .2s;
}
.gp-social-btn:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.2); color: #fff; }

/* ── Public pages (login, password reset, ecc.) ─────────────────────────── */
body.public-page { min-height: 100vh; display: flex; flex-direction: column; background: var(--gp-dark); }

.public-main { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 2rem 1rem; }

.public-auth-wrap { width: 100%; max-width: 460px; margin: 0 auto; }
.public-auth-wrap .gp-modal-box { width: 100%; max-width: 100%; }

.gp-alert {
  border-radius: 10px; padding: .75rem 1rem; font-size: .9rem; margin-bottom: .5rem;
}
.gp-alert-error  { background: rgba(214,69,80,.15); border: 1px solid rgba(214,69,80,.35); color: #fca5a5; }
.gp-alert-success { background: rgba(0,166,90,.15); border: 1px solid rgba(0,166,90,.35); color: #86efac; }
.gp-alert-info   { background: rgba(47,128,237,.15); border: 1px solid rgba(47,128,237,.35); color: #93c5fd; }

/* ── Cookie banner ──────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #1a0f30; border-top: 1px solid rgba(124,58,237,.35);
  padding: 1rem 1.5rem; opacity: 1; transition: opacity .3s;
}
.cookie-banner-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1; min-width: 200px; font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.5;
}
.cookie-banner-text strong { color: #fff; margin-right: .35rem; }
.cookie-banner-link { color: #a78bfa; text-decoration: none; margin-left: .35rem; }
.cookie-banner-link:hover { color: #c4b5fd; }
.cookie-banner-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-btn {
  border: none; border-radius: 8px; padding: .5rem 1.1rem;
  font-size: .85rem; font-weight: 600; cursor: pointer; transition: background .2s;
}
.cookie-btn-primary  { background: #7c3aed; color: #fff; }
.cookie-btn-primary:hover  { background: #6d28d9; }
.cookie-btn-secondary { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.cookie-btn-secondary:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ── Privacy / Cookie Policy page ──────────────────────────────────────── */
.privacy-wrap { max-width: 780px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.privacy-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 2.5rem 2.5rem 3rem;
}
.privacy-card h1 {
  font-size: 1.8rem; font-weight: 800; color: #fff; margin: 0 0 .25rem;
}
.privacy-updated { color: rgba(255,255,255,.35); font-size: .82rem; margin: 0 0 1.5rem; }
.privacy-card h2 {
  font-size: 1.05rem; font-weight: 700; color: #e2d9fa; margin: 2rem 0 .6rem;
}
.privacy-card p, .privacy-card li {
  color: rgba(255,255,255,.65); font-size: .93rem; line-height: 1.7;
}
.privacy-card ul { padding-left: 1.25rem; margin: .5rem 0 0; }
.privacy-card li { margin-bottom: .35rem; }
.privacy-card strong { color: rgba(255,255,255,.9); }
.privacy-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 2.5rem 0; }

.cookie-table-wrap { overflow-x: auto; margin: 1rem 0; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.cookie-table th {
  text-align: left; padding: .6rem .75rem;
  background: rgba(124,58,237,.2); color: rgba(255,255,255,.8);
  font-weight: 600; border-bottom: 1px solid rgba(124,58,237,.3);
}
.cookie-table td {
  padding: .6rem .75rem; color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cookie-table code { color: #c4b5fd; font-size: .82rem; }
.cookie-badge {
  display: inline-block; padding: .15rem .5rem; border-radius: 20px;
  font-size: .75rem; font-weight: 600;
}
.cookie-badge-essential  { background: rgba(0,166,90,.2);  color: #86efac; }
.cookie-badge-analytics  { background: rgba(47,128,237,.2); color: #93c5fd; }

/* ── Mobile responsive ──────────────────────────────────── */
@media (max-width: 767px) {

  /* Previeni overflow orizzontale globale */
  html, body { overflow-x: hidden; }

  /* Navbar: solo logo icona + Accedi, no nav-links */
  .nav { padding: 0 1rem; }
  .nav-logo-text { display: none; }
  .nav-links { display: none; }
  .nav-actions .btn-primary { font-size: .8rem; padding: .35rem .75rem; }

  /* Hero mockup: rimpicciolisci e togli la prospettiva 3D */
  .hero-mockup {
    width: 100%;
    transform: none;
  }
  .mockup-body { grid-template-columns: 1fr; min-height: auto; }
  .mockup-sidebar { display: none; }
  .mockup-cards { grid-template-columns: repeat(2, 1fr); }

  /* Sezioni: padding ridotto */
  .section { padding: 3.5rem 1.25rem; }
  .spotlight-wrap { padding: 3.5rem 1.25rem; }
  .stats-wrap { padding: 3rem 1.25rem; }
  .pricing-wrap { padding: 3.5rem 1.25rem; }
  .testi-wrap { padding: 3.5rem 1.25rem; }
  .cta-wrap { padding: 3.5rem 1.25rem; }
  footer { padding: 3rem 1.25rem 1.5rem; }

  /* Spotlight: una colonna invece di due */
  .spotlight-grid { grid-template-columns: 1fr; gap: 2rem; }
  .spotlight-tabs { flex-wrap: wrap; }

  /* Stats: due colonne */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Pricing: una colonna */
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-row { gap: .75rem; }
  .pricing-single-card, .lc-wrap, .lc-comp-card { flex: 1 1 100%; }

  /* Testimonials: una colonna */
  .testi-grid { grid-template-columns: 1fr; }

  /* Features: una colonna */
  .features-grid { grid-template-columns: 1fr; }

  /* Footer: una colonna */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }

  /* Cookie banner */
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }

  /* Privacy / Terms */
  .privacy-card { padding: 1.5rem 1.25rem 2rem; }
  .privacy-wrap { padding: 2rem 1rem 3rem; }
}

@media (max-width: 480px) {
  /* Footer una colonna su schermi molto stretti */
  .footer-top { grid-template-columns: 1fr; }

  /* Stats una colonna */
  .stats-grid { grid-template-columns: 1fr; }

  /* Hero testo più compatto */
  .hero { padding: 90px 1.25rem 3rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-hero, .btn-hero-ghost { width: 100%; text-align: center; }

  /* Cycle tabs pricing: uno per riga su mobile */
  .cycle-tabs { display: flex; flex-direction: column; width: 100%; }
  .cycle-tab { text-align: center; }
}

/* ── Tablet ─────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: .82rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .spotlight-grid { gap: 2rem; }
}

/* ── Companion plan cards (landing pricing section) ── */
.lc-companions { margin-top: 1.5rem; }
.lc-comp-card {
  flex: 1 1 280px; min-width: 0; text-align: left;
  background: rgba(255,255,255,.04); border: 1px solid rgba(124,58,237,.3);
  border-radius: 20px; padding: 2rem; position: relative;
  display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s;
}
.lc-comp-featured {
  border-color: var(--gp-purple);
  box-shadow: 0 0 0 1px var(--gp-purple), 0 8px 32px rgba(124,58,237,.25);
}
.lc-comp-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gp-grad); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: .25rem 1rem; border-radius: 100px; white-space: nowrap;
}
.lc-comp-name {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: rgba(255,255,255,.45); margin-bottom: .2rem;
}
.lc-comp-desc { font-size: .82rem; color: var(--gp-soft); margin-bottom: .5rem; }
.lc-comp-price {
  font-size: 2.25rem; font-weight: 900; color: #fff; line-height: 1.1; margin: .4rem 0 .2rem;
}
.lc-comp-price sup { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.7); vertical-align: super; }
.lc-comp-price sub { font-size: .82rem; font-weight: 400; color: rgba(255,255,255,.4); }
.lc-comp-price--contact { font-size: 1.3rem; color: rgba(255,255,255,.6); margin: .6rem 0; }
.lc-comp-metrics {
  list-style: none; padding: 0; margin: .75rem 0 0; flex: 1;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.lc-comp-metrics li::before { content: "•"; color: var(--gp-accent); margin-right: .35rem; }
.lc-comp-card .pc-btn-outline { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.8); margin-top: auto; }
.lc-comp-card .pc-btn-outline:hover { border-color: var(--gp-purple); color: #c4b5fd; }

/* ── Secondary configurator card (e.g. Club Standalone) ─────────────── */
.lc-sec-price-row {
  display: flex; align-items: baseline; gap: .4rem; margin: .4rem 0 .2rem;
}
.lc-sec-total-lbl { font-size: .78rem; color: rgba(255,255,255,.4); }
.lc-sec-price-wrap { font-size: 1.5rem; font-weight: 800; color: #fff; }
.lc-sec-period { font-size: .82rem; font-weight: 400; color: rgba(255,255,255,.4); margin-left: .2rem; }
.lc-sec-metric {
  padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.lc-sec-metric:last-child { border-bottom: none; }
.lc-sec-metric-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: .3rem;
}
.lc-sec-metric-name { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.75); }
.lc-sec-metric-cost { font-size: .88rem; font-weight: 700; color: var(--gp-accent); }
.lc-sec-slider-wrap {
  display: flex; align-items: center; gap: .4rem; margin-bottom: .2rem;
}
.lc-sec-slider-wrap .pc-slider { flex: 1; }
.lc-sec-end-lbl { font-size: .68rem; color: rgba(255,255,255,.3); white-space: nowrap; }
.lc-sec-qty-badge {
  font-size: .75rem; color: rgba(255,255,255,.45); text-align: right;
}

/* ── KPI PREVIEW (dark version of dashboard KPI cards) ────────────── */
.kpi-preview-wrap {
  background: var(--gp-dark);
  padding: 5rem 2rem;
}
.kpi-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.kpi-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.kpi-dark-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.kpi-dark-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gp-grad);
  border-radius: 16px 16px 0 0;
}
.kpi-dark-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(124,58,237,.35);
}

.kpi-dark-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: space-between;
}
.kpi-dark-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,.15);
  border-radius: 8px;
  color: var(--gp-purple);
  flex-shrink: 0;
}
.kpi-dark-icon svg { width: 15px; height: 15px; }
.kpi-dark-label {
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; color: rgba(255,255,255,.4);
  flex: 1;
}
.kpi-dark-value {
  font-size: 2rem; font-weight: 900; line-height: 1.1;
  background: var(--gp-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: .1rem 0;
}
.kpi-dark-chart {
  position: absolute; top: .85rem; right: .85rem;
  width: 44px; height: 44px;
}
.kpi-dark-donut { width: 44px; height: 44px; transform: rotate(-90deg); }
.kpid-slice {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: butt;
}
.kpid-prime { stroke: var(--gp-purple); opacity: .85; }
.kpid-jun   { stroke: #f59e0b; opacity: .8; }
.kpid-std   { stroke: rgba(255,255,255,.18); }
.kpid-ok    { stroke: #10b981; opacity: .85; }

.kpi-dark-breakdown {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: .4rem;
  padding-top: .45rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.kpid-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}
.kpid-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,255,255,.25);
}
.kpid-item--prime .kpid-dot { background: var(--gp-purple); }
.kpid-item--jun   .kpid-dot { background: #f59e0b; }
.kpid-item--std   .kpid-dot { background: rgba(255,255,255,.3); }
.kpid-item--ok    .kpid-dot { background: #10b981; }

@media (max-width: 600px) {
  .kpi-preview-wrap { padding: 3rem 1.25rem; }
  .kpi-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
