/* WIZZ Cloud - shared stylesheet */

:root {
  --wizz-pink: #C6007E;
  --wizz-pink-dark: #A30068;
  --wizz-pink-light: #F0E1EB;
  --wizz-navy: #1A1A2E;
  --wizz-grey: #5A5A6E;
  --wizz-bg: #FAFAFC;
  --wizz-white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(26, 26, 46, 0.08);
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--wizz-navy);
  background: var(--wizz-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--wizz-pink); text-decoration: none; }
a:hover { text-decoration: underline; }

p { margin-bottom: 14px; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar */
header.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--wizz-navy);
  letter-spacing: -0.5px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--wizz-pink);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.logo .cloud-tag {
  color: var(--wizz-pink);
  font-weight: 600;
}
nav.menu ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
nav.menu a {
  color: var(--wizz-navy);
  font-weight: 500;
  font-size: 15px;
}
.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--wizz-pink); color: #fff; }
.btn-primary:hover {
  background: var(--wizz-pink-dark);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--wizz-navy);
  border-color: #d9d9e3;
}
.btn-secondary:hover {
  border-color: var(--wizz-pink);
  color: var(--wizz-pink);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 85% 20%, rgba(198, 0, 126, 0.08), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(198, 0, 126, 0.06), transparent 45%),
    var(--wizz-bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--wizz-pink-light);
  color: var(--wizz-pink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--wizz-pink); }
.hero p.lead {
  font-size: 18px;
  color: var(--wizz-grey);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-foot { margin-top: 20px; color: var(--wizz-grey); font-size: 14px; }

/* Hero card mock */
.hero-visual {
  background: var(--wizz-white);
  border: 1px solid #ececf2;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.hv-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f5;
}
.hv-head .title { font-weight: 700; font-size: 15px; }
.hv-head .badge {
  background: #e9f8ef;
  color: #1e7c41;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}
.file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.file-row:hover { background: #fafafd; }
.file-row .l { display: flex; align-items: center; gap: 12px; }
.file-icon {
  width: 32px; height: 32px;
  background: var(--wizz-pink-light);
  color: var(--wizz-pink);
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.file-name { font-size: 14px; font-weight: 500; }
.file-meta { color: var(--wizz-grey); font-size: 12px; }

/* Sections */
section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--wizz-grey);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--wizz-white);
  border: 1px solid #ececf2;
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--wizz-pink-light);
  color: var(--wizz-pink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature p {
  color: var(--wizz-grey);
  font-size: 15px;
}

/* Stats bar */
.stats { background: var(--wizz-navy); color: #fff; padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.stat .num span { color: var(--wizz-pink); }
.stat .lbl {
  font-size: 14px;
  color: #b8b8c5;
  margin-top: 4px;
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--wizz-pink) 0%, var(--wizz-pink-dark) 100%);
  color: #fff;
  text-align: center;
  border-radius: 16px;
  padding: 56px 32px;
  margin: 80px auto;
  max-width: 1100px;
}
.cta-band h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.6px;
}
.cta-band p {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 24px;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--wizz-pink);
}
.cta-band .btn-primary:hover { background: #f5f5f5; }

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 48px 0 28px;
  color: var(--wizz-grey);
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
footer h4 {
  color: var(--wizz-navy);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: var(--wizz-grey); }
footer a:hover { color: var(--wizz-pink); }
.foot-bottom {
  border-top: 1px solid #f0f0f5;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* Generic content pages */
.page {
  padding: 64px 0 40px;
  background: linear-gradient(180deg, rgba(198,0,126,0.04), transparent 60%);
}
.page h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.page .subtitle {
  color: var(--wizz-grey);
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 20px;
}
.content {
  padding: 48px 0 64px;
  background: #fff;
}
.content .narrow {
  max-width: 760px;
  margin: 0 auto;
}
.content h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 36px 0 14px;
}
.content h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 22px 0 8px;
}
.content p, .content li {
  color: #3a3a4d;
  font-size: 16px;
}
.content ul, .content ol { margin: 8px 0 18px 22px; }
.content li { margin-bottom: 6px; }
.content blockquote {
  border-left: 3px solid var(--wizz-pink);
  padding: 6px 18px;
  color: var(--wizz-grey);
  margin: 18px 0;
  background: #fafafd;
}

/* Pricing */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 14px;
  padding: 32px;
}
.plan.highlight {
  border-color: var(--wizz-pink);
  box-shadow: 0 12px 32px rgba(198, 0, 126, 0.12);
  position: relative;
}
.plan.highlight::before {
  content: "Most popular";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--wizz-pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.plan .name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--wizz-grey);
  margin-bottom: 12px;
}
.plan .price {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
}
.plan .price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--wizz-grey);
}
.plan p.desc {
  color: var(--wizz-grey);
  margin: 8px 0 20px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.plan li {
  padding: 8px 0;
  font-size: 15px;
  color: #3a3a4d;
  border-bottom: 1px solid #f3f3f7;
  display: flex; gap: 8px; align-items: flex-start;
}
.plan li::before {
  content: "✓";
  color: var(--wizz-pink);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 38px; }
  .features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  nav.menu { display: none; }
  section { padding: 56px 0; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 30px; }
  .section-head h2 { font-size: 26px; }
  .cta-band h2 { font-size: 24px; }
  .foot-grid { grid-template-columns: 1fr; }
  .page h1 { font-size: 30px; }
}
