/* ===========================================================
   ENVILEDGE — MAIN STYLESHEET
   Theme: Dark navy background + teal/emerald green accents
   ===========================================================
   TABLE OF CONTENTS
   ---------------------------------------------------------
   1.  CSS Variables (Theme Colors / Fonts / Sizes)
   2.  Global Reset & Base Tag Styles
   3.  Utility / Layout Helpers (container, bg-dots)
   4.  Eyebrow / Small Label Tags
   5.  CSS Variables (Header Overrides) + Base Overflow Fix
   6.  Site Header / Navigation          (+ responsive)
   7.  Buttons                          (+ responsive)
   8.  Mobile Hamburger Toggle
   9.  Responsive: Header / Nav (breakpoints)
   10. Hero Section                     (+ responsive)
   11. Stats Bar                        (+ responsive)
   12. Section Wrapper / Section Heading
   13. Cards Grid                       (+ responsive)
   14. Checklist (generic)
   15. Pipeline / Steps Row (generic)   (+ responsive)
   16. Two Column Layout                (+ responsive)
   17. Visual Box / Core Rings Graphic
   18. Map / Global Dots Graphic
   19. Testimonials
   20. CTA Banner
   21. Footer                           (+ responsive)
   22. Badge / Tag Pills
   23. Accordion List Rows (Industries) (+ responsive)
   24. Data Table
   25. Dashboard Panel                  (+ responsive)
   26. Code Block
   27. Timeline
   28. Form                             (+ responsive)
   29. Role Table (Careers)             (+ responsive)
   30. Note Box
   31. Utility Classes (spacing/visibility)
   32. Responsive: Global (1024px / 720px / 480px breakpoints)
   33. Solutions Page — Hero Split Section (+ responsive)
   34. Solutions Page — Checklist
   35. Solutions Page — Interactive Pipeline Card (+ responsive)
=========================================================== */
/* ===== 1. CSS VARIABLES (THEME) ===== */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f8f6;
  --bg-card: #ffffff;
  --bg-card-hover: #eef6f1;
  --bg-dark: #f7faf8;

  --border: #e2e8e4;
  --border-light: #d3dbd6;

  --text-primary: #10241b;
  --text-secondary: #55635c;
  --text-muted: #8a978f;

  --accent: #0f9d63;
  --accent-dark: #0b7a4c;
  --accent-soft: rgba(15, 157, 99, 0.10);

  --blue: #4f7cff;
  --blue-soft: rgba(79, 124, 255, 0.10);

  --radius: 10px;
  --radius-lg: 14px;
  --max-width: 1280px;
  --header-h: 72px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: var(--font);
}

/* ===== 2. GLOBAL RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Sticky header properly work kare iske liye overflow clip use kiya hai */
  overflow-x: clip; 
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* body par overflow-x hidden hataya gaya hai taaki position sticky break na ho */
  overflow-x: clip; 
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

/* ===== 3. UTILITY / LAYOUT HELPERS ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.bg-dots {
  background-image: radial-gradient(circle, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ===== 4. EYEBROW / SMALL LABEL TAGS ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.eyebrow.pill {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--text-secondary);
}

.eyebrow.pill::before {
  display: none;
}

/* ===== 5. SITE HEADER / NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo svg {
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  padding: 8px 14px;
  border-radius: 999px;
}

/* Hover State */
.nav-links a:hover {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

/* Active Menu State Override - High Priority */
.nav-links a.active,
.nav-links a.active:visited {
  color: #ffffff !important;
  background-color: var(--accent) !important;
  font-weight: 700 !important;
}

.nav-links a.active:hover {
  color: #ffffff !important;
  background-color: var(--accent-dark) !important;
}

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

/* ===== 6. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

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

.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

/* ===== 7. MOBILE HAMBURGER TOGGLE ===== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.25s ease-in-out;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== 8. RESPONSIVE NAVIGATION ===== */
@media (max-width: 1100px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 8px 10px;
  }
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    gap: 4px;
    border-top: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 16px;
    padding: 16px 14px;
    border-radius: 10px;
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .logo span {
    font-size: 16px;
  }

  .btn-sm {
    padding: 6px 10px;
    font-size: 12px;
  }
}

/* ===== 10. HERO SECTION ===== */
.hero {
  padding: 90px 0 60px;
  position: relative;
}

.hero-inner {
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 34px;
}

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

.hero-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== 11. STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
  background: var(--bg-card);
}

.stat-item {
  padding: 26px 24px;
  border-right: 1px solid var(--border);
}

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

.stat-num {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== 12. SECTION WRAPPER / SECTION HEADING ===== */
.section {
  padding: 90px 0;
  border-top: 1px solid var(--border);
}

.section.alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* ===== 13. CARDS GRID ===== */
.grid {
  display: grid;
  gap: 20px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s ease;
}

.card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.icon-box.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.icon-box svg {
  width: 20px;
  height: 20px;
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-secondary);
  font-size: 14.5px;
}

