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

:root {
  --red: #c04030;
  --red-light: #e06050;
  --red-bg: rgba(192,64,48,0.08);
  --beige: #f5f0e8;
  --black: #111111;
  --gray: rgba(0,0,0,0.4);
  --border: rgba(0,0,0,0.08);
  --card: rgba(255,255,255,0.7);
  --dark: #111111;
  --dark-surface: #1a1a1a;
  --dark-card: #222222;
  --dark-border: rgba(255,255,255,0.07);
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--beige);
  color: var(--black);
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  height: var(--nav-height, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: var(--logo-height, 32px);
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red) !important; }

.lang-switch {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
}

.lang-switch:hover { color: var(--black); border-color: rgba(0,0,0,0.2); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(192,64,48,0.18) 0%, transparent 65%);
  top: -200px; right: -150px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(80,120,200,0.1) 0%, transparent 65%);
  bottom: -100px; left: 100px;
}
.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(220,160,60,0.12) 0%, transparent 65%);
  top: 40%; left: 35%;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.eyebrow span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2.5px;
  color: var(--black);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--red); }

.btn-secondary {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--black); }

/* ── HERO IMAGE ── */
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
}

/* ── CRM WINDOW ── */
.crm-window {
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
}

.crm-header {
  background: #222;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mac-dots { display: flex; gap: 6px; }
.mac-dot { width: 10px; height: 10px; border-radius: 50%; }
.mac-dot.r { background: #ff5f57; }
.mac-dot.y { background: #ffbd2e; }
.mac-dot.g { background: #28c840; }

.crm-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.12em;
  margin-left: 6px;
}

.crm-body { padding: 16px; }

.pipeline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.col-head {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.col-badge {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1px 6px;
  font-size: 8px;
  color: rgba(255,255,255,0.3);
}

.crm-card {
  background: #262626;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 9px 11px;
  margin-bottom: 7px;
}

.crm-card.hot {
  border-color: rgba(192,64,48,0.4);
  background: rgba(192,64,48,0.08);
}

.crm-card-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3px;
}

.crm-card.hot .crm-card-name { color: #e06050; }
.crm-card-sub { font-family: 'DM Mono', monospace; font-size: 8px; color: rgba(255,255,255,0.25); }

.cpill {
  display: inline-flex;
  font-family: 'DM Mono', monospace;
  font-size: 7px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 5px;
}

.cpill.g { background: rgba(40,200,64,0.1); color: #28c840; border: 1px solid rgba(40,200,64,0.2); }
.cpill.a { background: rgba(255,189,46,0.1); color: #ffbd2e; border: 1px solid rgba(255,189,46,0.2); }

.crm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.crm-stat { text-align: center; }
.crm-stat-val { font-size: 16px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 3px; }
.crm-stat-lbl { font-family: 'DM Mono', monospace; font-size: 7px; color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 60px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust-item { display: flex; align-items: baseline; gap: 8px; }
.trust-val { font-size: 22px; font-weight: 800; color: var(--black); }
.trust-label { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.12em; }
.trust-div { width: 1px; height: 28px; background: var(--border); }

/* ── SECTIONS ── */
.section-tag { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--red); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: 48px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.05; color: var(--black); margin-bottom: 16px; }
.section-title em { font-style: normal; color: var(--red); }
.section-sub { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 520px; margin-bottom: 56px; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover { border-color: rgba(192,64,48,0.3); transform: translateY(-2px); }

.service-icon {
  width: 40px; height: 40px;
  background: var(--red-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; letter-spacing: -0.3px; }
.service-desc { font-size: 13px; color: var(--gray); line-height: 1.65; }
.service-tag { display: inline-block; margin-top: 16px; font-family: 'DM Mono', monospace; font-size: 9px; color: var(--red); background: var(--red-bg); padding: 3px 10px; border-radius: 20px; letter-spacing: 0.05em; }

/* ── HOW SECTION ── */
.how-section { background: var(--black); padding: 100px 60px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-section .section-tag { color: rgba(192,64,48,0.8); }
.how-section .section-title { color: var(--white); }
.how-section .section-sub { color: rgba(255,255,255,0.4); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 32px 28px 32px 0; border-right: 1px solid rgba(255,255,255,0.08); }
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: 28px; }
.step-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--red); letter-spacing: 0.15em; margin-bottom: 16px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.3px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.65; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
}

.pricing-card.featured { background: var(--black); border-color: var(--black); }

.pricing-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.pricing-badge.basic { background: rgba(0,0,0,0.05); color: var(--gray); }
.pricing-badge.standard { background: var(--red-bg); color: var(--red); }

.pricing-price { font-size: 42px; font-weight: 800; color: var(--black); letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-period { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gray); margin-bottom: 20px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.3); }
.pricing-name { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.08); }

.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--black); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.7); }

.pf-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(40,180,80,0.12);
  border: 1px solid rgba(40,180,80,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pf-check svg { width: 8px; height: 8px; stroke: #28b450; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.pricing-btn { display: block; text-align: center; padding: 12px; border-radius: 8px; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.pricing-btn.dark { background: var(--black); color: var(--white); }
.pricing-btn.dark:hover { background: var(--red); }
.pricing-btn.white { background: var(--white); color: var(--black); }
.pricing-btn.white:hover { background: var(--beige); }
.pricing-btn.outline { background: transparent; color: var(--gray); border: 1px solid var(--border); }
.pricing-btn.outline:hover { border-color: rgba(0,0,0,0.2); color: var(--black); }

/* ── CTA SECTION ── */
.cta-section { background: var(--red); padding: 80px 60px; text-align: center; }
.cta-section h2 { font-size: 48px; font-weight: 800; color: var(--white); letter-spacing: -1.5px; margin-bottom: 16px; }
.cta-section p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; align-items: center; }

.btn-white { background: var(--white); color: var(--red); padding: 13px 28px; border-radius: 8px; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.9; }
.btn-ghost { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.7); text-decoration: none; letter-spacing: 0.08em; }

/* ── CONTACT FORM ── */
.contact-section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.contact-form button:hover { background: var(--red); }

.contact-info-item {
  margin-bottom: 24px;
}

.contact-info-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.contact-info-value a:hover { border-color: var(--red); }

/* ── FOOTER ── */
footer { background: var(--black); padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-brand { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.2em; text-transform: uppercase; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.2); text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.5); }
.footer-url { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(192,64,48,0.5); letter-spacing: 0.1em; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--black); }

