:root {
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-ink: #111322;
  --color-muted: #4d5164;
  --color-light: #f7f8fb;
  --color-card: #ffffff;
  --color-brand: #1f3fb5;
  --color-accent: #ff9f43;
  --color-border: rgba(17, 19, 34, 0.08);
  --shadow-card: 0 10px 40px rgba(15, 18, 38, 0.08);
  --shadow-card-hover: 0 20px 60px rgba(15, 18, 38, 0.15);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-pill: 999px;
  --container: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.section__intro {
  max-width: 720px;
  margin-bottom: 3rem;
  text-align: center;
  margin-inline: auto;
}

.section__intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
  position: relative;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button--solid {
  background: linear-gradient(135deg, #ff9f43 0%, #ff6b4a 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 140, 73, 0.3);
  font-weight: 700;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.card .button--ghost {
  background: transparent;
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.button--full {
  width: 100%;
  justify-content: center;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 140, 73, 0.4);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card .button--ghost:hover {
  background: var(--color-brand);
  color: white;
  border-color: var(--color-brand);
}

.hero {
  position: relative;
  padding-block: clamp(5rem, 12vw, 8rem);
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 159, 67, 0.3), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31, 63, 181, 0.3), transparent 50%),
    linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='.08'%3E%3Cpath d='M10 10h2v2h-2zM30 10h2v2h-2zM50 10h2v2h-2zM70 10h2v2h-2zM90 10h2v2h-2zM110 10h2v2h-2zM130 10h2v2h-2zM150 10h2v2h-2zM170 10h2v2h-2zM190 10h2v2h-2zM210 10h2v2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

/* New full-width hero layout */
.hero__full-width {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero__content-with-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0 3rem;
  flex-wrap: wrap;
}

.hero__content-with-image .hero__lead {
  flex: 1 1 450px;
  text-align: left;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero__image-inline {
  flex: 0 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.hero__image-inline:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.hero__image-inline img {
  display: block;
  width: 340px;
  height: auto;
  object-fit: cover;
}

.hero__full-width h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin: 0.5rem auto 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 900px;
}

.hero__full-width .eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff9f43;
  margin-bottom: 1rem;
}

.hero__full-width .hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero__full-width .hero__cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__full-width .hero__footnote {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  
  .hero__content-with-image {
    flex-direction: column;
    text-align: center;
  }
  
  .hero__content-with-image .hero__lead {
    text-align: center;
  }
  
  .hero__image-inline img {
    width: 280px;
  }
}

.hero__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__pills span {
  padding: 0.5rem 0.75rem;
  border-radius: 0;
  background: transparent;
  border: none;
  border-left: 3px solid #ff9f43;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  cursor: default;
  transition: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__pills span::before {
  content: "✓";
  color: #ff9f43;
  font-weight: 700;
  font-size: 1rem;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.hero__footnote {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.hero__card {
  position: relative;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-photo:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 159, 67, 0.2), rgba(31, 63, 181, 0.2));
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-photo {
    transform: none;
  }
  .hero-photo:hover {
    transform: scale(1.02);
  }
}

.commitments {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  position: relative;
}

.commitments::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.commitments__grid,
.value__list,
.mentor__highlights,
.reality__grid,
.steps__grid {
  display: grid;
  gap: 2rem;
}

.commitments__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1000px;
  margin-inline: auto;
}

.card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(31, 63, 181, 0.1);
}

.card h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
  font-weight: 700;
}

.card__subtitle {
  font-weight: 600;
  color: var(--color-accent);
  margin: 0.4rem 0 1rem;
  font-size: 0.95rem;
}

.value {
  position: relative;
  overflow: hidden;
}

.value::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 159, 67, 0.05), transparent);
  pointer-events: none;
}

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

.value__content {
  padding-right: 2rem;
}

.value__content p:last-of-type {
  margin-bottom: 2rem;
}

.value__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  margin-top: 1rem;
}

.value__image:hover {
  transform: translateY(-5px);
}

.value__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 250px;
}

@media (max-width: 768px) {
  .value__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .value__content {
    padding-right: 0;
    text-align: center;
  }
  
  .value__image {
    margin-top: 1.5rem;
  }
}

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

