@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 1 999;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --accent: #000000;
  --accent-soft: rgba(0,0,0,0.05);
  --accent-alt: #666666;
  --text: #000000;
  --muted: #666666;
  --border: #e5e5e5;
  --card: #ffffff;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --shadow-soft: 0 4px 8px rgba(0,0,0,0.1);
  --max-width: 1200px;
}

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

html, body {
  scroll-behavior: smooth;
  background: #ffffff;
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  padding-top: 4rem;
  overflow-x: hidden;
}

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

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

/* Layout */

.page {
  min-height: 100vh;
}

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

section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

/* Navbar */

.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  width: auto;
  max-width: calc(100vw - 2rem);
  box-sizing: border-box;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-badge {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #fb923c, #22c55e);
  transition: width 0.2s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  background: #000000;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn span {
  font-size: 1rem;
}

.btn:hover {
  background: #333333;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
}

.btn-outline:hover {
  background: var(--bg-alt);
  border-color: var(--text);
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(226,232,240,0.85);
  background: rgba(255,255,255,0.95);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #64748b;
  position: relative;
  display: inline-block;
  transition: background 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #64748b;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before {
  top: -5px;
}
.nav-toggle span::after {
  top: 5px;
}

.nav-toggle.open span {
  background: transparent;
}
.nav-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle:hover {
  border-color: rgba(148,163,184,1);
  background: rgba(248,250,252,0.98);
}

.nav-menu-mobile {
  display: none;
  border-top: 1px solid rgba(226,232,240,0.9);
  background: radial-gradient(circle at top, #ffffff 0, #ffffff 60%, #ffffff 100%);
}

.nav-menu-mobile.open {
  display: block;
}

.nav-menu-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.35rem 1.3rem;
  gap: 0.7rem;
  font-size: 0.92rem;
}

.nav-menu-mobile-links a {
  color: var(--muted);
  padding: 0.45rem 0;
}

.nav-menu-mobile-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.35rem 1rem;
}

@media (min-width: 768px) {
  .nav {
    width: auto;
  }
  .nav-inner {
    padding: 0.6rem 1.8rem;
    gap: 2.5rem;
  }
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-toggle {
    display: none;
  }
  .nav-menu-mobile {
    display: none !important;
  }
}

/* Hero */

.hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
  text-align: center;
  justify-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--muted);
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.25rem;
  max-width: 40rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(226,232,240,0.9);
  background: rgba(248,250,252,0.95);
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-badge strong {
  color: #0f172a;
  font-weight: 500;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.hero-hint {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 1.6rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.metric-value {
  font-size: 1.35rem;
  font-weight: 600;
}

.metric-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}



/* Section headings */

.section-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 40rem;
  line-height: 1.5;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .section-header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* Testimonials */

.testimonials {
  padding: 4rem 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
  justify-items: center;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card {
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.2s ease;
  max-width: 400px;
  width: 100%;
}

.testimonial-card:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.author-title {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Logo Marquee */

.logo-marquee {
  padding: 4rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.marquee-title {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-logo {
  height: 40px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.marquee-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .marquee-track {
    gap: 4rem;
  }
  
  .marquee-logo {
    height: 48px;
  }
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  margin-top: 0.5rem;
  justify-items: center;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
  }
}

.card {
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  z-index: 1;
}

.card:hover::before {
  background: rgba(0, 0, 0, 0.7);
}

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

.card-content {
  position: relative;
  z-index: 2;
  color: white;
  transition: all 0.3s ease;
}

.card-service-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 1;
  transition: all 0.3s ease;
}

.card-service-explanation {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  max-width: 280px;
}

@media (min-width: 768px) {
  .card-service-explanation {
    opacity: 0;
    transform: translateY(20px);
  }
  
  .card:hover .card-service-title {
    opacity: 0.9;
    transform: translateY(-10px);
  }

  .card:hover .card-service-explanation {
    opacity: 1;
    transform: translateY(0);
  }
  
  .card-info-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 3;
  }
  
  .card:hover .card-info-icon {
    opacity: 0;
    transform: scale(0.8);
  }
}



/* Process - Progression Cards */

.progression-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

@media (min-width: 768px) {
  .progression-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.progression-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 350px;
  width: 100%;
}

.progression-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.progression-card:hover .card-number {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

.progression-card:hover .card-icon {
  transform: scale(1.2) rotate(5deg);
}

.card-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  width: 30px;
  height: 30px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.3s ease;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.card-description {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-connector {
  display: none;
}

@media (min-width: 768px) {
  .card-connector {
    display: block;
    position: absolute;
    top: 50%;
    right: -0.75rem;
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--border), transparent);
    transform: translateY(-50%);
  }
  
  .progression-card:last-child .card-connector {
    display: none;
  }
  
  .progression-card:hover + .progression-card .card-connector,
  .progression-card:hover .card-connector {
    background: linear-gradient(90deg, var(--accent), transparent);
  }
}

/* Work Collage */

#work {
  position: relative;
  overflow: hidden;
  height: 70vh;
}

.work-scroll-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  height: 100%;
}

.work-collage {
  display: flex;
  gap: 1rem;
  height: 100%;
  animation: workScroll 60s linear infinite;
  will-change: transform;
}

