/* Nova Lig - Rebranding 2026 */
:root {
  --green: #25D366;
  --green-dark: #128C7E;
  --blue: #0066FF;
  --blue-light: #3385FF;
  --orange: #FF6B00;
  --text: #1a1a2e;
  --text-muted: #555b6e;
  --bg: #ffffff;
  --bg2: #f7f9ff;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 24px rgba(0, 102, 255, 0.10);
  --radius: 16px;
  --radius-lg: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.15
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition)
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 102, 255, .3)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, .4)
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue)
}

.btn-ghost:hover {
  background: var(--blue);
  color: #fff
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.1rem
}

.btn-nav {
  background: var(--green);
  color: #fff;
  padding: .65rem 1.4rem;
  font-size: .9rem
}

.btn-nav:hover {
  background: var(--green-dark);
  transform: translateY(-1px)
}

/* HIGHLIGHT */
.highlight {
  color: var(--blue)
}

/* ANNOUNCE BAR */
.announce-bar {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  color: #fff;
  text-align: center;
  padding: .6rem 1rem;
  font-size: .9rem;
  font-weight: 500
}

.announce-bar strong {
  color: #ffe066;
  font-weight: 700
}

/* NAVBAR */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #00153a;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 0
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px
}

.brand-logo {
  height: 44px;
  width: auto
}

.nav-links-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center
}

.nav-links-list .nav-link {
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
  font-size: .92rem;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition)
}

.nav-links-list .nav-link:hover {
  color: #fff;
  border-bottom-color: var(--green)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem
}

.btn-nav {
  background: var(--green);
  color: #fff;
  padding: .6rem 1.3rem;
  font-size: .88rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition)
}

.btn-nav:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
  display: block
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem 1.5rem;
  background: #00153a;
  border-top: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.mobile-menu.open {
  display: flex
}

.mobile-link {
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  font-size: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.mobile-cta {
  text-align: center;
  border-radius: 50px;
  margin-top: .5rem
}

/* HERO */
#hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f5ff 0%, #e8f0fe 40%, #f0f9ff 100%)
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .22
}

.blob-1 {
  width: 700px;
  height: 700px;
  background: var(--blue);
  top: -250px;
  right: -200px
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: #25D366;
  bottom: -200px;
  left: -150px;
  opacity: .12
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 102, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 102, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center
}

/* HERO TEXT */
.badge-pill {
  display: inline-block;
  background: rgba(0, 102, 255, .09);
  color: var(--blue);
  border: 1.5px solid rgba(0, 102, 255, .18);
  padding: .42rem 1.1rem;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: 1.3rem
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  margin-bottom: 1.1rem;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1.1
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 480px
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem
}

.btn-hero {
  font-size: .98rem;
  padding: .95rem 1.8rem;
  animation: pulse-btn 2.5s infinite
}

@keyframes pulse-btn {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 102, 255, .3)
  }

  50% {
    box-shadow: 0 4px 35px rgba(0, 102, 255, .55)
  }
}

/* HERO PRICE INLINE */
.hero-price-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, .8);
  border: 1.5px solid rgba(0, 102, 255, .12);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px)
}

.price-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  white-space: nowrap
}

.price-pill strong {
  font-size: 2rem
}

.price-eq {
  font-size: .88rem;
  color: var(--green-dark);
  font-weight: 600
}

.hero-trust {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}

.trust-item {
  font-size: .84rem;
  color: var(--text-muted);
  font-weight: 500
}

/* HERO VISUAL - RAW MASCOT */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  overflow: visible;
  padding: 0 2.5rem;
  height: 520px
}

.hero-mascot {
  width: 100%;
  max-width: 460px;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* FLOAT BADGES */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  padding: .52rem 1.1rem;
  font-size: .83rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .16);
  z-index: 20;
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
  pointer-events: none
}

.badge-signal {
  top: 10%;
  right: -1%;
  animation-delay: 0s
}

.badge-wpp {
  top: 40%;
  left: -2%;
  animation-delay: .7s
}

.badge-chip {
  bottom: 12%;
  right: -1%;
  animation-delay: 1.4s
}

