/* =================================================================
   Clevmind Presence — Frontend Styles
   Design: Dark navy + electric indigo + soft white
   Typography: Inter (system) + clean proportions
================================================================= */

/* ── Full-Page Body Reset ─────────────────────────────────────── */
/* Ensure our pages fill the full viewport regardless of theme */
body.cmp-fullpage {
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Kill any theme content wrappers that themes inject */
body.cmp-fullpage > *:not(#wpadminbar):not(script):not(style):not(.cmp-nav):not(.cmp-hero):not(.cmp-stats):not(.cmp-section):not(.cmp-page-hero):not(.cmp-form-section):not(.cmp-footer):not(noscript) {
  display: none !important;
}

/* ── Reset & Base ─────────────────────────────────────────────── */
.cmp-nav, .cmp-hero, .cmp-stats, .cmp-section,
.cmp-footer, .cmp-page-hero, .cmp-form-section {
  box-sizing: border-box;
  width: 100%;
}
*, *::before, *::after { box-sizing: inherit; }

:root {
  --cmp-navy:    #0f172a;
  --cmp-navy2:   #1e293b;
  --cmp-indigo:  #6366f1;
  --cmp-indigo2: #4f46e5;
  --cmp-teal:    #06b6d4;
  --cmp-white:   #ffffff;
  --cmp-light:   #f8fafc;
  --cmp-muted:   #64748b;
  --cmp-border:  #e2e8f0;
  --cmp-text:    #1e293b;
  --cmp-radius:  12px;
  --cmp-shadow:  0 4px 24px rgba(99,102,241,.12);
  --cmp-font:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Container ────────────────────────────────────────────────── */
.cmp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.cmp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--cmp-font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.cmp-btn-primary {
  background: var(--cmp-indigo);
  color: var(--cmp-white);
  box-shadow: 0 4px 14px rgba(99,102,241,.35);
}
.cmp-btn-primary:hover {
  background: var(--cmp-indigo2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99,102,241,.4);
  color: var(--cmp-white);
}
.cmp-btn-ghost {
  background: transparent;
  color: var(--cmp-white);
  border: 2px solid rgba(255,255,255,.4);
}
.cmp-btn-ghost:hover {
  border-color: var(--cmp-white);
  background: rgba(255,255,255,.1);
  color: var(--cmp-white);
}

/* ── Labels & Eyebrows ───────────────────────────────────────── */
.cmp-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cmp-indigo);
  margin-bottom: 12px;
}
.cmp-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}

/* ── Section Heading ─────────────────────────────────────────── */
.cmp-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.cmp-section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--cmp-text);
  margin: 0 0 16px;
  line-height: 1.2;
}
.cmp-section-head p {
  font-size: 17px;
  color: var(--cmp-muted);
  line-height: 1.7;
  margin: 0;
}
.cmp-section { padding: 96px 0; }

/* ── Background Helpers ──────────────────────────────────────── */
.cmp-bg-dark  { background: var(--cmp-navy); }
.cmp-bg-light { background: var(--cmp-light); }
.cmp-bg-accent { background: linear-gradient(135deg, var(--cmp-indigo2) 0%, #7c3aed 100%); }

/* =================================================================
   NAVIGATION
================================================================= */
.cmp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: all .3s ease;
}
.cmp-nav.scrolled {
  background: rgba(15,23,42,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.cmp-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.cmp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.cmp-logo-icon {
  width: 36px; height: 36px;
  background: var(--cmp-indigo);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 18px;
  font-family: var(--cmp-font);
}
.cmp-logo-text {
  font-size: 20px;
  font-weight: 400;
  color: var(--cmp-white);
  font-family: var(--cmp-font);
}
.cmp-logo-text strong { font-weight: 800; }

.cmp-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.cmp-nav-menu > li { position: relative; }
.cmp-nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all .2s;
  font-family: var(--cmp-font);
}
.cmp-nav-menu > li > a:hover, .cmp-nav-menu > li > a:focus {
  color: var(--cmp-white);
  background: rgba(255,255,255,.08);
}

/* Dropdown */
.cmp-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cmp-navy2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--cmp-radius);
  min-width: 220px;
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: all .2s;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.cmp-has-dropdown:hover .cmp-dropdown,
.cmp-has-dropdown:focus-within .cmp-dropdown {
  opacity: 1;
  pointer-events: all;
}
.cmp-dropdown li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--cmp-font);
  transition: all .15s;
}
.cmp-dropdown li a:hover {
  background: rgba(99,102,241,.15);
  color: var(--cmp-white);
}

