/* ============================================================
   KLINIX CAPITAL INSURANCE — Master Stylesheet
   Brand: Guard Blue #1E3A5F | Ocean Blue #2E5A8F | Aqua #3BACDE
   ============================================================ */

/* ---------- CSS Custom Properties (Theming) ---------- */
:root {
  /* Brand Colors */
  --color-primary:    #1E3A5F;
  --color-secondary:  #2E5A8F;
  --color-accent:     #3BACDE;
  --color-neutral:    #F8FAFB;
  --color-text:       #3A4A5C;
  --color-white:      #FFFFFF;
  --color-dark:       #0F2137;

  /* Status Colors */
  --color-success:    #27AE60;
  --color-warning:    #F39C12;
  --color-error:      #E74C3C;

  /* Typography */
  --font-primary: 'Segoe UI', Arial, Helvetica, sans-serif;
  --font-mono:    'Consolas', 'Courier New', monospace;

  /* Spacing */
  --section-pad:  80px;
  --container-w:  1200px;

  /* Transitions */
  --transition:   all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary); text-decoration: underline; }
ul, ol { list-style: none; }

/* ---------- Skip Link (A11y) ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 0.75em;
}
h1 { font-size: 2.25rem; font-weight: 300; }
h2 { font-size: 1.75rem; font-weight: 300; }
h3 { font-size: 1.25rem; font-weight: 400; }
h4 { font-size: 1.1rem;  font-weight: 600; }

p { margin-bottom: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }
.text-white { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  min-height: 48px;
  min-width: 48px;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: transparent;
  color: var(--color-white);
}

.btn:disabled, .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.logo svg { flex-shrink: 0; }
.logo:hover { color: var(--color-primary); text-decoration: none; }
.logo-text span { font-weight: 600; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  border-radius: 4px;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  background: var(--color-neutral);
}
.main-nav .btn { margin-left: 0.5rem; padding: 0.55rem 1.25rem; font-size: 0.85rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  min-width: 260px;
  padding: 0.5rem 0;
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 0;
}
.dropdown-menu .dropdown-label {
  padding: 0.6rem 1.25rem 0.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  font-weight: 600;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-height: 48px;
  min-width: 48px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 60%, var(--color-dark) 100%);
  color: var(--color-white);
  padding: 100px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 60px solid rgba(59,172,222,0.08);
  border-radius: 0;
  transform: rotate(15deg);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border: 40px solid rgba(59,172,222,0.06);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  color: var(--color-white);
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 0.5em;
  max-width: 700px;
}
.hero .subheadline {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 600px;
  line-height: 1.7;
}
.hero .mission {
  font-size: 0.95rem;
  opacity: 0.75;
  max-width: 650px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-ctas .link-cta { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.hero-ctas .link-cta:hover { color: #fff; }

/* ---------- Section Utilities ---------- */
.section { padding: var(--section-pad) 0; }
.section--gray { background: var(--color-neutral); }
.section--dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.section--dark h2,
.section--dark h3 { color: var(--color-white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header p { color: #64748B; }

/* ---------- Value Props (3 col) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: 0 8px 30px rgba(30,58,95,0.08);
  transform: translateY(-3px);
}
.value-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,172,222,0.1);
  border-radius: 12px;
}
.value-card .icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: #64748B; }

/* ---------- Product Architecture Section ---------- */
.product-arch { padding: var(--section-pad) 0; }
.product-arch h2 { margin-bottom: 0.5rem; }
.product-arch .intro { max-width: 800px; margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.8; }
.product-group { margin-bottom: 2.5rem; }
.product-group h3 {
  font-size: 1.15rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}
.product-list { display: grid; gap: 1rem; }
.product-list-item {
  padding: 1.25rem 1.5rem;
  background: var(--color-neutral);
  border-radius: 6px;
  border-left: 4px solid var(--color-accent);
}
.product-list-item strong { color: var(--color-primary); }
.product-list-item p { margin: 0; font-size: 0.9rem; line-height: 1.65; }

.integration-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  padding: 2.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.integration-box h3 { color: #fff; margin-bottom: 0.75rem; }
.integration-box ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.integration-box li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  opacity: 0.92;
}
.integration-box li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); }

/* ---------- Pillar Grid (6 col) ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  transition: var(--transition);
}
.pillar-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 24px rgba(30,58,95,0.08);
}
.pillar-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,172,222,0.1);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.pillar-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.85rem; color: #64748B; margin-bottom: 0.75rem; }
.pillar-card a { font-size: 0.85rem; font-weight: 600; }

/* ---------- Provider Ecosystem ---------- */
.provider-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.provider-image {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 12px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.provider-image::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
}
.provider-image svg { opacity: 0.25; }
.provider-types { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.provider-type {
  padding: 1rem 1.25rem;
  background: var(--color-neutral);
  border-radius: 6px;
  border-left: 3px solid var(--color-accent);
  font-size: 0.88rem;
}
.provider-type strong { display: block; color: var(--color-primary); margin-bottom: 0.15rem; }

/* ---------- Trust / Credentials ---------- */
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  flex: 0 1 180px;
}
.trust-item .number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-primary);
  display: block;
}
.trust-item .label {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 0.25rem;
}

