/* ==================================================
   NAVBAR
================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  padding: 16px 0;

  background: var(--white);

  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 80px;
}

.logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Mobile Menu */

.menu-toggle {
  display: none;
  justify-content: flex-start;
  gap: 5px;
  min-height: 340px;
  box-sizing: border-box;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 50px;
}

/* ==================================================
   HERO SECTION
================================================== */

/* ========================================= */
/* NAVBAR COMPONENT STYLES */
/* ========================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.navbar .logo img {
  height: 52px; /* Force crisp taller height requested */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--slate-grey);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--secondary-blue);
}

/* ========================================= */
/* BUTTONS & BADGES */
/* ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  cursor: pointer;
}

.btn-primary {
  background-color: #0b3b6e !important;
  color: #ffffff !important;
  border: 1px solid #0b3b6e !important;
  box-shadow: 0 4px 12px rgba(11, 59, 110, 0.15);
}

.btn-primary:hover {
  background-color: #1d5faf !important;
  border-color: #1d5faf !important;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent !important;
  color: #0b3b6e !important;
  border: 2px solid #0b3b6e !important;
}

.btn-outline:hover {
  background-color: rgba(11, 59, 110, 0.04) !important;
  transform: translateY(-1px);
}

.badge {
  background: rgba(29, 95, 175, 0.08);
  color: var(--secondary-blue);
  border: 1px solid rgba(29, 95, 175, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  width: max-content;
  margin-bottom: 24px;
}

/* ========================================= */
/* HERO CORE LAYOUT & BACKGROUND MESH */
/* ========================================= */
#hero {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: #ffffff !important;
  overflow: hidden;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(29, 95, 175, 0.05) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(29, 95, 175, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px) !important;
  background-size:
    100% 100%,
    100% 100%,
    40px 40px,
    40px 40px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 30px;
  align-items: center;
}

/* TYPOGRAPHY */
#hero h1 {
  color: var(--primary-navy);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

#hero p {
  color: var(--slate-grey);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px 0;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  position: relative;
  z-index: 10;
}

/* ========================================= */
/* INTERACTIVE MOCKUP ELEMENT STYLES */
/* ========================================= */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-base-panel {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(11, 59, 110, 0.04);
}

.panel-header {
  background: #f8fafc;
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-dot {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 50%;
}

.panel-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-grey);
  margin-left: 8px;
}

.panel-body {
  padding: 24px;
}

.skeleton-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}

.header-row {
  color: var(--slate-grey);
  font-weight: 600;
  border-bottom: 2px solid var(--light-border);
  padding-top: 0;
}

.score-pill {
  background: rgba(29, 95, 175, 0.1);
  color: var(--secondary-blue);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  width: max-content;
}

.status-pill {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  width: max-content;
}

.status-pill.active {
  background: #dcfce7;
  color: #166534;
}
.status-pill.pending {
  background: #fef9c3;
  color: #854d0e;
}

/* FLOATING GLASS CARDS */
.hero-image-top-row {
  display: flex;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.metric-card,
.insight-card {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;

  flex: 1;
  background: #ffffff;
  border: 1px solid var(--light-border);
  padding: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.floating-glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-icon {
  font-size: 24px;
}

.floating-glass-card small {
  color: var(--slate-grey);
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-glass-card h4 {
  margin: 4px 0 0 0;
  font-size: 16px;
  color: var(--primary-navy);
}

.text-green {
  color: #166534;
  font-size: 12px;
}

/* ========================================= */
/* TYPEWRITER CURSOR STYLE */
/* ========================================= */
.typewriter-target {
  color: var(--secondary-blue);
  display: inline-block;
  min-height: 50px;
}

.typed-cursor {
  color: var(--secondary-blue);
  animation: blink 0.8s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* RESPONSIVE LAYOUT RESPONSIVENESS */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }
  #hero p {
    margin: 0 auto 36px auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    justify-content: center;
  }
  .metric-card {
    left: -10px;
  }
  .navbar .nav-links {
    display: none;
  } /* Handle mobile drawer setup later */
}

/* ========================================= */
/* PROBLEM SECTION STYLES */
/* ========================================= */
#problem {
  padding: var(--section-padding);
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.problem-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* LEFT COLUMN TYPOGRAPHY */
.problem-badge {
  color: var(--danger);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 20px;
}

#problem h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

#problem .problem-header-block > p {
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 36px 0;
}