.cmp-nav-cta { margin-left: auto; }
.cmp-nav-toggle { display: none; }

/* =================================================================
   HERO
================================================================= */
.cmp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cmp-hero-bg {
  position: absolute;
  inset: 0;
}
.cmp-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cmp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15,23,42,.92) 0%,
    rgba(79,70,229,.55) 50%,
    rgba(15,23,42,.85) 100%
  );
}
.cmp-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 760px;
}
.cmp-hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--cmp-white);
  line-height: 1.1;
  margin: 12px 0 20px;
  font-family: var(--cmp-font);
}
.cmp-hero-title em {
  font-style: normal;
  color: var(--cmp-teal);
}
.cmp-hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 36px;
  font-family: var(--cmp-font);
}
.cmp-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.cmp-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.cmp-hero-scroll span {
  display: block;
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.cmp-hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: sbpScroll 1.5s ease infinite;
}
@keyframes sbpScroll {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* =================================================================
   STATS BAR
================================================================= */
.cmp-stats {
  background: var(--cmp-indigo);
  padding: 40px 0;
}
.cmp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cmp-stat {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.cmp-stat:last-child { border-right: none; }
.cmp-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--cmp-white);
  font-family: var(--cmp-font);
  line-height: 1;
  margin-bottom: 6px;
}
.cmp-stat span {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  font-family: var(--cmp-font);
}

/* =================================================================
   CARDS (What We Do)
================================================================= */
.cmp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cmp-card {
  background: var(--cmp-white);
  border: 1px solid var(--cmp-border);
  border-radius: 16px;
  padding: 36px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.cmp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cmp-indigo), var(--cmp-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cmp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cmp-shadow);
  border-color: transparent;
}
.cmp-card:hover::before { transform: scaleX(1); }

.cmp-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(6,182,212,.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cmp-card-icon svg {
  width: 26px; height: 26px;
  color: var(--cmp-indigo);
}
.cmp-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--cmp-text);
  margin: 0 0 12px;
  font-family: var(--cmp-font);
}
.cmp-card p {
  font-size: 15px;
  color: var(--cmp-muted);
  line-height: 1.7;
  margin: 0 0 20px;
  font-family: var(--cmp-font);
}
.cmp-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--cmp-indigo);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.cmp-card-link:hover { gap: 8px; }

/* =================================================================
   WHY US
================================================================= */
.cmp-why { color: var(--cmp-white); }
.cmp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cmp-why-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 520px;
}
.cmp-why-text .cmp-label { color: var(--cmp-teal); }
.cmp-why-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--cmp-white);
  margin: 8px 0 28px;
  line-height: 1.2;
  font-family: var(--cmp-font);
}
.cmp-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cmp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  font-family: var(--cmp-font);
  line-height: 1.5;
}
.cmp-check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--cmp-indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-top: 1px;
}

/* =================================================================
   TESTIMONIALS
================================================================= */
.cmp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cmp-testi {
  background: var(--cmp-white);
  border: 1px solid var(--cmp-border);
  border-radius: 16px;
  padding: 32px;
  margin: 0;
  position: relative;
}
.cmp-testi::before {
  content: '"';
  font-size: 72px;
  line-height: 1;
  color: var(--cmp-indigo);
  opacity: .15;
  position: absolute;
  top: 12px; left: 20px;
  font-family: Georgia, serif;
}
.cmp-testi p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--cmp-text);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
  font-family: var(--cmp-font);
}
.cmp-testi footer {
  font-size: 13px;
  color: var(--cmp-muted);
  font-family: var(--cmp-font);
}
.cmp-testi footer strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--cmp-text);
  margin-bottom: 2px;
}

/* =================================================================
   PAGE HERO (inner pages)
================================================================= */
.cmp-page-hero {
  padding: 160px 0 80px;
  text-align: center;
}
.cmp-page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  color: var(--cmp-white);
  margin: 12px 0 20px;
  line-height: 1.15;
  font-family: var(--cmp-font);
}
.cmp-page-hero h1 em {
  font-style: normal;
  color: var(--cmp-teal);
}
.cmp-page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-family: var(--cmp-font);
}

