/* ============================================
   Design Kit — Mobile App Design System
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'Science Gothic Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/science-gothic:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: 'Mona Sans Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/mona-sans:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-primary: #FFE401;
  --color-secondary: #000000;
  --color-white: #FFFFFF;
  --color-neutral-100: #F1F1F1;
  --color-neutral-200: #E5E5E5;
  --color-neutral-300: #9B9A9A;
  --color-neutral-400: #737373;
  --color-accent: #EF233C;

  /* Semantic colors */
  --color-bg: var(--color-white);
  --color-bg-alt: var(--color-neutral-100);
  --color-text: var(--color-secondary);
  --color-text-muted: var(--color-neutral-300);
  --color-border: var(--color-neutral-200);
  --color-error: var(--color-accent);

  /* Typography */
  --font-family-heading: 'Science Gothic Variable', 'Science Gothic', -apple-system, sans-serif;
  --font-family: 'Mona Sans', 'Mona Sans Variable', -apple-system, BlinkMacSystemFont, sans-serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;  /* 20px */
  --font-size-2xl: 1.5rem;  /* 24px */
  --font-size-3xl: 2rem;    /* 32px */

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;

  /* Spacing */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */

  /* Border radius */
  --radius: 4px;
  --radius-button: 6px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

/* Link styles for content areas (excludes footer, nav, buttons) */
.privacy-section a,
.rates-legal__content a,
.rates-page__lead a,
.rates-section__intro a,
.contact-page a:not(.landing-btn) {
  color: var(--color-secondary);
  text-decoration: none;
}

.privacy-section a:hover,
.rates-legal__content a:hover,
.rates-page__lead a:hover,
.rates-section__intro a:hover,
.contact-page a:not(.landing-btn):hover {
  text-decoration: none;
}

/* --- Typography --- */
.dk-h1,
h1.dk {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md);
}

.dk-h2,
h2.dk {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md);
}

.dk-h3,
h3.dk {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-sm);
}

.dk-h4,
h4.dk {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-sm);
}

.dk-p,
p.dk {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.dk-caption {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  margin: 0;
}

.dk-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  display: block;
}

/* --- Buttons --- */
.dk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.dk-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Primary button */
.dk-btn--primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.dk-btn--primary:hover:not(:disabled) {
  background-color: #333333;
}

.dk-btn--primary:active:not(:disabled) {
  background-color: #1a1a1a;
}

/* Secondary button */
.dk-btn--secondary {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.dk-btn--secondary:hover:not(:disabled) {
  background-color: #ffe633;
}

.dk-btn--secondary:active:not(:disabled) {
  background-color: #ffd900;
}

/* Outline button */
.dk-btn--outline {
  background-color: var(--color-white);
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.dk-btn--outline:hover:not(:disabled) {
  background-color: var(--color-neutral-100);
}

.dk-btn--outline:active:not(:disabled) {
  background-color: var(--color-neutral-200);
}

/* Destructive button */
.dk-btn--destructive {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.dk-btn--destructive:hover:not(:disabled) {
  background-color: rgba(239, 35, 60, 0.08);
}

/* Button sizes */
.dk-btn--sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
  min-height: 36px;
}

.dk-btn--md {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-base);
  min-height: 48px;
}

.dk-btn--lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-lg);
  min-height: 56px;
}

.dk-btn--full {
  width: 100%;
}

/* --- Forms --- */
.dk-form-group {
  margin-bottom: var(--space-lg);
}

.dk-input,
.dk-select,
.dk-textarea {
  width: 100%;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: #F1F1F1;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.dk-input::placeholder,
.dk-textarea::placeholder {
  color: var(--color-text-muted);
}

.dk-input:hover,
.dk-select:hover,
.dk-textarea:hover {
  background-color: #F1F1F1;
}

.dk-input:focus,
.dk-select:focus,
.dk-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: #F1F1F1;
}

.dk-input--error,
.dk-input.dk-input--error {
  border-color: var(--color-error);
  background-color: #F1F1F1;
}

.dk-input--error:focus {
  border-color: var(--color-error);
}

.dk-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.dk-input-wrapper .dk-input {
  padding-right: 44px;
}