/* METRIC CALLOUT BOX */
.problem-metric-callout {
  background: var(--white);
  border-left: 4px solid var(--danger);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}

.problem-metric-callout h3 {
  margin: 0 0 6px 0;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--danger);
}

.problem-metric-callout p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
}

/* RIGHT COLUMN CARDS STACK */
.problem-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(239, 68, 68, 0.2);
}

.problem-icon-box {
  background: rgba(239, 68, 68, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card-content h4 {
  margin: 0 0 6px 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

.problem-card-content p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
  .problem-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  #problem h2 {
    font-size: 32px;
  }
}

/* ========================================= */
/* SOLUTION SECTION STYLES */
/* ========================================= */
#solution {
  padding: var(--section-padding);
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.solution-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* Visual block gets slight spatial weight advantage */
  gap: 80px;
  align-items: center;
}

.solution-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

/* LEFT SIDE: AUTOMATED DASHBOARD VISUALS */
.solution-visual-block {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 340px;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
}

.solution-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.feature-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.status-indicator.processing {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.status-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solution-feature-card h5 {
  margin: 0 0 6px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--primary);
}

.solution-feature-card p {
  margin: 0 0 16px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.4;
}

/* Animated Progress Bar Emulation */
.progress-track {
  width: 100%;
  height: 6px;
  background: var(--bg-light);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 75%;
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
}

/* Floating Clean Layout Badge */
.solution-floating-badge {
  position: relative;
  bottom: auto;
  right: auto;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  white-space: nowrap;
  margin-top: 16px;
}

.badge-icon-circle {
  font-size: 18px;
  background-color: rgba(34, 197, 94, 0.1); /* Success green background tint */
  padding: 6px;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.solution-floating-badge h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--primary);
}

.solution-floating-badge p {
  margin: 2px 0 0 0;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-medium);
}

/* RIGHT SIDE: COPY AND VALUES MARKETING PANEL */
.solution-badge {
  color: var(--primary-light);
  background: rgba(29, 95, 175, 0.08);
  border: 1px solid rgba(29, 95, 175, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 20px;
}

.solution-section-header .solution-badge {
  margin-bottom: 12px;
}

#solution h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

#solution .solution-content-block > p {
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 32px 0;
}

/* Pill Row Styling Configuration */
.solution-value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.pill-dot {
  width: 6px;
  height: 6px;
  background-color: var(--success); /* Green positive system indicators */
  border-radius: 50%;
}

/* ========================================= */
/* 💻 STRICT RESPONSIVE BREAKPOINT SYSTEM    */
/* ========================================= */

/* Tablet & Smaller Laptops Overrides (--laptop token boundary area) */
@media (max-width: 1024px) {
  .solution-container,
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  #solution h2 {
    font-size: 32px;
  }

  .solution-visual-block {
    padding: 40px 20px; /* Compress inner white margins to maximize element fit */
  }
}

/* Small Handheld Smart Phones Override Block (--tablet / --mobile limits) */
@media (max-width: 768px) {
  #solution {
    padding: 60px 0; /* Tighten up spacing to optimize mobile finger-scroll loops */
  }

  .solution-floating-badge {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .solution-visual-block {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========================================= */
/* STATS SECTION STYLES                      */
/* ========================================= */
#stats {
  padding: 80px 0 !important;
  background-color: #0b3b6e !important;
  color: var(--white);
  display: block !important;
  clear: both !important;
  position: relative;
  z-index: 99;
  width: 100% !important;
  min-height: 200px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.stat-card {
  padding: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px !important;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 8px 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
  display: block;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8 !important;
  margin: 0;
  line-height: 1.4;
}

/* ========================================= */
/* 💻 STALWART MOBILE BREAKPOINT SYSTEM     */
/* ========================================= */

/* Tablet Viewport Overrides (Matches your 768px limit) */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px;
  }

  .stat-number {
    font-size: 38px;
  }
}

/* Mobile Handheld Overrides (Matches your 576px limit) */
@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
}

