/* ==========================================================================
   SiteReady Weather Services — Modern B2B CSS Design System
   ========================================================================== */

:root {
  /* Core Color System */
  --navy-950: #070D18;
  --navy-900: #0B1120;
  --navy-850: #0F172A;
  --navy-800: #1E293B;
  --navy-700: #334155;
  
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-100: #DBEAFE;
  --blue-50:  #EFF6FF;

  --emerald-600: #059669;
  --emerald-500: #10B981;
  --emerald-100: #D1FAE5;
  --emerald-50:  #ECFDF5;

  --amber-600: #D97706;
  --amber-500: #F59E0B;
  --amber-100: #FEF3C7;
  --amber-50:  #FFFBEB;

  --coral-600: #DC2626;
  --coral-500: #EF4444;
  --coral-100: #FEE2E2;

  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --white:     #FFFFFF;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.3);

  /* Layout */
  --max-width: 1240px;
  --border-radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 6px;
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background-color: var(--slate-50);
  line-height: 1.6;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
}

section, .section, [id] {
  scroll-margin-top: 90px;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font: inherit;
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 13, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img,
.logo-badge-img {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  flex-shrink: 0 !important;
  border-radius: 9px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.15;
}

.brand-name span {
  color: var(--blue-400);
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.nav-link {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--slate-300);
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.btn-portal {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-200);
  padding: 8px 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.btn-portal:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), #1D4ED8);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section with Cinematic Background
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.88) 0%, rgba(11, 17, 32, 0.96) 100%),
              url('../assets/images/hero_florida_jobsite.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 85px 0 105px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-400);
  width: fit-content;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
  color: var(--blue-400);
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--slate-200);
  line-height: 1.6;
  max-width: 580px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--slate-200);
  font-weight: 500;
}

.trust-item svg {
  color: var(--emerald-500);
  flex-shrink: 0;
}

/* Hero Decision Card Mockup */
.hero-visual {
  position: relative;
}

.brief-mockup-card {
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 35px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
}

.brief-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.brief-meta h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.brief-meta p {
  font-size: 0.78rem;
  color: var(--slate-400);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.status-pill.go {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-pill.caution {
  background: rgba(245, 158, 11, 0.2);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.status-pill.stop,
.status-pill.red {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.decision-summary-box {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--emerald-500);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
}

.decision-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--emerald-500);
  margin-bottom: 4px;
}

.decision-text {
  font-size: 0.92rem;
  color: var(--slate-200);
  line-height: 1.45;
}

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

.timeline-hour {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 8px;
  border-radius: 8px;
  text-align: center;
}

.time-label {
  font-size: 0.72rem;
  color: var(--slate-400);
  font-weight: 600;
}

.time-icon {
  margin: 6px auto;
  font-size: 1.1rem;
}

.time-risk {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}

.risk-low {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
}

.risk-med {
  background: rgba(245, 158, 11, 0.2);
  color: #FBBF24;
}

.risk-high {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
}

.brief-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  font-size: 0.78rem;
  color: var(--slate-400);
}

.brief-footer strong {
  color: var(--white);
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   Margin Leakage / Comparison Section
   ========================================================================== */
.comparison-section {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

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

.comparison-card.good {
  background: #F0FDF4;
  border: 2px solid var(--emerald-500);
  box-shadow: var(--shadow-lg);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.comp-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-card.bad .comp-icon {
  background: #FED7D7;
  color: var(--coral-600);
}

.comparison-card.good .comp-icon {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.comp-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
}

.comp-title p {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-card.bad .comp-item {
  color: #742A2A;
}

.comparison-card.good .comp-item {
  color: #14532D;
}

.comp-bullet {
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================================================
   Trade Solutions Section with High-Res Image Visuals
   ========================================================================== */
.trade-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trade-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.trade-tab-btn:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}

.trade-tab-btn.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.trade-tab-pane {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.trade-tab-pane.active {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.trade-pane-info h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.trade-pane-lead {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 24px;
}

.trade-variables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.var-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.var-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.var-card p {
  font-size: 0.82rem;
  color: var(--slate-600);
}

.trade-visual-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trade-image-wrap {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  position: relative;
}

.trade-image-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trade-image-wrap:hover img {
  transform: scale(1.03);
}

.trade-quote-box {
  background: var(--navy-900);
  border-radius: var(--border-radius);
  padding: 24px;
  color: var(--white);
  position: relative;
}

.trade-quote-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-400);
  margin-bottom: 8px;
}

.trade-quote-scenario {
  font-size: 0.94rem;
  color: var(--slate-200);
  line-height: 1.55;
  margin-bottom: 16px;
}

.trade-action-outcome {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #34D399;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   Live Radar & Client Threat Hub Feature Section
   ========================================================================== */
.radar-feature-section {
  background: var(--navy-950);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.radar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.radar-feature-content h2 {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.radar-feature-content p {
  font-size: 1.08rem;
  color: var(--slate-300);
  line-height: 1.6;
  margin-bottom: 24px;
}

.radar-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.radar-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--slate-200);
}

.radar-bullets li svg {
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.radar-screen-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  position: relative;
}

.radar-screen-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Product Suite / Deliverables
   ========================================================================== */
.products-section {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

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

.product-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-400);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-600);
  margin-bottom: 6px;
}

.product-card h4 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid var(--slate-200);
  padding-top: 16px;
}

.product-features li {
  font-size: 0.82rem;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}

/* ==========================================================================
   Interactive Sample Report Showcase
   ========================================================================== */
.sample-report-section {
  background: var(--navy-950);
  color: var(--white);
}

.sample-report-section .section-title {
  color: var(--white);
}

.sample-report-section .section-desc {
  color: var(--slate-300);
}

.report-viewer-container {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.report-nav-bar {
  display: flex;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
  gap: 10px;
  overflow-x: auto;
}

.report-nav-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate-400);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.report-nav-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.report-nav-btn.active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}

.report-sheet {
  display: none;
  padding: 36px;
  font-family: var(--font-sans);
}

.report-sheet.active {
  display: block;
}

.report-header-banner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.report-title-area h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.report-title-area p {
  font-size: 0.85rem;
  color: var(--slate-400);
}

.report-body-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

@media (max-width: 1024px) {
  .report-body-grid {
    grid-template-columns: 1fr;
  }
}

.report-primary-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  overflow-x: auto;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.84rem;
}