.mobile-menu .mobile-cta {
  margin-top: 12px;
  background: var(--black);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  border: none;
  letter-spacing: 0.05em;
}

/* ── ACTIVE NAV ── */
.nav-links a.active { color: var(--black); }

/* ── BREADCRUMBS ── */
.breadcrumb-bar {
  padding: 12px 60px;
  margin-top: 64px;
  border-bottom: 1px solid var(--border);
  background: var(--beige);
}

.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb li {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb li a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb li a:hover { color: var(--black); }

.breadcrumb li + li::before {
  content: '›';
  margin: 0 10px;
  color: rgba(0,0,0,0.2);
}

.breadcrumb li[aria-current="page"] { color: var(--black); }

/* ── PAGE HERO (shorter, for subpages) ── */
.page-hero {
  padding: 48px 60px 56px;
  margin-top: 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 16px;
}

.page-hero h1 em { font-style: normal; color: var(--red); }

.page-hero .hero-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

/* ── PAGE CONTENT ── */
.page-content {
  padding: 0 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 64px;
}

.content-block h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}

.content-block h2 em { font-style: normal; color: var(--red); }

.content-block p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 16px;
}

.content-block p:last-child { margin-bottom: 0; }

.content-block a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(192,64,48,0.3);
  transition: border-color 0.2s;
}

.content-block a:hover { border-color: var(--red); }

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.value-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  max-width: none;
}

/* ── SERVICE DETAIL ── */
.service-detail {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }

.service-detail h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--black);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-detail .service-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-detail p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 12px;
}

.service-detail ul {
  list-style: none;
  margin: 20px 0;
}

.service-detail ul li {
  font-size: 14px;
  color: var(--black);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.service-detail .detail-cta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  display: inline-block;
  margin-top: 8px;
}

.service-detail .detail-cta:hover { color: var(--black); }

/* ── FAQ ACCORDION ── */
.faq-list {
  max-width: 780px;
}

.faq-group-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 48px;
}