/* ========================================= */
/* FEATURES SECTION STYLES                   */
/* ========================================= */
#features {
  padding: var(--section-padding);
  background-color: var(
    --white
  ); /* Stark white back-contrast transition from dark navy stats */
  border-bottom: 1px solid var(--border);
}

.features-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px auto;
}

.features-badge {
  color: var(--primary);
  background: rgba(11, 59, 110, 0.06);
  border: 1px solid rgba(11, 59, 110, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
}

#features h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}

#features .features-section-header > p {
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* THE 3-COLUMN LAYOUT MATRIX GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(
    3,
    1fr
  ); /* Split into 3 columns on standard viewports */
  gap: 32px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.feature-matrix-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}

/* Premium smooth layout lift interactive feel */
.feature-matrix-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 59, 110, 0.15);
}

.feature-matrix-icon {
  font-size: 24px;
  background-color: var(--bg-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.feature-matrix-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 12px 0;
}

.feature-matrix-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* ========================================= */
/* 💻 FLEXIBLE SYSTEM BREAKPOINT CONSTRAINTS */
/* ========================================= */

/* Adjusting to Medium Laptop Screens (--laptop breakpoint area) */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Restructures beautifully into a 2-column spatial grid block */
    gap: 24px;
  }
  #features h2 {
    font-size: 32px;
  }
}

/* Adjusting to Small Tablet & Mobile Views (--tablet / --mobile boundaries) */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* Re-stacks flat into a single-column block layout for responsive swipeability */
    gap: 20px;
  }
  #features {
    padding: 80px 0;
  }
}

/* ========================================= */
/* INDUSTRIES SECTION STYLES                */
/* ========================================= */
#industries {
  padding: var(--section-padding);
  background-color: var(
    --bg-light
  ); /* Soft tint background shift for premium visual pacing */
  border-bottom: 1px solid var(--border);
}

.industries-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.industries-badge {
  color: var(--primary-light);
  background: rgba(29, 95, 175, 0.08);
  border: 1px solid rgba(29, 95, 175, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
}

#industries h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}

#industries .industries-section-header > p {
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* THE 3-COLUMN CARDS GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Premium micro-elevation interact effect */
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.industry-card-image-box {
  font-size: 28px;
  background-color: var(--bg-section); /* Light layout block frame tint */
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.industry-card-content h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 12px 0;
}

.industry-card-content p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* ========================================= */
/* 💻 FLUID INTERACTIVE BREAKPOINT HOOKS     */
/* ========================================= */

/* Laptop Grid Constraint Adjustments (--laptop token area) */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Snaps neatly to a stable 2-column structure matrix */
    gap: 24px;
  }
  #industries h2 {
    font-size: 32px;
  }
}

/* Small Handheld Tablets & Phones (--tablet / --mobile limits) */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr; /* Re-stacks horizontally unified for streamlined thumb browsing */
    gap: 20px;
  }
  #industries {
    padding: 80px 0;
  }
}

/* ========================================= */
/* TECHNOLOGY ARCHITECTURE SECTION STYLES    */
/* ========================================= */
#technology {
  padding: var(--section-padding);
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.technology-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.tech-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* LEFT SIDE: ARCHITECTURE GRAPH ENGINE VISUALS */
.tech-pipeline-visual {
  background-color: var(--bg-dark); /* Dark engineering terminal aesthetic */
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-node {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.node-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.node-tag.model-tag {
  color: var(--accent);
}
.node-tag.output-tag {
  color: var(--success);
}

.node-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
}

.node-box.accent-box {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

.node-box h5 {
  margin: 0 0 4px 0;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--white);
}

.node-box p {
  margin: 0;
  color: var(--text-light);
  font-size: 12px;
}

.tech-pipeline-arrow {
  color: var(
    --accent
  ) !important; /* Highlights the flow arrow in clear brand bright blue */
  font-size: 16px;
  margin: 16px 0;
  opacity: 0.85;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.4); /* Subtle glow effect inside terminal container */
}

/* RIGHT SIDE: COPY LAYOUT PANEL */
.tech-badge {
  color: var(--primary);
  background: rgba(11, 59, 110, 0.06);
  border: 1px solid rgba(11, 59, 110, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 20px;
}

#technology h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

#technology .tech-content-block > p {
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 36px 0;
}

