/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg-base:     #080C14;
  --bg-surface:  #0D1520;
  --bg-elevated: #131E2E;
  --border:      rgba(255, 255, 255, 0.07);
  --border-md:   rgba(255, 255, 255, 0.1);

  --accent-blue: #3B82F6;
  --accent-cyan: #06B6D4;
  --accent-green:#10B981;
  --grad:        linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
  --grad-soft:   linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(6,182,212,0.08) 100%);

  --text-primary:   #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted:     #4E6280;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.28s;

  --container-max: 1160px;
  --container-px:  clamp(1.25rem, 5vw, 2.5rem);

  --section-py: clamp(5rem, 10vw, 8rem);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; }
button { font-family: inherit; }
input, textarea, button { font-size: inherit; }

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

/* ============================================================
   TYPOGRAPHY SHARED
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-label { display: block; }

.section-header__heading {
  font-size: clamp(1.75rem, 3.8vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header__body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  border: none;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-md);
}
.btn--ghost:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
}

.btn--outline {
  background: transparent;
  color: var(--accent-blue);
  border: 1px solid rgba(59, 130, 246, 0.4);
}
.btn--outline:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: var(--accent-blue);
}

.btn--full { width: 100%; }

/* ============================================================
   BADGES
   ============================================================ */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-badge--live {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--accent-green);
}
.product-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: dot-pulse 2.5s ease-in-out infinite;
}

.product-badge--soon {
  background: rgba(100, 116, 139, 0.08);
  border: 1px solid rgba(100, 116, 139, 0.2);
  color: var(--text-muted);
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              backdrop-filter var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem var(--container-px);
}

.nav__logo {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  user-select: none;
}
.nav__logo-mark {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__logo-text { color: var(--text-primary); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
}
.nav__links a:hover { color: var(--text-primary); }

.nav__cta {
  padding: 0.5rem 1.125rem;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--text-primary) !important;
  transition: all var(--duration) var(--ease) !important;
}
.nav__cta:hover {
  background: var(--accent-blue) !important;
  border-color: var(--accent-blue) !important;
  color: #fff !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(8, 12, 20, 0.96);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  padding: 0.5rem var(--container-px) 1.25rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--duration) var(--ease);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--text-primary); }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem var(--container-px) 6rem;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.13) 0%, transparent 65%);
  top: -180px;
  right: -180px;
  animation: orb1 14s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 65%);
  bottom: -80px;
  left: -80px;
  animation: orb2 18s ease-in-out infinite;
}
@keyframes orb1 {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(-50px, 40px); }
  66%     { transform: translate(30px, -30px); }
}
@keyframes orb2 {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(40px, -50px); }
  66%     { transform: translate(-30px, 35px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  animation: hero-fade-in 0.9s var(--ease) both;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 2.25rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  animation: dot-pulse 2.5s ease-in-out infinite;
}

.hero__heading {
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.hero__heading-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.hero__body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 1.4s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-muted) 0%, transparent 100%);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  46%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}

.mission__grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  align-items: start;
}

.mission__label-col { padding-top: 0.2rem; }

.mission__heading {
  font-size: clamp(1.75rem, 3.8vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.mission__body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 3rem;
}

.mission__stats {
  display: flex;
  gap: 3rem;
}
.stat__value {
  font-size: 2.625rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
  font-weight: 500;
}

@media (max-width: 720px) {
  .mission__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .mission__stats { gap: 2rem; }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}

/* Featured card */
.product-featured {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.product-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 10%, rgba(59,130,246,0.07) 0%, transparent 55%);
  pointer-events: none;
}

/* Phone mockup */
.product-featured__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.product-featured__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 65%);
  filter: blur(48px);
  z-index: 0;
}

.product-featured__phone {
  position: relative;
  z-index: 1;
  width: 200px;
  background: #0A111C;
  border-radius: 36px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 32px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}

.phone-notch {
  width: 60px;
  height: 10px;
  background: rgba(0,0,0,0.8);
  border-radius: 0 0 8px 8px;
  margin: 0 auto 0;
}

