/* ===== SB 707 Landing Page Styles ===== */
/* Inspired by planeteria.com: serif headlines, government-professional aesthetic */

/* Reset for landing page */
/* Brand: Orange #F17A0E, Plum #281934, Sand #DECC92, Mint #CEFFE6, Cyan #7EFFE6, Blue #468FF3 */
.landing-page {
  --plum: #281934;
  --plum-dark: #1A1225;
  --plum-light: #3D2D4E;
  --orange: #F17A0E;
  --orange-dark: #D96A06;
  --orange-light: #F59035;
  --blue: #468FF3;
  --cyan: #7EFFE6;
  --mint: #CEFFE6;
  --sand: #DECC92;
  --slate-50: #FAF9F7;
  --slate-100: #F5F3EF;
  --slate-200: #E8E4DE;
  --slate-300: #D1CAC0;
  --slate-400: #8A7F94;
  --slate-500: #5C5168;
  --slate-600: #4A3D56;
  --slate-700: #3A2E46;
  --slate-800: #281934;
  --white: #FFFFFF;
  --red-600: #DC2626;
  --amber-500: #F59E0B;
  --green-600: #16A34A;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--white);
  color: var(--slate-700);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* Dark theme overrides for landing page */
[data-theme="dark"] .landing-page {
  --slate-50: #221A2E;
  --slate-100: #281934;
  --slate-200: #3D2D4E;
  --slate-300: #4A3D56;
  --slate-400: #8A7F94;
  --slate-500: #C4BAD0;
  --slate-600: #D9D2E2;
  --slate-700: #F5F3EF;
  --slate-800: #FAF9F7;
  --white: #1A1225;
  background: #1A1225;
  color: #F5F3EF;
}

[data-theme="dark"] .landing-page h1,
[data-theme="dark"] .landing-page h2,
[data-theme="dark"] .landing-page h3,
[data-theme="dark"] .landing-page h4 {
  color: #F5F3EF;
}

[data-theme="dark"] .l-stat-card,
[data-theme="dark"] .l-comply-card,
[data-theme="dark"] .l-timeline-item,
[data-theme="dark"] .l-trans-card,
[data-theme="dark"] .l-hybrid-card,
[data-theme="dark"] .l-service-card {
  background: #281934;
  border-color: #3D2D4E;
}

[data-theme="dark"] .l-section-dark {
  background: #1A1225;
}

[data-theme="dark"] .l-section-dark h2,
[data-theme="dark"] .l-section-dark h3 {
  color: #FFFFFF;
}

[data-theme="dark"] .l-checklist-tab {
  color: #8A7F94;
}

[data-theme="dark"] .l-checklist-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

[data-theme="dark"] .l-checklist li:hover {
  background: #281934;
}

[data-theme="dark"] .l-checklist-text {
  color: #F5F3EF;
}

[data-theme="dark"] .l-form-input,
[data-theme="dark"] .l-form-select,
[data-theme="dark"] .l-form-textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #F5F3EF;
}

[data-theme="dark"] .l-footer {
  background: #120C1A;
}

/* Theme toggle button in landing page */
.theme-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 6px 10px;
  color: inherit;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.theme-toggle:hover {
  border-color: var(--orange);
  background: rgba(241, 122, 14, 0.1);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.theme-toggle-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.site-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header-logo .logo-img {
  height: 34px;
  width: auto;
}

.landing-page *, .landing-page *::before, .landing-page *::after {
  box-sizing: border-box;
}

.landing-page h1, .landing-page h2, .landing-page h3, .landing-page h4 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  color: var(--plum);
  line-height: 1.25;
}

/* ===== Layout ===== */
.l-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.l-container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.l-section {
  padding: 80px 0;
}

.l-section-sm {
  padding: 56px 0;
}

.l-section-alt {
  background: var(--slate-50);
}

.l-section-dark {
  background: var(--plum);
  color: var(--slate-200);
}

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

/* ===== Sticky Header ===== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}

.l-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.l-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
}

.l-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Source Serif 4', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.l-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
}

.l-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.l-nav a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.l-nav a:hover,
.l-nav a:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.l-nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  margin-left: 8px;
  font-weight: 600 !important;
}

.l-nav-cta:hover {
  background: var(--orange-dark) !important;
}

/* Mobile nav toggle */
.l-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ===== Hero ===== */
.l-hero {
  background: linear-gradient(160deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
  color: var(--white);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.l-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(241, 122, 14, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(241, 122, 14, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.l-hero-content {
  position: relative;
  z-index: 1;
}

.l-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241, 122, 14, 0.15);
  border: 1px solid rgba(241, 122, 14, 0.3);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.l-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.l-hero h1 .accent {
  color: var(--orange-light);
}

.l-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--slate-300);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Countdown */
.l-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.l-countdown-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
  min-width: 90px;
  text-align: center;
}

.l-countdown-num {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1.1;
}

.l-countdown-label {
  font-size: 11px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero buttons */
.l-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.l-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  line-height: 1;
}

.l-btn:hover {
  transform: translateY(-1px);
}

.l-btn:focus-visible {
  outline: 3px solid var(--teal-light);
  outline-offset: 2px;
}

.l-btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(241, 122, 14, 0.3);
}