.badge-price {
  top: 20%;
  left: -1%;
  animation-delay: 2.1s
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

/* PROOF BAR */
#proof-bar {
  padding: 2.5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap
}

.proof-item {
  text-align: center;
  padding: 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .2rem
}

.proof-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue)
}

.proof-item span {
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: var(--border)
}

/* SECTION LABELS */
.section-label {
  display: inline-block;
  background: rgba(0, 102, 255, .08);
  color: var(--blue);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .8rem
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .8rem;
  letter-spacing: -.02em
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px
}

/* FEATURES */
#features {
  padding: 5rem 0;
  text-align: center
}

#features .section-sub {
  margin: 0 auto 3rem
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left
}

.feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition)
}

.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px)
}

.feat-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem
}

.feature-card p {
  color: var(--text-muted);
  font-size: .93rem
}

/* FOR WHO */
#for-who {
  padding: 5rem 0;
  background: var(--bg2)
}

.forwho-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.forwho-text .section-sub {
  margin-bottom: 2rem
}

.forwho-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 2rem
}

.forwho-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .97rem;
  color: var(--text)
}

.testi-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem
}

.testi-stars {
  font-size: 1rem;
  color: #FFB800;
  margin-bottom: .6rem
}

.testi-card p {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .7rem
}

.testi-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 700
}

/* Toggle Switch Container */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 600
}

.toggle-label {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition)
}

.toggle-label.active {
  color: #0066FF;
  font-weight: 700
}

.discount-badge {
  background: #0099ff;
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 800
}

/* New Switch UI */
.switch {
  --input-focus: #0066FF;
  --bg-color: #fff;
  --bg-color-alt: #666;
  --main-color: #00153a;
  --input-out-of-focus: #ccc;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 70px;
  height: 36px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.slider {
  box-sizing: border-box;
  border-radius: 100px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--input-out-of-focus);
  transition: 0.3s;
}

.slider:before {
  content: "";
  box-sizing: border-box;
  height: 30px;
  width: 30px;
  position: absolute;
  left: 1px;
  bottom: 1px;
  border: 2px solid var(--main-color);
  border-radius: 100px;
  background-color: var(--bg-color);
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 25px;
  transition: 0.3s;
}

.switch input:checked+.slider {
  background-color: var(--input-focus);
}

.switch input:checked+.slider:before {
  transform: translateX(32px);
}

/* PLANS */
#plans {
  padding: 5rem 0;
  text-align: center
}

#plans .section-sub {
  margin: 0 auto 3rem
}

.plan-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left
}

/* BASE CARD */
.plan-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
  border: 1.5px solid rgba(0, 0, 0, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 102, 255, .14)
}

/* CARD HEADER BAND */
.plan-header-band {
  padding: 1.8rem 2rem 1.4rem;
  background: linear-gradient(135deg, #e8f0ff 0%, #f4f8ff 100%);
  border-bottom: 1.5px solid rgba(0, 102, 255, .08);
}

.plan-card.featured .plan-header-band {
  background: linear-gradient(135deg, #0044cc 0%, #0099ff 100%);
  border-bottom: none;
}

.plan-card.featured .plan-header-band h3,
.plan-card.featured .plan-header-band p {
  color: #fff
}

.plan-header-band h3 {
  font-size: 1.5rem;
  margin-bottom: .25rem;
  color: var(--text)
}

.plan-period {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}

.plan-card.featured .plan-header-band h3 .plan-period {
  color: rgba(255, 255, 255, 0.7);
}

.plan-header-band p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.4;
  margin: 0
}

/* CARD BODY */
.plan-body {
  padding: 1.6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1
}

/* PRICE */
.price-block {
  margin-bottom: 1.2rem
}

.price-current {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: .25rem
}

.p-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Outfit', sans-serif
}

.p-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--blue);
  font-family: 'Outfit', sans-serif;
  line-height: 1
}

.p-dec {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Outfit', sans-serif
}

.p-dec small {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500
}