.work-collage img {
  flex-shrink: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* Different heights for masonry effect in horizontal layout */
.work-collage img:nth-child(1),
.work-collage img:nth-child(12) {
  height: 85%;
  align-self: flex-start;
}

.work-collage img:nth-child(3),
.work-collage img:nth-child(14) {
  height: 75%;
  align-self: center;
}

.work-collage img:nth-child(5),
.work-collage img:nth-child(16) {
  height: 90%;
  align-self: flex-end;
}

.work-collage img:nth-child(7),
.work-collage img:nth-child(18) {
  height: 80%;
  align-self: flex-start;
}

.work-collage img:nth-child(9),
.work-collage img:nth-child(20) {
  height: 85%;
  align-self: center;
}

.work-collage img:nth-child(11),
.work-collage img:nth-child(22) {
  height: 75%;
  align-self: flex-end;
}

@keyframes workScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .work-collage {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .work-collage {
    gap: 2rem;
  }
}

.work-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
  justify-items: center;
}

@media (min-width: 850px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
  }
}

.pricing-card {
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(226,232,240,0.95);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 16px 30px rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pricing-card.featured {
  background: radial-gradient(circle at top left, rgba(249,115,22,0.1), rgba(255,255,255,1));
  border-color: rgba(249,115,22,0.7);
  transform: translateY(-2px);
}

.pricing-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.pricing-pill {
  font-size: 0.7rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(248,250,252,0.9);
  border: 1px solid rgba(203,213,225,0.95);
  color: var(--muted);
}

.pricing-price {
  font-size: 1.6rem;
  font-weight: 700;
}

.pricing-price span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.2rem;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-description {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-features h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.pricing-best-for {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 1.25rem;
  background: rgba(241,245,249,0.8);
  border-radius: var(--radius-sm);
  margin-top: auto;
}

.pricing-bottom-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(248,250,252,0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226,232,240,0.8);
}

.pricing-bottom-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.pricing-bottom-cta p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-copy {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin: 0.5rem 0 1rem;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.pricing-list li::before {
  content: "✓";
  font-size: 0.78rem;
  margin-top: 0.1rem;
  color: #22c55e;
}

.pricing-cta {
  margin-top: auto;
}

.pricing-cta .btn {
  width: 100%;
  justify-content: center;
}

/* CTA */

.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(248,250,252,0.8), rgba(241,245,249,0.4));
}

.cta-wrapper {
  display: grid;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .cta-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.cta-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-content {
    text-align: left;
  }
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text);
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 3rem;
}

.cta-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.cta-option:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-option-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cta-option-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-option-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cta-form-section {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-button {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-button:hover {
  background: rgb(21, 128, 61);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}

/* Elite Club Button Animation */
.btn-elite-shimmer {
  position: relative;
  background: linear-gradient(45deg, var(--accent), #10b981, var(--accent));
  background-size: 200% 200%;
  animation: eliteShimmer 3s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-elite-shimmer:hover {
  animation-duration: 1.5s;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

@keyframes eliteShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.8rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field label {
  color: var(--muted);
  font-size: 0.75rem;
}

.field input,
.field textarea,
.field select {
  border-radius: 999px;
  border: 1px solid rgba(203,213,225,0.95);
  background: rgba(255,255,255,0.98);
  padding: 0.55rem 0.85rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.field textarea {
  border-radius: 0.9rem;
  min-height: 80px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(148,163,184,0.7);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
  background: rgba(255,255,255,1);
}

.cta-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.cta-footnote {
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 13rem;
}

/* Footer */

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(226,232,240,0.95);
  background: linear-gradient(to top, #f8fafc, transparent);
  margin-top: 3rem;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 0.85rem;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
}

.footer-links a {
  color: var(--muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(226,232,240,0.3);
}

/* Consultation Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 90vw;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.popup-overlay.show .popup-content {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text);
}

.popup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.popup-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.popup-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popup-text {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.popup-text strong {
  color: var(--text);
  font-weight: 600;
}

.popup-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.popup-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.benefit-icon {
  font-size: 1.1rem;
}

.popup-urgency {
  text-align: center;
  margin-bottom: 1.5rem;
}

.urgency-text {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  display: inline-block;
}

.popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popup-btn-primary {
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.popup-btn-primary:hover {
  background: rgb(21, 128, 61);
  transform: translateY(-1px);
}

.popup-btn-secondary {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.popup-btn-secondary:hover {
  border-color: var(--muted);
  color: var(--text);
}

@media (min-width: 480px) {
  .popup-actions {
    flex-direction: row;
  }
  
  .popup-btn-primary {
    flex: 1;
  }
  
  .popup-btn-secondary {
    flex: 0 0 auto;
  }
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 50rem;
  margin: 2rem auto 0;
}

.faq-accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-accordion-item:hover {
  border-color: var(--accent);
}

.faq-accordion-item[open] {
  border-color: var(--accent);
}

.faq-accordion-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.faq-accordion-question::-webkit-details-marker {
  display: none;
}

.faq-accordion-question:hover {
  background: rgba(248,250,252,0.5);
}

.faq-accordion-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-accordion-item[open] .faq-accordion-icon {
  transform: rotate(45deg);
}

.faq-accordion-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(226,232,240,0.5);
}

.faq-accordion-answer p {
  color: var(--muted);
  line-height: 1.6;
  margin: 1rem 0 0;
}

/* Override: center section header rows */
.section-header .section-header-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.section-header .section-header-row > div {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 900px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}