/* helpwave Marketing Site — Shared Styles */

@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  /* Site brand — deep navy blue */
  --brand: #1649A0;
  --brand-light: #e8eef9;
  --brand-dark: #0f3578;
  --brand-900: #0a1f4e;

  /* Product colors */
  --color-tasks:       #694BB4;
  --color-tasks-light: #ede8f9;
  --color-analytics:   #0B6E6E;
  --color-analytics-light: #d6f0ef;
  --color-assistant:   #C06010;
  --color-assistant-light: #fdecd6;
  --color-scaffold:    #1E7048;
  --color-scaffold-light: #d4f0e2;
  --color-id:          #374151;
  --color-id-light:    #e8eaed;
  --color-apzzumdoc:   #B83232;
  --color-apzzumdoc-light: #fde8e8;
  --color-netmanager:  #0A7090;
  --color-netmanager-light: #d6eff6;
  --color-lab:         #6B5B95;
  --color-lab-light:   #ede8f9;

  /* Legacy alias (tasks) */
  --purple: var(--color-tasks);
  --purple-light: var(--color-tasks-light);
  --purple-dark: #5a3d9a;
  --purple-800: #2c1d4e;

  --text: #1a1a1a;
  --text-sec: #666666;
  --text-muted: #898989;
  --border: #E5E5E5;
  --bg: #ffffff;
  --bg-off: #F4F6FA;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Figtree', sans-serif;
  --radius: 10px;
  --shadow: 0px 2px 12px rgba(0,0,0,0.07);
  --max: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 26px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 40px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 6px 12px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: #f5f5f5; }
.nav-links a.active { color: var(--purple); }
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.lang-btn {
  background: none;
  border: none;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-sec);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-btn.active { background: var(--brand); color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(22,73,160,0.25); }
.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-secondary:hover { background: var(--brand-light); }
.btn-ghost {
  background: transparent;
  color: var(--text-sec);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: #f5f5f5; color: var(--text); }
.btn-lg { font-size: 15px; padding: 13px 28px; border-radius: 10px; }
.btn-sm { font-size: 13px; padding: 7px 14px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-sec);
  max-width: 600px;
}

/* ── HERO ── */
.hero {
  padding: 100px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, #ede8f9 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 em {
  color: var(--brand);
  font-style: normal;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-sec);
  margin-bottom: 12px;
  max-width: 500px;
}
.hero-trust {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2dc87a;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.hero-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  overflow: hidden;
}
.hero-card-header {
  background: var(--purple);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}
.hero-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--bg-off);
  border-radius: 8px;
}
.hero-metric-label {
  font-size: 13px;
  color: var(--text-sec);
  font-family: var(--font-ui);
}
.hero-metric-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
}
.hero-metric-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: #d1efe8;
  color: #2c5536;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-stat {
  padding: 12px 14px;
  background: var(--bg-off);
  border-radius: 8px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.hero-stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-icon {
  width: 36px; height: 36px;
  background: var(--purple-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hero-badge-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.hero-badge-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── TRUST BAR ── */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-sec);
  font-family: var(--font-ui);
  font-weight: 500;
}
.trust-item svg { color: var(--brand); flex-shrink: 0; }

/* ── PROBLEM / SOLUTION ── */
.problem-solution {
  background: var(--bg-off);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ps-problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.ps-problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.ps-problem-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc576d;
  flex-shrink: 0;
  margin-top: 5px;
}
.solution-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.solution-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solution-icon svg { color: var(--brand); }
.solution-text h4 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.solution-text p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--purple), var(--border));
}
.step {
  padding: 0 32px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(22,73,160,0.1);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ── PRODUCTS ── */
.products-section { background: var(--bg-off); }
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 24px rgba(22,73,160,0.12);
  transform: translateY(-2px);
}
.product-card.featured {
  grid-column: span 2;
  background: var(--color-tasks);
  color: #fff;
}
.product-card.featured .product-name,
.product-card.featured .product-desc,
.product-card.featured .product-cta { color: #fff; }
.product-card.featured .product-icon { background: rgba(255,255,255,0.15); }
.product-card.featured .product-cta { opacity: 0.8; }
.product-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-icon svg { color: var(--brand); }
.product-card.featured .product-icon svg { color: #fff; }
.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.product-desc {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.55;
  flex: 1;
}
.product-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  margin-top: 4px;
}
.product-cta svg { width: 14px; height: 14px; }

/* ── INTELLIGENCE HIGHLIGHT ── */
.intelligence-section {
  background: var(--brand-900);
  color: #fff;
}
.intelligence-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intelligence-section .section-label { color: rgba(255,255,255,0.6); }
.intelligence-section .section-label::before { background: rgba(255,255,255,0.4); }
.intelligence-section .section-title { color: #fff; }
.intelligence-section .section-sub { color: rgba(255,255,255,0.7); }
.intelligence-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.int-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.int-feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 7px;
}
.int-feat p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.int-feat strong { color: #fff; }
.intelligence-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.int-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}
.int-node-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(22,73,160,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.int-node-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.int-node-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.int-node-status {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.int-node-status.active { background: #d1efe8; color: #2c5536; }
.int-node-status.processing { background: rgba(22,73,160,0.4); color: #ccd9f5; }
.int-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 18px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: #fff;
  text-align: center;
}
.cta-box {
  background: var(--brand);
  border-radius: 24px;
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-image: radial-gradient(ellipse 50% 80% at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  max-width: 600px;
  line-height: 1.2;
}
.cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-white {
  background: #fff;
  color: var(--purple);
}
.btn-white:hover { background: var(--purple-light); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  max-width: 280px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  letter-spacing: 0.05em;
}
.footer-col h5 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-logo { height: 22px; opacity: 0.6; filter: brightness(0) invert(1); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .ps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card.featured { grid-column: span 2; }
  .intelligence-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-divider { display: none; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 72px 0 64px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-sec);
  max-width: 560px;
  line-height: 1.7;
}

/* ── PRODUCT DETAIL GRID ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-detail-grid.reverse { direction: rtl; }
.product-detail-grid.reverse > * { direction: ltr; }
.product-mock {
  background: var(--bg-off);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-mock-inner {
  width: 90%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 16px;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }
.blog-card-img {
  height: 180px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
  background: var(--brand-light);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.blog-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { color: var(--brand); }
.contact-item h4 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-item p { font-size: 14px; color: var(--text-sec); }
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(22,73,160,0.1);
}
.form-group textarea { min-height: 100px; }

/* ── ABOUT ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-light);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
}
.team-name {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.team-role { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.value-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.value-icon svg { color: var(--brand); }
.value-card h4 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* ── NAV MOBILE MENU ── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  z-index: 99;
  padding: 24px 20px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  padding: 12px 16px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-sec);
  text-decoration: none;
  border-radius: 8px;
}
.nav-mobile-menu a:hover { background: #f5f5f5; color: var(--text); }
