/* ============================================================
   SOCIALCONCEPT — SENIOR DESIGN SYSTEM
   Apple-inspired · Red & Black · Professional MKB bureau
   ============================================================ */

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

:root {
  /* — Surfaces — */
  --bg:           #ffffff;
  --bg-subtle:    #fafafa;
  --bg-gray:      #f5f5f7;
  --bg-warm:      #faf7f6;
  --bg-dark:      #0a0a0a;
  --bg-darker:    #050505;

  /* — Text — */
  --text:         #1a1a1f;
  --text-muted:   #4a4a52;
  --text-light:   #8a8a92;

  /* — Brand — */
  --red:          #e5342a;
  --red-hover:    #d12820;
  --red-dark:     #a61c15;
  --red-soft:     rgba(229, 52, 42, 0.08);
  --red-softer:   rgba(229, 52, 42, 0.04);

  /* — Borders — */
  --border:       rgba(0, 0, 0, 0.07);
  --border-strong:rgba(0, 0, 0, 0.12);
  --border-dark:  rgba(255, 255, 255, 0.10);

  /* — Radii — */
  --r-sm:  10px;
  --r:     16px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-pill:999px;

  /* — Shadows (layered, warm) — */
  --shadow-xs:  0 1px 2px rgba(15, 15, 20, 0.04);
  --shadow-sm:  0 2px 8px rgba(15, 15, 20, 0.04), 0 1px 2px rgba(15, 15, 20, 0.03);
  --shadow:     0 8px 24px rgba(15, 15, 20, 0.06), 0 2px 6px rgba(15, 15, 20, 0.04);
  --shadow-lg:  0 24px 48px -12px rgba(15, 15, 20, 0.10), 0 8px 16px rgba(15, 15, 20, 0.05);
  --shadow-red: 0 8px 24px -6px rgba(229, 52, 42, 0.35), 0 4px 8px -2px rgba(229, 52, 42, 0.20);

  /* — Motion — */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);

  /* — Type — */
  --font: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Inter', BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 17px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

::selection { background: var(--red); color: #fff; }

/* Focus rings */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section { padding: 120px 0; }
.section-tight { padding: 88px 0; }
.section-gray { background: var(--bg-gray); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--bg-dark); color: #fff; position: relative; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
h1 { font-weight: 800; letter-spacing: -0.035em; }
h2 { font-weight: 800; letter-spacing: -0.028em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--red);
  padding: 7px 16px; border-radius: var(--r-pill);
  background: var(--red-soft);
  border: 1px solid rgba(229, 52, 42, 0.14);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 52, 42, 0.18);
}
.eyebrow-dark {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}
.eyebrow-dark::before { background: var(--red); box-shadow: 0 0 0 3px rgba(229, 52, 42, 0.3); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
}
.section-head p {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px; margin: 0 auto;
}
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,0.65); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(229, 52, 42, 0.45);
}

.btn-outline {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--text); color: #fff; border-color: var(--text);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.10); color: #fff;
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.28); }

.btn-light {
  background: #fff; color: var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.22); }

.btn-large { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}

/* Logo mark */
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--text); white-space: nowrap;
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(229, 52, 42, 0.30);
  font-family: 'SF Pro Display', -apple-system, sans-serif;
  flex-shrink: 0;
}
.nav-logo-text { white-space: nowrap; }
.nav-logo-text span { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  padding: 8px 16px; border-radius: var(--r-sm);
  transition: all 0.2s var(--ease);
}
.nav-links > a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-links > a.active { color: var(--red); }

