/* ===================================================
   CAPITAL FORGE LEAGUE - CSS DESIGN SYSTEM
   Professional, modern, production-ready styling
   Green/Gold color scheme with responsive breakpoints
   =================================================== */

/* ==================================================
   1. CSS CUSTOM PROPERTIES (Brand Tokens)
   ================================================== */

:root {
  /* Color Palette */
  --primary-green: #006747;
  --primary-dark: #004D35;
  --accent-gold: #FFB81C;
  --accent-gold-dark: #E5A300;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #E9ECEF;
  --dark-gray: #343A40;
  --black: #1A1A1A;
  --red-alert: #B40000;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Layout */
  --header-height: 72px;
  --container-max-width: 1200px;
  --section-padding: 60px;
  --section-padding-sm: 40px;
  --border-radius: 8px;
  --border-radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;

  /* Z-index Scale */
  --z-header: 1000;
  --z-mobile-nav: 999;
  --z-dropdown: 100;
  --z-overlay: 998;
}

/* ==================================================
   2. RESET & BASE STYLES
   ================================================== */

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--white);
  color: var(--dark-gray);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.cfl-body {
  padding-top: var(--header-height);
}

/* ==================================================
   3. TYPOGRAPHY
   ================================================== */

h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}

h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--black);
}

h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--black);
}

h4 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 14px;
  color: var(--dark-gray);
}

h5 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

h6 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark-gray);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: 14px;
  line-height: 1.6;
}

code {
  background-color: var(--off-white);
  color: var(--primary-green);
  font-family: 'Courier New', monospace;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

/* ==================================================
   4. LAYOUT UTILITIES
   ================================================== */

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

.section {
  padding: var(--section-padding) 0;
}

.section-sm {
  padding: var(--section-padding-sm) 0;
}
.footer-col h4, .footer-status, .cfl-footer p, .cfl-footer a, .hero-content p{
    color: #ffffff !important;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.flex {
  display: flex;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.gap-4 {
  gap: 32px;
}

.hero-content h1{
    color: var(--accent-gold);
}
/* ==================================================
   5. HEADER & NAVIGATION
   ================================================== */

.cfl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  z-index: var(--z-header);
}
#main-content{
    background: #006747;
}
.header-container {
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img, .footer-logo{
    width:310px;
    height:45px;
}
.cta-section p{
    color:#ffffff;
}
.header-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.header-logo:hover {
  color: var(--accent-gold);
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  padding: 8px 16px;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-fast);
}

.nav-item > a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--accent-gold);
}

.nav-item.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 6px;
  transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover > a::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  margin-top: 4px;
  z-index: var(--z-dropdown);
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: var(--dark-gray);
  font-size: 15px;
  transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
  background-color: var(--off-white);
  color: var(--primary-green);
  padding-left: 20px;
}

.header-cta {
  flex-shrink: 0;
  margin-left: 20px;
}

.header-cta .btn-sm {
  background-color: var(--accent-gold);
  color: var(--black);
}

.header-cta .btn-sm:hover {
  background-color: var(--accent-gold-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==================================================
   6. MOBILE NAVIGATION
   ================================================== */

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-overlay);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: var(--z-mobile-nav);
  padding-top: var(--header-height);
  overflow-y: auto;
}

.mobile-nav-panel.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-gray);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-fast);
}

.mobile-nav-close:hover {
  background-color: var(--off-white);
}

.mobile-nav-links {
  list-style: none;
  padding: 24px;
}

.mobile-nav-links li {
  margin-bottom: 0;
}

.mobile-nav-links li a {
  display: block;
  padding: 12px 0;
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-links li a:hover {
  color: var(--primary-green);
}

.mobile-cta {
  padding: 24px;
  border-top: 1px solid var(--light-gray);
  margin-top: 24px;
}

/* ==================================================
   7. HERO SECTIONS
   ================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero-sm {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 71, 53, 0.85) 0%, rgba(0, 103, 71, 0.75) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--black);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 20px;
  color: var(--off-white);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================================================
   8. BUTTONS
   ================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--accent-gold);
  color: var(--black);
  border-color: var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-green);
  border-color: var(--white);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ==================================================
   9. CARDS
   ================================================== */

.card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
  padding:20px;
  margin-bottom: 20px;
}

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

.card-featured {
  border-left: 5px solid var(--accent-gold);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 24px;
}