/* SPEC CARDS NESTED MATRIX */
.tech-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tech-spec-card {
  border-top: 2px solid var(--border);
  padding-top: 16px;
}

.tech-spec-card h6 {
  margin: 0 0 8px 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.tech-spec-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.5;
}

/* ========================================= */
/* 💻 STALWART SYSTEM RESPONSIVE MEDIA HOOKS */
/* ========================================= */

@media (max-width: 1024px) {
  .technology-container {
    align-items: center;
  }
  .tech-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  #technology h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .tech-pipeline-visual {
    padding: 24px 16px; /* Dynamically shrink container cushions on narrow phone viewports */
  }
  .tech-spec-grid {
    grid-template-columns: 1fr; /* Re-stacks nested cards cleanly vertically */
    gap: 24px;
  }
}

/* ========================================= */
/* ROADMAP SECTION STYLES                    */
/* ========================================= */
#roadmap {
  padding: var(--section-padding);
  background-color: var(
    --bg-light
  ); /* Off-white system token background pacing break */
  border-bottom: 1px solid var(--border);
}

.roadmap-section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px auto;
}

.roadmap-badge {
  color: var(--primary-light);
  background: rgba(29, 95, 175, 0.08);
  border: 1px solid rgba(29, 95, 175, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 16px;
}

#roadmap h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

#roadmap .roadmap-section-header > p {
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* TIMELINE TRACK STRUCTURAL LAYOUT */
.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Premium horizontal timeline cards */
  gap: 32px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.roadmap-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.roadmap-step:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow:
    var(--shadow-md),
    0 4px 20px rgba(59, 130, 246, 0.1);
}

.roadmap-timeline:hover .roadmap-step.active:not(:hover) {
  border-color: var(--border);
  box-shadow: none;
}

/* Active status glow to represent current engineering focus */
.roadmap-step.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.roadmap-marker {
  display: inline-block;
  background: var(--bg-section);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.roadmap-step.active .roadmap-marker {
  background: var(--accent);
  color: var(--white);
}

.roadmap-timeline:hover .roadmap-step.active:not(:hover) .roadmap-marker {
  background: var(--bg-section);
  color: var(--primary);
}

.roadmap-step:hover .roadmap-marker {
  background: var(--accent);
  color: var(--white);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.roadmap-text-box h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--primary);
  margin: 0 0 12px 0;
  font-weight: 700;
}

.roadmap-text-box p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.55;
  margin: 0;
}

/* ========================================= */
/* 💻 ENTERPRISE MOBILE RESPONSIVE ADAPTATION*/
/* ========================================= */

/* Tablet & Smaller Laptops Overrides (--laptop token boundary area) */
@media (max-width: 1024px) {
  .roadmap-timeline {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Wraps clean to a 2-column card deck */
    gap: 24px;
  }
  #roadmap h2 {
    font-size: 32px;
  }
}

/* Small Handheld Smart Phones Override Block (--tablet limits) */
@media (max-width: 768px) {
  .roadmap-timeline {
    grid-template-columns: 1fr; /* Flips cards into a clean vertical timeline stack */
    gap: 20px;
  }
  #roadmap {
    padding: 80px 0;
  }
}

/* ========================================= */
/* WHY-BRK SECTION STYLES                    */
/* ========================================= */
#why-brk {
  padding: var(--section-padding);
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.why-brk-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Strategic structural split spacing */
  gap: 80px;
  align-items: flex-start;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* LEFT SIDE: STICKY SIDEBAR LOGIC */
.why-brk-sticky-sidebar {
  position: sticky;
  top: 100px; /* Keeps the heading pinned beautifully on desktop scroll */
}