/* ---------- Triple CTA ---------- */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cta-card {
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  text-align: center;
}
.cta-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.cta-card p { font-size: 0.88rem; color: #64748B; margin-bottom: 1.25rem; }

/* ---------- Tabs ---------- */
.tabs { margin-bottom: 2rem; }
.tab-nav {
  display: flex;
  border-bottom: 2px solid #E2E8F0;
  gap: 0;
}
.tab-btn {
  padding: 0.85rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: #94A3B8;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
}
.tab-btn:hover { color: var(--color-primary); }
.tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}
.tab-panel { display: none; padding-top: 2rem; }
.tab-panel.active { display: block; }

/* ---------- Product Cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 8px 30px rgba(30,58,95,0.08);
  border-color: var(--color-accent);
}
.product-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,172,222,0.1);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.product-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.product-card .desc { font-size: 0.85rem; color: #64748B; margin-bottom: 1rem; }
.product-card .features {
  font-size: 0.8rem;
  color: #64748B;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.product-card .features li {
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}
.product-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
}
.product-card .btn { width: 100%; font-size: 0.85rem; padding: 0.65rem 1rem; }

/* PC grid 3 col for P&C */
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Segment Tabs (Who We Serve) ---------- */
.segment-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.segment-btn {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid #E2E8F0;
  background: var(--color-white);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
  min-height: 48px;
}
.segment-btn:hover,
.segment-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.segment-panel { display: none; }
.segment-panel.active { display: block; }
.segment-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.segment-priorities { margin: 1.5rem 0; }
.segment-priorities li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
}
.segment-priorities li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}
.segment-solutions .product-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(59,172,222,0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  margin: 0.2rem;
}