.dk-input-clear {
  position: absolute;
  right: var(--space-sm);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neutral-300);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: background-color var(--transition-fast);
}

.dk-input-clear:hover {
  background: var(--color-secondary);
}

.dk-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: 36px;
}

.dk-textarea {
  min-height: 120px;
  resize: vertical;
}

.dk-error-message {
  font-size: var(--font-size-sm);
  color: var(--color-error);
  margin-top: var(--space-xs);
}

/* Checkbox */
.dk-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: var(--font-size-base);
  user-select: none;
}

.dk-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.dk-checkbox__box {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--color-neutral-200);
  border-radius: var(--radius);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.dk-checkbox__input:checked + .dk-checkbox__box {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.dk-checkbox__input:checked + .dk-checkbox__box::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 4px;
}

.dk-checkbox__input:focus-visible + .dk-checkbox__box {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Radio */
.dk-radio {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: var(--font-size-base);
  user-select: none;
}

.dk-radio__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.dk-radio__box {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--color-neutral-200);
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.dk-radio__input:checked + .dk-radio__box {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.dk-radio__input:checked + .dk-radio__box::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
}

.dk-radio__input:focus-visible + .dk-radio__box {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* --- Cards --- */
.dk-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.dk-card--elevated {
  box-shadow: var(--shadow-md);
}

.dk-card--bordered {
  border: 2px solid var(--color-secondary);
}

.dk-card--alt {
  background-color: var(--color-neutral-100);
}

.dk-card__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-sm);
}

.dk-card__content {
  font-size: var(--font-size-base);
  color: var(--color-text);
  margin: 0;
}

.dk-card__footer {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

/* Interactive card (list item style) */
.dk-card--interactive {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  text-decoration: none;
  color: inherit;
}

.dk-card--interactive:hover {
  background-color: var(--color-neutral-200);
}

.dk-card--interactive .dk-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dk-card--interactive .dk-card__chevron {
  margin-left: auto;
  color: var(--color-text-muted);
}

/* --- Badges --- */
.dk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  min-width: 24px;
}

.dk-badge--primary {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.dk-badge--secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.dk-badge--neutral {
  background-color: var(--color-neutral-100);
  color: var(--color-text-muted);
}

.dk-badge--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.dk-badge--outline {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

/* Progress badge (circular) */
.dk-badge--progress {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-full);
  border: 3px solid var(--color-primary);
  background: conic-gradient(var(--color-primary) 0% var(--progress, 0%), var(--color-neutral-100) var(--progress, 0%) 100%);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
}

.dk-badge--progress-inner {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px;
}

/* --- Icons (placeholder styles for SVG/icon fonts) --- */
.dk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.dk-icon--sm {
  width: 16px;
  height: 16px;
}

.dk-icon--lg {
  width: 32px;
  height: 32px;
}

.dk-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.dk-icon--stroke svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Segmented Control --- */
.dk-segmented {
  display: flex;
  gap: 0;
  background-color: var(--color-neutral-100);
  border-radius: var(--radius);
  padding: var(--space-xs);
}

.dk-segmented__btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  border: none;
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dk-segmented__btn--active {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.dk-segmented__btn:not(.dk-segmented__btn--active):hover {
  color: var(--color-text);
}

/* --- Color Palette Display --- */
.dk-palette {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: var(--space-md);
}

.dk-palette__item {
  text-align: center;
}

.dk-palette__swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-sm);
}

.dk-palette__name {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.dk-palette__hex {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* --- Section spacing --- */
.dk-section {
  margin-bottom: var(--space-2xl);
}

.dk-section__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-neutral-200);
}

.dk-section__content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: flex-start;
}

.dk-section__content--stacked {
  flex-direction: column;
}
/* ============================================
   Landing Page Styles
   ============================================ */

/* --- Layout --- */
.landing-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

/* --- Header --- */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.landing-header.scrolled {
  box-shadow: var(--shadow-md);
}

.landing-header .landing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.landing-logo {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.landing-logo:hover {
  opacity: 0.8;
}

.landing-nav {
  display: none;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .landing-nav {
    display: flex;
  }
}

.landing-nav__link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.landing-nav__link:hover {
  color: var(--color-text-muted);
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: var(--radius-button);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.landing-btn--primary {
  background: var(--color-secondary);
  color: var(--color-white);
}

.landing-btn--primary:hover {
  background: #333;
}

.landing-btn--outline {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.landing-btn--outline:hover {
  background: var(--color-neutral-100);
}

.landing-btn--sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
}

.landing-btn--lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-base);
}

