/* ============================================================
   DREAM SEEKERS ACADEMY — High-Ticket Application Funnel
   Brand: Dark Navy (#0A1628) + Gold (#D4A74A) + Cream (#FFF8ED)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

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

  /* DSA Brand Colors */
  --color-bg:          #FFF8ED;
  --color-surface:     #FFFDF7;
  --color-surface-2:   #FFF5E0;
  --color-navy:        #0A1628;
  --color-navy-light:  #132240;
  --color-navy-dark:   #060E1A;
  --color-gold:        #D4A74A;
  --color-gold-light:  #E8C97A;
  --color-gold-dark:   #B8893A;
  --color-text:        #0A1628;
  --color-text-muted:  #4A5568;
  --color-text-faint:  #8A94A6;
  --color-text-inverse:#FFF8ED;
  --color-border:      #E2D5C0;
  --color-divider:     #EDE3D3;
  --color-error:       #C53030;
  --color-success:     #2F855A;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.12);
  --shadow-gold: 0 4px 20px rgba(212, 167, 74, 0.25);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--content-narrow);
}

.container--default {
  max-width: var(--content-default);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 167, 74, 0.15);
  transition: background 300ms, box-shadow 300ms;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-gold);
}

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  background: var(--color-gold);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.nav__cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-navy);
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(10, 22, 40, 0.85) 60%,
    rgba(10, 22, 40, 0.95) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-32) var(--space-6) var(--space-16);
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(212, 167, 74, 0.3);
  border-radius: var(--radius-sm);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-6);
}

.hero__headline em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(212, 167, 74, 0.2);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold);
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-1);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 167, 74, 0.35);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--large {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

.btn--dark {
  background: var(--color-navy);
  color: var(--color-gold);
}

.btn--dark:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn__arrow {
  transition: transform 200ms;
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ============================================================
   SECTION BASE
   ============================================================ */

.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}

.section--navy {
  background: var(--color-navy);
  color: var(--color-text-inverse);
}

.section--cream {
  background: var(--color-bg);
}

.section--warm {
  background: var(--color-surface-2);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section--navy .section__subtitle {
  color: rgba(255,255,255,0.7);
}

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

/* ============================================================
   PROBLEM / AGITATE SECTION
   ============================================================ */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.problem-card {
  padding: var(--space-8);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 167, 74, 0.12);
  border-radius: var(--radius-lg);
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(212, 167, 74, 0.1);
  color: var(--color-gold);
  margin-bottom: var(--space-5);
  font-size: 24px;
}

.problem-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: #fff;
}

.problem-card__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================================
   RESULTS / SOCIAL PROOF
   ============================================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.testimonial {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
}

.testimonial__result {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-3);
  padding-top: var(--space-6);
}

.testimonial__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial__avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}

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

.testimonial__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-gold-dark);
  background: rgba(212, 167, 74, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-top: 2px;
}

/* ============================================================
   OFFER / VALUE STACK
   ============================================================ */

.offer-section {
  position: relative;
}

.offer-card {
  max-width: 800px;
  margin: var(--space-10) auto 0;
  padding: var(--space-10);
  background: #fff;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
}

.offer__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: var(--space-2);
}

.offer__tagline {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.value-stack {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
}

.value-stack__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
}

.value-stack__item:last-child {
  border-bottom: none;
}

.value-stack__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(47, 133, 90, 0.1);
  color: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.value-stack__content {}

.value-stack__label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-navy);
  margin-bottom: 2px;
}

.value-stack__desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.value-stack__value {
  font-size: var(--text-xs);
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-top: 2px;
}

.offer__total {
  text-align: center;
  padding: var(--space-6) 0;
  margin-bottom: var(--space-6);
  border-top: 2px solid var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
}

.offer__total-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.offer__total-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-bottom: var(--space-1);
}

.offer__total-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-navy);
}

.offer__total-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.offer__cta-wrap {
  text-align: center;
}

/* ============================================================
   GUARANTEE
   ============================================================ */

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  max-width: 700px;
  margin: var(--space-10) auto 0;
  padding: var(--space-8);
  background: rgba(47, 133, 90, 0.04);
  border: 1px solid rgba(47, 133, 90, 0.15);
  border-radius: var(--radius-lg);
}

.guarantee__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(47, 133, 90, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.guarantee__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-divider);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0 auto var(--space-5);
  border: 3px solid var(--color-gold);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.process-step__text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   APPLICATION FORM
   ============================================================ */

.application {
  position: relative;
}

.application__form {
  max-width: 640px;
  margin: var(--space-10) auto 0;
  padding: var(--space-10);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form__group {
  margin-bottom: var(--space-5);
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 167, 74, 0.15);
}

.form__textarea {
  min-height: 100px;
  resize: vertical;
}

.form__select {
  appearance: none;
  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='%234A5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

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

.form__disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin-top: var(--space-4);
  line-height: 1.6;
}

/* ============================================================
   URGENCY / SCARCITY
   ============================================================ */

.urgency-banner {
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
  border: 1px solid rgba(212, 167, 74, 0.2);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: var(--space-8) auto 0;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: center;
}

.urgency-banner__icon {
  font-size: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.urgency-banner__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
}

.urgency-banner__text strong {
  color: var(--color-gold);
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */

.founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-10);
  align-items: center;
  max-width: 900px;
  margin: var(--space-10) auto 0;
}

.founder__image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  object-fit: cover;
  flex-shrink: 0;
}

.founder__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.founder__title {
  font-size: var(--text-sm);
  color: var(--color-gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.founder__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.founder__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.founder__credential {
  padding: var(--space-1) var(--space-3);
  background: rgba(212, 167, 74, 0.1);
  border: 1px solid rgba(212, 167, 74, 0.2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-navy);
}

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

.faq-list {
  max-width: 700px;
  margin: var(--space-10) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-divider);
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 300ms;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1), padding 300ms;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--space-5);
}

.faq-item__answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--color-navy-dark);
  padding: var(--space-12) 0 var(--space-6);
  color: rgba(255,255,255,0.5);
}

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

.footer__logo {
  display: flex;
  justify-content: center;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer__text {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.7;
}

.footer__attribution {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

.footer__attribution a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
}

.footer__attribution a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   FLOATING CTA (Mobile)
   ============================================================ */

.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: var(--space-3) var(--space-4);
  background: var(--color-navy);
  border-top: 1px solid rgba(212, 167, 74, 0.2);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.floating-cta .btn {
  width: 100%;
}

/* ============================================================
   LOGOS ROW
   ============================================================ */

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  margin-top: var(--space-8);
  opacity: 0.5;
}

.logos-row__item {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   ANTI-AI BADGE
   ============================================================ */

.anti-ai {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(212, 167, 74, 0.08);
  border: 1px solid rgba(212, 167, 74, 0.2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-gold-dark);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .hero__headline {
    font-size: var(--text-2xl);
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-5);
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps::before {
    display: none;
  }

  .founder {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder__image {
    margin: 0 auto;
    width: 150px;
    height: 150px;
  }

  .founder__credentials {
    justify-content: center;
  }

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

  .guarantee {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .floating-cta {
    display: block;
  }

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

  .offer-card {
    padding: var(--space-6);
  }

  .application__form {
    padding: var(--space-6);
  }

  .nav__cta {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .hero__content {
    padding: var(--space-24) var(--space-4) var(--space-12);
  }
}
