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

:root {
  --cream: #F7F4EF;
  --warm-white: #FDFCFA;
  --charcoal: #1C1C1A;
  --mid: #6B6860;
  --light: #B8B5AF;
  --accent: #8C7355;
  --accent-light: #C9B89A;
  --border: rgba(28, 28, 26, 0.10);
  --border-mid: rgba(28, 28, 26, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 72px;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5em;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mid);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--charcoal);
  border-radius: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw 80px 6vw;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent);
}

.hero-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--charcoal);
  color: var(--warm-white);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 13px;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-right {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stat-card {
  position: relative;
  z-index: 2;
  background: var(--warm-white);
  border: 1px solid var(--border-mid);
  padding: 40px 44px;
  max-width: 340px;
  animation: fadeUp 0.9s ease 0.4s both;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.stat-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.strip {
  background: var(--charcoal);
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.strip-dot {
  width: 3px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 50%;
}

.section {
  padding: 100px 6vw;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
  align-items: end;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-title em {
  font-style: italic;
}

.section-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  max-width: 360px;
  align-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--warm-white);
  padding: 44px 36px;
  transition: background 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s ease;
}

.service-card:hover {
  background: var(--cream);
}

.service-card:hover::after {
  width: 100%;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--light);
  margin-bottom: 28px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.25;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

.about {
  background: var(--cream);
  padding: 100px 6vw;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.about-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #2a2926 0%, #1C1C1A 100%);
}

.about-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.10);
  letter-spacing: 0.08em;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--warm-white);
  border: 1px solid var(--border-mid);
  padding: 20px 24px;
  min-width: 160px;
}

.badge-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.badge-lbl {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}

.about-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.about-body em {
  font-style: italic;
  color: var(--accent);
}

.about-details {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 44px;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.credential {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.cred-name {
  font-weight: 400;
  color: var(--charcoal);
}

.cred-val {
  font-weight: 300;
  color: var(--mid);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.process {
  padding: 100px 6vw;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 1px;
  background: var(--border-mid);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-mid);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--accent);
  transition: background 0.25s, border-color 0.25s;
}

.step:hover .step-dot {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: var(--charcoal);
}

.step-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.step-sub {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
}

.fees {
  background: var(--cream);
  padding: 100px 6vw;
}

.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}

.fee-card {
  background: var(--warm-white);
  padding: 48px 44px;
}

.fee-card.featured {
  background: var(--charcoal);
}

.fee-type {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 20px;
}

.fee-card.featured .fee-type {
  color: rgba(255, 255, 255, 0.45);
}

.fee-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}

.fee-card.featured .fee-value {
  color: var(--warm-white);
}

.fee-range {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 28px;
}

.fee-card.featured .fee-range {
  color: rgba(255, 255, 255, 0.4);
}

.fee-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.fee-card.featured .fee-title {
  color: var(--warm-white);
}

.fee-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

.fee-card.featured .fee-desc {
  color: rgba(255, 255, 255, 0.5);
}

.fee-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fee-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.fee-card.featured .fee-list li {
  color: rgba(255, 255, 255, 0.55);
}

.fee-list li::before {
  content: '—';
  color: var(--accent-light);
  flex-shrink: 0;
}

.cta-section {
  background: var(--cream);
  padding: 120px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(140, 115, 85, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto 48px;
}

.cta-title em {
  font-style: italic;
  color: var(--accent);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 1em;
}

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--charcoal);
  color: var(--warm-white);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}

.cta-whatsapp:hover {
  background: var(--accent);
}

.cta-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
}

.cta-phone-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
}

.cta-phone-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

footer {
  background: var(--charcoal);
  padding: 64px 6vw 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 36px;
}

.footer-brand .logo-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.3);
}

.footer-quote-card {
  margin-top: 32px;
  position: relative;
}

.footer-quote-card .quote-icon {
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.6;
}

.footer-quote-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-quote-card .quote-author {
  display: block;
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}

