/*
Theme Name: netzspitze
Theme URI: https://netzspitze.tech
Author: netzspitze
Author URI: https://netzspitze.tech
Description: Custom theme for netzspitze.tech - Managed Infrastructure for agencies
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: proprietary
Text Domain: netzspitze
*/

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

:root {
  --bg: #06080C;
  --bg-elevated: #0C1018;
  --bg-card: #0F1520;
  --bg-card-hover: #141C2A;
  --surface: #1A2234;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #A0ADBF;
  --text-secondary: #5C6B82;
  --text-bright: #EAF0F6;
  --text-white: #FFFFFF;
  --accent: #6EEEA0;
  --accent-secondary: #4ECDC4;
  --accent-glow: rgba(110, 238, 160, 0.08);
  --accent-glow-strong: rgba(110, 238, 160, 0.15);
  --warm: #F4A261;
  --danger: #EF6461;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--surface) var(--bg); }

body {
  font-family: var(--sans); background: var(--bg); color: var(--text);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

body::after {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 10000;
}

::selection { background: rgba(110, 238, 160, 0.25); color: var(--text-white); }
a { color: inherit; text-decoration: none; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px; transition: all 0.4s var(--ease-out-expo);
}
.nav.scrolled {
  background: rgba(6, 8, 12, 0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { font-weight: 700; font-size: 1.15rem; color: var(--text-white); letter-spacing: -0.03em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); transition: color 0.3s; }
.nav-links a:hover { color: var(--text-bright); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg);
  font-weight: 600; font-size: 0.82rem;
  padding: 10px 22px; border-radius: 100px;
  transition: all 0.3s var(--ease-out-expo);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(110,238,160,0.2); }
.nav-cta svg { width: 14px; height: 14px; }

/* Mobile nav */
.mobile-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 8px; }
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(6,8,12,0.95); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-size: 1.3rem; color: var(--text-bright); font-weight: 500; }
.mobile-overlay .nav-cta { font-size: 1rem; padding: 14px 32px; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--text); cursor: pointer;
}

/* ── BUTTONS ── */
.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  padding: 16px 32px; border-radius: 14px; border: none; cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  box-shadow: 0 4px 24px rgba(110,238,160,0.15);
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(110,238,160,0.25); }
.btn-main svg { width: 16px; height: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-family: var(--sans); font-weight: 500; font-size: 0.95rem;
  padding: 16px 28px; border-radius: 14px;
  border: 1px solid var(--border-hover); cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
}
.btn-ghost:hover { border-color: var(--text-secondary); color: var(--text-bright); background: rgba(255,255,255,0.02); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-gradient {
  position: absolute; top: -20%; left: -10%; width: 120%; height: 140%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(110,238,160,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(78,205,196,0.04) 0%, transparent 60%);
  pointer-events: none; animation: gradientShift 20s ease infinite alternate;
}
@keyframes gradientShift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-30px,20px) scale(1.05); } }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  opacity: 0; animation: fadeIn 0.8s 0.2s var(--ease-out-expo) forwards;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px var(--accent); animation: pulse 2.5s ease infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.8); } }

.hero h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400; line-height: 1.1; color: var(--text-white);
  letter-spacing: -0.02em; margin-bottom: 28px;
  opacity: 0; animation: fadeInUp 1s 0.35s var(--ease-out-expo) forwards;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-desc {
  font-size: 1.08rem; color: var(--text); line-height: 1.75;
  margin-bottom: 40px; max-width: 460px;
  opacity: 0; animation: fadeInUp 1s 0.5s var(--ease-out-expo) forwards;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 1s 0.65s var(--ease-out-expo) forwards;
}

