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

:root {
  --gold:        #C9862A;
  --gold-light:  #E8A835;
  --gold-pale:   #F5D98A;
  --cream:       #FDF6E3;
  --cream-dark:  #F0E6C8;
  --terra:       #B85C38;
  --teal:        #2AABB5;
  --teal-light:  #5DCDD7;
  --teal-dark:   #1A8A95;
  --night:       #120D08;
  --night-soft:  #1E1610;
  --sand:        #8C7355;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Spectral', Georgia, serif;
  --font-ui:      'Syne', sans-serif;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--night);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain/noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: rgba(253, 246, 227, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,134,42,0.12);
}

.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--night);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo span { color: var(--gold); font-style: normal; }

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav__links a:hover { color: var(--night); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  background: var(--night);
  color: var(--cream);
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}

.nav__cta:hover { background: var(--teal); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,168,53,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(42,171,181,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero__sun {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  opacity: 0.1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__tag {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__tag::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--teal);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 0.96;
  color: var(--night);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

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

.hero__sub {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--sand);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__img-wrap {
  position: relative;
}

.hero__img-wrap img {
  width: 100%;
  max-width: 440px;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  padding: 1rem 1.5rem;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(42,171,181,0.3);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

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

.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,171,181,0.3);
}

.btn--gold:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn--outline {
  background: transparent;
  color: var(--night);
  border: 1.5px solid var(--night);
}

.btn--outline:hover {
  background: var(--night);
  color: var(--cream);
  transform: translateY(-2px);
}

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

.btn--teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,171,181,0.3);
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  background: var(--teal);
  padding: 0.9rem 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.marquee__track {
  display: inline-block;
  animation: marquee-scroll 28s linear infinite;
}

.marquee__track:hover { animation-play-state: paused; }

.marquee__inner {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.marquee__dot {
  color: rgba(255,255,255,0.4);
  margin: 0 1.25rem;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
section { padding: clamp(4rem, 8vw, 8rem) 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

.section-tag--teal {
  color: var(--teal);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--night);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  margin: 1.5rem 0;
}

/* ===== WHY ME ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: #fff;
  border: 1px solid rgba(201,134,42,0.12);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.why-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,0.55) 50%,
    transparent 65%
  );
  transform: translateX(-200%) skewX(-8deg);
  animation: shimmer-roll 6s ease-in-out infinite;
  pointer-events: none;
}

.why-card:nth-child(1)::after { animation-delay: 0s; }
.why-card:nth-child(2)::after { animation-delay: 1s; }
.why-card:nth-child(3)::after { animation-delay: 2s; }
.why-card:nth-child(4)::after { animation-delay: 3s; }
.why-card:nth-child(5)::after { animation-delay: 4s; }
.why-card:nth-child(6)::after { animation-delay: 5s; }

@keyframes shimmer-roll {
  0%, 30% { transform: translateX(-200%) skewX(-8deg); }
  70%, 100% { transform: translateX(300%) skewX(-8deg); }
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(201,134,42,0.12);
}

.why-card:nth-child(even):hover {
  box-shadow: 0 20px 56px rgba(42,171,181,0.14);
}

.why-card__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.why-card__text {
  font-size: 0.95rem;
  color: var(--sand);
  line-height: 1.75;
  font-weight: 300;
}

/* ===== SAVINGS ===== */
.savings-section {
  background: var(--night);
  color: #fff;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 56px, 100% 0, 100% calc(100% - 56px), 0 100%);
  padding-top: calc(clamp(4rem,8vw,8rem) + 56px);
  padding-bottom: calc(clamp(4rem,8vw,8rem) + 56px);
  margin: -2px 0;
  z-index: 1;
}

.savings-section::before {
  content: '☀';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28rem;
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
}

.savings-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--gold));
  opacity: 0.6;
}

.savings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.savings-table {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(42,171,181,0.2);
  border-radius: 4px;
  overflow: hidden;
}

.savings-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  align-items: center;
}

.savings-row:last-child { border-bottom: none; }

.savings-row.header {
  background: rgba(42,171,181,0.12);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 700;
}

.savings-row .strike {
  text-decoration: line-through;
  color: rgba(255,255,255,0.28);
}

