/* ============================================
   Elevate Communication Solutions — Global Styles
   ============================================ */

/* VARIABLES */
:root {
  --navy: #142235;
  --teal: #00B4D8;
  --indigo: #6366F1;
  --gradient: linear-gradient(135deg, #00B4D8, #6366F1);
  --gradient-subtle: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(99,102,241,0.08));
  --white: #FFFFFF;
  --bg: #FAFBFD;
  --text: #142235;
  --text-secondary: #3B4963;
  --text-muted: #6B7A90;
  --border: #DFE4ED;
  --border-light: #EDF0F5;
  --eyebrow: #00B4D8;
  --green: #05A87E;
  --pink: #EC4899;
  --purple: #8B5CF6;
  --amber: #F59E0B;
  --blue: #3B82F6;
  --coral: #F97316;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background-color: var(--bg);
  background-image:
    linear-gradient(to right, rgba(20,34,53,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,34,53,0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  background-position: -1px -1px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
[id] { scroll-margin-top: 130px; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,251,253,0.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(223,228,237,0.5);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(20,34,53,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.nav-brand { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; transition: opacity 0.2s; }
.nav-brand:hover { opacity: 0.88; }
.nav-brand img { display: block; height: 110px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--navy); text-decoration: none;
  padding: 0.45rem 0.75rem; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--teal); background: rgba(0,180,216,0.05); }
.nav-cta {
  background: var(--gradient) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 0.55rem 1.2rem !important; border-radius: 6px !important;
}
.nav-cta:hover { opacity: 0.92; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--text); }
.nav-hamburger svg { display: block; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--gradient); color: var(--white);
  font-size: 0.95rem; font-weight: 700;
  padding: 0.85rem 1.75rem; border: none; border-radius: 8px;
  text-decoration: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,180,216,0.25); }
.btn-secondary {
  display: inline-flex; align-items: center;
  color: var(--text-secondary); font-size: 0.95rem; font-weight: 500;
  padding: 0.85rem 1.25rem; border: 1px solid var(--border); border-radius: 8px;
  text-decoration: none; cursor: pointer; transition: all 0.2s; background: transparent;
}
.btn-secondary:hover { border-color: #328DE5; color: #328DE5; }
.btn-outline {
  display: inline-flex; align-items: center;
  font-size: 0.95rem; font-weight: 600;
  padding: 0.85rem 1.5rem; border: 2px solid #328DE5; border-radius: 8px;
  color: #328DE5; background: transparent;
  text-decoration: none; cursor: pointer; transition: all 0.25s;
}
.btn-outline:hover {
  background: #328DE5; color: var(--white);
  box-shadow: 0 4px 16px rgba(50,141,229,0.3);
}

/* ============================================
   SECTION HELPERS
   ============================================ */
.section-eyebrow {
  font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--eyebrow); font-weight: 700; margin-bottom: 0.85rem;
}
.section-h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.03em; color: var(--navy);
}

/* ============================================
   HERO (index.html)
   ============================================ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 6rem 0 3rem; }
.hero > .container { width: 100%; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-image { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.hero-image img { width: 100%; max-width: 540px; height: auto; border-radius: 16px; }
.hero::before {
  content: ''; position: absolute; top: -120px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: 100px; right: 60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.88rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--eyebrow); font-weight: 700;
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--gradient); flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 3.8rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.04em; color: var(--navy); margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.2rem; color: var(--text-secondary);
  line-height: 1.72; max-width: 560px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap; }
/* TRUST STRIP */
.trust-strip {
  padding: 1.75rem 0; margin-top: 2.5rem;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.trust-badge {
  width: 56px; height: 56px; object-fit: contain;
  filter: brightness(0) saturate(100%) invert(38%) sepia(85%) saturate(1100%) hue-rotate(187deg) brightness(96%) contrast(90%);
}
.trust-item span {
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); line-height: 1.3;
}

/* ============================================
   PAIN POINTS (index.html)
   ============================================ */
.pain {
  padding: 5.5rem 0; background: var(--white);
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.pain-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 1.25rem;
}
.pain-content p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 0.5rem; }
.pain-list { display: flex; flex-direction: column; gap: 1.25rem; }
.pain-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 1.25rem 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 12px; transition: all 0.25s;
  position: relative; overflow: hidden; z-index: 1;
}
.pain-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient); opacity: 0; transition: opacity 0.25s;
}
.pain-item:hover::before { opacity: 1; }
.pain-item:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(20,34,53,0.07); border-color: transparent; }
.pain-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; background: var(--gradient-subtle);
}
.pain-item-text h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.1rem; color: var(--navy); }
.pain-item-text p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================
   VALUES (index.html)
   ============================================ */