/* ---------- Resource Cards ---------- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.resource-card {
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 1.5rem;
  transition: var(--transition);
}
.resource-card:hover {
  box-shadow: 0 6px 24px rgba(30,58,95,0.06);
}
.resource-card .meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #94A3B8;
  margin-bottom: 0.75rem;
}
.resource-card .meta .badge {
  background: rgba(59,172,222,0.12);
  color: var(--color-secondary);
  padding: 0.15rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
}
.resource-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.resource-card p { font-size: 0.85rem; color: #64748B; }
.resource-card .btn { margin-top: 1rem; font-size: 0.82rem; padding: 0.5rem 1rem; }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--color-accent);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-white);
}
.timeline-item .year {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
}
.timeline-item p { font-size: 0.88rem; color: #64748B; margin: 0; }

/* ---------- Team Grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
}
.team-card .avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 300;
}
.team-card h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.team-card .title { font-size: 0.82rem; color: var(--color-accent); margin-bottom: 0.75rem; }
.team-card p { font-size: 0.82rem; color: #64748B; }

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(59,172,222,0.06);
  border-radius: 8px;
}
.stat-card .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-primary);
}
.stat-card .label { font-size: 0.85rem; color: #64748B; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  color: var(--color-text);
  transition: var(--transition);
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59,172,222,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .error-msg {
  font-size: 0.78rem;
  color: var(--color-error);
  margin-top: 0.25rem;
  display: none;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: var(--color-error); }
.form-group.error .error-msg { display: block; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.checkbox-group input[type="checkbox"] {
  min-width: 20px;
  min-height: 20px;
  margin-top: 0.15rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Contact Page ---------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-method {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-neutral);
  border-radius: 8px;
}
.contact-method .icon-circle {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(59,172,222,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.contact-method p { font-size: 0.85rem; color: #64748B; margin: 0; }

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comparison-table thead th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 600;
}
.comparison-table tbody td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #E2E8F0;
}
.comparison-table tbody tr:nth-child(even) { background: var(--color-neutral); }
.comparison-table .check { color: var(--color-success); font-weight: 700; }
.comparison-table .cross { color: #CBD5E1; }

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(59,172,222,0.07);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--color-white); font-size: 2.25rem; margin-bottom: 0.35rem; }
.page-hero .category { font-size: 0.85rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.88; max-width: 600px; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.breadcrumb a { color: var(--color-white); opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { margin: 0 0.35rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-mark {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-brand .logo-mark svg rect:first-child { fill: none; stroke: rgba(255,255,255,0.55); }
.footer-brand .logo-mark svg rect:last-child  { fill: rgba(255,255,255,0.9); stroke: none; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; opacity: 0.7; }
.footer-address { margin-top: 1rem; font-size: 0.82rem; line-height: 1.7; opacity: 0.6; }
.footer-address strong { opacity: 1; color: rgba(255,255,255,0.8); }
.footer-col h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-col a:hover { color: var(--color-accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 1.5rem; }

/* ---------- Job Listings ---------- */
.job-list { display: grid; gap: 1rem; }
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--color-neutral);
  border-radius: 6px;
  border: 1px solid #E2E8F0;
}
.job-card h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.job-card .job-meta { font-size: 0.8rem; color: #94A3B8; }
.job-card .btn { flex-shrink: 0; font-size: 0.82rem; padding: 0.5rem 1rem; }

/* ---------- Values Grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.values-card {
  padding: 2rem;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  border-top: 4px solid var(--color-accent);
}
.values-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.values-card p { font-size: 0.88rem; color: #64748B; }

/* ---------- Accordion (Product Detail) ---------- */
.accordion-item {
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--color-neutral);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-primary);
  min-height: 48px;
}
.accordion-header::after { content: '+'; font-size: 1.2rem; transition: var(--transition); }
.accordion-item.open .accordion-header::after { content: '−'; }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body-inner { padding: 1.25rem; font-size: 0.9rem; line-height: 1.7; }

/* ---------- Quote Form Multi-Step ---------- */
.quote-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}
.quote-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: #94A3B8;
  position: relative;
}
.quote-step.active { color: var(--color-primary); font-weight: 600; }
.quote-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.quote-step.active .step-num {
  background: var(--color-accent);
  color: var(--color-white);
}
.quote-step:not(:last-child)::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #E2E8F0;
  position: absolute;
  right: -20px;
}

/* ---------- Alert / Banner ---------- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
.alert--success { background: #F0FDF4; border-left: 4px solid var(--color-success); color: #166534; }
.alert--error   { background: #FEF2F2; border-left: 4px solid var(--color-error);   color: #991B1B; }
.alert--info    { background: #EFF6FF; border-left: 4px solid var(--color-accent);  color: var(--color-primary); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--color-accent); }
