/**
 * Landing Page Styles - Terreno Urbano
 * Standalone CSS (no Bootstrap, no website styles)
 * Mobile-first, WCAG AA compliant
 */

/* ==========================================================================
   Fonts (Self-hosted)
   ========================================================================== */

/**
 * Self-hosted Inter Variable Font
 * Reuses website font: 121KB, all weights 300-800
 * Subset: Latin Extended (includes Portuguese: ç, ã, õ, é, ê, etc.)
 * Original: 337KB → Subset: 120KB (64% reduction)
 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('/static/custom/fonts/InterVariable-latin.woff2') format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2190-21BB, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
  /* ==========================================================================
     Brand Colors (Terreno Urbano Identity)
     Source: website-palette-logo.css + website-radix-colors.css
     ========================================================================== */

  /* Navy (Dark) - Trust, tradition */
  --lp-brand-navy: #0f172a;
  --lp-brand-navy-light: #1e293b;

  /* Amber (Yellow) - Earth, warmth, CTA */
  --lp-brand-amber: #f7be41;
  --lp-brand-amber-light: #fbbf24;
  --lp-brand-amber-hover: #f59e0b;

  /* Cyan - Modern, water, organic */
  --lp-brand-cyan: #34eded;
  --lp-brand-cyan-hover: #22d3d3;

  /* Colors - Primary (Mapped to Brand) */
  --lp-primary: var(--lp-brand-amber);
  --lp-primary-hover: var(--lp-brand-amber-hover);
  --lp-primary-light: rgba(247, 190, 65, 0.15);

  /* Colors - Accent (Cyan) */
  --lp-accent: var(--lp-brand-cyan);
  --lp-accent-hover: var(--lp-brand-cyan-hover);

  /* Colors - Hero Section */
  --lp-hero-bg: linear-gradient(135deg, var(--lp-brand-navy) 0%, var(--lp-brand-navy-light) 100%);
  --lp-text-on-dark: #ffffff;
  --lp-text-on-dark-muted: rgba(255, 255, 255, 0.85);

  /* Glass morphism overlays */
  --lp-overlay-glass-subtle: rgba(255, 255, 255, 0.05);
  --lp-overlay-glass: rgba(255, 255, 255, 0.1);
  --lp-overlay-accent: rgba(52, 237, 237, 0.15);

  /* Colors - Neutral */
  --lp-text: #1a1a1a;
  --lp-text-muted: #525252;
  --lp-text-light: #737373;
  --lp-bg: #ffffff;
  --lp-bg-light: #f9fafb;
  --lp-border: #e5e7eb;
  --lp-border-focus: var(--lp-brand-navy);

  /* Colors - Semantic */
  --lp-success: #059669;
  --lp-success-bg: #d1fae5;
  --lp-success-border: #a7f3d0;
  --lp-error: #dc2626;
  --lp-error-bg: #fee2e2;
  --lp-error-border: #fecaca;
  --lp-warning: #d97706;

  /* Typography */
  --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --lp-font-size-xs: 0.75rem;
  --lp-font-size-sm: 0.875rem;
  --lp-font-size-base: 1rem;
  --lp-font-size-lg: 1.125rem;
  --lp-font-size-xl: 1.25rem;
  --lp-font-size-2xl: 1.5rem;
  --lp-font-size-3xl: 1.875rem;
  --lp-font-size-4xl: 2.25rem;

  /* Spacing */
  --lp-space-1: 0.25rem;
  --lp-space-2: 0.5rem;
  --lp-space-3: 0.75rem;
  --lp-space-4: 1rem;
  --lp-space-5: 1.25rem;
  --lp-space-6: 1.5rem;
  --lp-space-8: 2rem;
  --lp-space-10: 2.5rem;
  --lp-space-12: 3rem;
  --lp-space-16: 4rem;

  /* Layout */
  --lp-radius: 8px;
  --lp-radius-lg: 12px;
  --lp-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --lp-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --lp-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --lp-max-width: 1400px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--lp-font);
  font-size: var(--lp-font-size-base);
  line-height: 1.6;
  color: var(--lp-text);
  background-color: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--lp-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Container
   ========================================================================== */

