/* ==========================================================================
   ARCHITECTURAL DARK BROWN & WARM AMBER DESIGN SYSTEM
   Campaign: Student Advocacy for STEM Center – FBISD
   Color System: Dark Espresso Brown (#1C120E / #2C1D17), Warm Timber (#B45309),
                 Signal Flame Orange (#E65100), Sandstone Cream (#FDFBF7)
   NO BLUE ACCENTS OR BLUE BACKGROUNDS
   ========================================================================== */

:root {
  /* Architectural Dark Brown & Warm Palette */
  --bg-page: #fdfbf7;
  --bg-surface: #ffffff;
  --bg-subtle: #f5f0eb;
  
  --bg-dark-brown: #1c120e;
  --bg-brown-card: #2c1d17;
  --bg-brown-hover: #3b281f;

  --color-brown-primary: #1c120e;
  --color-wood: #b45309;
  --color-wood-light: #d97706;
  --color-flame: #e65100;
  --color-flame-hover: #c74400;
  --color-green: #059669;
  --color-red: #dc2626;

  --text-main: #1c120e;
  --text-muted: #5c4a41;
  --text-dim: #a39288;
  --text-light: #fdfbf7;

  --border-light: #e6dfd8;
  --border-wood: rgba(180, 83, 9, 0.35);
  --border-brown: rgba(253, 251, 247, 0.12);

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(28, 18, 14, 0.05);
  --shadow-md: 0 8px 24px rgba(28, 18, 14, 0.08);
  --shadow-lg: 0 16px 40px rgba(28, 18, 14, 0.14);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset & Base Specs */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 85px 0;
}

.text-center { text-align: center; }
.margin-top-lg { margin-top: 48px; }
.margin-bottom-xl { margin-bottom: 56px; }
.margin-bottom-md { margin-bottom: 24px; }

/* Highlights & Typography */
.highlight-wood {
  color: var(--color-wood);
}

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

/* Section Header Styles */
.section-header {
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-wood);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vision-disclaimer-kicker {
  font-size: 1.05rem !important;
  letter-spacing: 1.5px !important;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-brown-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-brown-primary);
  margin-top: 4px;
}

/* TOP NAVBAR & BRAND LOGO */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--color-wood);
  padding: 14px 20px 0 20px;
  box-shadow: var(--shadow-sm);
}

.main-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-brown-primary);
  line-height: 1.1;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.brand-logo:hover .nav-logo-img {
  transform: scale(1.06);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-main-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: #1a1512;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.logo-sub-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-wood);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.header-branding {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-brown-primary);
  text-align: right;
}

.header-branding strong {
  color: var(--color-brown-primary);
  font-weight: 800;
}

.header-branding a {
  color: var(--color-wood);
  text-decoration: underline;
  font-weight: 700;
  transition: var(--transition-fast);
}

.header-branding a:hover {
  color: var(--color-flame);
}

/* SEPARATE BREADCRUMB BAR UNDER THE HEADER */
.sub-navbar-bar {
  background-color: var(--bg-dark-brown);
  border-top: 1px solid rgba(253, 251, 247, 0.12);
  margin: 0 -20px;
  padding: 10px 20px;
}

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

.sub-navbar-bar .nav-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
  font-weight: 700;
  flex-wrap: wrap;
}

.sub-navbar-bar .nav-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-fast);
}

.sub-navbar-bar .nav-breadcrumbs a:hover {
  color: var(--color-wood-light);
}

.sub-navbar-bar .crumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

/* HIGH-VISIBILITY ORANGE CALL TO ACTION BUTTON */
.btn-crumb-petition-orange {
  background-color: var(--color-flame);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800 !important;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.4);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-crumb-petition-orange:hover {
  background-color: var(--color-flame-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(230, 81, 0, 0.6);
}

/* Hero Section (SPLIT 2-COLUMN LAYOUT) */
.hero-section {
  padding: 60px 0 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-brown-primary);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-cta-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--color-wood);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

/* LIVE IPETITIONS HERO BANNER */
.hero-ipetitions-live-banner {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 18px;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-wood);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pulsing-green-dot {
  width: 8px;
  height: 8px;
  background-color: #059669;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
  }
}

.live-banner-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brown-primary);
  line-height: 1.25;
  margin-bottom: 4px;
}

.live-banner-subtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-flame {
  background: var(--color-flame);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.3);
  transition: var(--transition-fast);
}

.btn-hero-flame:hover {
  background: var(--color-flame-hover);
  transform: translateY(-1px);
}

.btn-hero-share {
  background: transparent;
  border: 1px solid var(--color-brown-primary);
  color: var(--color-brown-primary);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-hero-share:hover {
  background: var(--bg-subtle);
}

/* Featured Video Container & Interactive Preview Card */
.featured-video-wrapper {
  width: 100%;
}

.video-container-card {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--color-wood);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: #000;
  width: 100%;
}