.landing-btn--full {
  width: 100%;
}

.landing-header .landing-btn {
  display: none;
}

@media (min-width: 768px) {
  .landing-header .landing-btn {
    display: inline-flex;
  }
}

.landing-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

@media (min-width: 768px) {
  .landing-burger {
    display: none;
  }
}

.landing-burger span {
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  transition: transform var(--transition-base);
}

.landing-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.landing-burger.active span:nth-child(2) {
  opacity: 0;
}

.landing-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.landing-mobile-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.landing-mobile-nav.open {
  display: flex;
}

.landing-mobile-nav__link {
  font-size: var(--font-size-base);
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-sm) 0;
}

.landing-mobile-nav .landing-btn {
  display: block;
  width: 100%;
  margin-top: var(--space-md);
  text-align: center;
  padding: var(--space-md) var(--space-lg);
}

/* --- Hero --- */
.landing-hero {
  padding: calc(64px + var(--space-2xl)) var(--space-md) var(--space-2xl);
  background: var(--color-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.landing-hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .landing-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }
}

.landing-hero__content {
  flex: 1;
  text-align: center;
}

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

.landing-hero__title {
  font-family: var(--font-family-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin: 0 0 var(--space-md);
  color: var(--color-secondary);
}

.landing-hero__subtitle {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-secondary);
  margin: 0 0 var(--space-xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .landing-hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.landing-hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 480px) {
  .landing-hero__cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .landing-hero__cta {
    justify-content: flex-start;
  }
}

.landing-hero__phone {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-hero__mockup {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
}

.landing-phone-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: var(--color-neutral-100);
  color: var(--color-text-muted);
}

.landing-phone-placeholder .landing-icon {
  width: 48px;
  height: 48px;
}

/* --- Stats (base for stat items) --- */
.landing-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .landing-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-stat {
  text-align: center;
}

.landing-stat__value {
  display: block;
  font-family: var(--font-family-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xs);
}

.landing-stat__label {
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

/* --- Sections --- */
.landing-section {
  padding: var(--space-2xl) var(--space-md);
}

.landing-section--alt {
  background: var(--color-neutral-100);
}

.landing-section__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0 0 var(--space-lg);
}

.landing-section__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Features --- */
.landing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.landing-feature {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.landing-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.landing-feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neutral-100);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.landing-feature__icon .landing-icon {
  width: 24px;
  height: 24px;
}

.landing-feature__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-sm);
}

.landing-feature__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Purposes --- */
.landing-purposes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .landing-purposes {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .landing-purposes {
    grid-template-columns: repeat(6, 1fr);
  }
}

.landing-purpose {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.landing-purpose:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.landing-purpose__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-purpose__icon .landing-icon {
  width: 100%;
  height: 100%;
}

.landing-purpose__name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

/* --- CTA --- */
.landing-cta {
  padding: var(--space-2xl) var(--space-md);
  background: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
}

.landing-cta__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-sm);
}

.landing-cta__subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  margin: 0 0 var(--space-xl);
}

.landing-store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--color-white);
  color: var(--color-secondary);
  border-radius: var(--radius-button);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.landing-store-btn:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.landing-store-btn svg {
  width: 24px;
  height: 24px;
}

/* --- Footer --- */
.landing-footer {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-neutral-100);
  border-top: 1px solid var(--color-border);
}

.landing-footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .landing-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.landing-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.landing-footer__nav a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.landing-footer__nav a:hover {
  color: var(--color-text);
}