.values { padding: 5.5rem 0; }
.values-header { text-align: center; margin-bottom: 2.75rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.value-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.75rem 1.5rem; position: relative; overflow: hidden; transition: all 0.25s;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient); opacity: 0; transition: opacity 0.25s;
}
.value-card:hover::before { opacity: 1; }
.value-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(20,34,53,0.07); border-color: transparent; }
.value-icon {
  width: 44px; height: 44px;
  margin: 0 auto 1.1rem;
}
.value-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) saturate(100%) invert(44%) sepia(98%) saturate(800%) hue-rotate(182deg) brightness(92%) contrast(95%); }
.value-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.testimonial {
  text-align: center; max-width: 680px; margin: 2.5rem auto 0;
  border: none; padding: 0;
}
.testimonial p {
  font-style: italic; font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 0.75rem;
}
.testimonial cite {
  font-style: italic; font-size: 0.9rem; color: #328DE5; font-weight: 600;
}

/* ============================================
   PRODUCTS (index.html)
   ============================================ */
.products {
  padding: 5.5rem 0; background: var(--white);
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.products-header { margin-bottom: 2.75rem; }
.products-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 0.6rem;
}
.products-header p { color: var(--text-secondary); max-width: 580px; font-size: 1.05rem; }
.product-tiers { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 1.5rem; }
.tier-label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.65rem; padding-bottom: 0.45rem; border-bottom: 1px solid var(--border-light);
}
.row-foundation { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.row-foundation .p-card { padding: 1.75rem 1.5rem; border-radius: 12px; }
.row-foundation .p-card-name { font-size: 0.82rem; margin-bottom: 0.4rem; }
.row-foundation .p-card-desc { font-size: 0.98rem; line-height: 1.55; }
.row-foundation .p-card-price { margin-top: 0.75rem; font-size: 0.85rem; }
.row-foundation .p-card-price strong { font-size: 1.25rem; }
.row-expansion { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.row-expansion .p-card { padding: 1.75rem 1.5rem; border-radius: 12px; }
.row-expansion .p-card-name { font-size: 0.82rem; margin-bottom: 0.4rem; }
.row-expansion .p-card-desc { font-size: 0.98rem; line-height: 1.55; }
.row-expansion .p-card-price { margin-top: 0.75rem; font-size: 0.85rem; }
.row-expansion .p-card-price strong { font-size: 1.25rem; }
.p-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 1rem 0.9rem; transition: all 0.2s; position: relative; overflow: hidden;
}
.p-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--accent); opacity: 0; transition: opacity 0.2s;
}
.p-card:hover { border-color: var(--accent); background: var(--white); }
.p-card:hover::before { opacity: 1; }
.p-card-name {
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.3rem;
}
.p-card-desc { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.5; }
.p-card-price { margin-top: 0.5rem; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }
.p-card-price strong { color: var(--navy); font-size: 1.08rem; }

/* ============================================
   EXAMPLE SETUP (index.html)
   ============================================ */
.example-setup { background: var(--navy); border-radius: 14px; padding: 2.25rem; color: #E2E8F0; }
.example-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.example-label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.4rem;
}
.example-setup h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); }
.example-price { text-align: right; }
.example-price .big {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.example-price .sub { font-size: 0.85rem; color: #8B9AB5; }
.example-items { display: flex; flex-direction: column; gap: 0.75rem; }
.example-chip {
  display: flex; flex-direction: column; gap: 0.2rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.75rem 1rem;
}
.example-chip-top {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; color: #E2E8F0;
}
.example-chip strong {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.8px;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.example-chip-desc { font-size: 0.82rem; color: #8B9AB5; line-height: 1.5; padding-left: 0; }

/* ============================================
   HOW IT WORKS (index.html)
   ============================================ */
.how { padding: 5.5rem 0; }
.how-header { text-align: center; margin-bottom: 2.75rem; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; align-items: stretch; }
.how-step-wrap { display: flex; align-items: stretch; gap: 0; }
.how-step-wrap:last-child .how-arrow { display: none; }
.how-step {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.75rem 1.25rem; text-align: center; position: relative;
  flex: 1; transition: all 0.25s;
}
.how-step:hover {
  border-color: transparent; box-shadow: 0 8px 28px rgba(20,34,53,0.07);
  transform: translateY(-2px);
}
.how-arrow {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 32px; color: #328DE5; align-self: center;
}
.how-arrow svg { width: 24px; height: 24px; stroke-width: 3; }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700;
  color: var(--white); margin: 0 auto 0.85rem;
}
.how-step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--navy); text-align: left; }
.how-step p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; text-align: left; }

