/* ─────────────────────────────────────────
   CITRG – Landing Page Clone | style.css
───────────────────────────────────────── */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-primary: #550401;
  --green-bright: #7a0c07;
  --green-light: #f5e4e4;
  --dark-1: #1a1a1a;
  --dark-2: #282828;
  --dark-3: #2d2d2d;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-500: #6b7280;
  --gray-700: #353535;
  --amber: #d97706;
  --radius-card: 16px;
  --radius-btn: 9999px;
  --font-main: 'Red Hat Display', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark-1);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Shared Utilities ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  display: block;
  margin-bottom: 1rem;
}

.section-label.dark {
  color: var(--gray-500);
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--green-bright);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 3rem;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  border-radius: var(--radius-btn);
  padding: 0.55rem 1.4rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  border-radius: var(--radius-btn);
  padding: 0.75rem 2rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  background: var(--dark-1);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.75rem 2rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  border-radius: var(--radius-btn);
  padding: 0.75rem 2.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark-1);
  border: 1.5px solid var(--dark-1);
  border-radius: var(--radius-btn);
  padding: 0.75rem 2rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline-dark:hover {
  background: var(--dark-1);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.96);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: rgba(26, 26, 26, 0.97);
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 99;
}

.mobile-menu.active {
  display: flex;
  animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video,
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(26, 26, 26, 0.92) 0%,
      rgba(26, 26, 26, 0.75) 40%,
      rgba(26, 26, 26, 0.1) 70%,
      transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.9s ease-out both;
}

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

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

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero-title strong {
  font-weight: 900;
}

.hero-subtitle {
  font-family: var(--font-main);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 800px;
  font-weight: 400;
}

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

/* ── BENEFITS ── */
.benefits {
  background: var(--dark-2);
  padding: 8rem 0 5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-white {
  background: var(--white);
}

.card-icon {
  margin-bottom: 1.5rem;
  background: var(--green-light);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-1);
  margin-bottom: 0.75rem;
}

.card-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── INTERNATIONAL ── */
.international {
  background: #ffffff;
  padding: 4rem 2rem;
}

.international-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 8rem 2rem;
}


.international-text {
  flex: 1;
}

.international-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--dark-1);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.international-title strong {
  font-weight: 900;
}

.international-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-3);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ── STEPS ── */
.steps {
  background: var(--green-primary);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Decorative watermark */
.steps::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.steps::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.steps-label {
  color: var(--white);
}

.steps-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
}

.steps-title strong {
  font-weight: 900;
}

.steps-sub {
  color: rgba(255, 255, 255, 0.75);
}

.steps-btn {
  display: block;
  margin: 0 auto 3rem;
}

.steps-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-card::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='10,10 10,90 60,50' fill='%23f5e4e4'/%3E%3Cpolygon points='40,10 40,90 90,50' fill='%23e6bdbd' opacity='0.7'/%3E%3C/svg%3E") no-repeat center/cover;
  opacity: 0.5;
  pointer-events: none;
}

.step-card.active,
.step-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.step-card.active .step-number,
.step-card:hover .step-number {
  color: var(--green-primary);
}

.step-body {
  flex: 1;
}

.step-title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 1rem;
  display: none;
}

.step-card.active .step-title,
.step-card:hover .step-title {
  display: block;
}

.step-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--amber);
  line-height: 1.65;
  display: none;
}

.step-card.active .step-text,
.step-card:hover .step-text {
  display: block;
}

.step-footer {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  margin-top: 1.5rem;
}

.step-card.active .step-footer,
.step-card:hover .step-footer {
  display: none;
}

/* ── PRICING ── */
.pricing {
  background: var(--dark-2);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.pricing-text {
  flex: 1;
}

.pricing-text .section-label {
  text-align: left;
  color: var(--gray-500);
  font-size: 0.8rem;
}

.pricing-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.pricing-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.pricing-card {
  flex: 0 0 380px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-annual {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark-1);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.price-main {
  font-size: 4rem;
  letter-spacing: -2px;
}

.price-cents {
  font-size: 1.25rem;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 0.5rem 0;
}

.feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-highlight {
  color: var(--amber);
}

/* ── FAQ ── */
.faq {
  background: var(--white);
  padding: 6rem 2rem;
}

.faq-container {
  max-width: 860px;
}

.faq-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark-1);
  text-align: center;
  margin-bottom: 0.75rem;
}

.faq-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-1);
  text-align: left;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--green-primary);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

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

.faq-answer p {
  padding-bottom: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 0;
}

.faq-cta-title {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark-1);
  margin-bottom: 0.5rem;
}

.faq-cta-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--green-primary);
  margin-bottom: 1.5rem;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--gray-200);
  padding: 2rem;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-footer {
  color: var(--dark-1);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-primary);
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.7;
}

.inscription-page {
  background-color: #000 !important;
}

.inscription-page main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  .inscription-page main {
    padding-top: 80px;
    padding-bottom: 3rem;
  }
}