.lp-container {
  width: 100%;
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 0 var(--lp-space-4);
}

@media (min-width: 768px) {
  .lp-container {
    padding: 0 var(--lp-space-6);
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.lp-header {
  background: var(--lp-brand-navy);
  border-bottom: none;
  padding: var(--lp-space-4) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.lp-header .lp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: var(--lp-space-2);
}

.lp-logo img {
  height: 32px;
  width: auto;
}

.lp-logo__text {
  font-size: var(--lp-font-size-base);
  font-weight: 700;
  color: var(--lp-text-on-dark);
}

@media (min-width: 768px) {
  .lp-logo {
    gap: var(--lp-space-3);
  }

  .lp-logo img {
    height: 40px;
  }

  .lp-logo__text {
    font-size: var(--lp-font-size-lg);
  }
}

.lp-phone,
.lp-whatsapp {
  display: flex;
  align-items: center;
  gap: var(--lp-space-2);
  color: var(--lp-text-on-dark);
  font-weight: 500;
  font-size: var(--lp-font-size-sm);
}

.lp-phone:hover,
.lp-whatsapp:hover {
  color: var(--lp-brand-cyan);
  text-decoration: none;
}

.lp-phone span,
.lp-whatsapp span {
  display: none;
}

@media (min-width: 640px) {
  .lp-phone span,
  .lp-whatsapp span {
    display: inline;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.lp-hero {
  background: var(--lp-hero-bg);
  padding: var(--lp-space-12) 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .lp-hero {
    padding: var(--lp-space-16) 0;
  }
}

.lp-hero__content {
  display: grid;
  gap: var(--lp-space-8);
}

@media (min-width: 1024px) {
  .lp-hero__content {
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: var(--lp-space-12);
  }
}

.lp-hero__text {
  text-align: center;
}

@media (min-width: 1024px) {
  .lp-hero__text {
    text-align: left;
  }
}

.lp-hero__title {
  font-size: 2.8125rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--lp-space-8);
  color: var(--lp-text-on-dark);
}

/* Gradient text highlight like main website */
.lp-hero__title .highlight {
  background: linear-gradient(90deg, var(--lp-brand-amber), var(--lp-brand-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .lp-hero__title {
    font-size: 3.375rem;
  }
}

.lp-hero__subtitle {
  font-size: var(--lp-font-size-lg);
  color: var(--lp-text-on-dark-muted);
  margin: 0 0 var(--lp-space-8);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .lp-hero__subtitle {
    max-width: 500px;
  }
}

/* Highlight words in title and subtitle */
.lp-hero__title .highlight-word,
.lp-hero__subtitle .highlight-word {
  color: var(--lp-brand-amber);
  font-weight: 600;
}

/* Hero visual cards (glass morphism) */
.lp-hero__visual {
  display: none;
}

@media (min-width: 1024px) {
  .lp-hero__visual {
    display: block;
    position: relative;
    margin-top: var(--lp-space-12);
  }
}

.lp-hero__cards {
  display: grid;
  gap: var(--lp-space-4);
}

.lp-hero__card {
  background: var(--lp-overlay-glass-subtle);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--lp-space-6);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-overlay-glass);
  transition: transform 0.3s ease;
}

.lp-hero__card:hover {
  transform: translateX(-10px);
}

.lp-hero__card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--lp-space-4);
  color: var(--lp-text-on-dark);
}

.lp-hero__card h3 {
  color: var(--lp-text-on-dark);
  font-size: var(--lp-font-size-lg);
  font-weight: 600;
  margin: 0 0 var(--lp-space-2);
}

.lp-hero__card p {
  color: var(--lp-text-on-dark);
  opacity: 0.8;
  font-size: var(--lp-font-size-sm);
  margin: 0;
}

@media (min-width: 1024px) {
  .lp-hero__subtitle {
    margin: 0 0 var(--lp-space-6);
  }
}

/* ==========================================================================
   Form Wrapper
   ========================================================================== */

.lp-form-wrapper {
  background: var(--lp-bg);
  border-radius: var(--lp-radius-lg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 208, 76, 0.1);
  padding: var(--lp-space-6);
  position: relative;
}

/* Gradient accent stripe on top (amber to cyan) */
.lp-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--lp-brand-amber) 0%, var(--lp-brand-cyan) 100%);
  border-radius: 0 0 4px 4px;
}