.landing-footer__legal {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.landing-footer__legal p {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
  line-height: 1.5;
}

.landing-footer__disclaimer {
  font-size: 0.7rem !important;
  opacity: 0.8;
}

/* --- Icons --- */
.landing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.landing-icon svg {
  width: 100%;
  height: 100%;
}

.landing-icon--stroke svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Reveal Animation --- */
.landing-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Landing V2 — Enhanced Trust & Hierarchy
   ============================================ */

/* --- Hero Light (no yellow) --- */
.v2-hero--light {
  background: var(--color-white) !important;
  color: var(--color-text);
}

.v2-hero--light .landing-hero__title,
.v2-hero--light .v2-hero__title {
  color: var(--color-text);
}

.v2-hero--light .landing-hero__subtitle,
.v2-hero--light .v2-hero__subtitle {
  color: var(--color-text-muted);
}

.v2-hero--light .v2-hero__value-list li {
  color: var(--color-text);
}

.v2-hero--light .v2-hero__check {
  background: var(--color-secondary);
  color: var(--color-white);
}

.v2-hero--light .v2-trust-bar {
  border-top-color: var(--color-border);
}

.v2-hero--light .v2-trust-bar__stars {
  color: var(--color-secondary);
}

.v2-hero--light .v2-trust-badge {
  color: var(--color-text-muted);
}

/* --- Logo with Icon --- */
.landing-logo--with-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.landing-logo__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-logo__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-logo__icon path {
  stroke: currentColor;
}

.landing-logo__text {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
}

/* --- Stats Block (black, yellow strip) --- */
.v2-stats-block {
  position: relative;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
}

.v2-stats-block__strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--color-primary);
}

.v2-stats-block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .v2-stats-block__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.v2-stats-block .landing-stat__value {
  font-size: 18px;
  color: var(--color-white);
}

.v2-stats-block .landing-stat__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

/* --- Hero V2 --- */
.v2-hero__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

.v2-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
}

.v2-hero__value-list {
  list-style: none;
  margin: 0 0 var(--space-xl);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.v2-hero__value-list li {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.v2-hero__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

/* --- Trust Bar --- */
.v2-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.v2-trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.v2-trust-bar__stars {
  color: var(--color-secondary);
  font-size: var(--font-size-sm);
  letter-spacing: 1px;
}

.v2-trust-bar__rating {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

.v2-trust-bar__reviews {
  font-size: var(--font-size-xs);
  opacity: 0.9;
}

.v2-trust-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.2);
  display: none;
}

@media (min-width: 640px) {
  .v2-trust-bar__divider {
    display: block;
  }
}

.v2-trust-bar__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.v2-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
  opacity: 0.95;
}

.v2-trust-badge__icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-trust-badge__icon .landing-icon {
  width: 100%;
  height: 100%;
}

/* --- Stats V2 --- */
.v2-stats {
  padding: var(--space-xl) var(--space-md);
}

.v2-stats .landing-stat__value {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

/* --- Section V2 --- */
.v2-section {
  padding: var(--space-2xl) var(--space-md);
}

.v2-section__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: var(--space-sm);
}

.v2-section__lead {
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 auto var(--space-xl);
  max-width: 560px;
}

/* --- How It Works V2 --- */
.v2-how__flow {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-how__flow-body {
  flex: 1;
}

.v2-how__flow-title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-xs);
}

.v2-how__flow-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Timeline variant */
.v2-how__container {
  max-width: 1100px;
}

.v2-how--timeline .v2-how__flow {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2xl) 0;
  max-width: 100%;
  margin: 0 auto;
  padding-top: var(--space-xl);
}

.v2-how--timeline .v2-how__flow::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

@media (max-width: 767px) {
  .v2-how--timeline .v2-how__flow::before {
    display: none;
  }
}

.v2-how--timeline .v2-how__flow-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 50%;
  min-width: 120px;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .v2-how--timeline .v2-how__flow-item {
    flex: 1 1 25%;
  }
}

.v2-how--timeline .v2-how__flow-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  color: var(--color-white);
  background: var(--color-secondary);
  border-radius: 50%;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
  position: relative;
  top: 0;
}

.v2-how--timeline .v2-how__flow-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.v2-how--timeline .v2-how__flow-text {
  font-size: var(--font-size-base);
  line-height: 1.5;
}

/* Bento variant */
.v2-how--bento .v2-how__flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.v2-how--bento .v2-how__flow-item {
  display: block;
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-button);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-secondary);
  text-align: left;
  transition: box-shadow var(--transition-fast);
}

.v2-how--bento .v2-how__flow-item:hover {
  box-shadow: var(--shadow-md);
}