.savings-row .save {
  color: var(--teal-light);
  font-weight: 600;
}

/* ===== PORTFOLIO ===== */
.portfolio-card {
  background: var(--night);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border: 1px solid rgba(42,171,181,0.12);
}

.portfolio-card__img {
  position: relative;
  overflow: hidden;
}

.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.04);
}

.portfolio-card__text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-card__tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.portfolio-card__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.portfolio-card__desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.price-card--starter {
  background: #fff;
  border: 1.5px solid rgba(42,171,181,0.2);
}

.price-card--starter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.price-card--full {
  background: var(--night);
  color: #fff;
}

.price-card--full::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
}

.price-card--full::after {
  content: '☀';
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  font-size: 12rem;
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

.price-card__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.price-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.price-card--full .price-card__name { color: #fff; }

.price-card__price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.price-card__note {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--sand);
  margin-bottom: 2rem;
  font-weight: 400;
}

.price-card--full .price-card__note { color: rgba(255,255,255,0.45); }

.price-card__features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-card__features li {
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201,134,42,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--sand);
  font-weight: 300;
}

.price-card--full .price-card__features li {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.06);
}

.price-card__features li::before {
  content: '✦';
  color: var(--teal);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.price-card--full .price-card__features li::before {
  color: var(--gold);
}

.goal-bar {
  background: #fff;
  border: 1px solid rgba(42,171,181,0.15);
  border-radius: 4px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.goal-bar__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--night);
}

.goal-bar__track {
  background: var(--cream-dark);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.goal-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 100px;
  width: 5%;
  transition: width 1s ease;
}

.goal-bar__label {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--sand);
}

.goal-bar__label span { color: var(--gold); font-weight: 600; }

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 640px;
  margin: 3rem auto 0;
}

.form-step {
  display: none;
  animation: fadeUp 0.4s ease forwards;
}

.form-step.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step__q {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.form-step__hint {
  font-size: 1rem;
  color: var(--sand);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  background: #fff;
  border: 1.5px solid rgba(201,134,42,0.2);
  border-radius: 3px;
  color: var(--night);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 1.5rem;
}

.form-input:focus { border-color: var(--teal); }

.form-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-option {
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1.5px solid rgba(201,134,42,0.15);
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--sand);
  text-align: center;
  transition: all 0.2s;
  font-weight: 300;
}

.form-option:hover,
.form-option.selected {
  border-color: var(--teal);
  background: rgba(42,171,181,0.05);
  color: var(--night);
}

.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 2.5rem;
}

.form-progress__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: background 0.3s;
}

.form-progress__dot.done { background: var(--teal); }

.form-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-back {
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sand);
  cursor: pointer;
  padding: 0.5rem;
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  background: var(--night);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--teal);
}

footer::before {
  content: '✦ Sol Studio Pro ✦';
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(201,134,42,0.25);
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-top: 2rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer__brand span { color: var(--gold); font-style: normal; }

.footer__tagline {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 300px;
  font-weight: 300;
}

.footer__col h5 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.5rem; }
.footer__col ul a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
  font-weight: 300;
}
.footer__col ul a:hover { color: var(--teal-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ===== MOBILE NAV ===== */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--night);
  border-radius: 2px;
  transition: background 0.2s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--teal);
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}

.nav__mobile a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__mobile a:hover { color: var(--teal); }
.nav__mobile.open { display: flex; }

/* ===== FOCUS FORM OVERRIDES ===== */
.focus-input:focus { border-color: var(--teal) !important; }
.focus-option:hover,
.focus-option.selected {
  border-color: var(--teal) !important;
  background: rgba(42,171,181,0.06) !important;
  color: var(--night) !important;
}
.focus-progress__bar.done { background: var(--teal) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__img-wrap { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .savings-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .portfolio-card { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; }
  .form-options { grid-template-columns: 1fr; }
  .savings-section {
    clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%);
    padding-top: calc(clamp(4rem,8vw,8rem) + 32px);
    padding-bottom: calc(clamp(4rem,8vw,8rem) + 32px);
  }
}

/* ===== ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-anim].visible {
  opacity: 1;
  transform: none;
}