.nav-cta {
  background: var(--red) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: var(--r-pill) !important;
  font-weight: 600 !important; margin-left: 8px;
  box-shadow: 0 4px 12px rgba(229, 52, 42, 0.28);
  transition: all 0.25s var(--ease) !important;
}
.nav-cta:hover { background: var(--red-hover) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: all 0.3s; }
.nav-mobile {
  display: none; flex-direction: column; padding: 16px 28px 24px;
  border-top: 1px solid var(--border); background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
}
.nav-mobile a { padding: 14px 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text); }
.nav-mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at 70% 20%, #2a0a08 0%, #150505 45%, #080304 100%);
  position: relative; overflow: hidden;
  padding: 140px 0 100px;
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 100%, rgba(229, 52, 42, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 10%, rgba(229, 52, 42, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}

.hero-container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 18px 8px 10px; border-radius: var(--r-pill);
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 52, 42, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(229, 52, 42, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(229, 52, 42, 0.10); }
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  max-width: 880px;
}
.gradient-text {
  background: linear-gradient(110deg, #ff5a4e 0%, #ff8a7e 35%, #ff5a4e 70%, #e5342a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.70);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 84px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 840px;
}
.stat { padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem; font-weight: 800; color: #fff;
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.52); font-weight: 500; line-height: 1.4; }

/* ============================================================
   CARDS (feature / services)
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 34px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card-hover:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-hover:hover::after { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}
.card-icon svg { width: 24px; height: 24px; stroke-width: 2; }
.card-hover:hover .card-icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
.card h3 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.015em;
}
.card p {
  font-size: 0.96rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 24px;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 600; color: var(--red);
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover { gap: 10px; color: var(--red-hover); }
.link-arrow svg { width: 14px; height: 14px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.pricing-featured {
  background: linear-gradient(165deg, #0f0f12 0%, #1a0908 100%);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.30), 0 0 0 1px rgba(229, 52, 42, 0.12);
}
.pricing-featured::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-xl);
  background: radial-gradient(circle at 80% 0%, rgba(229, 52, 42, 0.20) 0%, transparent 50%);
  pointer-events: none;
}
.pricing-featured:hover {
  box-shadow: 0 32px 64px -16px rgba(0,0,0,0.40), 0 0 0 1px rgba(229, 52, 42, 0.20);
}
.pricing-featured .pricing-name { color: #fff; }
.pricing-featured .pricing-sub { color: rgba(255,255,255,0.58); }
.pricing-featured .pricing-list li { color: rgba(255,255,255,0.72); border-bottom-color: rgba(255,255,255,0.08); }

.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 6px 16px; border-radius: var(--r-pill);
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(229, 52, 42, 0.40);
  white-space: nowrap; z-index: 2;
}

.pricing-top { margin-bottom: 28px; position: relative; }
.pricing-name {
  font-size: 1.25rem; font-weight: 800; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pricing-sub {
  font-size: 0.88rem; color: var(--text-muted);
  font-weight: 500; line-height: 1.5;
}
.pricing-divider {
  height: 1px; background: var(--border); margin: 0 0 24px;
}
.pricing-featured .pricing-divider { background: rgba(255,255,255,0.10); }

.pricing-list { flex: 1; margin-bottom: 32px; position: relative; }
.pricing-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: ''; flex-shrink: 0; margin-top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23e5342a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8.5L7 11.5L12 5.5'/%3E%3C/svg%3E");
  background-size: 16px 16px; background-repeat: no-repeat;
}
.pricing-list li.extra::before {
  background: var(--red-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23e5342a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8.5L7 11.5L12 5.5'/%3E%3C/svg%3E");
}
.pricing-featured .pricing-list li::before,
.pricing-featured .pricing-list li.extra::before {
  background: rgba(229, 52, 42, 0.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23e5342a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8.5L7 11.5L12 5.5'/%3E%3C/svg%3E");
}

/* ============================================================
   REVIEWS
   ============================================================ */
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.review-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}
.review-quote-mark {
  position: absolute; top: 24px; right: 28px;
  color: var(--red); opacity: 0.35;
}
.review-quote-mark svg { width: 32px; height: 32px; }
.review-stars {
  display: flex; gap: 3px; margin-bottom: 20px;
}
.review-stars svg { width: 16px; height: 16px; color: #ffb845; fill: #ffb845; }
.review-card p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}
.review-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.review-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(229, 52, 42, 0.30);
}
.review-name { color: #fff; font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; letter-spacing: -0.01em; }
.review-role { color: rgba(255,255,255,0.50); font-size: 0.83rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #b51910 100%);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 28px; }
.cta-section h2 {
  font-size: clamp(2rem, 4.5vw, 3rem); color: #fff;
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 20px; line-height: 1.1;
}
.cta-section p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 44px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505; color: rgba(255,255,255,0.55);
  padding-top: 88px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 64px;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 20px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s var(--ease);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover {
  background: var(--red); border-color: var(--red);
  color: #fff; transform: translateY(-2px);
}

.footer-col h4 {
  color: #fff; font-size: 0.88rem; font-weight: 700;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
}
.footer-bottom-inner a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-inner a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: radial-gradient(ellipse at 50% 0%, #2a0a08 0%, #150505 50%, #080304 100%);
  padding: 180px 0 110px;
  text-align: center;
  position: relative; overflow: hidden;
  color: #fff;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, #000 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding: 0 28px; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.035em; margin-bottom: 24px;
  line-height: 1.05;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.68);
  max-width: 620px; margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   SERVICES INTRO
   ============================================================ */
.services-intro {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
}
.services-intro-text .eyebrow { margin-bottom: 20px; }
.services-intro-text h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  letter-spacing: -0.025em;
  margin-bottom: 20px; line-height: 1.15;
}
.services-intro-text > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.services-checklist { margin-top: 28px; }
.services-checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 10px 0;
  font-size: 1rem; color: var(--text);
  font-weight: 500;
}
.services-checklist li svg {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--red); margin-top: 1px;
}