.v2-how--bento .v2-how__flow-num {
  display: inline-block;
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-neutral-200);
  margin-bottom: var(--space-sm);
}

.v2-how--bento .v2-how__flow-title {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
}

@media (max-width: 639px) {
  .v2-how--bento .v2-how__flow {
    grid-template-columns: 1fr;
  }
}

/* Stepper variant */
.v2-how--stepper .v2-how__flow {
  max-width: 640px;
  margin: 0 auto;
}

.v2-how--stepper .v2-how__flow-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg) 0;
  position: relative;
}

.v2-how--stepper .v2-how__flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: -var(--space-lg);
  width: 2px;
  background: var(--color-border);
}

.v2-how--stepper .v2-how__flow-num {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  color: var(--color-secondary);
  background: var(--color-neutral-100);
  border-radius: 50%;
  flex-shrink: 0;
}

.v2-how--stepper .v2-how__flow-title {
  margin-bottom: var(--space-xs);
}

.v2-how--stepper .v2-how__flow-text {
  margin: 0;
}

/* --- Carousel V2 --- */
.v2-carousel-section {
  overflow: hidden;
}

.v2-carousel-container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.v2-carousel {
  position: relative;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

@media (min-width: 768px) {
  .v2-carousel {
    max-width: 680px;
  }
}

.v2-carousel::before,
.v2-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 48px;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.v2-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-white) 0%, transparent 100%);
}

.v2-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-white) 0%, transparent 100%);
}

.landing-section--alt .v2-carousel::before {
  background: linear-gradient(90deg, var(--color-bg-alt) 0%, transparent 100%);
}

.landing-section--alt .v2-carousel::after {
  background: linear-gradient(270deg, var(--color-bg-alt) 0%, transparent 100%);
}

.v2-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.v2-carousel__track::-webkit-scrollbar {
  display: none;
}

.v2-carousel__slide {
  flex: 0 0 260px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

@media (min-width: 768px) {
  .v2-carousel__slide {
    flex: 0 0 320px;
  }
}

.v2-carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.v2-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
}

.v2-carousel__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-neutral-300);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  padding: 0;
}

.v2-carousel__dot:hover {
  background: var(--color-neutral-400);
}

.v2-carousel__dot.active {
  background: var(--color-secondary);
  transform: scale(1.2);
}

/* --- Features V2 --- */
.v2-features__grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .v2-features__grid-new {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "highlight card1 card2"
      "highlight card3 card3";
  }

  .v2-features__grid-new .v2-feature-highlight {
    grid-area: highlight;
    min-height: 100%;
  }

  .v2-features__grid-new .v2-features__list {
    display: contents;
  }

  .v2-features__grid-new .v2-features__list .landing-feature:nth-child(1) {
    grid-area: card1;
  }

  .v2-features__grid-new .v2-features__list .landing-feature:nth-child(2) {
    grid-area: card2;
  }

  .v2-features__grid-new .v2-features__list .landing-feature:nth-child(3) {
    grid-area: card3;
  }
}

.v2-feature-highlight {
  padding: var(--space-xl);
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: var(--radius-button);
  position: relative;
}

.v2-feature-highlight__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
}

.v2-feature-highlight__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.v2-feature-highlight__icons .landing-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
}

.v2-feature-highlight__plus {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.v2-feature-highlight__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-md);
  color: var(--color-white);
}

.v2-feature-highlight__text {
  font-size: var(--font-size-base);
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.v2-features__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

@media (min-width: 768px) {
  .v2-features__layout .v2-features__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v2-features__list .landing-feature {
  margin: 0;
}

/* --- Testimonials --- */
.v2-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .v2-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v2-testimonial {
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-button);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.v2-testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #555 100%);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.v2-testimonial__stars {
  color: var(--color-secondary);
  font-size: var(--font-size-sm);
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.v2-testimonial__text {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
}

.v2-testimonial__author {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* --- Security Section --- */
.v2-security--light {
  background: var(--color-white);
}

.v2-security--light .landing-section__title,
.v2-security--light .v2-section__title {
  text-align: center;
}

.v2-security--light .v2-section__lead {
  text-align: center;
}

.v2-security__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .v2-security__row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v2-security--light .v2-security__item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-button);
  border: 1px solid var(--color-border);
}

.v2-security__icon--gray {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.v2-security__icon--gray svg {
  width: 28px;
  height: 28px;
}

.v2-security--light .v2-security__title {
  color: var(--color-text);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
}

.v2-security--light .v2-security__text {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin: 0;
  line-height: 1.5;
}

.v2-security__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neutral-100);
  border-radius: var(--radius-full);
}