/* =================================================================
   PRODUCTS PAGE
================================================================= */
.cmp-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cmp-product-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.cmp-product-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(99,102,241,.1);
  color: var(--cmp-indigo);
  margin-bottom: 16px;
  font-family: var(--cmp-font);
}
.cmp-badge-2 { background: rgba(6,182,212,.1); color: #0891b2; }
.cmp-badge-3 { background: rgba(16,185,129,.1); color: #059669; }
.cmp-badge-4 { background: rgba(245,158,11,.1); color: #d97706; }

.cmp-product-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--cmp-text);
  margin: 0 0 16px;
  line-height: 1.2;
  font-family: var(--cmp-font);
}
.cmp-product-text p {
  font-size: 16px;
  color: var(--cmp-muted);
  line-height: 1.75;
  margin: 0 0 24px;
  font-family: var(--cmp-font);
}
.cmp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cmp-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--cmp-text);
  font-family: var(--cmp-font);
}
.cmp-feature-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--cmp-indigo);
  border-radius: 50%;
  flex-shrink: 0;
}
.cmp-product-alt { background: var(--cmp-light); }

/* =================================================================
   ABOUT PAGE
================================================================= */
.cmp-about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cmp-mission-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 500px;
}
.cmp-mission-text h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--cmp-text);
  margin: 8px 0 20px;
  line-height: 1.2;
  font-family: var(--cmp-font);
}
.cmp-mission-text p {
  font-size: 16px;
  color: var(--cmp-muted);
  line-height: 1.8;
  margin: 0 0 16px;
  font-family: var(--cmp-font);
}
.cmp-mission-text em { color: var(--cmp-indigo); font-style: italic; }

.cmp-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.cmp-value {
  text-align: center;
  padding: 32px 24px;
  background: var(--cmp-white);
  border-radius: 16px;
  border: 1px solid var(--cmp-border);
  transition: transform .3s, box-shadow .3s;
}
.cmp-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--cmp-shadow);
}
.cmp-value-icon { font-size: 32px; margin-bottom: 16px; }
.cmp-value h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--cmp-text);
  margin: 0 0 10px;
  font-family: var(--cmp-font);
}
.cmp-value p {
  font-size: 14px;
  color: var(--cmp-muted);
  line-height: 1.7;
  margin: 0;
  font-family: var(--cmp-font);
}

.cmp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.cmp-team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--cmp-white);
  border-radius: 16px;
  border: 1px solid var(--cmp-border);
  transition: all .3s;
}
.cmp-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cmp-shadow);
}
.cmp-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin: 0 auto 20px;
  font-family: var(--cmp-font);
}
.cmp-team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--cmp-text);
  margin: 0 0 4px;
  font-family: var(--cmp-font);
}
.cmp-team-card span {
  display: block;
  font-size: 13px;
  color: var(--cmp-indigo);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
  font-family: var(--cmp-font);
}
.cmp-team-card p {
  font-size: 14px;
  color: var(--cmp-muted);
  line-height: 1.65;
  margin: 0;
  font-family: var(--cmp-font);
}

/* =================================================================
   CONTACT PAGE
================================================================= */
.cmp-contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.cmp-contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--cmp-text);
  margin: 0 0 32px;
  font-family: var(--cmp-font);
}
.cmp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.cmp-contact-icon {
  width: 44px; height: 44px;
  background: rgba(99,102,241,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cmp-contact-icon svg {
  width: 20px; height: 20px;
  color: var(--cmp-indigo);
}
.cmp-contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--cmp-text);
  margin-bottom: 2px;
  font-family: var(--cmp-font);
}
.cmp-contact-item p, .cmp-contact-item a {
  font-size: 15px;
  color: var(--cmp-muted);
  margin: 0;
  text-decoration: none;
  font-family: var(--cmp-font);
}
.cmp-contact-item a:hover { color: var(--cmp-indigo); }
.cmp-contact-promise {
  background: var(--cmp-light);
  border-radius: 16px;
  padding: 24px;
  margin-top: 40px;
}
.cmp-contact-promise h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cmp-text);
  margin: 0 0 8px;
  font-family: var(--cmp-font);
}
.cmp-contact-promise p {
  font-size: 14px;
  color: var(--cmp-muted);
  margin: 0;
  line-height: 1.7;
  font-family: var(--cmp-font);
}

/* FAQ */
.cmp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cmp-faq {
  background: var(--cmp-white);
  border: 1px solid var(--cmp-border);
  border-radius: 16px;
  padding: 28px;
}
.cmp-faq h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--cmp-text);
  margin: 0 0 12px;
  font-family: var(--cmp-font);
}
.cmp-faq p {
  font-size: 15px;
  color: var(--cmp-muted);
  margin: 0;
  line-height: 1.7;
  font-family: var(--cmp-font);
}

