/* ============================================
   DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   Portify brand — v2.0 — 2026-03-27
   Authority: Sloane brand guidelines + visual direction brief
   ============================================ */

:root {
  /* --- Color: Base + Surface Hierarchy --- */
  --base:                  #0e0e0f;   /* near-black — the room */
  --surface-1:             #141415;   /* cards, tiles — one step up */
  --surface-2:             #1a1a1b;   /* raised elements */
  --surface-3:             #222224;   /* highest contrast surface */

  /* --- Color: Text --- */
  --text-primary:          #f0f0f0;   /* near-white — headlines, primary copy */
  --text-secondary:        #8a8a8e;   /* muted — secondary labels, meta */

  /* --- Color: Accent (one, flat, the only thing asking for attention) --- */
  --accent:                #00e676;   /* electric green — the button, the click */
  --on-accent:             #0a0a0a;   /* near-black text on the accent */

  /* --- Shadow --- */
  --shadow-ambient: 0px 12px 32px rgba(0, 0, 0, 0.32);

  /* --- Typography (Inter only) --- */
  --font:  'Inter', sans-serif;

  /* --- Border Radius --- */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-full: 9999px;
}


/* ============================================
   FONT FACES — Inter (local files)
   ============================================ */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/InterVariable-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}


/* ============================================
   RESET / GLOBAL
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Override Bulma's default light background */
.hero,
section,
.section {
  background-color: var(--base);
  color: var(--text-primary);
}

/* All headings — Inter, no Manrope */
h1, h2, h3, h4, h5, h6,
.title {
  font-family: var(--font);
  color: var(--text-primary);
}

/* Override Bulma link + text defaults */
a,
.navbar-item,
.subtitle,
p {
  color: var(--text-primary);
}

/* Tight tracking utility */
.tight-letters {
  letter-spacing: -0.04em;
}


/* ============================================
   COMPONENTS — LOGO TEXT
   ============================================ */

.logo {
  display: none;
}

.navbar-logo-text {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text-primary) !important;
}


/* ============================================
   COMPONENTS — NAVBAR
   ============================================ */

.navbar.is-white.is-fixed-top {
  background: rgba(14, 14, 15, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: none;
}

/* Bulma reset — remove its own shadow border */
.navbar.has-shadow {
  box-shadow: none;
}

/* Ensure Bulma's .navbar-menu gets the dark background on mobile */
.navbar-menu {
  background-color: var(--surface-1);
}

@media screen and (min-width: 1024px) {
  .navbar-menu {
    background-color: transparent;
  }
}

.navbar-item,
.navbar-link {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  transition: color 0.15s ease;
  background-color: transparent !important;
}

.navbar-item:hover,
.navbar-link:hover {
  color: var(--text-primary) !important;
  background-color: transparent !important;
}

/* Navbar CTA buttons container */
.navbar-cta-buttons .button {
  min-width: 100px;
}


/* ============================================
   COMPONENTS — BUTTONS
   ============================================ */

/* -- Primary / Accent -- */
/* Used in navbar and anywhere a secondary action lives */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--on-accent) !important;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: var(--on-accent) !important;
}

/* -- Ghost / Secondary text link in nav -- */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-secondary) !important;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.btn-ghost:hover {
  color: var(--text-primary) !important;
}

/* -- Hero primary CTA (the action, the click) -- */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--on-accent) !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.btn-hero-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: var(--on-accent) !important;
}

/* -- Hero secondary (recedes behind primary) -- */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-3);
  color: var(--text-primary) !important;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.btn-hero-secondary:hover {
  background-color: #2a2a2d;
  color: var(--text-primary) !important;
}

/* -- Pricing: accent button (featured plan) -- */
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--on-accent) !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s ease;
  width: 100%;
  justify-content: center;
}

.btn-tertiary:hover {
  filter: brightness(1.1);
  color: var(--on-accent) !important;
}

/* -- Pricing: standard plan button -- */
.btn-standard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-3);
  color: var(--text-primary) !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease;
  width: 100%;
  justify-content: center;
}

.btn-standard:hover {
  background-color: #2a2a2d;
  color: var(--text-primary) !important;
}

/* -- Pricing: team / outline button (surface shift, no border) -- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  color: var(--text-primary) !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease;
  width: 100%;
  justify-content: center;
}

.btn-outline:hover {
  background-color: var(--surface-3);
  color: var(--text-primary) !important;
}

/* -- Newsletter submit -- */
.btn-newsletter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--on-accent) !important;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border: none;
  cursor: pointer;
  transition: filter 0.15s ease;
  height: 100%;
}

.btn-newsletter:hover {
  filter: brightness(1.1);
  color: var(--on-accent) !important;
}