/* Terminal */
.hero-terminal { opacity: 0; animation: fadeInUp 1s 0.5s var(--ease-out-expo) forwards; }
.terminal {
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.terminal-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.01);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot--r { background: #FF5F57; } .terminal-dot--y { background: #FEBC2E; } .terminal-dot--g { background: #28C840; }
.terminal-title { font-family: var(--mono); font-size: 0.7rem; color: var(--text-secondary); margin: 0 auto; }
.terminal-body { padding: 24px; font-family: var(--mono); font-size: 0.8rem; line-height: 2; min-height: 320px; }
.t-prompt { color: var(--accent); } .t-cmd { color: var(--text-bright); } .t-muted { color: var(--text-secondary); }
.t-ok { color: var(--accent); } .t-label { color: var(--text); display: inline-block; min-width: 160px; }
.t-cursor { display: inline-block; width: 8px; height: 16px; background: var(--accent); border-radius: 1px; animation: blink 1.2s step-end infinite; vertical-align: middle; margin-left: 2px; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
.terminal-line { opacity: 0; animation: termReveal 0.5s var(--ease-out-expo) forwards; }
.terminal-line:nth-child(1) { animation-delay: 0.9s; }
.terminal-line:nth-child(2) { animation-delay: 1.3s; }
.terminal-line:nth-child(3) { animation-delay: 1.6s; }
.terminal-line:nth-child(4) { animation-delay: 1.8s; }
.terminal-line:nth-child(5) { animation-delay: 2.0s; }
.terminal-line:nth-child(6) { animation-delay: 2.2s; }
.terminal-line:nth-child(7) { animation-delay: 2.4s; }
.terminal-line:nth-child(8) { animation-delay: 2.6s; }
.terminal-line:nth-child(9) { animation-delay: 2.8s; }
.terminal-line:nth-child(10) { animation-delay: 3.0s; }
@keyframes termReveal { to { opacity: 1; } }

/* ── PROOF BAR ── */
.proof { padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-stat { text-align: center; }
.proof-num { font-family: var(--serif); font-size: 2.2rem; color: var(--text-white); letter-spacing: -0.03em; }
.proof-label { font-size: 0.78rem; color: var(--text-secondary); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 4px; }
.proof-divider { width: 1px; height: 48px; background: var(--border); }

/* ── SECTION SHARED ── */
.s-padding { padding: 120px 0; }
.s-eyebrow { font-family: var(--mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.s-heading { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--text-white); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 20px; }
.s-heading em { font-style: italic; color: var(--accent); }
.s-desc { font-size: 1.05rem; color: var(--text); line-height: 1.75; max-width: 540px; margin-bottom: 56px; }
.s-desc.center, .s-heading.center, .s-eyebrow.center { text-align: center; margin-left: auto; margin-right: auto; }
.s-desc.center { max-width: 600px; }

/* ── SVG ICON HELPER ── */
.icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(110,238,160,0.06); border: 1px solid rgba(110,238,160,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-wrap svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon-wrap--lg { width: 48px; height: 48px; border-radius: 14px; }
.icon-wrap--lg svg { width: 22px; height: 22px; }

/* ── PAIN ── */
.pain { border-top: 1px solid var(--border); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: 20px; overflow: hidden; }
.pain-card { background: var(--bg-card); padding: 40px 32px; transition: background 0.4s; }
.pain-card:hover { background: var(--bg-card-hover); }
.pain-card .icon-wrap { margin-bottom: 24px; }
.pain-card h3 { font-weight: 600; font-size: 1.05rem; color: var(--text-bright); margin-bottom: 10px; }
.pain-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ── COST COMPARISON ── */
.compare { border-top: 1px solid var(--border); }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.compare-table thead th {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary);
  padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.compare-table thead th:last-child { color: var(--accent); }
.compare-table tbody td {
  padding: 16px 24px; font-size: 0.9rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .tool-name { color: var(--text-bright); font-weight: 500; }
.compare-table .price-saas { color: var(--danger); font-family: var(--mono); font-size: 0.85rem; }
.compare-table .price-netz { color: var(--accent); font-family: var(--mono); font-size: 0.85rem; }
.compare-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; padding: 24px 28px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
}
.compare-total .label { font-size: 0.95rem; color: var(--text-secondary); }
.compare-total .save {
  font-family: var(--serif); font-size: 2rem; color: var(--accent);
  letter-spacing: -0.02em;
}
.compare-total .save span { font-family: var(--sans); font-size: 0.85rem; color: var(--text-secondary); font-weight: 400; }
.compare-note { font-size: 0.78rem; color: var(--text-secondary); margin-top: 16px; text-align: center; }

/* ── APPS ── */
.apps { border-top: 1px solid var(--border); }
.apps-layout { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.apps-text { position: sticky; top: 120px; }
.apps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.app-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
  transition: all 0.35s var(--ease-out-expo);
}
.app-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.app-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.app-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.app-card h4 { font-size: 0.92rem; font-weight: 600; color: var(--text-bright); margin-bottom: 2px; }
.app-card span { font-size: 0.75rem; color: var(--text-secondary); }

/* ── PROCESS ── */
.process { border-top: 1px solid var(--border); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent); opacity: 0.2;
}
.step { text-align: center; padding: 0 20px; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-family: var(--mono); font-size: 0.85rem; font-weight: 500;
  color: var(--accent); transition: all 0.4s var(--ease-out-expo); position: relative; z-index: 2;
}
.step:hover .step-num { border-color: var(--accent); box-shadow: 0 0 40px var(--accent-glow-strong); transform: scale(1.1); }
.step h3 { font-weight: 600; font-size: 1rem; color: var(--text-bright); margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── CASE STUDY ── */
.case { border-top: 1px solid var(--border); }
.case-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
}
.case-content { padding: 56px 48px; }
.case-quote-mark {
  font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--accent); opacity: 0.3;
  margin-bottom: -20px;
}
.case-quote {
  font-family: var(--serif); font-size: 1.4rem; font-style: italic;
  color: var(--text-bright); line-height: 1.5; margin-bottom: 24px;
}
.case-author { font-size: 0.9rem; color: var(--text); margin-bottom: 4px; font-weight: 500; }
.case-role { font-size: 0.82rem; color: var(--text-secondary); }
.case-metrics {
  background: rgba(255,255,255,0.01); border-left: 1px solid var(--border);
  padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; gap: 32px;
}
.case-metric-num {
  font-family: var(--serif); font-size: 2.8rem; color: var(--accent); letter-spacing: -0.03em; line-height: 1;
}
.case-metric-label { font-size: 0.82rem; color: var(--text-secondary); margin-top: 6px; letter-spacing: 0.02em; }
.case-metric-detail { font-size: 0.82rem; color: var(--text); margin-top: 2px; }

/* ── PRICING ── */
.pricing { border-top: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px;
  transition: all 0.4s var(--ease-out-expo); position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.price-card.featured { border-color: rgba(110,238,160,0.3); background: linear-gradient(170deg, rgba(110,238,160,0.04) 0%, var(--bg-card) 40%); }
.price-badge {
  position: absolute; top: -1px; right: 32px;
  background: var(--accent); color: var(--bg);
  font-family: var(--mono); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 0 0 8px 8px;
}
.price-name { font-family: var(--mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 20px; }
.price-amount { font-family: var(--serif); font-size: 3.2rem; color: var(--text-white); letter-spacing: -0.03em; line-height: 1; }
.price-amount span { font-family: var(--sans); font-size: 0.9rem; font-weight: 400; color: var(--text-secondary); }
.price-sub { font-size: 0.82rem; color: var(--text-secondary); margin-top: 8px; margin-bottom: 28px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
  font-size: 0.88rem; color: var(--text); padding: 10px 0; display: flex; align-items: center; gap: 12px;
}
.price-features li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(110,238,160,0.08); border: 1px solid rgba(110,238,160,0.2);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236EEEA0' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.price-cta {
  display: block; text-align: center; padding: 14px; border-radius: 12px;
  font-weight: 600; font-size: 0.9rem; transition: all 0.35s var(--ease-out-expo);
  cursor: pointer; border: none; width: 100%; font-family: var(--sans);
}
.price-cta--primary { background: var(--accent); color: var(--bg); }
.price-cta--primary:hover { box-shadow: 0 8px 32px rgba(110,238,160,0.25); transform: translateY(-1px); }
.price-cta--ghost { background: transparent; border: 1px solid var(--border-hover); color: var(--text); }
.price-cta--ghost:hover { border-color: var(--text-secondary); color: var(--text-bright); }

/* ── TRUST ── */
.trust { border-top: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.trust-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 32px; display: flex; gap: 20px; transition: all 0.35s var(--ease-out-expo);
}
.trust-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.trust-card h3 { font-size: 1rem; font-weight: 600; color: var(--text-bright); margin-bottom: 6px; }
.trust-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ── DEVOPS BENEFITS ── */
.tech { border-top: 1px solid var(--border); }
.devops-benefit {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  margin-bottom: 12px; transition: all 0.35s var(--ease-out-expo); overflow: hidden;
}
.devops-benefit:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.devops-benefit-header {
  display: flex; gap: 24px; align-items: flex-start; padding: 32px 32px 24px;
}
.devops-benefit-header h3 {
  font-size: 1.08rem; font-weight: 600; color: var(--text-bright); margin-bottom: 8px;
}
.devops-benefit-desc {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; max-width: 640px;
}
.devops-detail-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border); background: rgba(255,255,255,0.008);
}
.devops-detail {
  padding: 16px 24px; display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--border);
}
.devops-detail:last-child { border-right: none; }
.devops-detail-label {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary);
}
.devops-detail-value {
  font-size: 0.82rem; color: var(--accent); font-weight: 500;
}