.card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card-badge {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.card-meta {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--dark-gray);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.card-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 14px;
  color: var(--dark-gray);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

/* ==================================================
   10. FEATURE BLOCKS
   ================================================== */

.feature-block {
  padding: 24px;
  border-radius: var(--border-radius-lg);
  background-color: var(--off-white);
  transition: all var(--transition-base);
}

.feature-block:hover {
  background-color: var(--light-gray);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* ==================================================
   11. CALLOUTS
   ================================================== */

.callout {
  border-radius: var(--border-radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border-left: 5px solid;
}

.callout-warning {
  background-color: #FFF8E1;
  border-left-color: #FFB81C;
  color: #8B6914;
}

.callout-info {
  background-color: #E3F2FD;
  border-left-color: #1976D2;
  color: #0D47A1;
}

.callout-gold {
  background-color: #FFF9E6;
  border-left-color: var(--accent-gold);
  color: var(--dark-gray);
}

.callout h4 {
  margin-top: 0;
}

/* ==================================================
   12. STATISTICS
   ================================================== */

.stats-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.stat-description {
  font-size: 14px;
  color: var(--dark-gray);
}

/* ==================================================
   13. STEP BLOCKS
   ================================================== */

.step-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.step-block:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.step-content h4 {
  margin-top: 0;
}

/* ==================================================
   14. PATHWAY CARDS
   ================================================== */

.pathway-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  border: 2px solid var(--light-gray);
  transition: all var(--transition-base);
}

.pathway-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
}

.pathway-card.pathway-featured {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  box-shadow: var(--shadow-lg);
}

.pathway-badge {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pathway-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.pathway-subtitle {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.pathway-details {
  background-color: var(--off-white);
  border-radius: var(--border-radius);
  padding: 16px;
  margin-top: 20px;
}

.pd-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
}

.pd-row:last-child {
  border-bottom: none;
}

.pd-label {
  font-weight: 600;
  color: var(--dark-gray);
}

.pd-value {
  color: var(--primary-green);
  font-weight: 600;
}

/* ==================================================
   15. TIMELINE
   ================================================== */

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--light-gray);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

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

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.timeline-content {
  background-color: var(--off-white);
  padding: 20px;
  border-radius: var(--border-radius);
}

.timeline-date {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 4px;
  font-size: 14px;
}

.timeline-content h4 {
  margin-top: 0;
}

/* ==================================================
   16. PROMOTION PATHWAY
   ================================================== */

.promotion-pathway {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  padding: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.pathway-steps {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.pw-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  position: relative;
}

.pw-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-md);
}

.pw-step-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
}

.pw-arrow {
  color: var(--primary-green);
  font-size: 24px;
  flex-shrink: 0;
}

/* ==================================================
   17. RULES LIST
   ================================================== */

.rules-list {
  list-style: none;
}

.rule-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
  align-items: flex-start;
}

.rule-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.rule-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.rule-body h4 {
  margin-top: 0;
}

/* ==================================================
   18. TEAM CARDS
   ================================================== */

.team-card {
  display: flex;
  gap: 20px;
  background-color: var(--off-white);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  align-items: center;
  transition: all var(--transition-base);
}

.team-card:hover {
  background-color: var(--light-gray);
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.team-info {
  flex: 1;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.team-title {
  font-size: 14px;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.badge-gold {
  background-color: var(--accent-gold);
  color: var(--black);
}

/* ==================================================
   19. FORMS
   ================================================== */

.cfl-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-gray);
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 103, 71, 0.1);
}

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

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

.form-error {
  color: var(--red-alert);
  font-size: 13px;
  margin-top: 4px;
}

.form-help {
  font-size: 13px;
  color: var(--dark-gray);
  margin-top: 4px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 300ms ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.form-progress {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.progress-step {
  height: 8px;
  border-radius: 4px;
  background-color: var(--light-gray);
  transition: all var(--transition-base);
  flex: 1;
  max-width: 60px;
}

.progress-step.active {
  background-color: var(--primary-green);
}

.progress-step.completed {
  background-color: var(--primary-green);
}

.form-nav {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: space-between;
}

.radio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.radio-card {
  position: relative;
}

.radio-card input[type="radio"] {
  display: none;
}

.radio-card label {
  display: block;
  padding: 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 0;
}

.radio-card input[type="radio"]:checked + label {
  border-color: var(--primary-green);
  background-color: rgba(0, 103, 71, 0.05);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ==================================================
   20. FAQ ACCORDION
   ================================================== */

.faq-accordion {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

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

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

.faq-question {
  padding: 20px;
  background-color: var(--off-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark-gray);
  user-select: none;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px;
  background-color: var(--white);
  color: var(--dark-gray);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ==================================================
   21. COMPLIANCE BANNER
   ================================================== */

.compliance-banner {
  background-color: #FFF9E6;
  border-left: 5px solid var(--accent-gold);
  padding: 16px 20px;
  border-radius: var(--border-radius);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.banner-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.banner-text {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.5;
}

.banner-text strong {
  color: var(--black);
}

/* ==================================================
   22. FOOTER
   ================================================== */

.cfl-footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--off-white);
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--off-white);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--accent-gold);
  color: var(--black);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--off-white);
}

.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--off-white);
}

/* ==================================================
   23. CONTENT PAGE
   ================================================== */

.content-page {
  max-width: 800px;
  margin: 0 auto;
}

.content-page h2 {
  margin-top: 40px;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page ul,
.content-page ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-page li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.content-page blockquote {
  border-left: 4px solid var(--primary-green);
  padding-left: 20px;
  margin: 20px 0;
  color: var(--dark-gray);
  font-style: italic;
}

/* ==================================================
   24. SECTION VARIANTS
   ================================================== */

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

.section-light {
  background-color: var(--off-white);
  color: var(--dark-gray);
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--white);
}

.section-dark a {
  color: var(--accent-gold);
}