.why-brk-badge {
  color: var(--primary);
  background: rgba(11, 59, 110, 0.06);
  border: 1px solid rgba(11, 59, 110, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 20px;
}

#why-brk h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

.why-brk-sticky-sidebar p {
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* RIGHT SIDE: PILLARS FEEDS MATRIX */
.why-brk-pillars-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-pillar-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.why-pillar-card:hover {
  transform: translateX(6px); /* Clean interactive horizontal glide nudge */
  border-color: var(--accent);
}

.why-pillar-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.why-pillar-content h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px 0;
}

.why-pillar-content p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* ========================================= */
/* 💻 PREMIUM MOBILE BREAKPOINT ADAPTATIONS  */
/* ========================================= */

@media (max-width: 1024px) {
  .why-brk-container {
    grid-template-columns: 1fr; /* Turns into a standard vertical top-to-bottom grid block */
    gap: 48px;
  }

  .why-brk-sticky-sidebar {
    position: static; /* Disables sticky logic on portable screen fields */
  }

  #why-brk h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .why-pillar-card {
    flex-direction: column; /* Stacks the numeric bubble above the description on mobile phones */
    gap: 16px;
    padding: 28px;
  }
}

/* ========================================= */
/* 09. FOUNDER SECTION STYLES                */
/* ========================================= */
#founder {
  padding: var(--section-padding);
  background-color: var(--bg-light); /* Off-white tint break */
  border-bottom: 1px solid var(--border);
}
.founder-grid-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}
.founder-badge {
  color: var(--primary);
  background: rgba(11, 59, 110, 0.06);
  border: 1px solid rgba(11, 59, 110, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 24px;
}
#founder h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}
.founder-quote {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-medium);
  font-style: italic;
  margin: 0 0 32px 0;
}
.founder-signature h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 2px 0;
}
.founder-signature p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--accent);
  margin: 0;
}
.founder-visual-block {
  display: flex;
  justify-content: center;
}
.founder-avatar-frame {
  font-size: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  width: 240px;
  height: 240px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================
   ABOUT SECTION
=================================== */

#about {
  background: var(--bg-light);
}

.about-container {
  display: flex;
  justify-content: center;
}

.about-card-wrapper {
  width: 100%;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  padding: 60px;

  box-shadow: var(--shadow-md);
}

.about-meta-content {
  max-width: 800px;

  margin-bottom: 50px;
}

.about-badge {
  display: inline-flex;

  align-items: center;

  background: rgba(11, 59, 110, 0.08);

  color: var(--primary);

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;
}

.about-meta-content h2 {
  font-size: 48px;

  color: var(--primary);

  margin-bottom: 24px;

  line-height: 1.2;
}

.about-meta-content p {
  font-size: 18px;

  color: var(--text-medium);

  margin-bottom: 18px;

  max-width: 750px;
}

/* ==========================
   STATS GRID
========================== */

.about-stats-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  margin-bottom: 40px;
}

.about-stat-card {
  text-align: center;

  padding: 30px 20px;

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  background: var(--bg-light);

  transition: var(--transition);
}

.about-stat-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow-sm);
}

.about-stat-card h3 {
  font-size: 42px;

  color: var(--primary);

  margin-bottom: 10px;
}

.about-stat-card span {
  color: var(--text-medium);

  font-weight: 500;
}

/* ==========================
   TRUST GRID
========================== */

.about-trust-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.trust-item {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 18px;

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  background: var(--white);
}

.trust-item span {
  font-size: 22px;
}

.trust-item p {
  color: var(--text-dark);

  font-weight: 500;

  margin: 0;
}

/* ===================================
   TABLET
=================================== */

