/*
Theme Name: Lectriverse
Theme URI: https://lectriverse.com
Author: Lectriverse
Description: Custom theme for Lectriverse — The Human Side of AI.
Version: 1.0
*/

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0d1f3c;
  --navy-mid:  #162a50;
  --teal:      #00b4d8;
  --teal-dark: #0096b7;
  --white:     #ffffff;
  --off-white: #f7f9fc;
  --mid-gray:  #6b7a99;
  --dark-text: #1a2744;
  --body-text: #3d4f6e;
  --border:    #dce3f0;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--body-text);
  background: var(--white);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.nav-logo .wm-L     { font-style:italic; font-size:2.07rem; font-weight:900; color:var(--teal);            letter-spacing:-0.01em; }
.nav-logo .wm-ectri { font-style:italic; font-size:1.95rem; font-weight:900; color:var(--teal);            letter-spacing:-0.02em; margin-right:3px; }
.nav-logo .wm-V     { font-style:normal; font-size:1.58rem; font-weight:900; color:rgba(255,255,255,0.88); letter-spacing:-0.01em; }
.nav-logo .wm-erse  { font-style:normal; font-size:1.95rem; font-weight:900; color:rgba(255,255,255,0.88); letter-spacing:-0.02em; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; }

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.7;
  max-width: 600px;
}

.section { padding: 88px 5%; }

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--teal-dark); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  color: var(--white);
  padding: 80px 5% 72px;
}

.page-header-inner { max-width: 760px; }

.page-headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.page-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 640px;
}

/* ── HERO (homepage) ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  color: var(--white);
  padding: 100px 5% 90px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label { color: var(--teal); margin-bottom: 1.2rem; }

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.9rem 5%;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.trust-inner::-webkit-scrollbar { display: none; }

.trust-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.trust-sep {
  color: var(--teal);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services { background: var(--off-white); }

.services-inner { max-width: 1160px; margin: 0 auto; }

.services-header { margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(13,31,60,0.05);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,180,216,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-card > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--body-text);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.8rem;
}

.link-arrow {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.link-arrow:hover { gap: 0.7rem; }

/* ── PROCESS ── */
.process { background: var(--navy); color: var(--white); }

.process .section-label { color: var(--teal); }
.process .section-headline { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,0.6); }

.process-inner { max-width: 1160px; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step { position: relative; }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,180,216,0.15);
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* ── NUMBERS ── */
.numbers { background: var(--off-white); }

.numbers-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(13,31,60,0.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.4;
}

.commitment-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
}

.commitment-visual h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.commitment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commitment-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

.commitment-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── ROSTER ── */
.roster { background: var(--navy); color: var(--white); }

.roster .section-headline { color: var(--white); }
.roster .section-sub { color: rgba(255,255,255,0.6); }

.roster-inner { max-width: 1160px; margin: 0 auto; }

.language-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.language-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ── WHY PILLARS ── */
.why { background: var(--off-white); }

.why-inner { max-width: 1160px; margin: 0 auto; }

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,216,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pillar h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pillar p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--body-text);
}

/* ── CTA / CONTACT FORM (homepage) ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  color: var(--white);
}

.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-contact { font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.cta-contact a { color: var(--teal); text-decoration: none; }

.cta-form { background: rgba(255,255,255,0.05); border-radius: 16px; padding: 2.5rem; border: 1px solid rgba(255,255,255,0.1); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.1);
}

.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--teal); color: var(--navy); }

.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 0.75rem;
}

/* ── CONTACT PAGE ── */
.contact-body {
  padding: 72px 5%;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: 2rem;
}

.contact-detail { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.5rem; }

.detail-item { display: flex; flex-direction: column; gap: 0.2rem; }

.detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.detail-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-text);
  text-decoration: none;
  transition: color 0.2s;
}

.detail-value:hover { color: var(--teal); }

.confidentiality-note {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  font-size: 0.82rem;
  line-height: 1.65;
}

.confidentiality-note strong {
  color: var(--teal);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 4px 32px rgba(13,31,60,0.08);
  border: 1px solid var(--border);
}

.contact-form-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.form-subhead {
  font-size: 0.88rem;
  color: var(--mid-gray);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--dark-text);
}

.contact-form-card .form-group label { color: var(--dark-text); }

.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus,
.contact-form-card .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
  background: var(--white);
}

.contact-form-card .form-submit { background: var(--navy); }
.contact-form-card .form-submit:hover { background: var(--teal); color: var(--navy); }

.form-fine {
  font-size: 0.75rem;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 1rem;
}

/* ── WHY LECTRIVERSE PAGE ── */
.stat-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 5%;
}

.stat-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-strip-inner .number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.content-section {
  padding: 88px 5%;
  max-width: 1160px;
  margin: 0 auto;
}

.content-section:not(:last-of-type) { border-bottom: 1px solid var(--border); }

.section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.section-aside { position: sticky; top: 88px; }

.aside-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.aside-headline {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 1.4rem;
}

.section-body p:last-child { margin-bottom: 0; }

.section-dark {
  background: var(--navy);
  padding: 88px 5%;
}

.section-dark .content-section { padding: 0; border-bottom: none; }
.section-dark .aside-headline { color: var(--white); }
.section-dark .section-body p { color: rgba(255,255,255,0.7); }

.why-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  color: var(--white);
  padding: 88px 5%;
  text-align: center;
}

.why-cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.why-cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta-phone {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.cta-phone:hover { color: var(--teal); }

/* ── BLOG ── */
.blog-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 5% 96px;
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.blog-body > p { grid-column: 1 / -1; }

.post {
  background: var(--white);
  border-radius: 16px;
  padding: 52px 48px;
  margin-bottom: 0;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(13,31,60,0.05);
}

.post-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.post h2, .post h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.post-body p, .post p {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--body-text);
  margin-bottom: 1.2rem;
}

.post-body p:last-child, .post p:last-child { margin-bottom: 0; }

.post-body strong, .post strong {
  color: var(--dark-text);
  font-weight: 700;
  display: block;
  margin-top: 1.6rem;
  margin-bottom: 0.3rem;
}

.post-body em, .post em { color: var(--mid-gray); font-style: italic; }

.post-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.6rem 0;
}

/* ── SINGLE POST ── */
.single-post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 5% 96px;
}

.single-post-wrap h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.post-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 1.3rem;
}

.post-content strong {
  color: var(--dark-text);
  font-weight: 700;
  display: block;
  margin-top: 1.8rem;
  margin-bottom: 0.4rem;
}

.post-content em { color: var(--mid-gray); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.back-link:hover { gap: 0.7rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 5% 32px;
}

.footer-inner { max-width: 1160px; margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; list-style: none; }

.footer-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--teal); }

.footer-contact { font-size: 0.85rem; line-height: 1.8; }
.footer-contact a { color: var(--teal); text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .numbers-inner { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-body { grid-template-columns: 1fr; gap: 40px; }
  .section-inner { grid-template-columns: 1fr; gap: 32px; }
  .section-aside { position: static; }
  .stat-strip-inner { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .post { padding: 36px 28px; }
  .blog-body { grid-template-columns: 1fr; }
}