.stats-column {
  display: flex; flex-direction: column; gap: 16px;
}
.stat-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 32px;
  display: flex; align-items: center; gap: 24px;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.stat-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.stat-card-number {
  font-size: 2.6rem; font-weight: 800;
  color: var(--red); letter-spacing: -0.035em;
  line-height: 1; min-width: 110px;
  font-feature-settings: "tnum";
}
.stat-card-label {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.5; font-weight: 500;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.contact-info h2 {
  font-size: 2rem; font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.025em;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 44px; line-height: 1.7; font-size: 1rem; }

.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 28px;
  padding: 20px; border-radius: var(--r);
  transition: background 0.2s;
}
.contact-item:hover { background: var(--bg-gray); }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--red-soft); color: var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item strong {
  display: block; font-weight: 700; font-size: 0.78rem;
  margin-bottom: 4px; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-item span, .contact-item a {
  font-size: 1rem; color: var(--text); font-weight: 500;
}
.contact-item a:hover { color: var(--red); }

.contact-socials { margin-top: 40px; padding-left: 20px; }
.contact-socials h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.contact-socials-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  background: #fff;
  transition: all 0.2s var(--ease);
}
.social-pill svg { width: 14px; height: 14px; }
.social-pill:hover {
  border-color: var(--red); color: var(--red);
  background: var(--red-soft);
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.025em; }
.form-card-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
  letter-spacing: -0.005em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font); font-size: 0.95rem;
  color: var(--text); background: var(--bg-gray);
  transition: all 0.2s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 52, 42, 0.10);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-msg {
  display: none;
  padding: 16px 18px; border-radius: var(--r-sm);
  margin-bottom: 20px;
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid;
}
.form-msg.success { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.form-msg.error   { background: #fef2f2; color: #991b1b; border-color: #fecaca; }

.form-meta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-light);
  margin-top: 18px;
}
.form-meta svg { width: 14px; height: 14px; color: var(--red); }

/* ============================================================
   TRUST BAR (logo strip)
   ============================================================ */
.trust-bar {
  padding: 56px 0;
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-label {
  text-align: center; font-size: 0.8rem; font-weight: 600;
  color: var(--text-light); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 28px;
}
.trust-bar-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 56px; flex-wrap: wrap; opacity: 0.55;
}
.trust-bar-logos span {
  font-size: 1.15rem; font-weight: 700; color: var(--text-light);
  letter-spacing: -0.01em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-intro { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .stat { padding-right: 0; border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); padding-right: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 36px 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .trust-bar-logos { gap: 32px; }
  .page-hero { padding: 140px 0 80px; }
  .contact-socials { padding-left: 0; }
  .contact-item { padding: 16px 0; }
  .contact-item:hover { background: transparent; }
}