@media (min-width: 768px) {
  .lp-form-wrapper {
    padding: var(--lp-space-8);
  }
}

/* Form Header (Brand) */
.lp-form-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--lp-space-2);
  margin-bottom: var(--lp-space-2);
  padding-top: var(--lp-space-2);
}

.lp-form-header__logo {
  height: 24px;
  width: auto;
}

.lp-form-header__text {
  font-size: var(--lp-font-size-base);
  font-weight: 600;
  color: var(--lp-text-muted);
}

.lp-form-header__title {
  font-size: var(--lp-font-size-xl);
  font-weight: 700;
  color: var(--lp-text);
  text-align: center;
  margin: 0 0 var(--lp-space-6);
}

@media (min-width: 768px) {
  .lp-form-header__title {
    font-size: var(--lp-font-size-2xl);
  }
}

/* ==========================================================================
   Form
   ========================================================================== */

.lp-form {
  display: flex;
  flex-direction: column;
  gap: var(--lp-space-4);
}

.lp-form__section {
  display: flex;
  flex-direction: column;
  gap: var(--lp-space-4);
}

.lp-form__section-title {
  font-size: var(--lp-font-size-sm);
  font-weight: 600;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: var(--lp-space-2) 0 0;
  padding-top: var(--lp-space-4);
  border-top: 1px solid var(--lp-border);
}

.lp-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--lp-space-1);
}

.lp-form__label {
  font-size: var(--lp-font-size-sm);
  font-weight: 500;
  color: var(--lp-text);
}

.lp-form__input {
  width: 100%;
  padding: var(--lp-space-3) var(--lp-space-4);
  font-size: var(--lp-font-size-base);
  font-family: var(--lp-font);
  color: var(--lp-text);
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 48px;
}

.lp-form__input:focus {
  outline: none;
  border-color: var(--lp-brand-cyan);
  box-shadow: 0 0 0 3px rgba(52, 237, 237, 0.25), 0 0 12px rgba(52, 237, 237, 0.15);
}

.lp-form__input::placeholder {
  color: var(--lp-text-light);
}

.lp-form__input:disabled {
  background: var(--lp-bg-light);
  cursor: not-allowed;
}

.lp-form__input--error {
  border-color: var(--lp-error);
}

.lp-form__input--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.lp-form__error {
  font-size: var(--lp-font-size-xs);
  color: var(--lp-error);
  min-height: 1rem;
}

.lp-form__row {
  display: flex;
  gap: var(--lp-space-4);
}

.lp-form__field--city {
  flex: 2;
}

.lp-form__field--state {
  flex: 1;
  max-width: 100px;
}

/* Form Message */
.lp-form__message {
  padding: var(--lp-space-3) var(--lp-space-4);
  border-radius: var(--lp-radius);
  font-size: var(--lp-font-size-sm);
  display: none;
}

.lp-form__message.active {
  display: block;
}

.lp-form__message--error {
  background: var(--lp-error-bg);
  color: var(--lp-error);
  border: 1px solid var(--lp-error-border);
}

.lp-form__message--success {
  background: var(--lp-success-bg);
  color: var(--lp-success);
  border: 1px solid var(--lp-success-border);
}

/* ==========================================================================
   CEP Helper
   ========================================================================== */

.lp-cep-wrapper {
  position: relative;
}

/* Loading state for CEP input */
.lp-cep-wrapper .lp-form__input:disabled {
  background: var(--lp-bg-light);
  cursor: wait;
}