.section-dark a:hover {
  color: var(--white);
}

.section-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.section-green h1,
.section-green h2,
.section-green h3,
.section-green h4,
.section-green h5,
.section-green h6 {
  color: var(--white);
}

.section-green a {
  color: var(--accent-gold);
}

.section-green a:hover {
  color: var(--white);
}

/* ==================================================
   25. UTILITY CLASSES
   ================================================== */

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

.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.mt-4 {
  margin-top: 32px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.mb-3 {
  margin-bottom: 24px !important;
}

.mb-4 {
  margin-bottom: 32px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-2 {
  padding-top: 16px !important;
}

.pt-3 {
  padding-top: 24px !important;
}

.pb-2 {
  padding-bottom: 16px !important;
}

.pb-3 {
  padding-bottom: 24px !important;
}

.rounded-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.disclaimer-sm {
  font-size: 12px;
  font-style: italic;
  color: var(--dark-gray);
  margin-top: 12px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-green);
  margin-bottom: 12px;
  display: block;
}

.section-note {
  background-color: var(--off-white);
  padding: 12px 16px;
  border-radius: var(--border-radius);
  font-size: 14px;
  color: var(--dark-gray);
  margin-top: 12px;
}

.required::after {
  content: ' *';
  color: var(--red-alert);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==================================================
   26. RESPONSIVE BREAKPOINTS
   ================================================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 40px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

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

  .three-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .four-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .page-hero {
    min-height: 40vh;
  }

  .page-hero-sm {
    min-height: 25vh;
  }

  .hero-content {
    padding: 30px 16px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .stats-row {
    gap: 20px;
  }

  .stat {
    min-width: 150px;
  }

  .card-meta-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

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

  .pathway-steps {
    gap: 12px;
  }

  .pw-step {
    min-width: 140px;
    max-width: 160px;
  }

  .mobile-nav-panel {
    width: 80%;
    max-width: 400px;
  }
}

/* Small Tablet (768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 32px;
    --header-height: 64px;
  }

  html {
    font-size: 15px;
  }

  h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  p {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .hero {
    min-height: 80vh;
  }

  .page-hero {
    min-height: 35vh;
  }

  .page-hero-sm {
    min-height: 22vh;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .four-col {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 36px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .team-meta {
    justify-content: center;
  }

  .card-meta {
    flex-direction: column;
    gap: 8px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 12px;
  }

  .promotion-pathway {
    gap: 8px;
  }

  .pw-arrow {
    display: none;
  }

  .pw-step {
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 120px;
  }

  .pw-step-number {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .form-progress {
    gap: 8px;
    margin-bottom: 30px;
  }

  .progress-step {
    max-width: 100%;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-marker {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 24px;
    --header-height: 56px;
  }

  html {
    font-size: 14px;
  }

  h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 24px 0;
  }

  .section-sm {
    padding: 16px 0;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-lg {
    padding: 12px 24px;
  }

  .hero {
    min-height: 60vh;
  }

  .page-hero {
    min-height: 30vh;
  }

  .page-hero-sm {
    min-height: 20vh;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .card {
    border-radius: var(--border-radius);
  }

  .card-content {
    padding: 16px;
  }

  .feature-block {
    padding: 16px;
  }

  .card-img {
    height: 160px;
  }

  .card-meta {
    flex-direction: column;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 14px;
  }

  .stat {
    min-width: auto;
  }

  .gap-2 {
    gap: 12px;
  }

  .gap-3 {
    gap: 16px;
  }

  .gap-4 {
    gap: 20px;
  }

  .step-block {
    gap: 16px;
    margin-bottom: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .pathway-card {
    padding: 20px;
  }

  .pathway-title {
    font-size: 18px;
  }

  .team-img {
    width: 100px;
    height: 100px;
  }

  .team-name {
    font-size: 16px;
  }

  .team-title {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 16px;
  }

  .form-nav {
    gap: 12px;
    margin-top: 24px;
  }

  .form-nav .btn {
    flex: 1;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 16px;
  }

  .compliance-banner {
    padding: 12px 16px;
  }

  .banner-text {
    font-size: 13px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-legal-links a {
    font-size: 12px;
  }

  .content-page {
    padding: 0 16px;
  }

  .disclaimer-sm {
    font-size: 11px;
  }

  .section-label {
    font-size: 11px;
  }

  .mobile-nav-panel {
    width: 100%;
  }

  .mobile-nav-links {
    padding: 16px;
  }

  .mobile-cta {
    padding: 16px;
  }

  .promotion-pathway {
    padding: 24px 0;
  }

  .pw-step {
    min-width: 100px;
    max-width: 100px;
  }

  .pw-step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .pw-step-label {
    font-size: 12px;
  }

  .timeline {
    padding: 24px 0;
  }

  .timeline-item {
    margin-bottom: 32px;
  }

  .rule-item {
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .callout {
    padding: 16px;
    margin-bottom: 16px;
  }

  .rules-list {
    margin-top: -8px;
  }
}

/* Extra Small (320px) */
@media (max-width: 320px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .stat-number {
    font-size: 24px;
  }
}
