/* ==========================================================================
   DISTRITO FÁCIL - LANDING PAGE STYLESHEET
   Design System, Glassmorphism, Layouts & Animations
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
  /* Cores Principais Rotárias */
  --primary-navy: #00245D;
  --primary-blue: #0B3B60;
  --primary-royal: #1D4ED8;
  --primary-gradient: linear-gradient(135deg, #00245D 0%, #0B3B60 50%, #1D4ED8 100%);
  --primary-dark-gradient: linear-gradient(135deg, #00173D 0%, #00245D 100%);

  /* Dourado / Amarelo Destaque */
  --accent-gold: #F59E0B;
  --accent-amber: #D97706;
  --accent-bright: #FFB800;
  --accent-gradient: linear-gradient(135deg, #FFB800 0%, #F59E0B 50%, #D97706 100%);

  /* Cores Neutras & Backgrounds */
  --bg-main: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-alt: #F1F5F9;
  --bg-dark: #091325;
  --bg-dark-card: rgba(15, 23, 42, 0.65);

  /* Textos */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Bordas e Sombras */
  --border-light: #E2E8F0;
  --border-glass: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 2px 8px rgba(0, 36, 93, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(0, 36, 93, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(0, 36, 93, 0.16);
  --shadow-gold: 0 10px 25px -5px rgba(245, 158, 11, 0.35);

  /* Arredondamento */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transição */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & SECTION HEADINGS
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-blue {
  background: rgba(0, 36, 93, 0.08);
  color: var(--primary-navy);
  border: 1px solid rgba(0, 36, 93, 0.2);
}

.badge-white {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-title span.text-gold {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #FFB800 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title span.text-blue {
  color: var(--primary-royal);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #0F172A;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #FFC72C 0%, #F59E0B 100%);
}

.btn-secondary {
  background: var(--primary-navy);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 1.25rem 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 20px rgba(0, 36, 93, 0.08);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;

}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 0.5rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #F8FAFC 0%, #EDF4FC 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 36, 93, 0.06) 0%, rgba(245, 158, 11, 0) 70%);
}

.hero-shape-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(0, 36, 93, 0) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text .badge {
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-headline span.highlight {
  color: var(--accent-amber);
  background: linear-gradient(135deg, #00245D 0%, #1D4ED8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 36, 93, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.trust-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* Mockup 3D / Container Visual */
.hero-visual {
  position: relative;
}

.mockup-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px -12px rgba(0, 36, 93, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: var(--transition-normal);
}

.mockup-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
}

.mockup-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 36, 93, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
  top: 10%;
  left: -8%;
}

.floating-card-2 {
  bottom: 8%;
  right: -5%;
  animation-delay: 2s;
}

.floating-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.floating-card-icon.blue {
  background: rgba(0, 36, 93, 0.1);
  color: var(--primary-royal);
}

.floating-card-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.floating-card-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   7. STATS BANNER
   -------------------------------------------------------------------------- */
.stats-banner {
  background: var(--primary-gradient);
  color: #FFFFFF;
  padding: 3rem 0;
  box-shadow: 0 10px 30px rgba(0, 36, 93, 0.15);
  position: relative;
  z-index: 10;
}

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

.stat-card {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.stat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   8. BEFORE VS. AFTER (DORES VS. SOLUÇÕES)
   -------------------------------------------------------------------------- */
.comparison-section {
  background-color: var(--bg-white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition-normal);
}

.comparison-card.before {
  background: #FFF5F5;
  border: 1px solid #FED7D7;
}

.comparison-card.after {
  background: #F0FDF4;
  border: 2px solid #86EFAC;
  box-shadow: 0 15px 35px -5px rgba(22, 163, 74, 0.12);
}

.card-badge-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.card-badge-header h3 {
  font-size: 1.35rem;
}

.before-badge {
  background: #FEE2E2;
  color: #DC2626;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.after-badge {
  background: #DCFCE7;
  color: #16A34A;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.comparison-item .icon {
  font-size: 1.25rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.comparison-item.bad .icon {
  color: #E53E3E;
}

.comparison-item.good .icon {
  color: #38A169;
}

/* --------------------------------------------------------------------------
   9. MODULES & FEATURES
   -------------------------------------------------------------------------- */
.modules-section {
  background: var(--bg-main);
}

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

.module-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 36, 93, 0.15);
}

.module-card:hover::before {
  opacity: 1;
}

.module-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 36, 93, 0.06);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.module-card:hover .module-icon-box {
  background: var(--accent-gradient);
  color: #0F172A;
}

.module-title {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  color: var(--primary-navy);
}

.module-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.module-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-alt);
}

.module-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
}

.module-features-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-amber);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. BENEFITS SECTION
   -------------------------------------------------------------------------- */
.benefits-section {
  background: var(--primary-dark-gradient);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.benefits-section .section-title {
  color: #FFFFFF;
}

.benefits-section .section-description {
  color: rgba(255, 255, 255, 0.8);
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.benefit-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.benefit-title {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.benefit-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: var(--bg-white);
}

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

.testimonial-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

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

.stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.975rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--accent-gold);
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

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

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--bg-main);
}

.faq-wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-royal);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  text-align: left;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle-icon {
  background: var(--accent-gold);
  color: #0F172A;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* --------------------------------------------------------------------------
   13. CONTACT & LEAD FORM SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  position: relative;
  background: linear-gradient(135deg, #001A42 0%, #00245D 50%, #0B3B60 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.contact-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(245, 158, 11, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-info .badge {
  margin-bottom: 1.25rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.contact-info p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Form Container */
.form-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text-main);
}

.form-title {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-royal);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}

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

/* Alert Notification */
.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: none;
}

.form-alert.success {
  display: block;
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #84E1BC;
}

.form-alert.error {
  display: block;
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #F8B4B4;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 1.25rem;

}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-info li span {
  color: var(--accent-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
}

.rotary-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  max-width: 800px;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-ctas, .hero-trust {
    justify-content: center;
  }

  .floating-card-1 {
    left: 0%;
  }

  .floating-card-2 {
    right: 0%;
  }

  .modules-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition-normal);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-actions {
    display: none;
  }

  .hero-headline {
    font-size: 2.15rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.5rem;
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }

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

  .modules-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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