/* ============================================
   CONTACT (index.html)
   ============================================ */
.contact { padding: 0 0 5.5rem; border-top: 1px solid var(--border-light); }
.contact-bar {
  background: var(--navy); padding: 1.5rem 0;
}
.contact-logo {
  display: flex; justify-content: center; padding: 3rem 0 2rem;
}
.contact-logo img { height: 144px; width: auto; }
.contact-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.contact-bar-item {
  display: flex; align-items: flex-start; gap: 0.75rem; color: #CBD5E1;
}
.contact-bar-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.contact-bar-item h4 {
  font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 0.1rem;
}
.contact-bar-item p { font-size: 0.82rem; color: #94A3B8; line-height: 1.45; }
.contact-bar-item a { color: #94A3B8; text-decoration: none; }
.contact-bar-item a:hover { color: var(--teal); }

.contact-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  padding-top: 3rem;
}
.contact-form-wrap h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800;
  color: var(--navy); margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.contact-form-wrap > p {
  font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem;
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body); font-size: 0.92rem;
  padding: 0.7rem 0.85rem; border: 1px solid var(--border);
  border-radius: 8px; background: var(--white);
  color: var(--text); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  display: inline-flex; align-items: center;
  background: var(--gradient); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  padding: 0.85rem 2rem; border: none; border-radius: 8px;
  cursor: pointer; transition: all 0.2s; margin-top: 0.25rem;
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,180,216,0.25); }

.contact-maps { display: flex; flex-direction: column; gap: 1.25rem; }
.map-card {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  background: var(--white);
}
.map-card iframe { display: block; width: 100%; height: 200px; border: 0; }
.map-label {
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.map-label-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gradient); flex-shrink: 0;
}
.map-label h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.map-label p { font-size: 0.8rem; color: var(--text-muted); margin-left: auto; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.prod-section { padding: 5rem 0; }
.prod-expansion { padding: 5rem 0; background: var(--white); border-top: 1px solid var(--border-light); }

.prod-tier-header { text-align: center; margin-bottom: 3.5rem; }
.prod-tier-sub {
  font-size: 1.1rem; color: var(--text-secondary); max-width: 620px;
  margin: 0.75rem auto 0; line-height: 1.7;
}

/* Foundation Z-pattern */
.prod-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  margin-bottom: 5rem;
}
.prod-feature:last-of-type { margin-bottom: 0; }
.prod-feature--reverse { direction: rtl; }
.prod-feature--reverse > * { direction: ltr; }

.prod-badge {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.5rem;
}
.prod-feature-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800;
  color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.02em;
}
.prod-lead {
  font-size: 1.08rem; color: var(--text-secondary); font-weight: 500;
  margin-bottom: 1rem; line-height: 1.7;
}
.prod-feature-text > p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.prod-features-list {
  list-style: none; display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 1.75rem;
}
.prod-features-list li {
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65;
  padding-left: 1.5rem; position: relative;
}
.prod-features-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gradient);
}
.prod-features-list li strong { color: var(--navy); }

.prod-price {
  font-size: 0.88rem; color: var(--text-muted); padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.prod-price span { margin-left: 0.5rem; }
.prod-price strong {
  font-family: var(--font-mono); font-size: 1.2rem; color: var(--navy);
}

.prod-feature-img { display: flex; align-items: center; justify-content: center; }
.prod-feature-img img { width: 100%; border-radius: 14px; }
.prod-img-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: 14px;
  background: var(--gradient-subtle); border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase;
}

/* Expansion grid */
.prod-expansion-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.prod-exp-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem 1.75rem; position: relative; overflow: hidden; transition: all 0.25s;
}
.prod-exp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient); opacity: 0; transition: opacity 0.25s;
}
.prod-exp-card:hover::before { opacity: 1; }
.prod-exp-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(20,34,53,0.07); border-color: transparent; }
.prod-exp-card h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem;
}
.prod-exp-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.prod-exp-card ul {
  list-style: none; margin-bottom: 1.25rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.prod-exp-card li {
  font-size: 0.88rem; color: var(--text-secondary); padding-left: 1.25rem; position: relative;
}
.prod-exp-card li::before {
  content: ''; position: absolute; left: 0; top: 0.5rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gradient);
}
.prod-exp-card .prod-price { font-size: 0.85rem; }
.prod-exp-card .prod-price strong { font-size: 1.1rem; }