.video-preview-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-normal);
}

.video-preview-link:hover .video-poster-img {
  transform: scale(1.04);
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 18, 14, 0.2) 0%, rgba(28, 18, 14, 0.75) 100%);
  pointer-events: none;
}

/* PERFECT GEOMETRIC CENTER FOR PLAY BUTTON */
.play-btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-flame);
  border: 3px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(230, 81, 0, 0.75);
  transition: all var(--transition-normal);
}

.play-icon {
  margin-left: 4px;
  line-height: 1;
}

.video-preview-link:hover .play-btn-pulse {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--color-flame-hover);
  border-color: #ffffff;
  box-shadow: 0 0 50px rgba(230, 81, 0, 0.95);
}

.video-direct-link-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-brown-card);
  border: 1px solid var(--border-wood);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 12px 18px;
  color: #fff;
  font-size: 0.85rem;
  margin-top: -1px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 10px;
}

.btn-watch-youtube {
  background: var(--color-flame);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  transition: var(--transition-fast);
}

.btn-watch-youtube:hover {
  background: var(--color-flame-hover);
  box-shadow: 0 0 12px rgba(230, 81, 0, 0.4);
}

/* COMBINED OUR VISION SECTION */
.vision-combined-section {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.render-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.render-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.render-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.render-tab-btn:hover {
  border-color: var(--color-wood);
  color: var(--color-wood);
}

.render-tab-btn.active {
  background: var(--bg-dark-brown);
  color: #ffffff;
  border-color: var(--bg-dark-brown);
  box-shadow: var(--shadow-md);
}

.render-display-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.render-card-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.render-image-container {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border-light);
}

.render-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.render-info-container {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.render-highlight-kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--color-wood);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.render-info-container h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-brown-primary);
  line-height: 1.25;
  margin-bottom: 14px;
}

.render-info-container p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.render-specs-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 20px;
}

.render-specs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.92rem;
}

.spec-lbl {
  font-weight: 800;
  color: var(--color-brown-primary);
}

.spec-val {
  color: var(--text-muted);
}

/* Bento Grid Section (TIGHT ALIGNMENT, NO UNWANTED SPACING) */
.bento-section {
  background: var(--bg-page);
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
}

.bento-section .section-title {
  color: var(--color-brown-primary);
}

.bento-section .section-subtitle {
  color: var(--text-muted);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: flex-start;
}

.bento-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bento-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

/* LIGHT RED CURRENT REALITY CARD */
.bento-red {
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-top: 5px solid #dc2626;
  color: #7f1d1d;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.06);
}

.bento-red h3 {
  color: #7f1d1d;
}

.bento-red p.bento-desc {
  color: #991b1b;
  font-weight: 500;
  margin-bottom: 18px;
}

.bento-red .bento-point-list li {
  color: #7f1d1d;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
}

.bento-red .bento-point-list li:last-child {
  margin-bottom: 0;
}

.bento-red .badge-red {
  background: #dc2626;
  color: #ffffff;
}

.bento-wood {
  background: #ffffff;
  border-top: 4px solid var(--color-wood);
}

.bento-amber {
  background: #ffffff;
  border-top: 4px solid var(--color-flame);
}

.card-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.badge-wood { background: rgba(180, 83, 9, 0.12); color: var(--color-wood); }
.badge-amber { background: rgba(230, 81, 0, 0.15); color: var(--color-flame); }

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-brown-primary);
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.bento-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

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

.mini-img .bento-img { height: 120px; }

.image-caption-overlay {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: rgba(28, 18, 14, 0.85);
  color: var(--text-dim);
  font-size: 0.8rem;
  padding: 8px 14px;
}

.bento-point-list {
  list-style: none;
}

.bento-stat-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--bg-subtle);
  padding: 18px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  text-align: center;
}

.bento-stat-box .stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-wood);
}

.bento-stat-box .stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.bento-footer-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
}