/* ===== 14. CHECKLIST (GENERIC) =====
   NOTE: .checklist / .checklist li are redefined again in Section 34
   (Solutions Page Checklist) further down the file. Since that
   later block shares the same selectors/specificity, its matching
   properties (margin, gap, color, font-size, align-items) win over
   these for any element on the page. Kept in original order on
   purpose so current visuals don't change. */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

.checklist svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 2px;
}

/* ===== 15. PIPELINE / STEPS ROW (GENERIC) ===== */
.pipeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  gap: 10px;
  overflow-x: auto;
}

/* NOTE: .pipeline-step and .pipeline-circle are redefined again in
   Section 35 (Solutions Page Interactive Pipeline) further down.
   That later block's matching properties (background, border,
   border-radius, color) win over these. Kept in original order on
   purpose so current visuals don't change. */
.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
  position: relative;
}

.pipeline-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
  background: var(--bg);
  z-index: 2;
}

.pipeline-step h4 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pipeline-step span {
  font-size: 12px;
  color: var(--text-muted);
}

.pipeline-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--border-light));
  margin-top: 26px;
  min-width: 20px;
}

/* ===== 16. TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse>* {
  direction: ltr;
}

/* ===== 17. VISUAL BOX / CORE RINGS GRAPHIC ===== */
.visual-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.core-rings {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent-dark);
  opacity: 0.5;
}

.ring.r1 {
  width: 220px;
  height: 220px;
}

.ring.r2 {
  width: 165px;
  height: 165px;
  opacity: 0.7;
}

.ring.r3 {
  width: 110px;
  height: 110px;
  border-style: dashed;
  opacity: 0.9;
}

.core-center {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: #04140f;
  box-shadow: 0 0 40px rgba(20, 224, 160, 0.5);
  z-index: 3;
}

/* ===== 18. MAP / GLOBAL DOTS GRAPHIC ===== */
.map-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 320px;
  position: relative;
  overflow: hidden;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(20, 224, 160, 0.15);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-dot::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== 19. TESTIMONIALS ===== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.testimonial-card p.quote {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .attribution {
  font-size: 12.5px;
  color: var(--text-muted);
  font-family: var(--mono);
}

/* ===== 20. CTA BANNER ===== */
.cta-banner {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 90px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.cta-banner .hero-cta {
  justify-content: center;
}

/* ===== 21. FOOTER ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 44px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13.5px;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-newsletter {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  max-width: 260px;
}

.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
}

.footer-newsletter button {
  background: var(--accent);
  color: #04140f;
  padding: 0 16px;
  font-weight: 700;
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* ===== 22. BADGE / TAG PILLS ===== */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: all 0.2s;
}

.tag.active,
.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* ===== 23. ACCORDION LIST ROWS (INDUSTRIES PAGE) ===== */
.list-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-bottom: 18px;
  align-items: center;
}

.list-row-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.list-row-left .icon-box {
  margin-bottom: 0;
  flex-shrink: 0;
}

.list-row h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.list-row .label-sm {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.list-row p {
  font-size: 14px;
  color: var(--text-secondary);
}

.list-row .solution-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ===== 24. DATA TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
}

.data-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text-secondary);
}

.data-table td.strong {
  color: var(--text-primary);
  font-weight: 600;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.status-active {
  color: var(--accent);
  font-weight: 600;
}

.status-watch {
  color: var(--blue);
  font-weight: 600;
}

.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.table-wrap-scroll {
  overflow-x: auto;
}

/* ===== 25. DASHBOARD PANEL ===== */
.dash-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

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

.dash-stats .stat-num {
  font-size: 26px;
}

/* ===== 26. CODE BLOCK ===== */
.code-block {
  background: #0d1a14;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.8;
  overflow-x: auto;
  color: #c9d6cf;
}

.code-block .key {
  color: var(--accent);
}

.code-block .str {
  color: #f0b874;
}

.code-block .ok {
  color: var(--accent);
}

/* ===== 27. TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 1.5px solid var(--border-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}

.timeline-year {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--text-secondary);
  font-size: 14.5px;
}

/* ===== 28. FORM (CONTACT PAGE) ===== */
.form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

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

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

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

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.form-msg {
  margin-top: 16px;
  font-size: 13.5px;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}

.form-msg.show {
  display: block;
}

.form-msg.success {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-dark);
}

/* ===== 29. ROLE TABLE (CAREERS PAGE) ===== */
.role-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.role-row:last-child {
  border-bottom: none;
}

.role-row .role-name {
  font-weight: 700;
  font-size: 14.5px;
  flex: 2;
}