.faq-group-title:first-child { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-item summary:hover { color: var(--red); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gray);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--red);
}

.faq-item .faq-answer {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  padding-bottom: 20px;
  max-width: 640px;
}

.faq-item .faq-answer a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(192,64,48,0.3);
}

/* ── BLOG LISTING ── */

/* Featured post (first/latest) */
.blog-featured {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.blog-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}

.blog-featured:hover {
  border-color: rgba(192,64,48,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.blog-featured h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.blog-featured p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 640px;
}

.blog-featured .read-more {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-top: 20px;
  display: inline-block;
  transition: gap 0.2s;
}

/* Card meta row */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red-bg);
  color: var(--red);
  padding: 4px 10px;
  border-radius: 20px;
}

.blog-card-date {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.08em;
}

/* Blog grid */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(192,64,48,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.blog-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

.blog-card .read-more {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-top: 18px;
  display: inline-block;
  transition: color 0.2s;
}

.blog-card:hover .read-more { color: var(--black); }

/* ── BLOG ARTICLE ── */
.article-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article-content {
  max-width: 720px;
}

.article-content h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.7px;
  color: var(--black);
  margin-top: 48px;
  margin-bottom: 18px;
  padding-top: 12px;
}

.article-content h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  line-height: 1.85;
  margin-bottom: 22px;
}

.article-content p:first-child {
  font-size: 18px;
  color: rgba(0,0,0,0.65);
  line-height: 1.75;
}

.article-content a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(192,64,48,0.3);
  transition: border-color 0.2s;
}

.article-content a:hover { border-color: var(--red); }

.article-content ul, .article-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.article-content li {
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  line-height: 1.85;
  margin-bottom: 10px;
}

.article-content li strong {
  color: var(--black);
}

.article-content blockquote {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--gray);
}

.article-content blockquote p {
  font-size: 17px;
  color: rgba(0,0,0,0.45);
  line-height: 1.7;
}

/* Article back link */
.article-back {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: 24px;
}

.article-back:hover { color: var(--black); }

/* ── RICH FOOTER ── */
.footer-rich {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 60px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-brand .footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-col-brand .footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-brand .footer-email {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-brand .footer-email:hover { color: var(--red); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--red); }

.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links a:hover { color: rgba(255,255,255,0.7); }

.footer-col-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.08em;
}

.footer-bottom a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.15);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.4); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { display: none; }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -1.5px;
  }

  .hero-sub { font-size: 15px; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-bar { padding: 20px 24px; overflow-x: auto; }
  .trust-inner {
    gap: 20px;
    min-width: 600px;
  }

  .services-section { padding: 60px 24px; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-title { font-size: 36px; letter-spacing: -1px; }

  .how-section { padding: 60px 24px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
  }

  .step:last-child { border-bottom: none; }
  .step:not(:first-child) { padding-left: 0; }

  .pricing-section { padding: 60px 24px; }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-card.featured { order: -1; }

  .cta-section { padding: 60px 24px; }
  .cta-section h2 { font-size: 36px; letter-spacing: -1px; }
  .cta-actions { flex-direction: column; gap: 12px; }

  .contact-section { padding: 60px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  footer {
    padding: 28px 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Breadcrumbs */
  .breadcrumb-bar { padding: 10px 24px; }

  /* Page hero */
  .page-hero { padding: 32px 24px 40px; }
  .page-hero h1 { font-size: 36px; letter-spacing: -1px; }

  /* Page content */
  .page-content { padding: 0 24px 60px; }

  /* Values grid */
  .values-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-featured { padding: 28px 22px; }
  .blog-featured h2 { font-size: 22px; }
  .blog-list { grid-template-columns: 1fr; }
  .blog-card-meta { flex-wrap: wrap; gap: 8px; }

  /* Rich footer */
  .footer-rich { padding: 40px 24px 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 30px; }
  .cta-section h2 { font-size: 30px; }
  .pricing-price { font-size: 36px; }
  .page-hero h1 { font-size: 30px; }
  .content-block h2 { font-size: 26px; }
  .blog-featured h2 { font-size: 20px; }
  .article-content h2 { font-size: 22px; }
  .article-content h3 { font-size: 17px; }
  .article-content p { font-size: 15px; }
  .article-content li { font-size: 15px; }
}
