/* ============================================
   UNCLAIMED IQ — GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-navy: #0D2240;
  --color-navy-mid: #1a3a60;
  --color-teal: #1A8A8A;
  --color-teal-light: #2ABFBF;
  --color-white: #FFFFFF;
  --color-bg-light: #F4F7FA;
  --color-text: #333D47;
  --color-text-muted: #6B7785;
  --color-border: #DDE3EA;

  --font-display: 'DM Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-card: 12px;
  --radius-btn: 6px;
  --shadow-card: 0 4px 24px rgba(13, 34, 64, 0.08);
  --shadow-card-hover: 0 8px 40px rgba(13, 34, 64, 0.14);

  --spacing-section: 88px;
  --spacing-gap: 32px;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { line-height: 1.7; color: var(--color-text); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}
.btn-primary:hover {
  background: var(--color-teal-light);
  border-color: var(--color-teal-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 138, 138, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

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

/* ---- CIRCUIT PATTERN (SVG background) ---- */
.circuit-bg {
  position: relative;
  overflow: hidden;
}
.circuit-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.08'%3E%3Cpath d='M10 10 h10 v10 h10'/%3E%3Cpath d='M40 10 h10 v10'/%3E%3Cpath d='M10 40 v10 h10'/%3E%3Cpath d='M40 40 h10 v10 h-10'/%3E%3Ccircle cx='10' cy='10' r='2' fill='%23ffffff' opacity='0.15'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ffffff' opacity='0.15'/%3E%3Ccircle cx='50' cy='50' r='2' fill='%23ffffff' opacity='0.15'/%3E%3Ccircle cx='50' cy='10' r='2' fill='%23ffffff' opacity='0.15'/%3E%3Ccircle cx='10' cy='50' r='2' fill='%23ffffff' opacity='0.15'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.circuit-bg > * { position: relative; z-index: 1; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(13,34,64,0.06);
  transition: box-shadow 0.2s;
}

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

.logo-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
}
.logo-name span { color: var(--color-teal); }
.logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--color-teal);
  background: rgba(26,138,138,0.07);
}

.nav-cta { margin-left: 12px; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 16px 24px 20px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}

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

.footer-logo .logo-name { color: var(--color-white); font-size: 1.2rem; }
.footer-logo .logo-tagline { color: var(--color-teal-light); }
.footer-logo p { font-size: 0.85rem; margin-top: 12px; line-height: 1.6; color: rgba(255,255,255,0.6); }

.footer-nav h4 { color: var(--color-white); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-nav a:hover { color: var(--color-teal-light); }

.footer-contact h4 { color: var(--color-white); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-contact p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ---- HERO (dark navy) ---- */
.hero-dark {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 100px 0 96px;
  text-align: center;
}
.hero-dark h1 { color: var(--color-white); margin-bottom: 20px; }
.hero-dark .hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* hero light */
.hero-light {
  background: var(--color-bg-light);
  padding: 80px 0 72px;
  border-bottom: 3px solid var(--color-teal);
}
.hero-light h1 { color: var(--color-navy); margin-bottom: 16px; }
.hero-light .hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- SECTION BASE ---- */
.section { padding: var(--spacing-section) 0; }
.section-light { background: var(--color-bg-light); }
.section-navy { background: var(--color-navy); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { font-size: 1.05rem; color: var(--color-text-muted); max-width: 580px; margin: 16px auto 0; }

/* ---- CARDS ---- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,138,138,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

/* ---- GRID LAYOUTS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--spacing-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-bottom: 48px;
}
.process-step {
  flex: 1;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 32px 24px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  text-align: center;
}
.process-step:first-child {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  border-radius: 8px 0 0 8px;
}
.process-step:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
  border-radius: 0 8px 8px 0;
}
.process-step:nth-child(2) { background: #15537a; }
.process-step:nth-child(3) { background: #156d7a; }
.process-step:nth-child(4) { background: var(--color-teal); }

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 6px;
}
.process-step h3 { color: var(--color-white); font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ---- COMPARISON TABLE ---- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.comparison-table th {
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
}
.comparison-table th:first-child { background: var(--color-bg-light); color: var(--color-text-muted); width: 140px; }
.comparison-table th:nth-child(2) { background: #eef2f7; color: var(--color-text-muted); }
.comparison-table th:nth-child(3) { background: var(--color-navy); color: var(--color-white); }
.comparison-table td {
  padding: 20px 24px;
  font-size: 0.9rem;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { background: var(--color-bg-light); font-weight: 600; font-family: var(--font-display); color: var(--color-navy); font-size: 0.85rem; }
.comparison-table td:nth-child(2) { background: var(--color-white); color: var(--color-text-muted); }
.comparison-table td:nth-child(3) { background: #f0f9f9; color: var(--color-navy); font-weight: 500; }
.teal-check { color: var(--color-teal); margin-right: 6px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--color-navy);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ---- ACCORDION ---- */
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 12px;
}
.accordion-btn {
  width: 100%;
  background: var(--color-white);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  transition: background 0.15s;
}
.accordion-btn:hover { background: var(--color-bg-light); }
.accordion-btn.active { background: var(--color-navy); color: var(--color-white); }
.accordion-icon { font-size: 1.2rem; transition: transform 0.2s; }
.accordion-btn.active .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 20px 24px; background: var(--color-bg-light); }
.accordion-body.open { display: block; }
.accordion-body ul { display: flex; flex-direction: column; gap: 8px; }
.accordion-body li { font-size: 0.92rem; color: var(--color-text); padding-left: 20px; position: relative; }
.accordion-body li::before { content: '→'; position: absolute; left: 0; color: var(--color-teal); font-weight: 700; }

/* ---- CONTACT FORM ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(26,138,138,0.12);
}
input.error, select.error, textarea.error { border-color: #c0392b; }
.error-msg { font-size: 0.8rem; color: #c0392b; margin-top: 4px; display: none; }
.error-msg.show { display: block; }
textarea { resize: vertical; min-height: 130px; }

.contact-sidebar .card { background: var(--color-bg-light); box-shadow: none; border: 1px solid var(--color-border); }
.contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.contact-item-icon { font-size: 1.2rem; margin-top: 2px; }
.contact-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 2px; }
.contact-item p { font-size: 0.9rem; color: var(--color-navy); font-weight: 500; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: #f0f9f9;
  border-radius: var(--radius-card);
  border: 2px solid var(--color-teal);
}
.form-success.show { display: block; }
.success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success h3 { color: var(--color-navy); margin-bottom: 8px; }
.form-success p { color: var(--color-text-muted); }

/* ---- TEAM CARD ---- */
.team-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px;
  max-width: 860px;
  margin: 0 auto;
}
.team-photo {
  width: 260px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-card);
  flex-shrink: 0;
}
.team-bio h3 { font-size: 1.4rem; color: var(--color-navy); margin-bottom: 4px; }
.team-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
  display: block;
}
.team-bio p { font-size: 0.95rem; color: var(--color-text); line-height: 1.75; }