.lp-cep-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--lp-font-size-xs);
  padding: 2px 8px;
  border-radius: 4px;
  display: none;
  align-items: center;
  gap: 4px;
}

.lp-cep-badge.active {
  display: flex;
}

.lp-cep-badge--loading {
  background: rgba(52, 237, 237, 0.15);
  color: var(--lp-brand-navy);
}

.lp-cep-badge--success {
  background: var(--lp-success-bg);
  color: var(--lp-success);
}

.lp-cep-badge--error {
  background: var(--lp-error-bg);
  color: var(--lp-error);
}

/* Spinner */
.lp-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(52, 237, 237, 0.3);
  border-top-color: var(--lp-brand-cyan);
  border-radius: 50%;
  animation: lp-spin 0.8s linear infinite;
}

@keyframes lp-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Address Found Card */
.lp-address-card {
  display: none;
  background: var(--lp-success-bg);
  border: 1px solid var(--lp-success-border);
  border-radius: var(--lp-radius);
  padding: var(--lp-space-3) var(--lp-space-4);
  margin-top: var(--lp-space-2);
}

.lp-address-card.active {
  display: block;
}

.lp-address-card__header {
  font-weight: 600;
  color: var(--lp-success);
  font-size: var(--lp-font-size-sm);
  margin-bottom: var(--lp-space-2);
}

.lp-address-card__content {
  font-size: var(--lp-font-size-sm);
  color: var(--lp-text);
  line-height: 1.6;
}

/* Manual Address Form */
.lp-manual-address {
  display: none;
  margin-top: var(--lp-space-4);
  padding-top: var(--lp-space-4);
  border-top: 1px solid var(--lp-border);
}

.lp-manual-address.active {
  display: flex;
  flex-direction: column;
  gap: var(--lp-space-4);
}

/* ==========================================================================
   Checkbox
   ========================================================================== */

.lp-form__field--checkbox {
  margin-top: var(--lp-space-2);
}

.lp-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--lp-space-3);
  cursor: pointer;
}

.lp-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lp-checkbox__mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--lp-border);
  border-radius: 4px;
  background: var(--lp-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  margin-top: 2px;
}

.lp-checkbox input:checked + .lp-checkbox__mark {
  background: var(--lp-brand-navy);
  border-color: var(--lp-brand-navy);
}

.lp-checkbox input:checked + .lp-checkbox__mark::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid var(--lp-brand-amber);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.lp-checkbox input:focus + .lp-checkbox__mark {
  box-shadow: 0 0 0 3px rgba(23, 33, 62, 0.15);
}

.lp-checkbox__text {
  font-size: var(--lp-font-size-sm);
  color: var(--lp-text-muted);
  line-height: 1.5;
}

.lp-checkbox__text a {
  color: var(--lp-brand-navy);
  font-weight: 500;
  text-decoration: underline;
}

.lp-checkbox__text a:hover {
  color: var(--lp-brand-cyan-hover);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--lp-space-2);
  padding: var(--lp-space-3) var(--lp-space-6);
  font-size: var(--lp-font-size-base);
  font-weight: 600;
  font-family: var(--lp-font);
  text-align: center;
  border: none;
  border-radius: var(--lp-radius);
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 48px;
  text-decoration: none;
}

.lp-btn:hover {
  text-decoration: none;
}

.lp-btn--primary {
  background: var(--lp-brand-amber);
  color: var(--lp-brand-navy);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 208, 76, 0.4);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.lp-btn--primary:hover {
  background: var(--lp-brand-amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 208, 76, 0.5);
}

.lp-btn--primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 208, 76, 0.4);
}

.lp-btn--secondary {
  background: var(--lp-bg);
  color: var(--lp-brand-navy);
  border: 2px solid var(--lp-brand-navy);
  font-weight: 600;
}

.lp-btn--secondary:hover {
  background: var(--lp-brand-navy);
  color: var(--lp-brand-amber);
}