.price-equiv {
  font-size: .82rem;
  color: var(--green-dark);
  font-weight: 600;
  background: rgba(37, 211, 102, .08);
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 50px;
  margin-bottom: 1.2rem
}

/* FEATURED PRICE */
.plan-card.featured .p-currency,
.plan-card.featured .p-amount,
.plan-card.featured .p-dec {
  color: #0044cc
}

/* SEPARATOR */
.plan-sep {
  height: 1px;
  background: var(--border);
  margin: 1rem 0
}

/* FEATURES LIST */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.8rem;
  flex: 1
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .9rem;
  color: var(--text)
}

.plan-features li .check {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .05rem
}

/* BUTTON */
.btn-plan {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 700;
  gap: .5rem;
  margin-top: auto;
  white-space: nowrap;
  background: linear-gradient(135deg, #0066FF, #00aaff);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 102, 255, .25);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, .35)
}

.btn-plan.featured {
  background: linear-gradient(135deg, #0044cc, #00ccff);
  box-shadow: 0 4px 16px rgba(0, 100, 200, .35);
}

.btn-plan.featured:hover {
  box-shadow: 0 8px 24px rgba(0, 150, 255, .5)
}

/* BADGE */
.plan-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  border: 1px solid rgba(255, 255, 255, .35);
  white-space: nowrap;
  margin-bottom: .6rem;
}

/* FEATURED CARD */
.plan-card.featured {
  border: 2px solid #0099ff;
  box-shadow: 0 8px 40px rgba(0, 100, 255, .22);
  transform: scale(1.03);
  z-index: 2;
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 150, 255, .32)
}

/* LINES DROPDOWN */
.lines-selector {
  margin-bottom: 1rem
}

.lines-selector label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: .4rem
}

.lines-dropdown {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  transition: border-color .2s
}

.lines-dropdown:focus {
  outline: none;
  border-color: var(--blue)
}

/* HOW IT WORKS */
#how-it-works {
  padding: 5rem 0;
  background: var(--bg2);
  text-align: center
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem
}

.step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  position: relative
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800
}

/* FAQ */
#faq {
  padding: 5rem 0
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition)
}

.faq-item.open {
  border-color: var(--blue)
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  text-align: left
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  padding: 0 1.5rem
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 1rem 1.5rem
}

/* FINAL CTA */
#final-cta {
  padding: 5rem 0;
  background: var(--bg2)
}

.final-cta-box {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  color: #fff
}

.btn-cta-final {
  background: #fff;
  color: var(--blue);
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: inline-block
}

/* FOOTER */
#footer {
  background: #00153a;
  color: rgba(255, 255, 255, .65);
  padding: 5rem 0 0;
  font-size: .95rem
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem
}

.footer-brand p {
  margin: 1.5rem 0;
  line-height: 1.6
}

.footer-logo {
  height: 48px;
  width: auto;
  display: block
}

.footer-social {
  display: flex;
  gap: 1.5rem
}

.social-link {
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .3s
}

.social-link:hover {
  color: #fff
}

.footer-links-col h4,
.footer-contact-col h4 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 700
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.footer-links-col a {
  color: rgba(255, 255, 255, .65);
  transition: color .3s
}

.footer-links-col a:hover {
  color: #00aaff
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.footer-contact-col p {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0
}

.btn-wa-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, .15);
  color: #25D366;
  padding: .8rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  margin-top: .5rem;
  transition: all .3s
}

.btn-wa-footer:hover {
  background: #25D366;
  color: #fff
}

.footer-bottom {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
  color: rgba(255, 255, 255, .4)
}

/* GUARANTEE STRIP */
.guarantee-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #00153a, #0028a0);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  flex: 1;
  min-width: 200px
}

.gtd-icon {
  font-size: 2rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .12);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.gtd-text {
  display: flex;
  flex-direction: column;
  gap: .2rem
}

.gtd-text strong {
  color: #fff;
  font-size: .95rem;
  font-family: 'Outfit', sans-serif
}

.gtd-text span {
  color: rgba(255, 255, 255, .65);
  font-size: .82rem
}

.gtd-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0
}

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0)
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.fade-in-delay-1 {
  transition-delay: .1s
}