/* ---- DUAL ENGINE CARDS ---- */
.engine-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 36px;
}
.engine-card .engine-label {
  display: inline-block;
  background: rgba(26,138,138,0.1);
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.engine-card h3 { margin-bottom: 12px; }
.engine-card p { font-size: 0.93rem; color: var(--color-text-muted); margin-bottom: 16px; }
.engine-function {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-navy);
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

/* ---- PULL QUOTE ---- */
.pull-quote {
  border-left: 4px solid var(--color-teal);
  padding: 20px 28px;
  background: var(--color-bg-light);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  margin-top: 40px;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-navy);
  font-style: italic;
}

/* ---- PRE/POST ESCHEATMENT ---- */
.stage-card {
  padding: 36px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}
.stage-card.pre { background: var(--color-bg-light); border-top: 4px solid var(--color-navy); }
.stage-card.post { background: #f0f9f9; border-top: 4px solid var(--color-teal); }
.stage-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.stage-card.pre .stage-label { color: var(--color-navy); }
.stage-card.post .stage-label { color: var(--color-teal); }

/* ---- VALUES ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 32px;
  border-radius: var(--radius-card);
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-teal);
}
.value-card .value-icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--color-text-muted); }

/* ---- COMPLIANCE BOX ---- */
.compliance-box {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-navy);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 28px 32px;
  max-width: 800px;
  margin: 0 auto;
}
.compliance-box h3 { margin-bottom: 10px; }
.compliance-box p { font-size: 0.875rem; color: var(--color-text-muted); }

/* ---- PROCESS PIPELINE (how it works) ---- */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 56px;
}
.pipeline-step {
  padding: 32px 20px;
  text-align: center;
  position: relative;
}
.pipeline-step:nth-child(1) { background: var(--color-navy); border-radius: 12px 0 0 12px; }
.pipeline-step:nth-child(2) { background: #14486e; }
.pipeline-step:nth-child(3) { background: #146d7a; }
.pipeline-step:nth-child(4) { background: var(--color-teal); border-radius: 0 12px 12px 0; }
.pipeline-icon { font-size: 2rem; margin-bottom: 12px; }
.pipeline-step h3 { color: var(--color-white); font-size: 1rem; margin-bottom: 10px; }
.pipeline-step p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.pipeline-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

/* ---- ASSET TYPE PILL LIST ---- */
.asset-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.asset-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
}
.asset-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  flex-shrink: 0;
}

/* ---- STEP PILLS (home page) ---- */
.step-pills {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}
.step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}
.step-pill span { color: var(--color-teal-light); font-size: 0.75rem; }
.step-arrow { color: var(--color-text-muted); font-size: 1.2rem; }

/* ---- LINK ---- */
.text-link {
  color: var(--color-teal);
  font-weight: 600;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.text-link:hover { gap: 8px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pipeline { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pipeline-step { border-radius: 12px !important; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --spacing-section: 64px; }
  .site-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .team-card { flex-direction: column; padding: 28px; }
  .team-photo { width: 100%; height: 260px; }
  .values-grid { grid-template-columns: 1fr; }
  .comparison-table th:first-child, .comparison-table td:first-child { display: none; }
  .hero-dark { padding: 72px 0 64px; }
}

@media (max-width: 480px) {
  .pipeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
