/* ===== Classy Civil — Design Tokens ===== */
:root {
  /* Official Classy Civil brand palette */
  --cc-black: #000000;
  --cc-yellow: #fcb102;
  --cc-red: #f60200;
  --cc-white: #f9faf9;

  /* Derived tints for layering only — not new brand colors */
  --cc-black-soft: #161616;
  --cc-yellow-dark: #d99700;
  --cc-off-white: var(--cc-white);

  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-hand: "Kalam", "Segoe UI", cursive;

  --max-width: 1200px;
  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cc-black);
  background: var(--cc-off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

section {
  scroll-margin-top: 76px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cc-yellow-dark);
  margin-bottom: 0.75em;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}

.section-sub {
  max-width: 60ch;
  color: #3a3a3a;
  margin-bottom: 2.5rem;
}

.section-pad {
  padding: 4.5rem 0;
}

.section--dark {
  background: var(--cc-black);
  color: var(--cc-white);
}

.section--dark .section-sub {
  color: #cfcfcf;
}

/* Focus visibility (accessibility) */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cc-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9em 1.8em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--cc-yellow);
  color: var(--cc-black);
}

.btn--primary:hover {
  background: var(--cc-yellow-dark);
}

.btn--outline {
  background: transparent;
  color: var(--cc-white);
  border-color: var(--cc-yellow);
}

.btn--outline:hover {
  background: var(--cc-yellow);
  color: var(--cc-black);
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(252, 177, 2, 0.25);
}

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

.brand-logo {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(252, 177, 2, 0.4);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--cc-yellow);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cc-black);
  border-bottom: 1px solid rgba(252, 177, 2, 0.25);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  padding: 1rem 20px 1.5rem;
}

.site-nav a {
  display: block;
  padding: 0.85em 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cc-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav a:hover {
  color: var(--cc-yellow);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    border-bottom: none;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 2rem;
  }

  .site-nav a {
    padding: 0;
    border-bottom: none;
  }
}

/* ===== Hero ===== */
.hero {
  background: radial-gradient(circle at 80% 0%, rgba(252, 177, 2, 0.18), transparent 55%),
    var(--cc-black);
  color: var(--cc-white);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.hero .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800;
}

.hero-copy h1 span {
  color: var(--cc-yellow);
}

.hero-copy p {
  font-size: 1.25rem;
  color: #d8d8d8;
  max-width: 50ch;
  margin-bottom: 2rem;
}

.highlight {
  color: var(--cc-yellow);
  font-weight: 700;
}

.hero-callout {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 1.15em;
  font-weight: 800;
  color: var(--cc-white);
}

.strong-white {
  color: var(--cc-white);
  font-weight: 700;
}

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

.hand-text {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.2em;
}

.why-us .section-sub.center-text {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 65ch;
}

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

.hero-art {
  display: flex;
  justify-content: center;
}

@media (min-width: 800px) {
  .hero-art {
    justify-content: flex-end;
    margin-right: -2.5rem;
  }
}

.hero-art img {
  width: min(480px, 95%);
  filter: drop-shadow(0 20px 40px rgba(252, 177, 2, 0.2));
}