/* ── AUTOMATION CTA ── */
.automation-cta {
  background: linear-gradient(135deg, rgba(244,162,97,0.04) 0%, rgba(110,238,160,0.04) 100%);
  border: 1px solid rgba(244,162,97,0.15);
  border-radius: 20px; overflow: hidden;
}
.automation-cta-inner { padding: 48px; }
.automation-text { margin-bottom: 40px; }
.automation-heading {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; color: var(--text-white); line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.automation-heading em { font-style: italic; color: var(--warm); }
.automation-desc {
  font-size: 1rem; color: var(--text); line-height: 1.75; max-width: 640px;
}
.automation-services {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.automation-service {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  transition: all 0.3s var(--ease-out-expo);
}
.automation-service:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.035); }
.automation-service h4 { font-size: 0.92rem; font-weight: 600; color: var(--text-bright); margin-bottom: 6px; }
.automation-service p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ── CONSULTING CARD ── */
.consulting-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.consulting-inner { padding: 40px; display: flex; flex-direction: column; }
.consulting-heading {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--text-white); line-height: 1.25;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.consulting-desc {
  font-size: 0.95rem; color: var(--text); line-height: 1.7; max-width: 600px; margin-bottom: 28px;
}
.consulting-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.consulting-option {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
  transition: all 0.3s var(--ease-out-expo);
}
.consulting-option:hover { border-color: rgba(244,162,97,0.3); background: rgba(244,162,97,0.03); }
.consulting-option-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.consulting-option-name {
  font-family: var(--mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--warm);
}
.consulting-option-price {
  font-family: var(--serif); font-size: 1.2rem; color: var(--text-white);
}
.consulting-option p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ── FAQ ── */
.faq { border-top: 1px solid var(--border); }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; font-family: var(--sans);
  font-size: 1rem; font-weight: 500; color: var(--text-bright); text-align: left;
  padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--accent); }
