/* ============================================================
   NORDOSUDO — Page-specific Styles (internal pages)
   ============================================================ */

/* --- PAGE HERO (internal) --- */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 80px;
}

.page-hero.small {
  min-height: 45vh;
}

.page-hero .hero-content {
  padding: 60px 0;
  max-width: 750px;
}

.page-hero .hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-hero .hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

/* --- PAGE SECTIONS --- */
.page-section {
  padding: 80px 0;
}

.page-section.alt {
  background: var(--off-white);
}

.page-section .section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

/* --- CHECKLIST --- */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.checklist-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.checklist-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* --- TWO COLUMN --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.col-content .body-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 20px;
}

.col-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  padding: 32px;
  border-left: 4px solid var(--gold);
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* --- DELIVERABLES --- */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.deliverable-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.deliverable-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.deliverable-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}

.deliverable-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.deliverable-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content .body-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content .body-text.lead {
  font-size: 1.2rem;
  color: var(--gray-800);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-radius: 12px;
}

.value-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- PRODUCTS SUMMARY --- */
.products-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.summary-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-decoration: none;
}

.summary-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.summary-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.summary-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.summary-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.summary-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color var(--transition);
}

.summary-card:hover .summary-link {
  color: var(--navy);
}

/* --- LEADERSHIP --- */
.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.leader-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.leader-portrait {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
}

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

.leader-info {
  padding: 32px 28px;
}

.leader-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.leader-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.leader-bio {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- APPROACH --- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.approach-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.approach-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.approach-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.approach-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.approach-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.approach-note {
  text-align: center;
  max-width: 700px;
  margin: 48px auto 0;
  padding: 28px 32px;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.7;
}

.approach-note strong {
  color: var(--gold-light);
}

/* --- WHY CHOOSE US --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.why-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-radius: 12px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .approach-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
    margin: 0 auto;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .approach-note {
    padding: 24px;
    font-size: 0.95rem;
  }
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235C5854' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* --- CONTACT INFO --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
}

.info-item a {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.info-item a:hover {
  color: var(--gold-dark);
}

.info-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.info-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.info-links a:hover {
  color: var(--navy);
}

/* --- FORM SUCCESS --- */
.form-success {
  text-align: center;
  padding: 48px 32px;
}

.success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.8rem;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* --- ZOHO BIGIN EMBED OVERRIDE --- */
html {
  font-size: 16px !important;
}

#zoho-boraexportar-form {
  font-size: 16px !important;
  line-height: 1.5 !important;
}

#zoho-boraexportar-form * {
  font-family: var(--font-sans) !important;
  font-size: inherit !important;
}

#zoho-boraexportar-form input,
#zoho-boraexportar-form select,
#zoho-boraexportar-form textarea {
  font-size: 0.95rem !important;
  padding: 12px 16px !important;
}

#zoho-boraexportar-form label {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}

#zoho-borausa-form {
  font-size: 16px !important;
  line-height: 1.5 !important;
}

#zoho-borausa-form * {
  font-family: var(--font-sans) !important;
  font-size: inherit !important;
}

#zoho-borausa-form input,
#zoho-borausa-form select,
#zoho-borausa-form textarea {
  font-size: 0.95rem !important;
  padding: 12px 16px !important;
}

#zoho-borausa-form label {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}

/* --- ACTIVE NAV LINK --- */
.nav-links a.active {
  color: var(--gold) !important;
}

.nav-links a.active::after {
  width: 100% !important;
}

/* --- FAQ ACCORDION --- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  line-height: 1.5;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: transform var(--transition);
  color: var(--gold);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .page-hero {
    min-height: 60vh;
  }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .products-summary {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .page-section {
    padding: 60px 0;
  }
}

/* ============================================================
   THANK YOU PAGE — CRO Sections
   ============================================================ */

/* --- Minimal thankyou header (brand only) --- */
.thankyou-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: var(--navy);
}

.thankyou-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-header .logo-text {
  font-size: 1.1rem;
  letter-spacing: 5px;
  opacity: 0.9;
}

/* --- Hero confirmation --- */
.confirmation-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 600px;
  margin: 20px auto 0;
}

.confirmation-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-top: 24px;
  font-style: italic;
}

/* --- Booking CTA section --- */
.booking-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.booking-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.booking-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.booking-cta-inner .section-label {
  color: var(--gold-light);
}

.booking-cta-inner .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.booking-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* --- What happens in the call --- */
.what-happens {
  text-align: left;
  max-width: 580px;
  margin: 0 auto 40px;
}

.what-happens h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-align: center;
}

.what-happens-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.what-happens-item:last-child {
  border-bottom: none;
}

.what-happens-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.what-happens-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* --- No commitment disclaimer --- */
.no-commitment {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 480px;
  margin: 20px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

/* --- Credentials grid (Por que conversar conosco) --- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.credential-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.credential-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.credential-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-radius: 12px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.credential-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.credential-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Video placeholder --- */
.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.video-placeholder-content {
  text-align: center;
  padding: 40px 24px;
}

.video-placeholder-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-radius: 50%;
}

.video-placeholder-content p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-top: 4px;
}

/* --- Testimonials placeholder --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-placeholder {
  padding: 32px 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.testimonial-placeholder-icon {
  opacity: 0.2;
  color: var(--gray-400);
}

.testimonial-placeholder p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
  max-width: 200px;
}

/* --- Minimal thankyou footer --- */
.thankyou-footer {
  background: var(--navy-dark);
  padding: 32px 0 20px;
}

.thankyou-footer .footer-bottom {
  justify-content: center;
  text-align: center;
  padding-top: 0;
  border-top: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .thankyou-header .logo-text {
    font-size: 1rem;
  }

  .booking-cta-section {
    padding: 60px 0;
  }

  .what-happens {
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .credentials-grid {
    max-width: 360px;
    margin: 0 auto;
  }

  .testimonials-grid {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ============================================================
   PROGRESS BAR — Elegant Stepper
   ============================================================ */
.progress-section {
  padding: 24px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}

.progress-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  position: relative;
}

.progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gray-200);
  color: var(--white);
  line-height: 1;
  transition: all var(--transition);
  flex-shrink: 0;
}

.progress-step.completed .progress-dot {
  background: var(--gold);
  color: var(--white);
}

.progress-step.current .progress-dot {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(30,38,57,0.08);
}

.progress-step.future .progress-dot {
  background: var(--gray-200);
  color: var(--gray-400);
}

.progress-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.3;
  max-width: 80px;
  transition: color var(--transition);
}

.progress-step.completed .progress-label {
  color: var(--gold);
  font-weight: 500;
}

.progress-step.current .progress-label {
  color: var(--navy);
  font-weight: 600;
}

.progress-connector {
  flex: 0 1 48px;
  height: 1px;
  background: var(--gray-200);
  margin: 15px 8px 0;
  min-width: 16px;
  position: relative;
}

.progress-connector.filled {
  background: var(--gold);
}

@media (max-width: 640px) {
  .progress-track {
    gap: 0;
    padding: 0 4px;
  }
  .progress-connector {
    flex: 0 1 24px;
    min-width: 8px;
    margin: 15px 2px 0;
  }
  .progress-label {
    font-size: 0.6rem;
    max-width: 60px;
  }
  .progress-dot {
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
  }
}