/* ============================================
   SECTION — HERO
   ============================================ */

.hero-bg-1 {
  background-color: var(--base);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.hero-fullbleed-photo {
    background-size: cover;
    background-position: center;
    min-height: 520px;
}

.hero-bg-1 .hero-body,
.hero-bg-1 .hero-foot {
  position: relative;
  z-index: 2;
}

.hero-bg-1 .title {
  color: var(--text-primary);
  font-family: var(--font);
  font-weight: 700;
}

.hero-bg-1 .subtitle,
.hero-bg-1 p {
  color: var(--text-secondary);
}

/* Hero card — transparent, no decoration */
.hero-card {
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 0 !important;
}

.hero-card figure img {
  max-width: 80%;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-2);
}

.hero-cta-buttons {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-cta-buttons .button {
  min-width: 180px;
}

/* Two-column hero */
.hero-text-col {
  text-align: left;
}

.hero-text-col .title,
.hero-text-col .subtitle,
.hero-text-col p {
  text-align: left;
}

.hero-text-col .hero-cta-buttons {
  justify-content: flex-start;
}

.hero-trust-signal {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

/* Hero image wrap + dark glass panel */
.hero-image-wrap {
  position: relative;
}

.hero-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-ambient);
    display: block;
}

.hero-glass-panel {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  background: rgba(20, 20, 21, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ambient);
  padding: 0.85rem 1.25rem;
  min-width: 180px;
  z-index: 4;
}

.hero-glass-panel p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.hero-glass-panel .glass-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-glass-panel .glass-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.hero-glass-panel .glass-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}


/* ============================================
   SECTION — SOCIAL PROOF
   ============================================ */

#social-proof {
  background-color: var(--surface-1);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.social-proof-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.logo-placeholder {
  width: 100px;
  height: 36px;
  background-color: var(--surface-3);
  border-radius: var(--radius-sm);
  opacity: 0.5;
}


/* ============================================
   SECTION — STATS
   ============================================ */

#stats {
  background-color: var(--base);
}

#stats .box {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-ambient);
  border: none;
  border-radius: var(--radius-md);
}

#stats h2.title {
  font-family: var(--font);
  color: var(--text-primary);
  font-weight: 700;
}

#stats .subtitle {
  color: var(--text-secondary);
}

.stat-number {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#stats .subtitle.is-5 {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

#stats .column + .column {
  border-left: none;
}


/* ============================================
   SECTION — BENTO FEATURES
   ============================================ */

#bento-features {
  background-color: var(--surface-1);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#bento-features .section-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

#bento-features .section-heading {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.bento-tile {
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-ambient);
  padding: 1.75rem;
  height: 100%;
}

.bento-tile .bento-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.bento-icon .ph {
  font-size: 1.75rem;
  color: var(--accent);
}

.bento-tile .bento-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.bento-tile .bento-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Stats strip — accent color replaces gradient */
.bento-stats-strip {
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-ambient);
}

.bento-stats-strip .bento-stat-num {
  font-family: var(--font);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1.1;
}

.bento-stats-strip .bento-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}


/* ============================================
   SECTION — HOW IT WORKS
   ============================================ */

#how-it-works,
.section-how-it-works {
  background-color: var(--base);
}

.section-how-alt {
  background-color: var(--surface-1);
}

#how-it-works .title.is-1,
.section-how-it-works .title.is-1,
.section-how-alt .title.is-1 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

#how-it-works .title.is-2,
.section-how-it-works .title.is-2,
.section-how-alt .title.is-2 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.85rem;
}

.image-placeholder {
  background-color: transparent;
  min-height: 200px;
  color: var(--text-secondary);
}

.image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-2);
}


/* ============================================
   SECTION — ABOUT
   ============================================ */

#about {
  background-color: var(--surface-1);
}

#about .title {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text-primary);
}

#about p {
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.8;
}

/* Chips / tags — tonal surface, no border */
#about .tag {
  background-color: var(--surface-3);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border: none;
}


/* ============================================
   SECTION — TESTIMONIALS
   ============================================ */

#testamonials {
  background-color: var(--base);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.quote-mark {
  font-family: var(--font);
  font-size: 6rem;
  color: rgba(0, 230, 118, 0.18);
  line-height: 0.8;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

#testamonials p.is-size-4 {
  color: var(--text-primary);
}

.testimonial-divider {
  width: 60px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  height: 0;
  background: none;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--surface-3);
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
}


/* ============================================
   SECTION — PRICING
   ============================================ */

#pricing {
  background-color: var(--surface-1);
  padding-top: 4rem;
  padding-bottom: 7rem;
}

#pricing h2.title {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text-primary);
}