/* CTA */
.prod-cta { padding: 5rem 0; border-top: 1px solid var(--border-light); }
.prod-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.prod-cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
  color: var(--navy); margin-bottom: 0.5rem; letter-spacing: -0.03em;
}
.prod-cta-inner p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; }
.prod-cta-actions { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.prod-cta-or { font-size: 0.95rem; color: var(--text-muted); }
.prod-cta-or a { color: #328DE5; text-decoration: none; }
.prod-cta-or a:hover { text-decoration: underline; }

/* Products page responsive */
@media (max-width: 900px) {
  .prod-feature { grid-template-columns: 1fr; gap: 2rem; }
  .prod-feature--reverse { direction: ltr; }
  .prod-feature-img { order: -1; }
  .prod-expansion-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE HERO (about, privacy, terms, products)
   ============================================ */
.page-hero {
  padding: 9rem 0 4rem;
  border-bottom: 1px solid var(--border-light);
}
.page-hero .hero-eyebrow {
  font-family: var(--font-body); font-size: 0.88rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--eyebrow); font-weight: 700;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.page-hero .hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--gradient); flex-shrink: 0;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.15rem; color: var(--text-secondary); max-width: 640px; line-height: 1.7;
}

/* ============================================
   PAGE BODY (about, privacy, terms)
   ============================================ */
.page-body { padding: 3.5rem 0 5rem; }
.page-body .content { max-width: 760px; }
.page-body h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--navy);
  margin: 2.5rem 0 0.75rem; letter-spacing: -0.02em;
}
.page-body h2:first-child { margin-top: 0; }
.page-body p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 1.02rem; line-height: 1.75; }
.page-body ul,
.page-body ol {
  margin: 0.5rem 0 1.5rem 1.25rem; color: var(--text-secondary);
}
.page-body li { margin-bottom: 0.4rem; font-size: 1.02rem; }

/* ============================================
   ABOUT PAGE — Value blocks
   ============================================ */
.values-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}
.value-block {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.75rem 1.5rem; position: relative; overflow: hidden;
}
.value-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient);
}
.value-block h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem;
}
.value-block p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }

/* ============================================
   DARK HERO — Navy with animated orbs (products, about)
   ============================================ */
.prod-hero {
  background: var(--navy) !important; position: relative; overflow: hidden;
  border-bottom: none !important;
}
.prod-hero .hero-eyebrow { color: #328DE5 !important; }
.prod-hero .hero-eyebrow::before { background: linear-gradient(135deg, #328DE5, var(--indigo)) !important; }
.prod-hero h1 { color: var(--white) !important; }
.prod-hero p { color: #94A3B8 !important; }

.prod-hero-orbs {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
}
.orb-1 {
  width: 500px; height: 500px; top: -15%; right: -5%;
  background: radial-gradient(circle, rgba(50,141,229,0.6), transparent 70%);
  animation: orb-drift-1 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px; bottom: -10%; left: -8%;
  background: radial-gradient(circle, rgba(99,102,241,0.5), transparent 70%);
  animation: orb-drift-2 15s ease-in-out infinite alternate;
}
.orb-3 {
  width: 300px; height: 300px; top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(0,180,216,0.4), transparent 70%);
  animation: orb-drift-3 18s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 40px) scale(1.15); }
}
@keyframes orb-drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -30px) scale(1.1); }
}
@keyframes orb-drift-3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -50px) scale(1.2); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy); color: #94A3B8; padding: 3.5rem 0 0;
}
.footer a { color: #94A3B8; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--teal); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about img { height: 110px; width: auto; margin-bottom: 1rem; display: block; margin-right: auto; }
.footer-about p { font-size: 0.85rem; line-height: 1.65; margin-bottom: 1.25rem; max-width: 320px; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(0,180,216,0.2); }
.footer-social svg { width: 16px; height: 16px; fill: #94A3B8; }
.footer-social a:hover svg { fill: var(--teal); }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white); margin-bottom: 1rem; font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li { font-size: 0.85rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom a { font-size: 0.78rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(250,251,253,0.98);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(223,228,237,0.5);
    padding: 1rem 1.5rem; gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(20,34,53,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.65rem 0.75rem; }
  .nav-hamburger { display: block; }
  .pain-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .row-foundation { grid-template-columns: 1fr; }
  .row-expansion { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-arrow { transform: rotate(90deg); }
  .hero { min-height: 100vh; padding: 6rem 0 2rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: 1; }
  .hero-image img { max-width: 360px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .example-header { flex-direction: column; }
  .example-price { text-align: left; }
  .contact-bar-inner { grid-template-columns: 1fr 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .how-steps { grid-template-columns: 1fr; }
  .how-step-wrap { flex-direction: column; }
  .how-arrow { transform: rotate(90deg); }
  .row-expansion { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .nav-brand img { height: 44px; }
  .contact-bar-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
