/* ===================== PLIIN — SHARED STYLES ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #0f1530;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
:root {
  --navy: #213b8a;
  --navy-deep: #0d1f5c;
  --cyan: #009fe3;
  --cyan-soft: #9fd3ec;
  --cyan-lighter: #4fc0ee;
  --ink: #0a0a1a;
  --bg-soft: #f5f7ff;
  --white: #ffffff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 8px rgba(33,59,138,.08);
  --shadow-md: 0 12px 40px rgba(33,59,138,.18);
  --shadow-glow: 0 0 0 1px rgba(0,159,227,.5), 0 10px 40px rgba(0,159,227,.35);
}
h1, h2, h3, h4, h5 {
  font-family: 'Parkinsans', 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 .5em;
}
h1 { font-weight: 800; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 80px 0; } }

/* ===================== NAVBAR ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(33,59,138,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-logo .logo-dark { display: block; }
.nav-logo .logo-light { display: none; }
.nav.hero-mode:not(.scrolled) .logo-dark { display: none; }
.nav.hero-mode:not(.scrolled) .logo-light { display: block; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-weight: 500; font-size: 15px;
}
.nav-links a {
  color: #0f1530;
  opacity: .75;
  transition: opacity .2s, color .2s;
  position: relative;
}
.nav-links a.active { opacity: 1; color: var(--cyan); }
.nav.hero-mode:not(.scrolled) .nav-links a { color: #ffffff; opacity: .85; }
.nav.hero-mode:not(.scrolled) .nav-links a.active { color: var(--cyan-soft); opacity: 1; }
.nav-links a:hover { opacity: 1; color: var(--cyan); }
.nav-cta {
  background: var(--cyan);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); color: #fff; }
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  padding: 6px;
  border-radius: 10px;
  transition: background .2s;
}
.nav-hamburger:hover { background: rgba(33,59,138,.08); }
.nav.hero-mode:not(.scrolled) .nav-hamburger:hover { background: rgba(255,255,255,.12); }
.nav-hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .3s, opacity .3s, background .3s;
  transform-origin: center;
}
.nav.hero-mode:not(.scrolled) .nav-hamburger span { background: #fff; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .seo-home, .instagram-home, .whatsapp-home { margin: 0px!important }
  .why { padding: 80px 0 160px 0; }
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Parkinsans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid rgba(33,59,138,.07);
  opacity: .7;
  transition: opacity .2s, color .2s;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover, .mobile-menu a.active { opacity: 1; color: var(--cyan); }
.mobile-menu .mobile-menu-cta {
  margin-top: 20px;
  background: var(--cyan);
  color: #fff !important;
  opacity: 1 !important;
  border-radius: 999px;
  padding: 18px 28px !important;
  border-bottom: 0 !important;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0,159,227,.35);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform .25s cubic-bezier(.2,.9,.3,1.2), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15) inset, 0 10px 30px rgba(0,159,227,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.25) inset, 0 16px 50px rgba(0,159,227,.55);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); color: #fff; }
.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(33,59,138,.25);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(33,59,138,.4); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(33,59,138,.25);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===================== PLACEHOLDERS (images to be replaced) ===================== */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(33,59,138,.04) 0 12px, rgba(33,59,138,.08) 12px 24px),
    linear-gradient(180deg, rgba(0,159,227,.08), rgba(33,59,138,.08));
  border: 1.5px dashed rgba(33,59,138,.25);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  color: var(--navy);
  overflow: hidden;
  min-height: 200px;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 50%);
  pointer-events: none;
}
.ph .ph-inner {
  text-align: center; padding: 24px;
  position: relative; z-index: 1;
}
.ph .ph-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(33,59,138,.12);
  display: grid; place-items: center;
  margin: 0 auto 14px;
  color: var(--cyan);
  box-shadow: 0 6px 18px rgba(33,59,138,.08);
}
.ph .ph-label {
  font-family: 'Parkinsans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.ph .ph-hint {
  font-size: 12px;
  color: #5a6589;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ph.dark {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,.08) 12px 24px),
    linear-gradient(180deg, rgba(0,159,227,.12), rgba(255,255,255,.04));
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.ph.dark .ph-icon { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--cyan-soft); }
.ph.dark .ph-hint { color: rgba(255,255,255,.55); }

/* ===================== REVEAL ON SCROLL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.85,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* ===================== SECTION HEAD ===================== */
.section-head { text-align: center; max-width: 780px; margin: 0 auto 64px; }
.section-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-head h2 {
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 52px);
  margin-bottom: 18px;
}
.section-head p {
  color: #4a5578;
  font-size: 18px;
  text-wrap: pretty;
}

/* ===================== GENERIC PAGE HERO (inner pages) ===================== */
.page-hero {
  position: relative;
  padding: 120px 0 100px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(0,159,227,.45), transparent 60%),
    radial-gradient(800px 500px at 85% 80%, rgba(33,59,138,.85), transparent 60%),
    linear-gradient(180deg, #0a0a1a 0%, #111a3d 55%, #0a0a1a 100%);
  z-index: -2;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  z-index: -1;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) { .page-hero-inner { grid-template-columns: 1fr; gap: 40px; } }