/* Contact page — strip the section padding from the nested form */
.cmp-contact-form-wrap .cmp-form-section { padding: 0; }
.cmp-contact-form-wrap .cmp-form-section .cmp-form-wrap {
  box-shadow: var(--cmp-shadow);
}

/* =================================================================
   LEAD FORM
================================================================= */
.cmp-form-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--cmp-navy) 0%, var(--cmp-navy2) 100%);
}
.cmp-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cmp-white);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
}
.cmp-form-wrap h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--cmp-text);
  margin: 0 0 8px;
  text-align: center;
  font-family: var(--cmp-font);
}
.cmp-form-sub {
  font-size: 15px;
  color: var(--cmp-muted);
  text-align: center;
  margin: 0 0 36px;
  font-family: var(--cmp-font);
}

.cmp-hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

.cmp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cmp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.cmp-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--cmp-text);
  font-family: var(--cmp-font);
}
.cmp-field input,
.cmp-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cmp-border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--cmp-text);
  background: var(--cmp-white);
  transition: border-color .2s, box-shadow .2s;
  font-family: var(--cmp-font);
  outline: none;
}
.cmp-field input:focus,
.cmp-field textarea:focus {
  border-color: var(--cmp-indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.cmp-field textarea { resize: vertical; }
.cmp-submit-btn { width: 100%; justify-content: center; margin-top: 8px; }
.cmp-form-response {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--cmp-font);
  display: none;
}
.cmp-form-response.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  display: block;
}
.cmp-form-response.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  display: block;
}

/* =================================================================
   FOOTER
================================================================= */
.cmp-footer {
  background: var(--cmp-navy);
  color: rgba(255,255,255,.7);
  padding: 80px 0 40px;
}
.cmp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.cmp-footer-brand .cmp-logo { margin-bottom: 20px; }
.cmp-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  font-family: var(--cmp-font);
  max-width: 260px;
}
.cmp-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--cmp-white);
  margin: 0 0 20px;
  font-family: var(--cmp-font);
}
.cmp-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cmp-footer-col ul li, .cmp-footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-family: var(--cmp-font);
  transition: color .2s;
}
.cmp-footer-col ul a:hover { color: var(--cmp-white); }
.cmp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cmp-footer-bottom p {
  font-size: 13px;
  margin: 0;
  font-family: var(--cmp-font);
}

/* =================================================================
   RESPONSIVE
================================================================= */
@media (max-width: 900px) {
  .cmp-stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .cmp-cards            { grid-template-columns: 1fr; }
  .cmp-why-grid,
  .cmp-about-mission,
  .cmp-product-grid     { grid-template-columns: 1fr; gap: 40px; }
  .cmp-why-img img      { height: 320px; }
  .cmp-testi-grid       { grid-template-columns: 1fr; }
  .cmp-values-grid      { grid-template-columns: repeat(2, 1fr); }
  .cmp-team-grid        { grid-template-columns: repeat(2, 1fr); }
  .cmp-contact-grid     { grid-template-columns: 1fr; }
  .cmp-footer-grid      { grid-template-columns: 1fr 1fr; }
  .cmp-form-row         { grid-template-columns: 1fr; }
  .cmp-faq-grid         { grid-template-columns: 1fr; }
  .cmp-product-img--left { order: -1; }
}

@media (max-width: 640px) {
  .cmp-nav-menu, .cmp-nav-cta { display: none; }
  .cmp-nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--cmp-navy);
    padding: 24px;
    gap: 4px;
    align-items: flex-start;
    overflow-y: auto;
  }
  .cmp-nav-menu.open .cmp-nav-cta { display: inline-flex; margin-top: 16px; }
  .cmp-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }
  .cmp-nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--cmp-white);
    border-radius: 2px;
    transition: all .3s;
  }
  .cmp-values-grid  { grid-template-columns: 1fr; }
  .cmp-team-grid    { grid-template-columns: 1fr 1fr; }
  .cmp-footer-grid  { grid-template-columns: 1fr; }
  .cmp-stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .cmp-hero-cta     { flex-direction: column; }
  .cmp-form-wrap    { padding: 32px 24px; }
  .cmp-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cmp-section      { padding: 64px 0; }
}
