@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500..800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #ef283d;
  --color-primary-dark: #c81c2e;
  --color-primary-tint: #fdeced;
  --color-dark: #0e0e12;
  --color-dark-alt: #17171d;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f6f8;
  --color-border: #e9e7ea;
  --color-text: #16151a;
  --color-text-muted: #6c6a73;
  --color-on-dark: #ffffff;
  --color-on-dark-muted: #b7b6c0;
  --container-width: 1200px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 20px 45px -20px rgba(14, 14, 18, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4, h5 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 1.6rem + 3vw, 3.5rem);
}

h2 {
  font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.9rem;
}

.section-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-dark {
  background: var(--color-dark);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-text);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text .logo-title {
  display: block;
  line-height: 1.1;
}

.logo-text .logo-subtitle {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.logo-partner-logo {
  display: block;
  height: 20px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.primary-nav {
  display: flex;
  align-items: center;
}

.nav-drawer {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-drawer-head,
.drawer-cta {
  display: none;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
  position: relative;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--color-border);
}

.partner-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.partner-badge img {
  height: 18px;
  width: auto;
}

.menu-toggle {
  display: none;
}

.menu-icon,
.nav-close {
  display: none;
  cursor: pointer;
}

/* HERO */
.hero {
  overflow: hidden;
  background: var(--color-surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

.hero-copy p.lead {
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-form {
  display: flex;
  gap: 0.65rem;
  max-width: 460px;
  margin: 1.75rem 0;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  padding: 0.5rem;
  border-radius: 999px;
}

.hero-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--color-text);
  outline: none;
  min-width: 0;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: -0.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat .stat-number {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-primary);
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  background: linear-gradient(317deg, #00000017, transparent);
  padding: 2.5rem 2.5rem 0;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-image: url(../img/prulife-uk-logo.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 75%;
  /* filter: brightness(0) invert(1); */
  /* opacity: 0.08; */
  pointer-events: none;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 0.9rem 1.1rem;
  z-index: 3;
}

.float-card-profile {
  top: 8%;
  right: -6%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 190px;
  animation: pop-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.float-card-profile .avatar-placeholder {
  width: 34px;
  height: 34px;
  font-size: 0.7rem;
}

.float-card-profile .profile-name {
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
}

.float-card-profile .profile-value {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.float-card-chart {
  top: 42%;
  left: -13%;
  width: 168px;
  animation: pop-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.float-card-chart .card-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  display: block;
}

.bar-chart-placeholder {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
}

.bar-chart-placeholder span {
  flex: 1;
  border-radius: 3px;
  background: var(--color-border);
}

.bar-chart-placeholder span.is-accent {
  background: var(--color-primary);
}

.float-card-donut {
  bottom: 6%;
  right: -10%;
  width: 168px;
  text-align: center;
  animation: pop-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.donut-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 0.6rem;
  background: conic-gradient(var(--color-primary) 0deg 160deg, var(--color-dark) 160deg 260deg, var(--color-border) 260deg 360deg);
  position: relative;
}

.donut-placeholder::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
}

.donut-legend {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.float-card-qr {
  top: 61%;
  left: 50%;
  width: 190px;
  text-align: center;
  transform: translateX(-50%);
  animation: qr-pop-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both,
    qr-pop 2.6s ease-in-out infinite 1.35s backwards;
}

.hero-qr {
  width: 140px;
  height: 140px;
  margin: 0 auto 0.6rem;
}

.hero-qr svg {
  display: block;
  width: 100%;
  height: 100%;
}

.float-card-qr .card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@keyframes qr-pop {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(12px);
  }

  60% {
    opacity: 1;
    transform: scale(1.08) translateY(0);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes qr-pop-in {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.5) translateY(12px);
  }

  60% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08) translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .float-card-profile,
  .float-card-chart,
  .float-card-donut,
  .float-card-qr {
    animation: none;
  }
}

.donut-legend span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.donut-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.avatar-placeholder {
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 5.5rem 0;
  background: var(--color-surface-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: var(--color-dark);
  color: var(--color-on-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(239, 40, 61, 0.14);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--color-on-dark-muted);
  margin: 0;
}

.feature-step {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

/* PLANS */
.plans {
  padding: 5.5rem 0 7rem;
  background: linear-gradient(180deg, var(--color-primary-tint) 0%, var(--color-surface) 55%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px -28px rgba(14, 14, 18, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.plan-card.is-selected {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-tint);
}

.plan-card.is-featured {
  overflow: hidden;
  border-color: var(--color-primary);
  box-shadow: 0 30px 60px -22px rgba(239, 40, 61, 0.35);
  transform: translateY(-16px);
  z-index: 2;
}

.plan-card.is-featured.is-selected {
  box-shadow: 0 30px 60px -22px rgba(239, 40, 61, 0.35), 0 0 0 3px var(--color-primary-tint);
}

.plan-ribbon {
  position: absolute;
  top: 20px;
  right: -36px;
  transform: rotate(45deg);
  background: #f5c518;
  color: #16151a;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.4rem 2.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.plan-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.plan-price-big {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.plan-price-big small {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 0 1.25rem;
}

.plan-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.plan-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-title-row h3 {
  margin: 0;
  font-size: 1.1rem;
}

.plan-features {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
}

.plan-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.plan-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}

.btn-add-plan {
  width: 100%;
  background: var(--color-dark);
  color: #fff;
  border: 2px solid var(--color-dark);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-plan:hover {
  background: #000;
}

.btn-add-plan.is-added {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.plan-card.is-featured .btn-add-plan {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.plan-card.is-featured .btn-add-plan:hover {
  background: var(--color-primary-dark);
}

.plan-card.is-featured .btn-add-plan.is-added {
  background: var(--color-dark);
  border-color: var(--color-dark);
}

/* CART FAB */
.cart-fab {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cart-fab:hover {
  transform: translateY(-3px);
}

.cart-fab.has-items {
  background: var(--color-primary);
}

.cart-fab-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: var(--color-dark);
  font-size: 0.68rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-dark);
}

.cart-fab.has-items .cart-fab-count {
  border-color: var(--color-primary);
}

/* SHARE WIDGET */
.share-widget {
  position: fixed;
  left: 1.75rem;
  bottom: 1.75rem;
  z-index: 90;
}

.share-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.share-fab:hover {
  transform: translateY(-3px);
}

.share-fab[aria-expanded="true"] {
  background: var(--color-primary);
}

.share-panel {
  position: absolute;
  left: 0;
  bottom: 74px;
  width: 240px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.share-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.share-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

.share-panel-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0;
}

.share-panel-close:hover {
  color: var(--color-primary);
}

.share-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.share-qr svg {
  width: 100%;
  height: auto;
  max-width: 160px;
  display: block;
}

.share-url {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  word-break: break-all;
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials {
  padding: 5.5rem 0;
  background: var(--color-surface-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-person .avatar-placeholder {
  width: 44px;
  height: 44px;
  font-size: 0.8rem;
}

.testimonial-person .person-name {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
}

.testimonial-person .person-role {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* CTA BANNER */
.cta-banner {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 1.5rem;
}

.cta-banner-inner {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary-dark) 140%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  color: #fff;
  margin: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
}

.cta-banner-inner > * {
  position: relative;
  z-index: 1;
}

.cta-banner-inner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner-inner p {
  color: var(--color-on-dark-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ABOUT */
.about {
  padding: 5.5rem 0;
}

.about-copy {
  max-width: 720px;
  margin: 0 auto;
}

.about-intro {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-intro-text .section-eyebrow {
  margin-bottom: 0.4rem;
}

.about-intro-text h2 {
  margin-bottom: 0;
}

.about-image-frame {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 15%;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.credential-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
}

.credential-pill svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* CONTACT */
.contact {
  padding: 5.5rem 0;
  background: var(--color-surface-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
}

.contact-info {
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  height: fit-content;
}

.contact-info h3 {
  color: #fff;
}

.contact-info p {
  color: var(--color-on-dark-muted);
}

.contact-info-list {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-info-item .info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(239, 40, 61, 0.18);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .info-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-on-dark-muted);
  margin-bottom: 0.15rem;
}

.contact-info-item .info-value {
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-partner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

.contact-partner img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

.contact-partner span {
  font-size: 0.72rem;
  color: var(--color-on-dark-muted);
  line-height: 1.3;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
}

.cart-summary {
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}

.cart-summary-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
  display: block;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cart-list-empty {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.88rem;
  display: block;
}

.cart-item-price {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.cart-item-remove:hover {
  color: var(--color-primary);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-surface-alt);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-status {
  position: fixed;
  left: 50%;
  bottom: 1.75rem;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 280px;
  max-width: min(420px, calc(100vw - 3rem));
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-dark);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-border);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-status.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.form-status.is-success {
  border-left-color: #1a8f4c;
}

.form-status.is-error {
  border-left-color: var(--color-primary);
}

/* SUCCESS PAGE */
.success {
  padding: 7rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.success-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success .section-eyebrow {
  justify-content: center;
}

.success h1 {
  margin-bottom: 0.75rem;
}

.success-plans {
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  text-align: left;
}

.success-plans p {
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* FOOTER */
footer {
  background: var(--color-dark);
  color: var(--color-on-dark-muted);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--color-on-dark-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.footer-col h5 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--color-on-dark-muted);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.footer-bottom img {
  height: 16px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-license {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card.is-featured {
    transform: none;
    grid-column: span 2;
    max-width: 420px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 72px;
  }

  .header-cta {
    display: none;
  }

  .menu-icon {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
  }

  .menu-toggle:checked ~ .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle:checked ~ .nav-drawer {
    transform: translateX(0);
  }

  .nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 150;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(300px, 82vw);
    background: #fff;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
  }

  .nav-drawer-head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
  }

  .nav-close {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
  }

  .nav-drawer .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .drawer-cta {
    display: flex;
    margin-top: 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .drawer-cta .partner-badge {
    display: flex;
    border-left: none;
    padding-left: 0;
  }

  .hero-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .hero-form .btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.is-featured {
    grid-column: auto;
    max-width: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-inner {
    padding: 3rem 1.75rem;
  }

  .form-row-group {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 520px) {

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

  .float-card-profile {
    right: -3%;
    width: 160px;
  }

  .float-card-chart {
    left: -3%;
    width: 140px;
  }

  .float-card-donut {
    right: -3%;
    width: 140px;
  }

  .float-card-qr {
    top: 300px;
    left: 40%;
    width: 180px;
    padding: 0.6rem 0.9rem;
  }

  .hero-qr {
    width: 90px;
    height: 90px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .cart-fab {
    right: 1.1rem;
    bottom: 1.1rem;
    width: 52px;
    height: 52px;
  }

  .share-widget {
    left: 1.1rem;
    bottom: 1.1rem;
  }

  .share-fab {
    width: 52px;
    height: 52px;
  }

  .share-panel {
    width: min(240px, calc(100vw - 2.2rem));
    bottom: 66px;
  }
}