.page-hero .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.page-hero .badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.page-hero h1 .accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-lighter) 60%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero .lede {
  font-size: clamp(17px, 1.3vw, 19px);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 36px;
}
.page-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== PRICING CARDS ===================== */
.pricing-grid { display: grid; gap: 18px; }
.pricing-grid.three { grid-template-columns: repeat(3, 1fr); }
.pricing-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) {
  .pricing-grid.three, .pricing-grid.two { grid-template-columns: 1fr; }
}
.price-card {
  position: relative;
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.price-card .tier {
  font-family: 'Parkinsans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price-card .amount {
  font-family: 'Parkinsans', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 4px;
}
.price-card .amount .cur { font-size: 22px; vertical-align: top; margin-right: 2px; font-weight: 600; }
.price-card .amount .vat { font-size: 14px; font-weight: 500; opacity: .7; margin-left: 4px; }
.price-card .period { font-size: 13px; opacity: .7; margin-bottom: 16px; }
.price-card .detail {
  font-size: 14px;
  opacity: .85;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.price-card .badge-feat {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,159,227,.5);
}

/* Light pricing */
.price-card.light {
  background: #fff;
  border: 1px solid rgba(33,59,138,.1);
  color: var(--navy);
}
.price-card.light:hover { transform: translateY(-4px); border-color: rgba(0,159,227,.4); box-shadow: var(--shadow-md); }
.price-card.light .tier { color: var(--cyan); }
.price-card.light .period { color: #4a5578; }
.price-card.light .detail { color: #4a5578; border-top-color: rgba(33,59,138,.1); }
.price-card.light.featured {
  background: linear-gradient(180deg, #213b8a 0%, #0d1f5c 100%);
  border-color: rgba(0,159,227,.5);
  color: #fff;
}
.price-card.light.featured .tier { color: var(--cyan-soft); }
.price-card.light.featured .period { color: rgba(255,255,255,.65); }
.price-card.light.featured .detail { color: rgba(255,255,255,.8); border-top-color: rgba(255,255,255,.15); }

/* Dark pricing (for dark backgrounds) */
.price-card.dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: #fff;
}
.price-card.dark:hover { transform: translateY(-4px); border-color: rgba(0,159,227,.5); }
.price-card.dark .tier { color: var(--cyan-soft); }
.price-card.dark .period { color: rgba(255,255,255,.6); }
.price-card.dark .detail { border-top-color: rgba(255,255,255,.12); color: rgba(255,255,255,.75); }
.price-card.dark.featured {
  background: linear-gradient(180deg, rgba(0,159,227,.22) 0%, rgba(0,159,227,.06) 100%);
  border: 1px solid rgba(0,159,227,.55);
  box-shadow: 0 20px 50px rgba(0,159,227,.2);
}

/* ===================== PRICE CARD CTA ===================== */
.price-card-cta {
  display: block;
  margin-top: 18px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.price-card.dark .price-card-cta {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.price-card.dark .price-card-cta:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,159,227,.4);
}
.price-card.dark.featured .price-card-cta {
  background: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: 0 6px 20px rgba(0,159,227,.4);
}
.price-card.dark.featured .price-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,159,227,.6);
}
.price-card.light .price-card-cta {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(33,59,138,.25);
}
.price-card.light .price-card-cta:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33,59,138,.25);
}
.price-card.light.featured .price-card-cta {
  background: var(--cyan);
  border: 1.5px solid var(--cyan);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,159,227,.35);
}
.price-card.light.featured .price-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,159,227,.55);
}

/* ===================== WHY PLIIN ===================== */
.why {
  background: var(--cyan);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 400px at 10% 20%, rgba(255,255,255,.2), transparent 60%),
    radial-gradient(600px 500px at 90% 80%, rgba(33,59,138,.35), transparent 60%);
  pointer-events: none;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 860px) { .why-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; } }
.why h2 { font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 20px; }
.why p.lede { font-size: 18px; color: rgba(255,255,255,.85); max-width: 520px; margin-bottom: 0; }
@media (max-width: 860px) { .why p.lede { margin: 0 auto; } }
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-stat {
  padding: 28px 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: transform .3s, background .3s;
}
.why-stat:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.why-stat .big {
  font-family: 'Parkinsans', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.why-stat .big .suf { font-size: .55em; opacity: .8; margin-left: 2px; }
.why-stat .label { font-size: 14px; color: rgba(255,255,255,.85); letter-spacing: .02em; }
.mascot-why {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 180px;
  transform: rotate(10deg);
  pointer-events: none;
}
.mascot-why img { filter: brightness(0) invert(1); width: 100%; }

/* ===================== FOOTER ===================== */
.footer-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 50% 100%, rgba(0,159,227,.35), transparent 70%);
  pointer-events: none;
}
.footer-cta .container { position: relative; z-index: 1; }
.footer-cta h2 { font-size: clamp(36px, 4.8vw, 60px); margin-bottom: 18px; }
.footer-cta p.lede { font-size: 18px; color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto 36px; }

.footer {
  background: #0a1130;
  color: rgba(255,255,255,.6);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 280px; color: rgba(255,255,255,.55); }
.footer-col h5 {
  font-family: 'Parkinsans', sans-serif;
  color: #fff;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 8px 0 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, transform .2s;
}
.socials a:hover { background: var(--cyan); color: #fff; transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a:hover { color: var(--cyan); }

/* ===================== BULLET LIST ===================== */
.bullet-list {
  list-style: none; padding: 0; margin: 0 0 40px;
  display: grid; gap: 14px;
}
.bullet-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px;
}
.bullet-list .b-icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-top: 1px;
}
.bullet-list.light .b-icon {
  background: rgba(0,159,227,.12);
  color: var(--cyan);
  border: 1px solid rgba(0,159,227,.2);
}
.bullet-list.dark .b-icon {
  background: rgba(0,159,227,.18);
  color: var(--cyan-lighter);
  border: 1px solid rgba(0,159,227,.3);
}