.value__list li {
  padding: 1.2rem 1.4rem 1.2rem 3.8rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 159, 67, 0.05), rgba(31, 63, 181, 0.05));
  border: 1px solid var(--color-border);
  position: relative;
  font-weight: 500;
  color: var(--color-ink);
  transition: all 0.3s ease;
}

.value__list li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value__list li::before {
  content: "✓";
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-brand));
  color: #fff;
  display: grid;
  place-items: center;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(255, 159, 67, 0.3);
}

.mentor__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mentor__highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.mentor__highlights li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.6rem;
}

.mentor__highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--color-brand);
}

.mentor {
  background: white;
}

.mentor__profile {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mentor__profile-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  max-width: 350px;
  width: 100%;
  height: 550px;
}

.mentor__profile-image:hover {
  transform: translateY(-5px);
}

.mentor__profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial {
  background: linear-gradient(135deg, #f8f4f0 0%, #fef9f5 50%, #f5f0ec 100%);
  padding-block: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 159, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 123, 74, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial__wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.testimonial__badge {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff9f43;
  display: inline-block;
}

.testimonial__divider {
  color: #cbd5e0;
  font-size: 0.75rem;
}

.testimonial__content-with-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #fcfcfd 100%);
  border-radius: calc(var(--radius-xl) * 1.5);
  padding: clamp(3rem, 5vw, 4rem);
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.02),
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 12px 24px rgba(0, 0, 0, 0.03),
    0 24px 48px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 159, 67, 0.08);
  position: relative;
}

.testimonial__content-with-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #ff9f43 20%, 
    #ff7b4a 50%, 
    #ff9f43 80%, 
    transparent 100%);
  border-radius: calc(var(--radius-xl) * 1.5) calc(var(--radius-xl) * 1.5) 0 0;
}

.testimonial__quote {
  flex: 1 1 500px;
  text-align: left;
  position: relative;
  padding-left: 3rem;
}

.testimonial__quote-mark {
  position: absolute;
  top: -1rem;
  left: 0;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 159, 67, 0.15);
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial__quote p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-ink);
  margin: 0 0 1rem 0;
  font-style: italic;
}

.testimonial__emphasis {
  font-weight: 600;
  color: #ff9f43;
  font-size: 1.3rem !important;
  font-style: normal !important;
}

.testimonial__image-card {
  flex: 0 0 auto;
  text-align: center;
  position: relative;
}

.testimonial__image-card img {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: 
    0 0 0 4px white,
    0 0 0 5px rgba(255, 159, 67, 0.2),
    0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.testimonial__image-card:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.testimonial__signature {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial__names {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9f43 0%, #ff7b4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.testimonial__achievement {
  font-size: 0.9rem;
  color: var(--color-ink-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .testimonial__content-with-image {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .testimonial__quote {
    padding-left: 0;
    text-align: center;
  }
  
  .testimonial__quote-mark {
    position: static;
    margin-bottom: 1rem;
  }
  
  .testimonial__image-card img {
    width: 160px;
    height: 160px;
  }
}

.reality {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  position: relative;
}

.reality__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card--minimal {
  box-shadow: none;
  border: 2px dashed var(--color-border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 255, 0.8));
}

.card--minimal:hover {
  border-color: var(--color-accent);
  background: white;
}

.steps__grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1100px;
  margin-inline: auto;
}

.form-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6rem);
}

.form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 159, 67, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.form-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 120%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(31, 63, 181, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.form-section__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: var(--color-ink);
  position: relative;
  z-index: 1;
}

.form-section__intro .eyebrow {
  color: #ff9f43;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: inline-block;
}