/* ── RESPONSIVE ── */
/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  :root {
    --container-padding: 4rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --container-padding: 3rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

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

  .steps-cards {
    grid-template-columns: 1fr 1fr;
  }

  .international-inner {
    flex-direction: column;
    text-align: center;
  }

  .globe-container {
    width: 100%;
    max-width: 380px;
    height: auto !important;
    aspect-ratio: 1 / 1;
    margin: 0 auto !important;
    overflow: hidden;
  }

  .international-body {
    margin: 0 auto 2rem;
  }

  .pricing-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .pricing-card {
    flex: none;
    width: 100%;
    max-width: 420px;
  }

  .pricing-text .section-label {
    text-align: center;
  }

  .pricing-title {
    text-align: center;
  }

  .pricing-body {
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    min-height: 100vh;
    padding: 100px 1.5rem 60px !important;
    text-align: center;
  }

  .hero-content {
    width: 100%;
    padding: 0 !important;
    text-align: center;
    order: 2;
    margin: 2rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .hero-logo {
    position: static !important;
    margin: 0 auto 1.5rem !important;
    text-align: center;
    width: 100%;
    max-width: 250px;
    order: 1;
  }

  .hero-bottom-right {
    position: static !important;
    margin: 1.5rem auto 0 !important;
    text-align: center;
    width: 100%;
    order: 3;
  }

  .hero-logo img {
    max-height: 120px !important;
    margin: 0 auto;
  }

  .hero-bottom-right .btn-primary {
    width: 100%;
    max-width: 300px;
  }

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

  .steps-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .pricing-card {
    max-width: 100%;
  }

  .multi-step-form-container {
    padding: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: auto !important;
    min-height: 100vh !important;
    padding: 80px 1rem 40px !important;
    box-sizing: border-box !important;
  }

  .hero-content {
    order: 2 !important;
    position: static !important;
    margin: 2rem 0 !important;
    width: 100% !important;
  }

  .hero-logo {
    order: 1 !important;
    position: static !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 200px !important;
  }

  .hero-bottom-right {
    order: 3 !important;
    position: static !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .hero-bottom-right .btn-primary {
    padding: 15px 30px !important;
    border-radius: 30px !important;
    width: auto !important;
    min-width: 200px !important;
    display: block !important;
  }

  .globe-container {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 320px !important;
    margin: 2rem auto !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem !important;
  }
}

.section-container {
    padding: 4rem 1.25rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .btn-primary, .btn-outline {
    padding: 12px 20px !important;
  }

  .hero-bottom-right .btn-primary,
  .form-buttons button,
  .value-buttons a {
    width: 100% !important;
  }

  .value-section h2 {
    font-size: 2.2rem !important;
  }

  .leaders-content h2 {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 315px) {
  :root {
    font-size: 14px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-label {
    font-size: 0.75rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .multi-step-form-container {
    padding: 1rem !important;
  }
}

/* ── APPLICATION FORM ── */
.application-form {
  scroll-margin-top: 100px;
}

.globe-container {
  width: 100%;
  max-width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.input-group label {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 500;
}

.input-group input,
.input-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #c9a963;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(201, 169, 99, 0.2);
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #fff;
  font-size: 0.9rem;
}

.radio-group input[type="radio"] {
  accent-color: #c9a963;
  width: 18px;
  height: 18px;
}

.multi-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-step {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Custom transitions and scrollbar for textareas */
textarea {
  resize: none;
}

textarea::-webkit-scrollbar {
  width: 6px;
}

textarea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

textarea::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 99, 0.3);
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .multi-step-form-container {
    padding: 1.5rem !important;
  }
  
  .form-step div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 0.8rem;
  }
}

#form-feedback.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4CAF50 !important;
  color: #4CAF50 !important;
}

#form-feedback.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid #F44336 !important;
  color: #F44336 !important;
}

#form-feedback.loading {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #c9a963 !important;
}

/* ── SOBRE NÓS SPECIFIC ── */
.purpose-section {
  padding: 8rem 2rem;
  background: #fff;
}

.purpose-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.purpose-item {
  text-align: left;
}

.purpose-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  color: var(--green-primary);
}

.purpose-item h3 {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--green-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.purpose-item p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--dark-1);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.leaders-section {
  background-color: #550401;
  padding: 6rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.leaders-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 0 2rem;
}

.leaders-image {
  flex: 1;
  max-width: 500px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.leaders-image img {
  width: 100%;
  height: auto;
  display: block;
}

.leaders-content {
  flex: 1.2;
}

.leaders-content h2 {
  font-family: var(--font-main);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.leaders-content h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-transform: none;
}

.leaders-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

.leaders-text p {
  margin-bottom: 1.5rem;
}

.value-section {
  background-color: #550401;
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
  color: #fff;
}

.value-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.value-section h2 {
  font-family: var(--font-main);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.value-section h3 {
  font-family: var(--font-main);
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.value-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  opacity: 0.9;
}

.value-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1000px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 992px) {
  .leaders-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .leaders-image {
    max-width: 100%;
  }

  .leaders-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .purpose-section {
    padding: 4rem 1.25rem;
  }
  
  .purpose-item h3 {
    font-size: 1.8rem;
  }
}