.v2-security__icon .landing-icon {
  width: 24px;
  height: 24px;
}

.v2-security__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-sm);
}

.v2-security__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- CTA V2 --- */
.v2-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.v2-cta__subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

.v2-cta__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  opacity: 0.95;
  margin-bottom: var(--space-xl);
}

.v2-cta__disclaimer {
  font-size: var(--font-size-xs);
  opacity: 0.8;
  margin-top: var(--space-lg);
  margin-bottom: 0;
  text-align: center;
}

.v2-cta {
  position: relative;
}

.v2-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .v2-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2xl);
  }
}

.v2-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 520px;
}

@media (min-width: 768px) {
  .v2-cta__content {
    align-items: flex-start;
    text-align: left;
    order: 1;
    flex: 1 1 55%;
  }
}

.v2-cta__phone {
  flex-shrink: 0;
  max-width: 220px;
  order: 2;
}

@media (min-width: 768px) {
  .v2-cta__phone {
    max-width: 300px;
    order: 2;
    flex: 0 0 45%;
  }
}

.v2-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.v2-cta__btn--outline {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.v2-cta__btn--outline:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}

.v2-cta__btn--outline svg {
  color: inherit;
}

.v2-cta__phone img,
.v2-cta__mockup {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.v2-cta__content .v2-cta__title {
  margin-bottom: var(--space-sm);
}

.v2-cta__content .v2-cta__subtitle {
  margin-bottom: var(--space-md);
}

.v2-cta__trust {
  justify-content: center;
}

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

.v2-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

/* --- Purposes --- */
#purposes .landing-section__title,
#purposes .v2-section__title,
#purposes .v2-section__lead,
#purposes .v2-purposes__lead {
  text-align: center;
}

#purposes .landing-purposes {
  justify-content: center;
}

.v2-purpose__desc {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
  line-height: 1.3;
}

.v2-purposes .landing-purpose {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
}

/* --- Footer --- */
.landing-footer__disclaimer {
  margin-top: 0;
}

.landing-footer__disclaimer p {
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
  opacity: 0.9;
}

.landing-footer__disclaimer p:last-child {
  margin-bottom: var(--space-md);
}

.landing-footer__disclaimer strong {
  font-size: 0.75rem;
  color: var(--color-text);
}

.landing-footer__copyright {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 0;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

/* --- FAQ --- */
.v2-faq {
  background: var(--color-bg-alt);
}

.v2-faq .landing-section__title,
.v2-faq .v2-section__title {
  text-align: center;
}

.v2-faq .v2-section__lead {
  text-align: center;
}

.v2-faq__list {
  max-width: 680px;
  margin: 0 auto;
}

.v2-faq__dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-faq__q {
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--color-text);
  margin: var(--space-lg) 0 var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.v2-faq__q:first-child {
  margin-top: 0;
}

.v2-faq__a {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-left: 0;
}
/* ============================================
   Privacy Policy Page
   ============================================ */

.privacy-page {
  padding: calc(64px + var(--space-2xl)) var(--space-md) var(--space-2xl);
}

.privacy-page__header {
  margin-bottom: var(--space-2xl);
}

.privacy-page__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-md);
}

.privacy-page__meta {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-xs);
}

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

.privacy-content {
  max-width: 100%;
}

.privacy-section {
  margin-bottom: var(--space-2xl);
}

.privacy-section h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.privacy-section h3 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  margin: var(--space-lg) 0 var(--space-sm);
}