.role-row .role-dept,
.role-row .role-loc {
  flex: 1;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ===== 30. NOTE BOX ===== */
.note-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px;
  text-align: center;
}

.note-box p {
  color: var(--text-secondary);
  font-size: 14.5px;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== 31. UTILITY CLASSES (SPACING / VISIBILITY) ===== */
.mt-0 {
  margin-top: 0;
}

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

.hide-mobile {
  display: block;
}

.show-mobile {
  display: none;
}

/* ===================================================
   32. RESPONSIVE — GLOBAL BREAKPOINTS
   Covers multiple sections at once, grouped below by
   breakpoint (as in the original layout) and labeled by
   which section each rule belongs to.
=================================================== */

/* -- Tablet / small desktop (<=1024px) -- */
@media (max-width: 1024px) {

  /* Header / Nav (Section 6): hide desktop links, show hamburger */
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Cards Grid (Section 13): drop to 2 columns */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Footer (Section 21): 2-column layout */
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  /* Stats Bar (Section 11): 2x2 grid */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item {
    border-bottom: 1px solid var(--border);
  }

  /* Two Column Layout (Section 16): stack into 1 column */
  .two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .two-col.reverse {
    direction: ltr;
  }

  /* Dashboard Panel (Section 25): 2-column stats */
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -- Mobile (<=720px) -- */
@media (max-width: 720px) {

  /* Base Container (Section 3): tighter side padding */
  .container {
    padding: 0 20px;
  }

  /* Hero Section (Section 10) */
  .hero {
    padding: 40px 0 40px;
  }

  /* Cards Grid (Section 13): single column */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Stats Bar (Section 11): single column */
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
  }

  /* Section Wrapper (Section 12): less vertical padding */
  .section {
    padding: 60px 0;
  }

  /* Accordion List Rows (Section 23): single column */
  .list-row {
    grid-template-columns: 1fr;
  }

  /* Form (Section 28): single column fields */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer (Section 21): single column */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Pipeline / Steps Row (Section 15): stack vertically */
  .pipeline {
    flex-direction: column;
    align-items: stretch;
  }

  .pipeline-line {
    width: 1px;
    height: 24px;
    margin: 0 0 0 26px;
  }

  /* Hero CTA buttons (Section 10): full width, stacked */
  .hero-cta .btn {
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  /* Role Table (Section 29): stack row content */
  .role-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Dashboard Panel (Section 25): 2-column stats */
  .dash-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Utility Classes (Section 31): mobile show/hide swap */
  .hide-mobile {
    display: none;
  }

  .show-mobile {
    display: block;
  }

  /* Header / Nav (Section 6): mobile nav drawer */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 30px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 14px 14px;
    font-size: 17px;
    /* border-bottom: 1px solid var(--border); */
    width: 100%;
  }

  .nav-links a.active::after {
    display: none;
  }

  /* Header / Nav (Section 6): hide outline button, keep primary CTA */
  .nav-actions .btn-outline {
    display: none;
  }
}

/* -- Small phones (<=480px) -- */
@media (max-width: 480px) {

  /* Stats Bar (Section 11): 2x2 grid */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== 33. SOLUTIONS PAGE — HERO SPLIT SECTION ===== */
.solution-section {
  background-color: var(--bg-alt);
  color: var(--text-primary);
  font-family: var(--font);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.solution-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

/* -- Responsive (<=992px): stack the two-column hero split into one -- */
@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* -- Content Styling (pill label, title, description text) -- */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(20, 224, 160, 0.2);
  margin-bottom: 20px;
}

.solution-title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.solution-desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ===== 34. SOLUTIONS PAGE — CHECKLIST =====
   NOTE: this overrides the generic .checklist / .checklist li from
   Section 14 for matching properties (see warning note there). */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
}

.checklist-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(20, 224, 160, 0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== 35. SOLUTIONS PAGE — INTERACTIVE PIPELINE CARD =====
   NOTE: .pipeline-step and .pipeline-circle here override the
   generic Pipeline styles from Section 15 (see warning note there). */
.pipeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.pipeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.pipeline-circle {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.pipeline-circle svg {
  width: 24px;
  height: 24px;
}

.pipeline-step:hover .pipeline-circle {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px var(--accent-soft);
  transform: translateY(-3px);
}

.pipeline-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.pipeline-step span {
  font-size: 12px;
  color: var(--text-muted);
}

/* -- Connector Line (between pipeline circles) -- */
.pipeline-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

/* -- Responsive (<=640px): stack pipeline steps vertically -- */
@media (max-width: 640px) {
  .pipeline-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .pipeline-step {
    flex-direction: row;
    gap: 16px;
    text-align: left;
  }

  .pipeline-circle {
    margin-bottom: 0;
  }

  .pipeline-line {
    width: 2px;
    height: 24px;
    margin-top: 0;
    margin-left: 25px;
  }
}