.lp-btn--large {
  padding: var(--lp-space-4) var(--lp-space-8);
  font-size: var(--lp-font-size-lg);
  min-height: 56px;
}

.lp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Button loading state */
.lp-btn__loading {
  display: none;
}

.lp-btn.loading .lp-btn__text {
  display: none;
}

.lp-btn.loading .lp-btn__loading {
  display: flex;
  align-items: center;
  gap: var(--lp-space-2);
}

.lp-btn.loading .lp-spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: white;
}

/* ==========================================================================
   Trust Signals
   ========================================================================== */

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lp-space-4) var(--lp-space-6);
  margin-top: var(--lp-space-6);
  padding-top: var(--lp-space-6);
  border-top: 1px solid var(--lp-border);
}

.lp-trust__item {
  display: flex;
  align-items: center;
  gap: var(--lp-space-2);
  font-size: var(--lp-font-size-sm);
  color: var(--lp-text-muted);
}

.lp-trust__item svg {
  color: var(--lp-brand-cyan);
  flex-shrink: 0;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.lp-section {
  padding: var(--lp-space-12) 0;
}

.lp-section--light {
  background: var(--lp-bg-light);
}

.lp-section--cta {
  background: var(--lp-brand-navy-light);
  text-align: center;
  padding: var(--lp-space-16) 0;
  position: relative;
  overflow: hidden;
}

.lp-section__title {
  font-size: var(--lp-font-size-2xl);
  font-weight: 700;
  text-align: center;
  margin: 0 0 var(--lp-space-8);
  color: var(--lp-text);
}

@media (min-width: 768px) {
  .lp-section__title {
    font-size: var(--lp-font-size-3xl);
  }
}

.lp-section__subtitle {
  text-align: center;
  font-size: var(--lp-font-size-lg);
  color: var(--lp-text-muted);
  margin: calc(var(--lp-space-8) * -1) 0 var(--lp-space-8);
  margin-top: calc(var(--lp-space-4) * -1);
}

/* ==========================================================================
   Steps
   ========================================================================== */

.lp-steps {
  display: grid;
  gap: var(--lp-space-6);
}

@media (min-width: 640px) {
  .lp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-step {
  text-align: center;
  padding: var(--lp-space-6);
}

.lp-step__number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--lp-brand-cyan), var(--lp-brand-cyan-hover));
  color: var(--lp-brand-navy);
  font-size: var(--lp-font-size-2xl);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--lp-space-6);
  box-shadow: 0 4px 15px rgba(52, 237, 237, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-step:hover .lp-step__number {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(52, 237, 237, 0.4);
}

.lp-step__title {
  font-size: var(--lp-font-size-base);
  font-weight: 600;
  margin: 0 0 var(--lp-space-2);
  color: var(--lp-text);
}

.lp-step__desc {
  font-size: var(--lp-font-size-sm);
  color: var(--lp-text-muted);
  margin: 0;
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.lp-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--lp-space-4);
  max-width: 700px;
  margin: 0 auto;
}

.lp-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--lp-space-3);
  font-size: var(--lp-font-size-lg);
  color: var(--lp-text);
}

.lp-benefit svg {
  color: var(--lp-text-on-dark);
  background: linear-gradient(135deg, var(--lp-brand-cyan), var(--lp-brand-cyan-hover));
  padding: 8px;
  border-radius: var(--lp-radius);
  flex-shrink: 0;
  margin-top: 2px;
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.lp-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--lp-space-3);
}

.lp-faq__item {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
}

.lp-faq__question {
  padding: var(--lp-space-4) var(--lp-space-5);
  font-size: var(--lp-font-size-base);
  font-weight: 600;
  color: var(--lp-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-faq__question::-webkit-details-marker {
  display: none;
}

.lp-faq__question::after {
  content: '+';
  font-size: var(--lp-font-size-xl);
  font-weight: 400;
  color: var(--lp-text-muted);
  transition: transform 0.2s ease;
}

.lp-faq__item[open] .lp-faq__question::after {
  content: '−';
}

.lp-faq__answer {
  padding: 0 var(--lp-space-5) var(--lp-space-4);
  color: var(--lp-text-muted);
  font-size: var(--lp-font-size-base);
  line-height: 1.7;
}

.lp-faq__answer p {
  margin: 0;
}

/* ==========================================================================
   Qualifications
   ========================================================================== */

.lp-qualifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lp-space-8);
}