.fade-in-delay-2 {
  transition-delay: .2s
}

.fade-in-delay-3 {
  transition-delay: .3s
}

.fade-in-delay-4 {
  transition-delay: .4s
}

/* BUTTON UPGRADES */
.btn {
  position: relative;
  overflow: hidden
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s
}

.btn:hover::after {
  background: rgba(255, 255, 255, .08)
}

.btn-primary:active {
  transform: translateY(0) scale(.97)
}

.btn-ghost {
  transition: var(--transition);
  position: relative
}

.btn-ghost:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, .3)
}

/* PLAN CARD HOVER */
.plan-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.plan-card:not(.featured):hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 102, 255, .18)
}

.plan-card.featured {
  animation: featured-glow 2.5s ease-in-out infinite
}

@keyframes featured-glow {

  0%,
  100% {
    box-shadow: 0 15px 50px rgba(255, 107, 0, .2)
  }

  50% {
    box-shadow: 0 20px 60px rgba(255, 107, 0, .4)
  }
}

/* TOGGLE ANIMATION */
.toggle-label {
  transition: color .3s ease, font-weight .3s ease
}

.pricing-toggle-container .switch:hover .slider {
  background-color: #aaa
}

/* PROOF BAR */
#proof-bar {
  padding: 2.5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap
}

.proof-item {
  text-align: center;
  padding: 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  transition: transform .3s
}

.proof-item:hover {
  transform: translateY(-3px)
}

.proof-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue)
}

.proof-item span {
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: var(--border)
}

/* FAQ UPGRADE */
.faq-question {
  color: var(--text);
  transition: color .3s
}

.faq-item:hover .faq-question {
  color: var(--blue)
}

.faq-icon {
  transition: transform .35s ease, color .3s
}

/* HOW IT WORKS */
.step {
  transition: transform .3s ease, box-shadow .3s ease
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.step-icon {
  transition: transform .3s
}

.step:hover .step-icon {
  transform: scale(1.2)
}

/* FEATURE CARDS */
.feature-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.feat-icon {
  transition: transform .3s
}

.feature-card:hover .feat-icon {
  transform: scale(1.15) rotate(-5deg)
}

/* FLOAT WPP */
.float-wpp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  transition: transform .3s, box-shadow .3s
}

.float-wpp:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .6)
}

.float-wpp-icon {
  font-size: 1.8rem;
  animation: wpp-bounce 2s ease-in-out infinite
}

@keyframes wpp-bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

/* SECTIONS */
section {
  padding: 5rem 0
}

#proof-bar,
#how-it-works,
#for-who,
#final-cta {
  background: var(--bg2)
}

#features,
#plans,
#faq {
  background: #fff
}

/* RESPONSIVE */
@media(max-width:968px) {

  .nav-links-list,
  .nav-right {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-inner, .forwho-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .forwho-text, .forwho-list {
    text-align: left;
  }

  .hero-text {
    order: 2;
  }

  .hero-visual {
    order: 1;
    height: 420px
  }

  .plan-wrapper, .features-grid {
    grid-template-columns: 1fr
  }

  .guarantee-strip {
    gap: 0;
    padding: 1.5rem
  }

  .guarantee-item {
    min-width: 160px;
    padding: .8rem 1rem
  }

  .gtd-divider {
    display: none
  }

  .proof-divider {
    display: none
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem
  }
}

@media(max-width:600px) {
  h1 {
    font-size: 2rem
  }

  .section-title {
    font-size: 1.7rem
  }

  .hero-visual {
    padding: 0;
    height: 380px;
  }

  .hero-mascot {
    max-width: 300px;
  }

  .float-badge {
    font-size: .75rem;
    padding: .4rem .8rem;
  }

  .badge-signal { right: 0%; top: 5%; }
  .badge-wpp { left: 0%; top: 35%; }
  .badge-chip { right: 0%; bottom: 10%; }
  .badge-price { left: 0%; top: 15%; }

  .guarantee-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem
  }

  .guarantee-item {
    width: 100%
  }

  .final-cta-box {
    padding: 2.5rem 1.5rem
  }
}