@media (min-width: 800px) {
  .hero .container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ===== About ===== */

.about-copy .eyebrow {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.about-copy .section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
}

.about-copy .section-sub {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: none;
}

.about-copy .highlight {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1.35;
}

.about-copy .muted {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: #9a9a9a;
  font-weight: 400;
  font-style: italic;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.quote-stack-divider {
  font-family: var(--font-hand);
  font-weight: 400;
  color: #9a9a9a;
  font-size: 1rem;
}

.about-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-copy .quote-stack,
.about-copy .about-dream {
  margin-left: auto;
  margin-right: auto;
}

.a-dream {
  margin-top: 1.5rem;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  color: var(--cc-black);
}

.dream-dots {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  color: var(--cc-yellow);
}

.about-dream {
  margin-top: 1rem;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: 1.15;
}

.about-dream span {
  display: block;
}

.about-dream .highlight {
  font-size: inherit;
  text-shadow: 0 4px 18px rgba(252, 177, 2, 0.35);
}

/* Sequenced pop-in: dots -> A Dream -> Your Dream -> Our Boss */
.dream-sequence {
  opacity: 1;
  transform: none;
  transition: none;
}

.dream-sequence .dream-dots,
.dream-sequence .a-dream,
.dream-sequence .about-dream span {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dream-sequence.is-visible .dream-dots {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}

.dream-sequence.is-visible .a-dream {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}

.dream-sequence.is-visible .about-dream span:first-child {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}

.dream-sequence.is-visible .about-dream .highlight {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.9s;
}

@media (prefers-reduced-motion: reduce) {
  .dream-sequence .dream-dots,
  .dream-sequence .a-dream,
  .dream-sequence .about-dream span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Founder ===== */
.founder-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.founder-photo {
  display: flex;
  justify-content: center;
}

.founder-photo img {
  width: min(280px, 60%);
  height: auto;
}

@media (min-width: 800px) {
  .founder-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .founder-photo {
    order: 2;
    justify-content: center;
  }

  .founder-copy {
    order: 1;
  }

  .founder-photo img {
    width: min(320px, 100%);
  }
}

.founder-role {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cc-yellow);
  margin: -0.5rem 0 1.5rem;
}

.founder-copy .section-sub {
  margin-bottom: 1.1rem;
}

.founder-copy .section-sub:last-child {
  margin-bottom: 0;
}

.founder-quote {
  max-width: 640px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 2px solid rgba(252, 177, 2, 0.3);
  font-family: var(--font-hand);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--cc-white);
}

/* ===== Why Us narrative components ===== */
.worry-marquee {
  display: flex;
  overflow: hidden;
  margin-bottom: 3.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.worry-track {
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
  padding-right: 0.75rem;
  animation: worry-scroll 22s linear infinite;
}

.worry-marquee:hover .worry-track {
  animation-play-state: paused;
}

.worry-track li {
  flex: 0 0 auto;
  white-space: nowrap;
  background: var(--cc-white);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 0.6em 1.2em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .worry-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
    flex-wrap: wrap;
  }

  .worry-track {
    animation: none;
    flex-wrap: wrap;
  }

  .worry-track[aria-hidden="true"] {
    display: none;
  }
}

.kural-block {
  background: var(--cc-black);
  color: var(--cc-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--cc-yellow);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.kural-tamil {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.kural-block cite {
  display: block;
  color: var(--cc-yellow);
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1rem;
}

.kural-gloss {
  color: #d8d8d8;
  margin: 0;
}

.ready-block {
  text-align: center;
}

.ready-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.ready-block p {
  color: #3a3a3a;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.ready-callout {
  font-size: 1.3rem;
  display: inline-block;
}

/* ===== Batch cards ===== */
.batch-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .batch-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.batch-card {
  display: flex;
  flex-direction: column;
  background: var(--cc-black-soft);
  border: 1px solid rgba(252, 177, 2, 0.25);
  border-top: 4px solid var(--cc-yellow);
  border-radius: var(--radius);
  padding: 2rem;
}

.batch-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.batch-status--immediate {
  color: var(--cc-red);
}

.batch-status--future {
  color: var(--cc-yellow);
}

.batch-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.batch-status-dot--red {
  background: var(--cc-red);
}

.batch-status-dot--yellow {
  background: var(--cc-yellow);
}

.batch-card .batch-actions {
  margin-top: auto;
  padding-top: 0.5rem;
}

.batch-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cc-yellow);
  margin-bottom: 0.75rem;
}

.batch-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cc-red);
  animation: batch-pulse 1.6s ease-in-out infinite;
}

@keyframes batch-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.batch-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.batch-meta {
  color: var(--cc-yellow);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.batch-desc {
  color: #cfcfcf;
  margin-bottom: 1.25rem;
}

.batch-includes {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.batch-includes li {
  color: var(--cc-white);
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.batch-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cc-yellow);
  font-weight: 700;
}

.batch-end {
  color: #cfcfcf;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.batch-actions {
  display: flex;
  gap: 0.75rem;
}

.batch-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 0.8em 1em;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .batch-live-dot {
    animation: none;
  }
}