.lp-qualification {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lp-space-3);
  text-align: center;
}

.lp-qualification svg {
  color: var(--lp-text-on-dark);
  background: linear-gradient(135deg, var(--lp-brand-navy), var(--lp-brand-navy-light));
  padding: 10px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.lp-qualification span {
  font-size: var(--lp-font-size-base);
  font-weight: 500;
  color: var(--lp-text);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.lp-cta__title {
  font-size: var(--lp-font-size-2xl);
  font-weight: 800;
  color: var(--lp-text-on-dark);
  margin: 0 0 var(--lp-space-6);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .lp-cta__title {
    font-size: var(--lp-font-size-3xl);
  }
}

.lp-cta__subtitle {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--lp-text-on-dark);
  margin: 0 0 var(--lp-space-4);
  position: relative;
  z-index: 1;
}

.lp-cta__description {
  font-size: 1.7rem;
  color: var(--lp-text-on-dark-muted);
  line-height: 1.6;
  margin: 0 0 var(--lp-space-8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.lp-section--cta .lp-btn--primary {
  background: var(--lp-brand-amber);
  color: var(--lp-brand-navy);
  position: relative;
  z-index: 1;
}

.lp-section--cta .lp-btn--primary:hover {
  background: var(--lp-brand-amber-hover);
  color: var(--lp-brand-navy);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.lp-footer {
  background: var(--lp-brand-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--lp-space-12) 0;
}

@media (max-width: 767px) {
  .lp-footer {
    padding-bottom: 6rem;
  }
}

.lp-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lp-space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .lp-footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

.lp-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--lp-space-3);
  margin-bottom: var(--lp-space-3);
}

@media (min-width: 768px) {
  .lp-footer__logo {
    justify-content: flex-start;
  }
}

.lp-footer__logo img {
  height: 32px;
  width: auto;
}

.lp-footer__name {
  font-size: var(--lp-font-size-lg);
  font-weight: 700;
  color: var(--lp-text-on-dark);
}


.lp-footer__brand p {
  margin: 0;
  font-size: var(--lp-font-size-sm);
}

.lp-footer__contact p {
  margin: 0 0 var(--lp-space-1);
  font-size: var(--lp-font-size-sm);
}

.lp-footer__contact a {
  color: var(--lp-brand-cyan);
}

.lp-footer__contact a:hover {
  color: var(--lp-brand-amber);
}

.lp-footer__legal {
  display: flex;
  gap: var(--lp-space-4);
}

.lp-footer__legal a {
  font-size: var(--lp-font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.lp-footer__legal a:hover {
  color: var(--lp-brand-cyan);
}

/* ==========================================================================
   Thank You Page
   ========================================================================== */

.lp-body--thankyou {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lp-body--thankyou main {
  flex: 1;
}

.lp-thankyou {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--lp-space-12) 0;
  min-height: 60vh;
}

.lp-thankyou__card {
  background: var(--lp-bg);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
  padding: var(--lp-space-8);
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .lp-thankyou__card {
    padding: var(--lp-space-12);
  }
}

.lp-thankyou__icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--lp-brand-amber) 0%, var(--lp-brand-amber-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--lp-space-8);
  animation: lp-success-bounce 0.6s ease-out;
}

.lp-thankyou__icon svg {
  color: var(--lp-brand-navy);
  width: 48px;
  height: 48px;
}

@keyframes lp-success-bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.lp-thankyou__title {
  font-size: var(--lp-font-size-3xl);
  font-weight: 800;
  margin: 0 0 var(--lp-space-4);
  background: linear-gradient(90deg, var(--lp-brand-amber), var(--lp-brand-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-thankyou__message {
  font-size: var(--lp-font-size-lg);
  color: var(--lp-text-muted);
  margin: 0 0 var(--lp-space-8);
  line-height: 1.7;
}

.lp-thankyou__next {
  background: var(--lp-bg-light);
  border-radius: var(--lp-radius);
  padding: var(--lp-space-6);
  margin-bottom: var(--lp-space-8);
  text-align: left;
}

.lp-thankyou__subtitle {
  font-size: var(--lp-font-size-base);
  font-weight: 600;
  margin: 0 0 var(--lp-space-4);
  color: var(--lp-text);
}

.lp-thankyou__actions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--lp-space-3);
}

.lp-thankyou__link {
  display: flex;
  align-items: center;
  gap: var(--lp-space-3);
  color: var(--lp-text);
  font-size: var(--lp-font-size-base);
}

.lp-thankyou__link:hover {
  color: var(--lp-brand-navy);
}

.lp-thankyou__link svg {
  color: var(--lp-text-on-dark);
  background: linear-gradient(135deg, var(--lp-brand-cyan), var(--lp-brand-cyan-hover));
  padding: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   Utility: Screen Reader Only
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Mobile Optimizations (83% of traffic is mobile)
   ========================================================================== */

/* Larger touch targets for mobile */
@media (max-width: 767px) {
  .lp-form__input {
    min-height: 52px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .lp-btn {
    min-height: 52px;
  }

  .lp-hero__title {
    font-size: 2.25rem;
  }

  .lp-checkbox {
    padding: var(--lp-space-2) 0;
  }
}

/* Sticky CTA for mobile - appears after scrolling past form */
.lp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--lp-space-4);
  background: var(--lp-bg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.lp-sticky-cta.visible {
  display: block;
  transform: translateY(0);
}

.lp-sticky-cta .lp-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .lp-sticky-cta {
    display: none !important;
  }
}

/* Trust Signals Section */
.lp-section--trust {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 0;
  margin: 0;
}

.lp-trust__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lp-text);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lp-trust__subtitle {
  font-size: 1.125rem;
  color: var(--lp-text-muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.lp-trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.lp-trust-stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lp-primary);
  margin-bottom: 1rem;
  line-height: 1;
}

.lp-trust-stat__label {
  font-size: 0.875rem;
  color: var(--lp-text);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .lp-section--trust {
    padding: 3rem 0;
  }

  .lp-trust__title {
    font-size: 2rem;
  }

  .lp-trust__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .lp-trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .lp-trust-stat__number {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Specialists Section
   ========================================================================== */

.lp-specialists {
  display: grid;
  gap: var(--lp-space-12);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lp-specialists {
    gap: var(--lp-space-16);
  }
}

.lp-specialist {
  display: grid;
  gap: var(--lp-space-6);
  align-items: center;
}

@media (min-width: 768px) {
  .lp-specialist {
    grid-template-columns: 280px 1fr;
    gap: var(--lp-space-8);
  }

  .lp-specialist:nth-child(even) {
    grid-template-columns: 1fr 280px;
  }

  .lp-specialist:nth-child(even) .lp-specialist__image-wrapper {
    order: 2;
  }

  .lp-specialist:nth-child(even) .lp-specialist__content {
    order: 1;
  }
}

.lp-specialist__image-wrapper {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.lp-specialist__image {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--lp-brand-amber);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-specialist:hover .lp-specialist__image {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.lp-specialist__content {
  text-align: center;
}

@media (min-width: 768px) {
  .lp-specialist__content {
    text-align: left;
  }

  .lp-specialist:nth-child(even) .lp-specialist__content {
    text-align: right;
  }
}

.lp-specialist__name {
  font-size: var(--lp-font-size-2xl);
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 var(--lp-space-2);
  line-height: 1.2;
}

.lp-specialist__role {
  font-size: var(--lp-font-size-lg);
  font-weight: 600;
  color: var(--lp-brand-amber);
  margin: 0 0 var(--lp-space-4);
  line-height: 1.4;
}

.lp-specialist__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--lp-space-3);
}

.lp-specialist__details li {
  font-size: var(--lp-font-size-base);
  color: var(--lp-text-muted);
  line-height: 1.6;
  position: relative;
  padding-left: var(--lp-space-6);
}

@media (min-width: 768px) {
  .lp-specialist:nth-child(even) .lp-specialist__details li {
    padding-left: 0;
    padding-right: var(--lp-space-6);
  }
}

.lp-specialist__details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lp-brand-amber);
  font-weight: 700;
  font-size: var(--lp-font-size-lg);
}

@media (min-width: 768px) {
  .lp-specialist:nth-child(even) .lp-specialist__details li::before {
    left: auto;
    right: 0;
  }
}

.lp-specialist__details li strong {
  color: var(--lp-text);
  font-weight: 600;
}

/* ==========================================================================
   Investment Chart
   ========================================================================== */

/* Desktop: Chart replaces form in hero right column */
.lp-chart-wrapper--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .lp-chart-wrapper--desktop {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--lp-radius-lg);
    padding: var(--lp-space-4);
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Mobile/Tablet: Chart section below hero (visible until desktop) */
.lp-chart-section {
  padding: var(--lp-space-12) 0;
  background: var(--lp-bg-light);
}

.lp-chart-section--mobile {
  display: block;
}

@media (min-width: 1024px) {
  .lp-chart-section--mobile {
    display: none;
  }
}

/* Chart titles */
.lp-chart__title {
  font-size: var(--lp-font-size-lg);
  font-weight: 700;
  color: var(--lp-brand-navy);
  margin: 0 0 var(--lp-space-2) 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .lp-chart__title {
    font-size: var(--lp-font-size-xl);
  }
}

.lp-chart__subtitle {
  font-size: var(--lp-font-size-sm);
  color: var(--lp-text-muted);
  margin: 0 0 var(--lp-space-4) 0;
  text-align: center;
}

/* Chart container */
.lp-chart-container {
  position: relative;
  height: 350px;
  width: 100%;
}

@media (min-width: 768px) {
  .lp-chart-container {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .lp-chart-container {
    height: 450px;
  }
}

.lp-chart-container canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Form section (moved outside hero) */
.lp-form-section {
  padding: var(--lp-space-12) var(--lp-space-4);
  background: var(--lp-brand-navy-light);
}

@media (min-width: 768px) {
  .lp-form-section {
    padding: var(--lp-space-16) var(--lp-space-4);
  }
}

/* Form section content - grid layout on desktop */
.lp-form-section__content {
  display: grid;
  gap: var(--lp-space-8);
  align-items: start;
}

@media (min-width: 1024px) {
  .lp-form-section__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--lp-space-12);
    align-items: center;
  }
}

/* Value proposition text (left on desktop, top on mobile) */
.lp-form-section__text {
  text-align: center;
}

@media (min-width: 1024px) {
  .lp-form-section__text {
    text-align: left;
  }
}

.lp-form-section__title {
  font-size: 3.375rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--lp-space-6);
  color: var(--lp-text-on-dark);
}

@media (min-width: 768px) {
  .lp-form-section__title {
    font-size: 4.05rem;
  }
}

@media (max-width: 767px) {
  .lp-form-section__title {
    font-size: 2.7rem;
  }
}

.lp-form-section__description {
  font-size: 1.7rem;
  color: var(--lp-text-on-dark-muted);
  line-height: 1.6;
  margin: 0;
}

/* Amber highlight utility */
.highlight-amber {
  color: var(--lp-brand-amber);
}

/* Form wrapper - keep max-width and centering removed (now in grid) */
.lp-form-section .lp-form-wrapper {
  max-width: 500px;
  justify-self: center;
}

@media (min-width: 1024px) {
  .lp-form-section .lp-form-wrapper {
    justify-self: start;
  }
}