.l-btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 16px rgba(241, 122, 14, 0.4);
}

.l-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}

.l-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.l-btn-outline-dark {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--slate-300);
}

.l-btn-outline-dark:hover {
  border-color: var(--plum);
}

/* ===== Section Headers ===== */
.l-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.l-section-dark .l-section-label {
  color: var(--orange-light);
}

.l-section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  font-weight: 700;
}

.l-section-subheading {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 640px;
  line-height: 1.7;
}

.l-section-subheading.centered {
  margin-left: auto;
  margin-right: auto;
}

.l-section-dark .l-section-subheading {
  color: var(--slate-400);
}

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

/* ===== What is SB 707 ===== */
.l-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.l-overview-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.l-overview-text p {
  margin-bottom: 16px;
}

.l-stat-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.l-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.l-stat {
  text-align: center;
  padding: 16px;
}

.l-stat-num {
  font-family: 'Source Serif 4', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
}

.l-stat-label {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 4px;
}

/* ===== Who Must Comply ===== */
.l-comply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.l-comply-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.l-comply-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.l-comply-icon {
  width: 56px;
  height: 56px;
  background: rgba(241, 122, 14, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.l-comply-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.l-comply-card p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ===== Timeline ===== */
.l-timeline {
  position: relative;
  margin-top: 56px;
  padding-left: 40px;
}

.l-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange), var(--plum-light));
  border-radius: 3px;
}

.l-timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.l-timeline-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.l-timeline-dot {
  position: absolute;
  left: -33px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--slate-50);
  box-shadow: 0 0 0 2px var(--orange);
}

.l-timeline-dot.urgent {
  background: var(--red-600);
  box-shadow: 0 0 0 2px var(--red-600);
}

.l-timeline-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.l-timeline-dot.urgent + .l-timeline-date,
.l-timeline-item .l-timeline-date.urgent-date {
  color: var(--red-600);
}

.l-timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.l-timeline-item p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0;
}

/* ===== Requirements Cards ===== */
.l-req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.l-req-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}

.l-req-card:hover {
  border-color: rgba(241, 122, 14, 0.3);
  background: rgba(255,255,255,0.06);
}

.l-req-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(241, 122, 14, 0.15);
  color: var(--orange-light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.l-req-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.l-req-card p {
  font-size: 0.88rem;
  color: var(--slate-400);
  line-height: 1.6;
}

/* ===== Homepage Requirements ===== */
.l-home-req {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.l-home-req-list {
  list-style: none;
  padding: 0;
}

.l-home-req-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.95rem;
}

.l-home-req-list li:last-child {
  border-bottom: none;
}

.l-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(241, 122, 14, 0.1);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.l-home-callout {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  border-radius: 12px;
  padding: 32px;
  color: var(--slate-200);
}

.l-home-callout h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.l-home-callout p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.l-home-callout p:last-child {
  margin-bottom: 0;
}

.l-callout-note {
  font-size: 0.85rem !important;
  color: var(--slate-400) !important;
  font-style: italic;
}

/* ===== Translation Section ===== */
.l-trans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.l-trans-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.l-trans-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.l-trans-card ul {
  list-style: none;
  padding: 0;
}

.l-trans-card li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--slate-600);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.l-trans-card li::before {
  flex-shrink: 0;
  margin-top: 2px;
}

.l-trans-yes li::before {
  content: '✓';
  color: var(--green-600);
  font-weight: 700;
}

.l-trans-no li::before {
  content: '✕';
  color: var(--red-600);
  font-weight: 700;
}

.l-trans-highlight {
  background: rgba(241, 122, 14, 0.06);
  border-color: rgba(241, 122, 14, 0.2);
  margin-top: 24px;
  grid-column: 1 / -1;
}

.l-trans-highlight p {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== Hybrid Meetings ===== */
.l-hybrid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.l-hybrid-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.l-hybrid-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.l-hybrid-card p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ===== Compliance Checklist ===== */
.l-checklist-wrapper {
  margin-top: 48px;
}

.l-checklist-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--slate-200);
}