.footer-oab {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-left>* {
  animation: fadeUp 0.8s ease both;
}

.hero-left .hero-eyebrow {
  animation-delay: 0.05s;
}

.hero-left .hero-heading {
  animation-delay: 0.15s;
}

.hero-left .hero-body {
  animation-delay: 0.25s;
}

.hero-left .hero-actions {
  animation-delay: 0.35s;
}

@media (max-width: 900px) {
  nav {
    padding: 0 5vw;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--warm-white);
    flex-direction: column;
    padding: 3em 5vw;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    gap: 3em;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    display: flex;
    padding: 40px 5vw 60px 5vw;
  }

  .hero-deco {
    display: none;
  }

  .hero-left {
    padding: 60px 5vw;
    min-height: 80vh;
  }

  .strip {
    flex-direction: column;
    gap: 16px;
    padding: 32px 5vw;
    align-items: center;
  }

  .strip-item {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    justify-content: center;
  }

  .section-header {
    grid-template-columns: 1fr;
  }

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

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-img-frame {
    aspect-ratio: 4/5;
    max-width: 440px;
    margin: 0 auto;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.form-wrapper {
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
}

.form-card {
  background: var(--warm-white);
  border: 1px solid var(--border-mid);
  padding: 40px;
  margin-top: 40px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row:has(+ .lgpd-row) {
  margin-bottom: 3px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-input {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-mid);
  border-radius: 0;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--charcoal);
  color: var(--warm-white);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  margin-top: 10px;
  transition: background 0.25s, opacity 0.3s;
}

.form-submit:hover:not(:disabled) {
  background: var(--accent);
}

.form-submit:disabled {
  background: var(--border-mid);
  color: var(--light);
  cursor: not-allowed;
  pointer-events: none;
}

/* LGPD checkbox row */
.lgpd-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0;
  margin-top: 0;
  transition: border-color 0.25s;
}

.lgpd-row:has(#lgpd:checked) {
  border-color: var(--accent);
}

.lgpd-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-mid);
  background: var(--warm-white);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.lgpd-row input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.lgpd-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 9px;
  border: 2px solid var(--warm-white);
  border-left: none;
  border-top: none;
  transform: translate(-50%, -60%) rotate(45deg);
}

.lgpd-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
  line-height: 1.5;
  margin: 0;
}

.lgpd-label a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  font-size: 12px;
  color: var(--mid);
  text-align: center;
  margin-top: 16px;
}

.success-msg {
  display: none;
  background: var(--warm-white);
  border: 1px solid var(--accent);
  padding: 30px;
  text-align: center;
}

.success-msg p {
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.success-msg small {
  font-size: 13px;
  color: var(--mid);
}

/* Planejamento Previdenciário Section */
.planning-section {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 100px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.planning-header {
  margin-bottom: 40px;
}

.planning-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
}

.planning-title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.planning-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.planning-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--warm-white);
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.25s, color 0.25s;
}

.planning-btn:hover {
  background: var(--accent-light);
  color: var(--charcoal);
}

.planning-steps {
  display: flex;
  flex-direction: column;
}

.planning-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.planning-step:first-child {
  padding-top: 0;
}

.planning-step:last-child {
  border-bottom: none;
}

.p-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--accent);
  margin-top: 4px;
}

.p-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.p-step-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .planning-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border-mid);
  padding: 18px 6vw;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 -8px 24px rgba(28, 28, 26, 0.04);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 0;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-text {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--mid);
  max-width: 850px;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
}

.cookie-banner-text a:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--charcoal);
  color: var(--warm-white);
  border: 1px solid var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.cookie-btn-accept:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-btn-reject {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: transparent;
  color: var(--mid);
  border: 1px solid var(--border-mid);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.cookie-btn-reject:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 24px;
  }
  
  .cookie-banner-text {
    font-size: 12px;
  }

  .cookie-banner-buttons {
    width: 100%;
    gap: 12px;
  }

  .cookie-btn-accept, .cookie-btn-reject {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
  }
}