.achievement-metric-tag {
  background: rgba(230, 81, 0, 0.1);
  color: var(--color-flame);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

/* Three Pillars of Impact Grid */
.pillars-container-block {
  padding-top: 10px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.pillar-card.highlight-pillar {
  border-color: var(--color-wood);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-wood);
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brown-primary);
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.pillar-checklist {
  list-style: none;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.pillar-checklist li {
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

/* STRATEGIC PATHWAY: ROADMAP SECTION */
.roadmap-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.roadmap-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.roadmap-card.active-phase {
  border: 2px solid var(--color-wood);
  box-shadow: var(--shadow-md);
}

.roadmap-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}

.phase-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.phase-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge-active { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.badge-upcoming { background: #fef3c7; color: #b45309; border: 1px solid #fde68a; }
.badge-fall { background: #e0f2fe; color: #0369a1; border: 1px solid #bae6fd; }
.badge-target { background: #ffedd5; color: #c2410c; border: 1px solid #fed7aa; }

.roadmap-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brown-primary);
  line-height: 1.3;
  margin-bottom: 8px;
}

.phase-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-wood);
  margin-bottom: 12px;
}

.phase-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Action Hub & Petition Form */
.action-section {
  background: var(--bg-page);
  color: var(--text-main);
}

.action-block-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.action-grid-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.petition-form-card {
  padding: 44px;
  border-right: 1px solid var(--border-light);
}

.form-header-badge {
  display: inline-block;
  background: rgba(180, 83, 9, 0.1);
  color: var(--color-wood);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.petition-form-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-brown-primary);
  margin-bottom: 10px;
}

.form-intro-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* iPetitions Embedded Action Card Styles */
.ipetitions-cta-card {
  background: var(--bg-dark-brown);
  border: 1px solid var(--border-wood);
  border-top: 4px solid var(--color-flame);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

.ipetitions-logo-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-wood-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ipetitions-cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.ipetitions-cta-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 26px;
  line-height: 1.5;
}

.btn-ipetitions-action {
  display: block;
  background: var(--color-flame);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(230, 81, 0, 0.4);
  transition: var(--transition-fast);
  width: 100%;
}

.btn-ipetitions-action:hover {
  background: var(--color-flame-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.6);
}

.form-security-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* Viral Share Suite */
.viral-share-suite-card {
  padding: 44px;
  background: var(--bg-subtle);
  display: flex;
  flex-direction: column;
}

.suite-kicker {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-flame);
  letter-spacing: 1.5px;
}

.suite-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brown-primary);
  margin-bottom: 6px;
}

.suite-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.share-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.viral-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-whatsapp { background: #25D366; color: #fff; }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.btn-sms-text { background: var(--color-brown-primary); color: #fff; }
.btn-facebook { background: #8B4513; color: #fff; }
.btn-native { background: #ffffff; color: var(--text-main); border: 1px solid var(--border-light); }

.viral-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Testimonials Carousel */
.testimonials-section {
  background: var(--bg-dark-brown);
  color: #fff;
}

.testimonials-section .section-title {
  color: #fff;
}

.testimonials-section .section-subtitle {
  color: var(--text-dim);
}

.testimonial-carousel-wrapper {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(253, 251, 247, 0.06);
  border: 1px solid rgba(253, 251, 247, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-wood-light);
  opacity: 0.4;
  margin-bottom: -15px;
}

.quote-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 24px;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-details strong { display: block; font-size: 0.92rem; color: #fff; }
.author-details span { font-size: 0.8rem; color: var(--text-dim); }

.carousel-nav-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.08);
  border: 1px solid rgba(253, 251, 247, 0.15);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  border-color: var(--color-wood-light);
  color: var(--color-wood-light);
}

/* Footer */
.site-footer {
  background: #140d0a;
  color: #fff;
  border-top: 1px solid rgba(253, 251, 247, 0.05);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-mission {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 16px;
}

.footer-links-col h4,
.footer-social-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-wood-light);
  margin-bottom: 16px;
}

.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; }
.footer-links-col ul li a:hover { color: #fff; }

.social-icons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.social-link-btn {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
}

.contact-email-note {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.contact-email-note a { color: var(--color-wood-light); text-decoration: none; }

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid rgba(253, 251, 247, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-disclaimer {
  line-height: 1.5;
}

.footer-legal-links a {
  color: var(--text-dim);
  text-decoration: none;
}

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 18, 14, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .main-nav-container { flex-direction: column; text-align: center; }
  .header-branding { text-align: center; }
  .sub-nav-container { flex-direction: column; align-items: center; text-align: center; }
  .sub-navbar-bar .nav-breadcrumbs { justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .render-card-grid { grid-template-columns: 1fr; }
  .render-image-container { min-height: 300px; border-right: none; border-bottom: 1px solid var(--border-light); }
  .bento-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .action-grid-container { grid-template-columns: 1fr; }
  .petition-form-card { border-right: none; border-bottom: 1px solid var(--border-light); }
  .testimonial-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 1.9rem; }
  .hero-cta-btns { flex-direction: column; }
  .header-branding { font-size: 0.88rem; }
  .sub-navbar-bar .nav-breadcrumbs { font-size: 0.92rem; gap: 10px; }
  .render-tabs { flex-direction: column; width: 100%; }
  .render-tab-btn { width: 100%; text-align: center; }
  .render-info-container { padding: 24px; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .video-direct-link-bar { flex-direction: column; text-align: center; }
}