.l-checklist-tab {
  padding: 12px 24px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.l-checklist-tab:hover {
  color: var(--slate-600);
}

.l-checklist-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.l-checklist-tab:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
  border-radius: 4px 4px 0 0;
}

.l-checklist-panel {
  display: none;
}

.l-checklist-panel.active {
  display: block;
}

.l-checklist-progress {
  background: var(--slate-100);
  border-radius: 50px;
  height: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}

.l-checklist-progress-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 50px;
  transition: width 0.4s ease;
  width: 0%;
}

.l-checklist-progress-text {
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 8px;
  font-weight: 500;
}

.l-checklist {
  list-style: none;
  padding: 0;
}

.l-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  transition: background 0.15s;
  cursor: pointer;
}

.l-checklist li:hover {
  background: var(--slate-50);
}

.l-checklist li.checked {
  opacity: 0.6;
}

.l-checklist li.checked .l-checklist-text {
  text-decoration: line-through;
}

.l-checklist input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
  cursor: pointer;
  margin-top: 1px;
}

.l-checklist-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--slate-700);
}

/* ===== Risks Section ===== */
.l-risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.l-risk-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.l-risk-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.l-risk-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.l-risk-card p {
  font-size: 0.88rem;
  color: var(--slate-400);
  line-height: 1.6;
}

/* ===== Services ===== */
.l-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.l-service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.l-service-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.l-service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(241, 122, 14, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.l-service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.l-service-card p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ===== Contact Form ===== */
.l-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}

.l-contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--white);
}

.l-contact-info p {
  font-size: 0.95rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 24px;
}

.l-contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--slate-300);
}

.l-contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(241, 122, 14, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.l-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
}

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

.l-form-group {
  margin-bottom: 18px;
}

.l-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-300);
  margin-bottom: 6px;
}

.l-form-input,
.l-form-select,
.l-form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.l-form-input::placeholder,
.l-form-textarea::placeholder {
  color: var(--slate-500);
}

.l-form-input:focus,
.l-form-select:focus,
.l-form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 122, 14, 0.2);
}

.l-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2394A3B8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.l-form-select option {
  background: var(--plum);
  color: var(--white);
}

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

.l-form-submit {
  width: 100%;
}

.l-form-status {
  margin-top: 12px;
  font-size: 13px;
  min-height: 20px;
  text-align: center;
}

.l-form-status.success { color: var(--green-600); }
.l-form-status.error { color: var(--red-600); }

/* ===== Footer ===== */
.l-footer {
  background: var(--plum-dark);
  color: var(--slate-400);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.l-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.l-footer-links {
  display: flex;
  gap: 24px;
}

.l-footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.l-footer-links a:hover {
  color: var(--white);
}

.l-footer p {
  font-size: 13px;
}

/* ===== Skip link ===== */
.l-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}

.l-skip-link:focus {
  top: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .l-req-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .l-section {
    padding: 56px 0;
  }

  .l-hero {
    padding: 120px 0 64px;
  }

  .l-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--plum);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .l-nav.open {
    display: flex;
  }

  .l-nav a {
    padding: 12px 0;
  }

  .l-nav-cta {
    text-align: center;
    padding: 12px !important;
    margin-left: 0;
    margin-top: 8px;
  }

  .l-nav-toggle {
    display: block;
  }

  .l-overview-grid,
  .l-home-req,
  .l-trans-grid,
  .l-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .l-comply-grid,
  .l-hybrid-grid,
  .l-risks-grid,
  .l-req-grid {
    grid-template-columns: 1fr;
  }

  .l-services-grid {
    grid-template-columns: 1fr;
  }

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

  .l-timeline {
    padding-left: 32px;
  }

  .l-timeline::before {
    left: 11px;
  }

  .l-timeline-dot {
    left: -29px;
  }

  .l-countdown-item {
    min-width: 70px;
    padding: 12px 14px;
  }

  .l-countdown-num {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .l-container, .l-container-narrow {
    padding: 0 16px;
  }

  .l-hero h1 {
    font-size: 1.8rem;
  }

  .l-section-heading {
    font-size: 1.5rem;
  }

  .l-countdown {
    gap: 10px;
  }

  .l-countdown-item {
    min-width: 60px;
    padding: 10px 10px;
  }

  .l-countdown-num {
    font-size: 1.4rem;
  }

  .l-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Focus visible polyfill ===== */
.landing-page :focus:not(:focus-visible) {
  outline: none;
}

.landing-page :focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .landing-page * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