.phone-screen {
  padding: 0.875rem 0.875rem 1.25rem;
}

.phone-ui__topbar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.phone-ui__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
.phone-ui__lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }

.line {
  height: 7px;
  background: var(--bg-elevated);
  border-radius: 4px;
}
.line--w30 { width: 30%; }
.line--w35 { width: 35%; }
.line--w40 { width: 40%; }
.line--w45 { width: 45%; }
.line--w50 { width: 50%; }
.line--w55 { width: 55%; }
.line--w65 { width: 65%; }
.line--w70 { width: 70%; }

.phone-ui__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-md);
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}
.phone-ui__card-tag {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.phone-ui__card-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}
.phone-ui__card-role {
  font-size: 0.5625rem;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
}
.phone-ui__card-actions { display: flex; gap: 0.3rem; }
.action-chip {
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  font-size: 0.5rem;
  font-weight: 700;
  background: var(--bg-base);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.action-chip--active {
  background: var(--accent-blue);
  color: #fff;
  border-color: var(--accent-blue);
}

.phone-ui__list { display: flex; flex-direction: column; gap: 0.4375rem; }
.phone-ui__list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.625rem;
}
.list-item__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid var(--border-md);
  flex-shrink: 0;
}
.list-item__lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }

/* Product info */
.product-featured__info { position: relative; z-index: 1; }

.product-featured__name {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0.75rem 0 0.375rem;
  line-height: 1;
}
.product-featured__url {
  font-size: 0.8125rem;
  color: var(--accent-blue);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;
  margin-bottom: 1.25rem;
}
.product-featured__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 1.75rem;
}

.product-featured__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.product-featured__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* Coming-soon grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  transition: border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  opacity: 0.65;
}
.product-card:hover {
  opacity: 1;
  border-color: rgba(100, 116, 139, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.product-card__icon { width: 36px; height: 36px; color: var(--text-muted); }

.product-card__name {
  font-size: 1.3125rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}
.product-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.product-card__footer { border-top: 1px solid var(--border); padding-top: 1rem; }
.product-card__status {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 880px) {
  .product-featured {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  .product-featured__visual { min-height: 280px; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.service-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--accent-blue);
  margin-bottom: 1.25rem;
  stroke-width: 1.5;
}
.service-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY AUGENTIQ
   ============================================================ */
.why {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}

.why__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.why__heading {
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.why__pillars { display: flex; flex-direction: column; gap: 2.5rem; }

.pillar {
  padding-left: 1.375rem;
  border-left: 2px solid var(--border-md);
  transition: border-color var(--duration) var(--ease);
}
.pillar:hover { border-left-color: var(--accent-blue); }

.pillar__number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  margin-bottom: 0.375rem;
}
.pillar__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pillar__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

@media (max-width: 800px) {
  .why__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   BACKED BY VERUM
   ============================================================ */
.verum-section {
  padding: var(--section-py) 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.verum__inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.verum__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.07);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.verum__heading {
  font-size: clamp(1.75rem, 3.8vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.verum__body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 2rem;
}
.verum__body strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}

.contact__heading {
  font-size: clamp(1.75rem, 3.8vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
}
.contact__body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 2rem;
}

.contact__details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact__detail-value {
  font-size: 0.9375rem;
  color: var(--accent-blue);
  transition: color var(--duration) var(--ease);
}
.contact__detail-value:hover { color: var(--accent-cyan); }

/* Form */
.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 1.375rem; }

label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

input, textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  resize: vertical;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--accent-green);
  text-align: left;
}
.form-success.show { display: flex; }

@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer__tagline {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.125rem;
}
.footer__col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
}
.footer__col a:hover { color: var(--text-primary); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer__bottom a {
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
}
.footer__bottom a:hover { color: var(--text-primary); }

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.footer__socials a {
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
  line-height: 0;
}
.footer__socials a:hover { color: var(--text-primary); }

@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .footer__links { grid-template-columns: 1fr; }
}