.report-table th, .report-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap !important;
}

.report-table th {
  color: var(--slate-400);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  white-space: nowrap !important;
}

.report-table td {
  color: var(--slate-200);
  white-space: nowrap !important;
}

.risk-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap !important;
  text-align: center;
}

.risk-badge.green { background: rgba(16, 185, 129, 0.18); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.3); }
.risk-badge.amber { background: rgba(245, 158, 11, 0.18); color: #FBBF24; border: 1px solid rgba(245, 158, 11, 0.3); }
.risk-badge.red   { background: rgba(239, 68, 68, 0.18); color: #F87171; border: 1px solid rgba(239, 68, 68, 0.3); }

.report-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 18px;
}

.sidebar-box h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.sidebar-box p {
  font-size: 0.86rem;
  color: var(--slate-300);
  line-height: 1.5;
}

/* ==========================================================================
   ROI / Delay Cost Calculator
   ========================================================================== */
.calculator-section {
  background: var(--slate-100);
}

.calc-wrapper {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.calc-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-800);
}

.calc-hint {
  font-size: 0.82rem;
  color: var(--slate-500);
  line-height: 1.45;
  margin-top: 1px;
}

.calc-value-display {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 12px;
  border-radius: 6px;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--slate-200);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-600);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
  transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-results-card {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-metric {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.result-metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin-bottom: 4px;
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #F87171;
  letter-spacing: -0.02em;
}

.metric-value.green {
  color: #34D399;
}

.metric-sub {
  font-size: 0.82rem;
  color: var(--slate-400);
}

/* ==========================================================================
   Pricing & 30-Day Pilot Section
   ========================================================================== */
.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: var(--navy-900);
  color: var(--white);
  border: 2px solid var(--blue-500);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.82rem;
  color: var(--slate-500);
  margin-bottom: 20px;
  min-height: 40px;
}

.pricing-card.featured .plan-desc {
  color: var(--slate-400);
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 20px;
}

.pricing-card.featured .plan-price-box {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.plan-price {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan-period {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.pricing-card.featured .plan-period {
  color: var(--slate-400);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.plan-features li svg {
  color: var(--emerald-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.featured .plan-features li svg {
  color: #34D399;
}

.plan-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--slate-300);
  background: var(--white);
  color: var(--slate-800);
  transition: var(--transition);
}

.plan-btn:hover {
  background: var(--slate-100);
  border-color: var(--slate-400);
}

.pricing-card.featured .plan-btn {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.pricing-card.featured .plan-btn:hover {
  background: #1D4ED8;
}

/* ==========================================================================
   Founder & Credentials Section
   ========================================================================== */
.about-section {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}

.about-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.founder-avatar-box {
  background: radial-gradient(circle at center, #1E293B 0%, var(--navy-950) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.founder-avatar-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), #1D4ED8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

.founder-name {
  font-size: 1.3rem;
  font-weight: 800;
}

.founder-role {
  font-size: 0.82rem;
  color: var(--blue-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.founder-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.founder-badge-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.76rem;
  color: var(--slate-300);
}

.about-details h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.about-details p {
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.compliance-box {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-600);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--slate-700);
  margin-top: 20px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--border-radius);
  background: var(--slate-50);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question:hover {
  color: var(--blue-600);
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   Final CTA Banner
   ========================================================================== */
.cta-banner-section {
  background: radial-gradient(circle at 50% 50%, #1E3A8A 0%, var(--navy-950) 90%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-box p {
  font-size: 1.15rem;
  color: var(--slate-300);
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
  font-size: 0.88rem;
}

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

.footer-col h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--slate-400);
  transition: color 0.15s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

/* ==========================================================================
   Modal Dialog (20-Min Review / Pilot Booking)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 17, 32, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  padding: 36px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--slate-100);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--slate-600);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--slate-900);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

/* Toast Notifications */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy-900);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--emerald-500);
  box-shadow: var(--shadow-xl);
  z-index: 3000;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}

.toast-msg.active {
  display: flex;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-wrapper {
    grid-template-columns: 1fr;
  }
  .trade-tab-pane.active {
    grid-template-columns: 1fr;
  }
  .radar-grid {
    grid-template-columns: 1fr;
  }
  .about-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .trade-variables-grid {
    grid-template-columns: 1fr;
  }
  .report-body-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