.faq-q svg { width: 18px; height: 18px; color: var(--text-secondary); transition: transform 0.4s var(--ease-out-expo); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo); }
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 24px; }
.faq-a p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── CTA ── */
.cta-section {
  border-top: 1px solid var(--border); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 70%;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .s-heading { margin-bottom: 16px; }
.cta-section p { color: var(--text); font-size: 1.05rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--border); padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65;
  max-width: 280px; margin-bottom: 20px;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a {
  font-size: 0.82rem; color: var(--text); transition: color 0.3s;
  font-family: var(--mono);
}
.footer-contact a:hover { color: var(--accent); }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-heading {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.85rem; color: var(--text); transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-secondary); }

.footer-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent); opacity: 0.7;
}
.footer-badge svg { stroke: var(--accent); }

.footer-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--surface); color: var(--text-secondary);
  transition: all 0.3s var(--ease-out-expo); margin-top: 12px;
}
.footer-social:hover { background: var(--accent); color: var(--bg); }

/* ── ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { max-width: 100%; }
  .apps-layout { grid-template-columns: 1fr; gap: 40px; }
  .apps-text { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .case-card { grid-template-columns: 1fr; }
  .case-metrics { border-left: none; border-top: 1px solid var(--border); flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .devops-detail-row { grid-template-columns: repeat(2, 1fr); }
  .automation-services { grid-template-columns: 1fr; }
  .consulting-options { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .s-padding { padding: 80px 0; }
  .pain-grid { grid-template-columns: 1fr; border-radius: 16px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .proof-inner { gap: 24px; }
  .proof-divider { display: none; }
  .devops-detail-row { grid-template-columns: 1fr; }
  .devops-benefit-header { flex-direction: column; gap: 16px; padding: 24px; }
  .devops-detail { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 24px; }
  .devops-detail:last-child { border-bottom: none; }
  .automation-cta-inner { padding: 28px; }
  .consulting-inner { padding: 28px; }
  .consulting-heading { font-size: 1.3rem; }
  .case-metrics { padding: 32px; }
  .case-content { padding: 32px; }
  .compare-table { font-size: 0.82rem; }
  .compare-table thead th, .compare-table tbody td { padding: 12px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-badges { justify-content: center; }
}