.privacy-section p {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section a {
  color: var(--color-secondary);
  text-decoration: none;
}

.privacy-section a:hover {
  text-decoration: none;
}

.privacy-disclaimer {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.privacy-disclaimer p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
}

.privacy-disclaimer p:last-child {
  margin-bottom: 0;
}

/* Unsubscribe one-click — message only */
.unsubscribe-one-click-page .privacy-content {
  padding-top: var(--space-2xl);
}

.unsubscribe-one-click-content p {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
}

.unsubscribe-one-click-content p:last-child {
  margin-bottom: 0;
}
/* ============================================
   Contact Page
   ============================================ */

.contact-page {
  padding: calc(64px + var(--space-2xl)) var(--space-md) var(--space-2xl);
}

.contact-page__header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.contact-page__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-sm);
}

.contact-page__lead {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.contact-section__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-lg);
}

/* Form */
.contact-form-section {
  order: 1;
}

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

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.contact-form__field label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.contact-form__field .required {
  color: var(--color-error);
}

.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color var(--transition-fast);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form__field input.error,
.contact-form__field textarea.error {
  border-color: var(--color-error);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__error {
  font-size: var(--font-size-sm);
  color: var(--color-error);
  min-height: 1.25em;
}

.contact-form__counter {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.contact-form__submit {
  margin-top: var(--space-sm);
}

.contact-form__status {
  font-size: var(--font-size-base);
  padding: var(--space-md);
  border-radius: var(--radius);
  min-height: 1.5em;
}

.contact-form__status.success {
  background: #d4edda;
  color: #155724;
}

.contact-form__status.error {
  background: #f8d7da;
  color: #721c24;
}

/* Contact cards */
.contact-cards {
  order: 2;
}

.contact-cards__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.contact-card__icon svg {
  width: 100%;
  height: 100%;
}

.contact-card__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-sm);
}

.contact-card__value {
  font-size: var(--font-size-base);
  color: var(--color-text);
  text-decoration: none;
  display: block;
  line-height: 1.5;
}

.contact-card__value:hover {
  color: var(--color-secondary);
}

.contact-card__value address {
  font-style: normal;
}

.contact-card__note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: var(--space-sm) 0 0;
}

/* Do Not Sell form: select, checkbox */
.do-not-sell-form .contact-form__field select {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color var(--transition-fast);
  cursor: pointer;
}

.do-not-sell-form .contact-form__field select:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.do-not-sell-form .contact-form__field select.error {
  border-color: var(--color-error);
}

.do-not-sell__consent {
  margin-top: var(--space-md);
}

.do-not-sell__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-weight: normal;
}

.do-not-sell__checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.25em;
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
}

.do-not-sell__consent.error .do-not-sell__checkbox-label {
  color: var(--color-error);
}
/* ============================================
   Login Page — Centered Form
   ============================================ */

.login-page {
  padding: calc(64px + var(--space-2xl)) var(--space-md) var(--space-xl);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.login-page__inner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.login-page__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0 0 var(--space-sm);
}

.login-page__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 var(--space-xl);
}

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

.login-form__error {
  font-size: var(--font-size-sm);
  color: var(--color-error);
  padding: var(--space-md);
  background: #f8d7da;
  border-radius: var(--radius);
  display: none;
}

.login-form__error.visible {
  display: block;
}

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

.login-form__field label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.login-form__field input[type="email"],
.login-form__field input[type="password"] {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color var(--transition-fast);
}

.login-form__field input:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.login-form__field input::placeholder {
  color: var(--color-text-muted);
}

.login-form__field--checkbox {
  flex-direction: row;
  align-items: center;
}

.login-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-weight: var(--font-weight-regular);
}

.login-form__checkbox-label input {
  width: 18px;
  height: 18px;
}

.login-form__submit {
  width: 100%;
  margin-top: var(--space-sm);
}

.login-footer .landing-footer__legal {
  padding-top: var(--space-lg);
}

/* Unsubscribe success page — green checkmark */
.unsubscribe-success-page .unsubscribe-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-xl);
  color: #22c55e;
}

.unsubscribe-success-page .unsubscribe-success__icon svg {
  width: 100%;
  height: 100%;
}

.unsubscribe-success-page .unsubscribe-success__message {
  margin-bottom: var(--space-xl);
}

.unsubscribe-success-page .unsubscribe-success__btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
/* ============================================
   Apply Page — Centered Form Layout
   ============================================ */

.apply-page {
  padding: calc(64px + var(--space-2xl)) var(--space-md) var(--space-xl);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.apply-page__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.apply-page__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0 0 var(--space-sm);
}