.form-section__intro h2 {
  color: var(--color-ink);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-section__intro p {
  color: var(--color-ink-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-section__notes {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.form-section__notes li {
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.lead-form {
  background: linear-gradient(135deg, #ffffff 0%, #fcfcfd 100%);
  color: var(--color-ink);
  border-radius: calc(var(--radius-xl) * 1.5);
  padding: clamp(3rem, 5vw, 4rem);
  box-shadow: 
    0 0 0 1px rgba(255, 159, 67, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 12px 24px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.lead-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    #ff9f43 0%, 
    #ff7b4a 25%, 
    #ff9f43 50%, 
    #ff7b4a 75%, 
    #ff9f43 100%);
  border-radius: calc(var(--radius-xl) * 1.5) calc(var(--radius-xl) * 1.5) 0 0;
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.lead-form__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1.3rem;
}

.lead-form__single-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
}

.lead-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: var(--radius-md);
  border: 2px solid #e1e8ed;
  padding: 1.1rem 1.3rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.lead-form input[type="text"]:hover,
.lead-form input[type="email"]:hover,
.lead-form input[type="tel"]:hover {
  border-color: #cbd5e0;
  background: #fafbfc;
}

.lead-form input:focus {
  outline: none;
  border-color: #ff9f43;
  background: white;
  box-shadow: 
    0 0 0 4px rgba(255, 159, 67, 0.1),
    inset 0 1px 2px rgba(0, 0, 0, 0.03);
  transform: translateY(-1px);
}

.lead-form__options {
  border: none;
  padding: 1.5rem;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #fafbfc 0%, #f7f8fa 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.lead-form__options legend {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-ink);
  font-size: 0.95rem;
  padding: 0 0.5rem;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.option-column {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.option-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid #e1e8ed;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, white 0%, #fafbfc 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.option-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 159, 67, 0.1), transparent);
  transition: left 0.4s ease;
}

.option-pill:hover {
  border-color: #ff9f43;
  background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 159, 67, 0.12);
}

.option-pill:hover::before {
  left: 100%;
}

.option-pill:has(input:checked) {
  background: linear-gradient(135deg, #ff9f43 0%, #ff7b4a 100%);
  color: white;
  border-color: #ff9f43;
  box-shadow: 0 4px 12px rgba(255, 159, 67, 0.25);
  transform: scale(1.02);
  font-weight: 600;
}

.option-pill input {
  accent-color: var(--color-brand);
}

.lead-form__checkbox {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 63, 181, 0.08);
  transition: all 0.3s ease;
}

.lead-form__checkbox:hover {
  border-color: rgba(31, 63, 181, 0.15);
  background: linear-gradient(135deg, #e6f7ff 0%, #dcf2ff 100%);
}

.lead-form__checkbox input {
  margin-top: 0.2rem;
  accent-color: #ff9f43;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Submit Button Styling */
.lead-form button[type="submit"] {
  width: 100%;
  padding: 1.4rem 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ff9f43 0%, #ff7b4a 100%);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lead-form button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.lead-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 159, 67, 0.4);
}

.lead-form button[type="submit"]:hover::before {
  left: 100%;
}

.lead-form button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 159, 67, 0.3);
}

.lead-form__alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-bottom: 1rem;
}

.lead-form__alert--success {
  background: #ecfdf3;
  color: #027a48;
}

.lead-form__alert--error {
  background: #fef3f2;
  color: #b42318;
}

.lead-form__error-text {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #c4320a;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 1rem;
}

.footer {
  background: linear-gradient(135deg, #0a0d14 0%, #141824 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer__legal {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.35rem;
}

/* Card with photo styling */
.card--with-photo {
  display: grid;
  grid-template-rows: 200px 1fr;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card--with-photo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card--with-photo > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.4s ease;
}

.card--with-photo:hover > img {
  transform: scale(1.05);
}

.card--with-photo > div {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card--with-photo h3 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--color-ink);
  font-weight: 700;
}

.card--with-photo p {
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

.card--with-photo .button {
  margin-top: auto;
  align-self: flex-start;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 640px) {
  .hero__cta-row {
    flex-direction: column;
  }
  
  .hero__cta-row .button {
    width: 100%;
  }

  .lead-form__checkbox {
    flex-direction: column;
  }

  .steps__grid,
  .commitments__grid {
    grid-template-columns: 1fr;
  }
  
  .card--with-photo {
    grid-template-rows: 180px 1fr;
  }
  
  .card--with-photo > img {
    height: 180px;
  }
}