/* ===== Moving forward pills ===== */
.moving-forward {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(252, 177, 2, 0.2);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pill-list li {
  border: 1px solid rgba(252, 177, 2, 0.5);
  color: var(--cc-yellow);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ===== Exam list (Exams We Cover) ===== */
.exam-list {
  list-style: disc;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: 1.5rem;
  margin: 0;
  gap: 1rem 4rem;
}

.exam-list li {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.6vw, 1.75rem);
  color: var(--cc-yellow);
  white-space: nowrap;
}

.exam-list li::marker {
  color: var(--cc-yellow);
}

/* ===== Our Approach narrative ===== */
.approach-thesis {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--cc-yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.4;
}

.approach .card-grid {
  margin-top: 2.5rem;
}

.approach .card-grid .card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.approach .card-grid .card .card-icon {
  transition: transform 0.25s ease;
}

.approach .card-grid .card:hover {
  transform: translateY(-8px) scale(1.03);
  border-top-color: var(--cc-red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.approach .card-grid .card:hover .card-icon {
  transform: scale(1.2);
}

.approach .card-grid .card:nth-child(1) {
  transition-delay: 0s;
}

.approach .card-grid .card:nth-child(2) {
  transition-delay: 0.15s;
}

.approach .card-grid .card:nth-child(3) {
  transition-delay: 0.3s;
}

.approach .card-grid .card:nth-child(4) {
  transition-delay: 0.45s;
}

/* ===== Card Grids (Courses / Why Us / Testimonials) ===== */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.card {
  background: var(--cc-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--cc-yellow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: #4a4a4a;
  margin: 0;
  font-size: 0.95rem;
}

/* Why Us cards on dark section */
.section--dark .card {
  background: var(--cc-black-soft);
  color: var(--cc-white);
  border-top-color: var(--cc-red);
}

.section--dark .card p {
  color: #c9c9c9;
}

/* ===== Testimonials marquee ===== */
.testimonial-marquee {
  display: flex;
  overflow: hidden;
  padding: 0.5rem 0 2rem;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.testimonial-track {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  padding-right: 1.25rem;
  animation: testimonial-scroll 50s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-mini {
  flex: 0 0 auto;
  width: 340px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--cc-black);
  color: var(--cc-white);
  border-radius: var(--radius);
  border-top: 4px solid var(--cc-yellow);
  box-shadow: 0 10px 26px rgba(252, 177, 2, 0.25);
  padding: 1.1rem 1.25rem;
}

.testimonial-mini-quote {
  font-family: var(--font-hand);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.35;
  margin: 0 0 0.85rem;
  color: var(--cc-white);
}

.testimonial-mini-author {
  display: flex;
  align-items: center;
  align-self: flex-end;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: #cfcfcf;
}

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

@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
    flex-wrap: wrap;
  }

  .testimonial-track {
    animation: none;
    flex-wrap: wrap;
  }

  .testimonial-track[aria-hidden="true"] {
    display: none;
  }
}

/* ===== Contact ===== */
.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.contact-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.contact-list li {
  font-size: 1.05rem;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-list a:hover {
  color: var(--cc-yellow);
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-icon--img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== Lead Form ===== */
.lead-form {
  width: 100%;
  max-width: 460px;
  background: var(--cc-black);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.lead-form-heading {
  color: var(--cc-white);
  font-size: 1.3rem;
  margin: 0 0 1.5rem;
}

.lead-form-batch-note {
  display: inline-block;
  background: rgba(252, 177, 2, 0.12);
  border: 1px solid rgba(252, 177, 2, 0.35);
  color: var(--cc-yellow);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5em 0.9em;
  border-radius: 999px;
  margin: -0.75rem 0 1.5rem;
}

.lead-form-batch-note[hidden] {
  display: none;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cc-yellow);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--cc-black-soft);
  border: 1px solid rgba(252, 177, 2, 0.3);
  border-radius: 8px;
  padding: 0.75em 1em;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cc-white);
}

.form-group input:focus,
.form-group select:focus {
  outline: 2px solid var(--cc-yellow);
  outline-offset: 1px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F5A623'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  background-size: 1.1em;
  padding-right: 2.5em;
}

.form-group select option {
  background: var(--cc-black);
  color: var(--cc-white);
}

.lead-form-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.3em;
  color: #cfcfcf;
}

.form-status--success {
  color: var(--cc-yellow);
  font-weight: 600;
}

.form-status--error {
  color: var(--cc-red);
  font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--cc-black);
  color: #d8d8d8;
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 0.75rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a:hover {
  color: var(--cc-yellow);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(252, 177, 2, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--cc-yellow);
  transform: translateY(-2px);
}

.footer-bottom {
  font-size: 0.85rem;
  text-align: center;
  color: #999;
}

@media (min-width: 800px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr 0.8fr;
  }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