@media (max-width: 1024px) {
  .about-card-wrapper {
    padding: 50px 40px;
  }

  .about-meta-content h2 {
    font-size: 38px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {
  .about-card-wrapper {
    padding: 35px 25px;
  }

  .about-meta-content h2 {
    font-size: 32px;
  }

  .about-meta-content p {
    font-size: 16px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-card h3 {
    font-size: 36px;
  }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {
  .about-card-wrapper {
    padding: 25px 20px;
  }

  .about-meta-content h2 {
    font-size: 28px;
  }

  .about-badge {
    font-size: 12px;
  }
}

/* ===================================
CTA SECTION
=================================== */

#cta {
  background: linear-gradient(180deg, var(--bg-light), var(--white));
}

.cta-banner-card {
  text-align: center;
  padding: 80px 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-mini-tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.cta-banner-card h2 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.cta-banner-card p {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* CTA BUTTONS */

.btn-primary-cta {
  background: var(--white);
  color: var(--primary);
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
}

.btn-secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* TRUST ROW */

.cta-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

/* ===================================
TABLET
=================================== */

@media (max-width: 1024px) {
  .cta-banner-card {
    padding: 60px 40px;
  }

  .cta-banner-card h2 {
    font-size: 42px;
  }
}

/* ===================================
MOBILE
=================================== */

@media (max-width: 768px) {
  .cta-banner-card {
    padding: 50px 25px;
  }

  .cta-banner-card h2 {
    font-size: 32px;
  }

  .cta-banner-card p {
    font-size: 16px;
  }

  .cta-actions-row {
    flex-direction: column;

    align-items: center;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;

    max-width: 320px;

    text-align: center;
  }
}

/* ===================================
SMALL MOBILE
=================================== */

@media (max-width: 480px) {
  .cta-banner-card h2 {
    font-size: 28px;
  }

  .cta-mini-tag {
    font-size: 12px;
  }
}

/* ===================================
DEMO MODAL
=================================== */

.demo-modal {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: none;

  align-items: center;

  justify-content: center;
}

.demo-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(6px);
}

.modal-wrapper {
  position: relative;

  width: min(1100px, 92vw);

  background: white;

  border-radius: 24px;

  overflow: hidden;

  z-index: 2;

  box-shadow: var(--shadow-lg);
}

.modal-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;
}

.modal-content {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));

  color: white;

  padding: 60px;
}

.modal-badge {
  display: inline-block;

  padding: 8px 16px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 42px;

  margin-bottom: 20px;
}

.modal-content p {
  opacity: 0.9;

  margin-bottom: 30px;
}

.modal-benefits {
  display: flex;

  flex-direction: column;

  gap: 16px;
}

.benefit-item {
  font-weight: 500;
}

.modal-form {
  padding: 60px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;

  padding: 14px;

  border: 1px solid var(--border);

  border-radius: 10px;
}

.btn-submit-demo {
  width: 100%;

  border: none;

  padding: 16px;

  background: var(--primary);

  color: white;

  border-radius: 10px;

  cursor: pointer;

  font-weight: 600;
}

.modal-close {
  position: absolute;

  top: 20px;

  right: 20px;

  width: 40px;

  height: 40px;

  border: none;

  border-radius: 50%;

  background: white;

  cursor: pointer;

  font-size: 24px;

  z-index: 10;
}

/* ==========================
MOBILE
========================== */

@media (max-width: 900px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-content,
  .modal-form {
    padding: 40px 25px;
  }

  .modal-content h2 {
    font-size: 32px;
  }
}

/* ==================================
   FOOTER
================================== */

#main-footer {
  background: var(--bg-dark);

  color: var(--white);

  margin-top: 120px;
}

/* TOP */

.footer-top {
  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr;

  gap: 60px;

  padding: 80px 0;
}

.footer-logo {
  height: 60px;

  width: auto;

  margin-bottom: 24px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.75);

  line-height: 1.8;

  margin-bottom: 24px;

  max-width: 420px;
}

.footer-socials {
  display: flex;

  gap: 20px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.8);

  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--white);
}

/* LINKS */

.footer-links h4 {
  margin-bottom: 24px;

  font-size: 18px;
}

.footer-links ul {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);

  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* CTA */

.footer-cta {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  padding: 40px;

  margin-bottom: 50px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: var(--radius-lg);

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
}

.footer-cta-content h3 {
  font-size: 32px;

  margin-bottom: 10px;
}

.footer-cta-content p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-cta-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 28px;

  background: var(--white);

  color: var(--primary);

  border-radius: var(--radius-sm);

  font-weight: 600;

  white-space: nowrap;
}

/* BOTTOM */

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  padding: 30px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;

  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
}

/* ==================================
   TABLET
================================== */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns:
      1fr
      1fr;

    gap: 50px;
  }

  .footer-cta {
    flex-direction: column;

    text-align: center;
  }
}

/* ==================================
   MOBILE
================================== */

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;

    gap: 40px;

    padding: 60px 0;
  }

  .footer-cta {
    padding: 30px 20px;
  }

  .footer-cta-content h3 {
    font-size: 28px;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}