#pricing .subtitle {
  color: var(--text-secondary);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.15s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card .box {
  background-color: var(--surface-2);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ambient);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Featured card — background shift, not border */
.pricing-featured {
  background-color: var(--surface-3) !important;
  transform: scale(1.03);
  position: relative;
}

.pricing-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

/* "Most Popular" badge */
.pricing-badge {
  display: inline-flex;
  background-color: var(--accent);
  color: var(--on-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.pricing-features {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  border-bottom: none;
}

.pricing-features li .check-icon {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-price-label {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-plan-label {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-plan-label.is-featured {
  color: var(--accent);
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card .box > a {
  margin-top: auto;
}


/* ============================================
   SECTION — FAQ
   ============================================ */

#faq {
    background-color: var(--base);
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.faq-item {
    border-bottom: none;
}

.faq-item::after {
  content: '';
  display: block;
  height: 1px;
  background-color: var(--surface-3);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 2rem 1.25rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}


/* ============================================
   SECTION — FINAL CTA
   ============================================ */

#final {
  background-color: var(--base);
  padding-top: 4rem;
  padding-bottom: 5rem;
}

/* Final card — dark surface, no gradient */
.final-card {
  background-color: var(--surface-1);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
}

#final h2.title {
  color: var(--text-primary);
  font-family: var(--font);
  font-weight: 700;
}

/* Input field */
#final .input {
  background-color: var(--surface-2);
  border-color: transparent;
  color: var(--text-primary);
  font-family: var(--font);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

#final .input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 230, 118, 0.18);
}

#final .input::placeholder {
  color: var(--text-secondary);
  opacity: 1;
}

#final .field.has-addons .control:first-child .input {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

#final .field.has-addons .control:last-child .button {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}


/* ============================================
   SECTION — DIVIDERS
   ============================================ */

.section-divider {
  height: 0;
  border: none;
  margin: 0;
  background: none;
}


/* ============================================
   COMPONENTS — FOOTER
   ============================================ */

.footer {
  background-color: var(--surface-1);
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer .title.is-6 {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.footer p,
.footer li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer a:hover {
  color: var(--text-primary);
}

/* Footer divider — background shift, no border */
.footer hr {
  background-color: var(--surface-3);
  height: 1px;
  border: none;
  margin: 1.5rem 0;
}

.footer .content.has-text-centered p {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

/* Footer logo text */
.footer-logo-text {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}


/* ============================================
   COMPONENTS — COOKIE CONSENT
   ============================================ */

#cookie-consent {
  background: rgba(20, 20, 21, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0px -4px 24px rgba(0, 0, 0, 0.4);
  border-top: none;
  color: var(--text-primary);
  font-size: 0.88rem;
}

#cookie-consent p {
  color: var(--text-primary);
  font-family: var(--font);
}

#cookie-consent .button.is-success {
  background-color: var(--accent);
  border-color: transparent;
  color: var(--on-accent);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

#cookie-consent .button.is-danger {
  background: transparent;
  border-color: var(--surface-3);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-weight: 600;
}


/* ============================================
   COMPONENTS — LEGAL PAGES
   ============================================ */

.legal-page {
  background-color: var(--base);
  color: var(--text-primary);
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.legal-page h1.title {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text-primary);
}

.legal-page h2 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
}

.last-updated {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  display: block;
}


/* ============================================
   MISCELLANEOUS
   ============================================ */

.helper {
  border-top: none;
}

.section-anchor {
  scroll-margin-top: 70px;
}

.hero-balloon {
  position: relative;
  right: 0;
  top: 0;
  width: 420px;
  max-width: 100%;
  z-index: 3;
  pointer-events: none;
}

.problem-box {
  min-height: 200px;
}


/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */

@media screen and (max-width: 768px) {
  .stat-number {
    min-height: 3.5rem;
    font-size: 2.5rem;
  }

  .hero-cta-buttons .button,
  .hero-cta-buttons a {
    width: 100%;
    min-width: unset;
  }

  #final .field.has-addons {
    flex-direction: column;
  }

  #final .field.has-addons .control {
    width: 100%;
  }

  #final .field.has-addons .control .input {
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
  }

  #final .field.has-addons .control .button {
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .pricing-featured:hover {
    transform: translateY(-4px);
  }

  .hero-card figure img {
    max-width: 100%;
  }

  .navbar-cta-buttons .button {
    min-width: unset;
  }

  #final .btn-newsletter {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    min-height: 44px;
  }
}

@media screen and (max-width: 1023px) {
  .pricing-featured {
    transform: scale(1);
  }
}

@media screen and (min-width: 769px) {
  .section-how-alt .columns {
    flex-direction: row-reverse;
  }
}