.apply-page__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 var(--space-xl);
}

.apply-page__form-wrap {
  max-width: 100%;
}

/* Minimal footer on apply page */
.apply-footer .landing-footer__legal {
  padding-top: var(--space-lg);
}
/* ============================================
   Rates and Fees Page
   ============================================ */

.rates-page {
  padding: calc(64px + var(--space-2xl)) var(--space-md) var(--space-2xl);
}

.rates-page__header {
  margin-bottom: var(--space-2xl);
}

.rates-page__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-lg);
}

.rates-page__lead {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
  max-width: 100%;
}

/* Section titles */
.rates-section__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-md);
}

.rates-section__intro {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 var(--space-xl);
  max-width: 100%;
}

/* Overview cards */
.rates-overview {
  margin-bottom: var(--space-2xl);
}

.rates-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .rates-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rates-card {
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-sm);
}

.rates-card__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-sm);
  color: var(--color-text-muted);
}

.rates-card__value {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-md);
}

.rates-card__text {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

/* Example table */
.rates-examples {
  margin-bottom: var(--space-2xl);
}

.rates-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.rates-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.rates-table__caption {
  padding: var(--space-md);
  text-align: left;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.rates-table th,
.rates-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.rates-table th {
  font-weight: var(--font-weight-bold);
  background: var(--color-bg-alt);
}

.rates-table tbody tr:hover {
  background: var(--color-neutral-100);
}

.rates-table tbody tr:last-child td {
  border-bottom: none;
}

/* Fee items */
.rates-fees {
  margin-bottom: var(--space-2xl);
}

.rates-fees__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.rates-fee-item {
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.rates-fee-item__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-md);
}

.rates-fee-item__text {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

/* APR tips */
.rates-apr-tips {
  margin-bottom: var(--space-2xl);
}

.rates-tips__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.rates-tip-item {
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-secondary);
}

.rates-tip-item__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-md);
}

.rates-tip-item__text {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

/* Legal section */
.rates-legal {
  margin-bottom: var(--space-2xl);
}

.rates-legal__content {
  padding: var(--space-xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}

.rates-legal__content p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
}

.rates-legal__content p:last-child {
  margin-bottom: 0;
}

.rates-legal__content a {
  color: var(--color-secondary);
}

.rates-legal__content a:hover {
  text-decoration: none;
}

/* Disclaimer boxes */
.rates-disclaimer {
  padding: var(--space-lg);
  background: var(--color-neutral-100);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.rates-disclaimer p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

/* CTA */
.rates-page__cta {
  text-align: center;
  padding: var(--space-xl) 0;
}

/* ============================================
   Site Footer — Company / Legal / Account Columns
   Dark background, white headers
   ============================================ */

.site-footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-2xl) var(--space-md);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xl);
  transition: opacity var(--transition-fast);
}

.site-footer__logo:hover {
  color: var(--color-white);
  opacity: 0.9;
}

.site-footer__logo .landing-logo__icon {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.site-footer__logo .landing-logo__icon svg {
  stroke: currentColor;
}

.site-footer .landing-container,
.site-footer .site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .site-footer .landing-container,
  .site-footer .site-footer__container {
    padding: 0 var(--space-xl);
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer__column h3,
.site-footer__column h4 {
  color: var(--color-white);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.site-footer__column li {
  margin-bottom: var(--space-sm);
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.site-footer__column a:hover {
  color: var(--color-white);
}

.site-footer__disclaimer {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: var(--space-lg);
}

.site-footer__disclaimer p {
  font-size: var(--font-size-xs);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 var(--space-sm);
}

.site-footer__disclaimer p:last-child {
  margin-bottom: var(--space-md);
}

.site-footer__disclaimer a {
  color: var(--color-primary);
  text-decoration: none;
}

.site-footer__disclaimer a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.site-footer__contact {
  margin-top: var(--space-md);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.site-footer__contact a {
  color: var(--color-primary);
  text-decoration: none;
}

.site-footer__contact a:hover {
  color: var(--color-white);
}

.site-footer__ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.9);
  margin-top: var(--space-md);
}

.site-footer__ssl-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.site-footer__copyright {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
