/* ===== FONTS ===== */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('../fonts/bricolage-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('../fonts/bricolage-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ===== RESET & VARIABLES ===== */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d2444;
  --navy2: #1a3a6e;
  --blue: #2e8bc0;
  --cyan: #56b4d3;
  --green-dark: #052e16;
  --green: #16a34a;
  --green-deep: #15803d;
  --green-deeper: #166534;
  --red: #c0392b;
  --light-bg: #dbdde0;
  --surface: #e7e9eb;
  --text: #1a2b3c;
  --muted: #607080;
  --font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --shadow-card-hover: 0 12px 32px rgba(13,36,68,.18);
  --transition-base: 200ms ease;
}
h1, h2, h3, h4, .nav-logo-text { font-family: var(--font-display); }

/* ===== ICONS ===== */
.ic {
  width: 1.05em; height: 1.05em;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.15em; flex-shrink: 0; display: inline-block;
}
.card-ghost-icon { color: #fff; }
.card-ghost-icon .ic { stroke-width: 1.5; }
.urgency-icon { color: var(--red); }
.loi25-notice .urgency-icon { color: var(--green); }
.loi25-item .icon { color: #86efac; }
.pillar-icon { color: var(--blue); }
.community-icon { color: var(--navy); }
.skip-link { position: absolute; top: -100%; left: 0; background: var(--blue); color: #fff; padding: 8px 16px; font-size: 14px; font-weight: 700; z-index: 9999; text-decoration: none; border-radius: 0 0 6px 0; }
.skip-link:focus { top: 0; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--navy); }
button, a { touch-action: manipulation; }

/* ===== NAV ===== */
nav {
  background: rgba(13,36,68,.97);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: opacity .15s; }
.nav-logo:hover { opacity: .82; }
.nav-logo:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
.nav-logo img { height: 36px; filter: brightness(0) invert(1); }
.nav-logo-text { color: #fff; font-weight: 800; font-size: 18px; letter-spacing: 1.5px; }
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links a {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.82); text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 7px 14px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.06);
  transition: background-color .15s, border-color .15s, color .15s, transform .15s;
}
.nav-links a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.55); color: #fff; transform: translateY(-1px); }
.nav-links a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.nav-links a.highlight-services { background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.5); color: #93c5fd; font-weight: 700; }
.nav-links a.highlight-services:hover { background: rgba(59,130,246,.3); border-color: #3b82f6; color: #fff; }
.nav-links a.highlight-devops { background: rgba(20,184,166,.15); border-color: rgba(20,184,166,.5); color: #5eead4; font-weight: 700; }
.nav-links a.highlight-devops:hover { background: rgba(20,184,166,.3); border-color: #14b8a6; color: #fff; }
.nav-links a.highlight-monitoring { background: rgba(239,68,68,.15); border-color: rgba(239,68,68,.5); color: #fca5a5; font-weight: 700; }
.nav-links a.highlight-monitoring:hover { background: rgba(239,68,68,.3); border-color: #ef4444; color: #fff; }
.nav-links a.highlight { background: rgba(34,197,94,.14); border-color: #22c55e; color: #fff; font-weight: 700; }
.nav-links a.highlight:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.nav-links a.highlight-web { background: rgba(251,191,36,.12); border-color: #fbbf24; color: #fff; font-weight: 700; }
.nav-links a.highlight-web:hover { background: #fbbf24; border-color: #fbbf24; color: var(--navy); }
.nav-links a.highlight-ia { background: rgba(236,72,153,.15); border-color: rgba(236,72,153,.5); color: #f9a8d4; font-weight: 700; }
.nav-links a.highlight-ia:hover { background: rgba(236,72,153,.3); border-color: #ec4899; color: #fff; }
.lang-toggle { display: flex; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; }
.lang-toggle button { border: none; background: transparent; color: rgba(255,255,255,.6); padding: 6px 11px; font-size: 13px; font-weight: 600; cursor: pointer; }
.lang-toggle button.active { background: var(--blue); color: #fff; }
.lang-toggle button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #060f1e 0%, var(--navy) 40%, #1a4a7a 75%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: flex; align-items: stretch; min-height: 560px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,.025) 40px, rgba(255,255,255,.025) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,.025) 40px, rgba(255,255,255,.025) 41px);
}
.hero-left {
  flex: 1; display: flex; align-items: center;
  padding: 80px 48px 80px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 560px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.urgency-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(192,57,43,.15); border: 1px solid rgba(192,57,43,.4);
  color: #f87171; font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
  white-space: nowrap;
}
.loi25-badge {
  background: rgba(22,163,74,.15); border-color: rgba(22,163,74,.4); color: #4ade80;
}
.urgency-badge.loi25-badge .dot { background: #4ade80; }
.urgency-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #f87171;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.tagline-br { display: none; }
.hero-tagline { font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.hero h1 { font-size: clamp(27px, 4.6vw, 46px); font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 18px; }
.hero h1 em { color: var(--cyan); font-style: normal; display: block; }
.hero-checks { list-style: none; margin: 0 auto 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; width: fit-content; }
.hero-checks li { font-size: 16px; color: rgba(255,255,255,.82); display: flex; align-items: center; gap: 10px; line-height: 1.4; }
.hero-checks li::before { content: '✓'; color: #4ade80; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.hero-geo { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.geo-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 5px 12px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: #fff; color: var(--navy); font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 6px; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,.3); transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease; }
.btn-secondary { display: inline-block; background: transparent; color: rgba(255,255,255,.85); font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 6px; text-decoration: none; border: 1px solid rgba(255,255,255,.25); transition: transform .15s ease, background-color .15s ease, border-color .15s ease; }
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); }
.btn-primary:hover { background: #e8f4ff; }
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.45); color: #fff; }
.btn-primary:focus-visible,
.btn-secondary:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero-right {
  width: 380px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  position: relative; padding-top: 40px;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #0d2444 0%, transparent 40%);
  z-index: 1; pointer-events: none;
}
.hero-photo { width: 100%; max-width: 340px; position: relative; z-index: 2; display: block; filter: drop-shadow(-8px 0 24px rgba(6,15,30,.6)); }
.hero-founder { position: absolute; bottom: 28px; right: 28px; z-index: 3; text-align: right; }
.hero-founder-name { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: .3px; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.hero-founder-title { font-size: 12px; color: var(--cyan); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
/* Mobile avatar */
.hero-avatar-mobile { display: none; width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid rgba(86,180,211,.5); margin: 0 auto 16px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.hero-founder-mobile { display: none; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 6px; margin-bottom: 20px; text-align: center; }
.hero-founder-mobile span { color: var(--cyan); font-weight: 600; }
/* Hero quote (Rock's speech) */
.hero-quote {
  position: relative; z-index: 2;
  margin: 28px 20px 0;
  padding: 18px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  flex-shrink: 0;
}
.hero-quote p { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.7; font-style: italic; margin: 0; }
.hero::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  background: url('../img/logo-icon.png') center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: .07;
  pointer-events: none;
  z-index: 1;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy); padding: 18px 40px;
  display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: 14px; font-weight: 500; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,.12); }

/* ===== WAVE ===== */
.wave { display: block; margin-top: -1px; }
#services, #loi25, #web, #ia, #devops, #monitoring, #contact { scroll-margin-top: 68px; }

/* ===== SECTION COMMONS ===== */
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); text-align: center; margin-bottom: 10px; }
.section-title { font-size: clamp(23px, 3vw, 30px); font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 8px; }
.section-sub { font-size: 16px; color: var(--muted); text-align: center; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-title, .hero h1, .simplicity h2, .loi25-left h2, .spec-content h2 { text-wrap: balance; }

/* ===== SECURITY / URGENCY ===== */
/* ===== SERVICES TI HERO ===== */
.services-hero { background: linear-gradient(150deg, #07111f 0%, #0d2444 55%, #091e3a 100%); padding: 72px 40px; position: relative; overflow: hidden; }
.services-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,transparent,transparent 40px,rgba(255,255,255,.015) 40px,rgba(255,255,255,.015) 41px),repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(255,255,255,.015) 40px,rgba(255,255,255,.015) 41px); }
.services-hero-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.services-hero .section-label { color: var(--cyan); text-align: left; }
.services-hero h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.services-hero h2 em { color: var(--cyan); font-style: normal; display: block; }
.services-hero p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 14px; }
.services-hero .btn-primary { margin-top: 8px; }
.services-hero-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sh-pillar { background: rgba(255,255,255,.05); border: 1px solid rgba(86,180,211,.18); border-radius: 12px; padding: 18px 16px; }
.sh-pillar-icon { display: block; font-size: 22px; margin-bottom: 10px; color: var(--cyan); }
.sh-pillar h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.sh-pillar p { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.55; margin: 0; }

/* ===== DEVOPS HERO ===== */
.devops-hero { background: linear-gradient(150deg, #071a1a 0%, #0c2828 60%, #071f1f 100%); padding: 72px 40px; position: relative; overflow: hidden; }
.devops-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,transparent,transparent 40px,rgba(255,255,255,.015) 40px,rgba(255,255,255,.015) 41px),repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(255,255,255,.015) 40px,rgba(255,255,255,.015) 41px); }
.devops-hero-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.devops-hero .section-label { color: #5eead4; text-align: left; }
.devops-hero h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.devops-hero h2 em { color: #5eead4; font-style: normal; display: block; }
.devops-hero p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 14px; }
.devops-hero .btn-teal { background: #14b8a6; color: #fff; margin-top: 8px; }
.devops-hero .btn-teal:hover { background: #0d9488; }
.devops-pipeline { display: flex; flex-direction: column; position: relative; }
.devops-pipeline::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 40px; width: 2px; background: rgba(94,234,212,.2); }
.dp-step { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; position: relative; }
.dp-step:first-child { padding-top: 0; }
.dp-step:last-child { padding-bottom: 0; }
.dp-num { width: 40px; height: 40px; border-radius: 50%; background: rgba(20,184,166,.15); border: 2px solid rgba(94,234,212,.4); color: #5eead4; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: .5px; font-family: var(--font-display); position: relative; z-index: 1; }
.dp-content h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.dp-content p { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.6; margin: 0; }

/* ===== SURVEILLANCE HERO ===== */
.surv-hero { background: linear-gradient(150deg, #100808 0%, #1c0f0f 60%, #0c0606 100%); padding: 72px 40px; position: relative; overflow: hidden; }
.surv-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,transparent,transparent 40px,rgba(255,255,255,.015) 40px,rgba(255,255,255,.015) 41px),repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(255,255,255,.015) 40px,rgba(255,255,255,.015) 41px); }
.surv-hero-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.surv-hero .section-label { color: #fca5a5; text-align: left; }
.surv-hero h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.surv-hero h2 em { color: #fca5a5; font-style: normal; display: block; }
.surv-hero p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 14px; }
.surv-hero .btn-red { background: #dc2626; color: #fff; margin-top: 8px; }
.surv-hero .btn-red:hover { background: #b91c1c; }
.surv-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.surv-telemetron { width: 100%; max-width: 340px; height: auto; filter: drop-shadow(0 8px 40px rgba(230,82,44,.3)) drop-shadow(0 0 60px rgba(255,120,10,.15)); }
.surv-caption { font-size: 12px; color: rgba(255,255,255,.38); text-align: center; letter-spacing: .3px; margin: 0; }
.surv-oss-pill { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; color: #4ade80; border: 1px solid rgba(74,222,128,.35); background: rgba(74,222,128,.08); vertical-align: middle; letter-spacing: .4px; text-transform: uppercase; margin-left: 3px; }
.surv-stack { text-align: center; }
.surv-stack-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.surv-stack-pills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.surv-tool { font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 5px; border: 1px solid; letter-spacing: .3px; }
.tool-prometheus { color: #E6522C; border-color: rgba(230,82,44,.5); background: rgba(230,82,44,.1); }
.tool-grafana { color: #FF780A; border-color: rgba(255,120,10,.5); background: rgba(255,120,10,.1); }
.tool-loki { color: #F5A623; border-color: rgba(245,166,35,.45); background: rgba(245,166,35,.1); }
.tool-alertmanager { color: #ff6b4a; border-color: rgba(255,107,74,.4); background: rgba(255,107,74,.08); }
.tool-tempo { color: #b89bff; border-color: rgba(136,85,255,.4); background: rgba(136,85,255,.1); }
.tool-health { color: #4ade80; border-color: rgba(74,222,128,.35); background: rgba(74,222,128,.08); }

.security-focus { background: var(--surface); padding: 48px 40px 72px; }
.security-focus .section-label { font-size: 14px; letter-spacing: 2px; }
.urgency-row {
  display: flex; gap: 20px; max-width: 760px; margin: 0 auto 52px; align-items: stretch;
}
.urgency-panel {
  flex: 1; background: #fff; border-radius: 12px; border-left: 5px solid var(--red);
  padding: 28px 32px; box-shadow: 0 4px 20px rgba(192,57,43,.08);
  display: flex; gap: 24px; align-items: flex-start;
}
.urgency-icon { font-size: 36px; flex-shrink: 0; }
.urgency-panel h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.urgency-panel p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.loi25-notice { border-left-color: var(--green); box-shadow: 0 4px 20px rgba(22,163,74,.08); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.service-card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 24px rgba(13,36,68,.1); border: 1px solid rgba(46,139,192,.15);
  position: relative; overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.service-card.featured { border-color: rgba(86,180,211,.55); box-shadow: 0 8px 40px rgba(86,180,211,.25); }
.card-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 22px 24px 20px; position: relative; overflow: hidden;
}
.card-ghost-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 56px; opacity: .12; line-height: 1; pointer-events: none;
}
.featured-badge { display: inline-block; background: rgba(86,180,211,.18); border: 1px solid rgba(86,180,211,.35); color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 11px; border-radius: 8px; margin-bottom: 12px; }
.service-card h3 { font-size: 20px; font-weight: 800; color: #fff; margin: 0; }
.card-body { padding: 22px 26px 26px; }
.service-card p { font-size: 16px; color: var(--muted); line-height: 1.65; }
.service-list { list-style: none; margin-top: 16px; }
.service-list li { font-size: 15px; color: var(--text); padding: 6px 0; border-bottom: 1px solid #f0f6ff; display: flex; gap: 8px; }
.service-list li:last-child { border: none; }
.service-list .check { color: var(--blue); font-weight: 700; flex-shrink: 0; }
.service-geo { margin-top: 16px; display: flex; gap: 6px; flex-wrap: wrap; }
.card-more { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--blue); text-decoration: none; transition: color .15s; }
.card-more:hover { color: var(--cyan); }
.card-more:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 3px; }
.geo-tag { font-size: 12px; font-weight: 600; padding: 3px 9px; border-radius: 10px; }
.geo-local { background: #f0fdf4; color: var(--green); }
.geo-remote { background: #eef6ff; color: var(--blue); }

/* ===== AI FLAGSHIP ===== */
.ai-flagship { background: linear-gradient(160deg, #0b1726 0%, #0e2340 55%, #0a1c33 100%); padding: 64px 40px; position: relative; overflow: hidden; }
.ai-flagship::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg,transparent,transparent 40px,rgba(255,255,255,.02) 40px,rgba(255,255,255,.02) 41px),repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(255,255,255,.02) 40px,rgba(255,255,255,.02) 41px);
}
.ai-flagship-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.ai-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(86,180,211,.14); border: 1px solid rgba(86,180,211,.35); color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px; }
.ai-badge .ic { width: 15px; height: 15px; }
.ai-flagship h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.ai-flagship h2 em { color: #f9a8d4; font-style: normal; display: block; }
.ai-scale-hook { text-align: center; margin: -4px 0 24px; }
.ai-scale-hook span { display: inline-block; font-size: 13px; font-weight: 800; color: #4ade80; border: 1px solid rgba(74,222,128,.4); background: rgba(74,222,128,.1); padding: 5px 16px; border-radius: 20px; letter-spacing: .3px; }
.ai-professions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.ai-profession { font-size: 12px; font-weight: 600; padding: 5px 13px; border-radius: 20px; background: rgba(236,72,153,.1); border: 1px solid rgba(236,72,153,.22); color: #f9a8d4; }
.ai-profession.ai-you { background: rgba(236,72,153,.22); border-color: rgba(236,72,153,.5); color: #fbcfe8; font-weight: 800; font-style: italic; }
.ai-sub { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.75; max-width: 680px; margin: 0 auto 32px; }
.ai-moment { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center; max-width: 680px; margin: 0 auto 36px; text-align: left; }
.ai-moment-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 10px; padding: 18px 20px; }
.ai-moment-card.ai-after { border-color: rgba(236,72,153,.3); background: rgba(236,72,153,.06); }
.ai-moment-tag { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.ai-moment-card.ai-after .ai-moment-tag { color: #f9a8d4; }
.ai-moment-time { font-size: 11px; font-family: monospace; color: rgba(255,255,255,.25); margin-bottom: 8px; }
.ai-moment-card.ai-after .ai-moment-time { color: #4ade80; }
.ai-moment-text { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }
.ai-moment-card.ai-after .ai-moment-text { color: rgba(255,255,255,.82); }
.ai-moment-arrow { color: rgba(255,255,255,.2); font-size: 24px; text-align: center; }
.ai-hero-img { width: 100%; max-width: 820px; border-radius: 14px; margin: 28px auto 36px; display: block; box-shadow: 0 8px 48px rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.07); }
.ai-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; margin-bottom: 36px; }
.ai-pillar { background: rgba(255,255,255,.04); border: 1px solid rgba(86,180,211,.18); border-radius: 12px; padding: 26px 24px; }
.ai-pillar-icon { display: inline-flex; color: var(--cyan); margin-bottom: 14px; }
.ai-pillar-icon .ic { width: 28px; height: 28px; }
.ai-pillar h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ai-pillar p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ===== VALUE SWITCH SECTION ===== */
.value-switch { background: var(--light-bg); padding: 72px 40px; }
.value-switch-inner { max-width: 960px; margin: 0 auto; }
.value-switch .section-label,
.value-switch .section-title,
.value-switch .switch-tagline-sub { text-align: left; }
.value-switch .section-sub { text-align: left; margin-left: 0; }
.switch-columns { display: flex; gap: 24px; align-items: flex-start; margin: 40px 0 36px; }
.switch-tagline-sub { font-size: 22px; font-weight: 600; color: #a84442; text-align: center; margin-bottom: 8px; }
.switch-col { flex: 1; border-radius: 12px; padding: 28px 28px 24px; }
.switch-old { background: rgba(192,57,43,.06); border: 1px solid rgba(192,57,43,.2); }
.switch-new { background: rgba(22,163,74,.07); border: 1px solid rgba(22,163,74,.25); }
.switch-col-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.switch-old .switch-col-label { color: var(--red); }
.switch-new .switch-col-label { color: var(--green); }
.switch-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.switch-list li { font-size: 14px; color: var(--text); line-height: 1.5; padding-left: 22px; position: relative; }
.switch-old .switch-list li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-size: 12px; font-weight: 700; top: 2px; }
.switch-new .switch-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-size: 12px; font-weight: 700; top: 2px; }
.switch-arrow { display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--blue); font-weight: 700; padding-top: 80px; flex-shrink: 0; }
.switch-cta { text-align: center; }
.btn-switch { display: inline-block; background: var(--green-deep); color: #fff; font-size: 15px; font-weight: 700; padding: 14px 32px; border-radius: 6px; text-decoration: none; transition: background-color .2s; }
.btn-switch:hover { background: var(--green-deeper); }

/* ===== WEB PRESENCE ===== */
.webpresence { background: linear-gradient(135deg, #0a1a2e 0%, #0e2742 58%, #123154 100%); padding: 72px 40px; position: relative; overflow: hidden; }
.webpresence-inner {
  max-width: 1000px; margin: 0 auto; display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-areas: "copy visual" "cta visual";
  column-gap: 56px; row-gap: 0; align-items: center;
  position: relative; z-index: 1;
}
.webpresence-copy { grid-area: copy; }
.webpresence-visual { grid-area: visual; }
.webpresence-cta { grid-area: cta; }
.webpresence-copy .section-label { text-align: left; color: var(--cyan); }
.webpresence h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.webpresence h2 em { color: var(--cyan); font-style: normal; display: block; }
.webpresence-sub { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 22px; }
.webpresence-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.webpresence-list li { font-size: 15px; color: rgba(255,255,255,.88); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.webpresence-list .check { color: #4ade80; font-weight: 700; flex-shrink: 0; }
.webpresence-demo { display: flex; gap: 10px; align-items: center; background: rgba(236,72,153,.12); border: 1px solid rgba(236,72,153,.4); border-radius: 8px; padding: 12px 14px; margin-bottom: 22px; font-size: 14px; color: #fce7f3; line-height: 1.5; }
.webpresence-demo .ic { color: #f472b6; flex-shrink: 0; }
.webpresence-price { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 24px; }
.wp-pill {
  border-radius: 8px; padding: 8px 14px;
  font-size: 14px; font-weight: 600;
}
.wp-pill-setup {
  background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.4);
  color: #fde68a;
}
.wp-pill-setup strong { color: #fbbf24; font-weight: 800; }
.wp-pill-monthly {
  background: rgba(86,180,211,.12); border: 1px solid rgba(86,180,211,.45);
  color: #a8dcee;
}
.wp-pill-monthly strong { color: #56b4d3; font-weight: 800; }
.wp-price-note {
  font-size: 12px; color: rgba(255,255,255,.5); font-style: italic; line-height: 1.5;
  padding: 0 2px;
}
.webpresence-visual { display: flex; justify-content: center; }
.wp-phone-wrap { position: relative; display: inline-block; }
.wp-phone { width: 230px; background: #0b1726; border: 1px solid rgba(86,180,211,.2); border-radius: 22px; padding: 16px 14px; box-shadow: 0 18px 50px rgba(0,0,0,.45); }
.wp-fab-demo { position: absolute; bottom: -36px; right: -72px; width: 144px; height: 144px; border-radius: 50%; object-fit: cover; object-position: center 12%; border: 3px solid rgba(86,180,211,.6); box-shadow: 0 4px 18px rgba(13,36,68,.6); }
.wp-chat { display: flex; flex-direction: column; gap: 9px; }
.wp-bubble { font-size: 13px; line-height: 1.5; padding: 9px 12px; border-radius: 13px; max-width: 86%; }
.wp-bubble.bot { background: #14253c; color: #c9d7e6; align-self: flex-start; border-bottom-left-radius: 3px; }
.wp-bubble.user { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.wp-bubble.human { background: var(--green-deep); color: #fff; align-self: flex-start; border-bottom-left-radius: 3px; }
.wp-takeover { font-size: 11px; color: rgba(255,255,255,.5); text-align: center; padding: 5px 0; position: relative; }
.wp-takeover::before, .wp-takeover::after { content: ''; position: absolute; top: 50%; width: 18%; height: 1px; background: rgba(255,255,255,.14); }
.wp-takeover::before { left: 4px; }
.wp-takeover::after { right: 4px; }

/* ===== LOI 25 SECTION ===== */
.loi25-banner { background: linear-gradient(135deg, var(--green-dark), #14532d); padding: 72px 40px; position: relative; overflow: hidden; }
.loi25-banner::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,transparent,transparent 40px,rgba(255,255,255,.02) 40px,rgba(255,255,255,.02) 41px),repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(255,255,255,.02) 40px,rgba(255,255,255,.02) 41px); }
.loi25-inner { max-width: 900px; margin: 0 auto; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.loi-badge { display: inline-block; background: rgba(22,163,74,.2); border: 1px solid rgba(22,163,74,.4); color: #86efac; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 18px; }
.loi25-left h2 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.loi25-left .loi-sub { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; }
.loi25-items { display: flex; flex-direction: column; gap: 12px; }
.loi25-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; }
.loi25-item .icon { font-size: 19px; flex-shrink: 0; }
.loi25-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.loi25-item p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }
.pentest-block { grid-column: 1 / -1; margin-top: 8px; border: 1px solid rgba(239,68,68,.55); border-radius: 12px; display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; position: relative; overflow: hidden; background: rgba(185,28,28,.28) url('../img/white1_wide.webp') right center / cover no-repeat; }
.pentest-block::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(100,10,10,.95) 0%, rgba(120,10,10,.88) 45%, rgba(80,5,5,.4) 70%, transparent 100%); pointer-events: none; }
.pentest-icon { color: #fca5a5; flex-shrink: 0; position: relative; z-index: 1; }
.pentest-icon .ic { width: 26px; height: 26px; margin-top: 2px; }
.pentest-body { position: relative; z-index: 1; max-width: 520px; }
.pentest-body h3 { font-size: 16px; font-weight: 800; color: #fca5a5; margin-bottom: 6px; }
.pentest-body p { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.6; margin: 0 0 12px; }
.pentest-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pentest-tag { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 10px; color: #fca5a5; border: 1px solid rgba(239,68,68,.38); background: rgba(239,68,68,.1); }

/* ===== SIMPLICITY ===== */
.simplicity { background: var(--surface); padding: 72px 40px; border-top: 1px solid #e1ebf7; }
.simplicity-inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.simplicity h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.simplicity h2 em { color: var(--blue); font-style: normal; }
.simplicity p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 10px; }
.simplicity-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar-icon { font-size: 23px; flex-shrink: 0; margin-top: 2px; }
.pillar h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.pillar p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ===== SPECIALIZATION ===== */
.specialization { background: var(--light-bg); padding: 72px 40px; }
.spec-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.spec-content h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.spec-content p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.spec-list { list-style: none; margin-top: 16px; }
.spec-list li { font-size: 15px; color: var(--text); padding: 7px 0; border-bottom: 1px solid #dde8f5; display: flex; gap: 10px; }
.spec-list li:last-child { border: none; }
.spec-list .check { color: var(--blue); font-weight: 700; flex-shrink: 0; }
.spec-visual { background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 12px; padding: 28px; }
.sv-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.spec-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 6px; padding: 10px 14px; margin-bottom: 8px; font-size: 14px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 10px; }

/* ===== TESTIMONIAL ===== */
.testimonial { background: linear-gradient(135deg, #060f1e, var(--navy)); padding: 72px 40px; position: relative; overflow: hidden; }
.testimonial::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,transparent,transparent 40px,rgba(255,255,255,.015) 40px,rgba(255,255,255,.015) 41px),repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(255,255,255,.015) 40px,rgba(255,255,255,.015) 41px); }
.testimonial-inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial-badge { display: inline-block; background: rgba(86,180,211,.15); border: 1px solid rgba(86,180,211,.35); color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 28px; }
.quote-mark { font-size: 72px; color: var(--cyan); opacity: .25; line-height: .6; margin-bottom: 16px; font-family: Georgia, serif; }
.quote-mark-close { margin-top: -12px; margin-bottom: 16px; line-height: 1; }
.testimonial blockquote { font-size: 19px; font-style: italic; color: rgba(255,255,255,.88); line-height: 1.75; margin-bottom: 24px; }
.testimonial cite { font-size: 15px; color: var(--cyan); font-style: normal; font-weight: 700; }
.stars { color: #fbbf24; font-size: 17px; letter-spacing: 2px; margin-top: 10px; }
.founder-chip { display: inline-block; margin-top: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 12px; padding: 4px 14px; border-radius: 20px; }

/* ===== COMMUNITY ===== */
.community { background: #fef3c7; border-top: 1px solid #fcd34d; border-bottom: 1px solid #fcd34d; padding: 40px; }
.community-inner { max-width: 860px; margin: 0 auto; display: flex; align-items: center; gap: 28px; }
.community-icon { font-size: 36px; flex-shrink: 0; color: #92400e; }
.community-body { flex: 1; }
.community-body h3 { font-size: 17px; font-weight: 700; color: #78350f; margin-bottom: 6px; }
.community-body p { font-size: 15px; color: #92400e; line-height: 1.6; }
.btn-community { display: inline-block; background: transparent; color: #78350f; font-size: 14px; font-weight: 700; padding: 10px 22px; border-radius: 6px; text-decoration: none; border: 2px solid #92400e; white-space: nowrap; flex-shrink: 0; transition: background-color .2s, color .2s; }
.btn-community:hover { background: #78350f; color: #fff; }

/* ===== CONTACT ===== */
.contact { background: var(--light-bg); padding: 72px 40px; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-form { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 4px 24px rgba(13,36,68,.08); border: 1px solid rgba(46,139,192,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: .3px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 10px 14px; border: 1px solid #c8ddf0; border-radius: 6px; font-size: 15px; color: var(--text); background: #fafdff; font-family: inherit; transition: border-color .2s, box-shadow .2s; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); background: #fff; }
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(46,139,192,.25); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; background: var(--green-deep); color: #fff; border: none; padding: 14px; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; letter-spacing: .3px; font-family: inherit; transition: background-color .2s; }
.btn-submit:hover { background-color: var(--green-deeper); }
.btn-submit:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
/* Anti-spam honeypot: off-screen, never shown to humans, never tab-focusable. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status { font-size: 15px; text-align: center; margin-top: 12px; min-height: 20px; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }
.privacy-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ===== LEGAL (privacy policy) ===== */
.legal { background: var(--light-bg); padding: 56px 24px; min-height: calc(100vh - 60px - 90px); }
.legal-inner { max-width: 760px; margin: 0 auto; background: #fff; border-radius: 12px; padding: 48px; box-shadow: 0 4px 24px rgba(13,36,68,.08); border: 1px solid rgba(46,139,192,.1); }
.legal h1 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.legal h2 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 30px 0 10px; }
.legal p, .legal li { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--blue); }
@media (max-width: 768px) { .legal-inner { padding: 28px 20px; } }

/* ===== FOOTER ===== */
footer { background: #060f1e; color: rgba(255,255,255,.45); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 26px; filter: brightness(0) invert(1); opacity: .7; }
.footer-logo-text { color: rgba(255,255,255,.6); font-weight: 700; font-size: 15px; letter-spacing: 1px; }
footer a { color: rgba(255,255,255,.6); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,.85); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 6px 8px 4px; flex-wrap: wrap; gap: 0; align-items: center; height: auto; min-height: 52px; }
  #services, #loi25, #web, #ia, #devops, #monitoring, #contact { scroll-margin-top: 96px; }
  .nav-logo { flex: 1; }
  .nav-logo img { height: 23px; }
  .nav-logo-text { display: none; }
  .nav-links { order: 3; width: 100%; flex-wrap: wrap; justify-content: center; gap: 5px; padding: 6px 0 4px; border-top: 1px solid rgba(255,255,255,.07); }
  .nav-links a { font-size: 10px; padding: 4px 8px; gap: 3px; }
  .nav-links a .ic { display: none; }
  .hero-inner { flex-direction: column; }
  .hero-left { padding: 40px 24px 28px; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-tagline { text-align: center; }
  .tagline-br { display: block; }
  .tagline-sep { display: none; }
  .hero-badges { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-checks li { font-size: 14px; }
  .hero-right { display: none; }

  .hero-avatar-mobile { display: block; }
  .hero-founder-mobile { display: block; }
  .trust-bar { gap: 12px; padding: 14px 16px; flex-direction: column; align-items: flex-start; }
  .trust-divider, .trust-optional { display: none; }
  .services-hero { padding: 48px 20px; }
  .services-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .devops-hero { padding: 48px 20px; }
  .devops-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .devops-pipeline::before { left: 19px; top: 20px; bottom: 20px; }
  .surv-hero { padding: 48px 20px; }
  .surv-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .surv-telemetron { max-width: 260px; }
  .security-focus { padding: 48px 20px; }
  .value-switch { padding: 48px 20px; }
  .switch-columns { flex-direction: column; }
  .switch-arrow { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .urgency-row { flex-direction: column; }
  .urgency-panel { flex-direction: column; gap: 12px; padding: 20px; }
  .loi25-inner { grid-template-columns: 1fr; gap: 28px; }
  .ai-flagship { padding: 48px 20px; }
  .ai-pillars { grid-template-columns: 1fr; gap: 16px; }
  .ai-moment { grid-template-columns: 1fr; gap: 12px; }
  .ai-moment-arrow { display: none; }
  .webpresence { padding: 48px 20px; }
  .webpresence-inner { grid-template-columns: 1fr; grid-template-areas: "copy" "visual" "cta"; column-gap: 0; row-gap: 26px; }
  .webpresence-copy .section-label { text-align: left; }
  .simplicity { padding: 48px 20px; }
  .simplicity-inner { grid-template-columns: 1fr; gap: 32px; }
  .specialization { padding: 48px 20px; }
  .spec-inner { grid-template-columns: 1fr; gap: 32px; }
  .community { padding: 32px 20px; }
  .community-inner { flex-direction: column; text-align: center; }
  .testimonial { padding: 48px 20px; }
  .contact { padding: 48px 20px; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .loi25-left h2 { font-size: 23px; }
  .loi25-banner { padding: 48px 20px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px 20px; }
}
/* ===== SCROLL REVEAL (applied by JS only when motion is allowed) ===== */
.reveal-init { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal-in { opacity: 1; transform: none; }

/* ===== HERO SCAN LINE ===== */
.hero-scan {
  position: absolute; top: 0; bottom: 0; left: 0; width: 140px;
  background: linear-gradient(90deg, transparent, rgba(86,180,211,.09), transparent);
  transform: translateX(-140px);
  animation: scan 11s linear infinite;
  pointer-events: none; z-index: 1;
}
@keyframes scan { to { transform: translateX(100vw); } }

@media (prefers-reduced-motion: reduce) {
  .urgency-badge .dot { animation: none; }
  .hero-scan { animation: none; display: none; }
  .service-card, .btn-primary, .btn-secondary { transition: none; }
  .service-card:hover, .btn-primary:hover, .btn-secondary:hover { transform: none; }
  .reveal-init { transition: none; }
}

/* ===== DARK MODE (OS preference, no toggle) ===== */
/* ===== THEME: dark for all screen visitors (print falls back to the
   light base styles above to save ink). To restore OS-driven theming,
   change this to "@media (prefers-color-scheme: dark)". ===== */
@media screen {
  :root {
    color-scheme: dark;
    --light-bg: #0b1726;
    --text: #c9d7e6;
    --muted: #8da3ba;
    --shadow-card-hover: 0 12px 32px rgba(0,0,0,.5);
  }
  body { background: #08111d; }

  /* wave transitions into the first dark section instead of light blue */
  .wave path { fill: #0b1726; }

  /* headings that were navy on light */
  .section-title, .urgency-panel h3, .simplicity h2,
  .pillar h4, .spec-content h2 { color: #e9f2fb; }
  .community-body h3 { color: #78350f; }
  .section-label { color: var(--cyan); }

  /* sections that were white */
  .sh-pillar { background: rgba(255,255,255,.04); border-color: rgba(86,180,211,.14); }
  .security-focus { background: #0e1c30; }
  .simplicity { background: #0e1c30; border-top: 1px solid #1c3354; }
  .community { background: #fef3c7; border-top-color: #fcd34d; border-bottom-color: #fcd34d; }

  /* cards & panels */
  .service-card { background: #14253c; border-color: rgba(86,180,211,.18); box-shadow: 0 4px 24px rgba(0,0,0,.35); }
  .service-card.featured { border-color: rgba(86,180,211,.5); box-shadow: 0 8px 40px rgba(86,180,211,.12); }
  .service-list li { border-bottom-color: #1d3450; }
  .urgency-panel { background: #14253c; box-shadow: 0 4px 20px rgba(0,0,0,.3); }
  .geo-local { background: rgba(22,163,74,.16); color: #4ade80; }
  .geo-remote { background: rgba(46,139,192,.16); color: #7cc4e8; }

  /* value switch */
  .switch-tagline-sub { color: #e07570; }
  .switch-old { background: rgba(192,57,43,.1); border-color: rgba(192,57,43,.35); }
  .switch-new { background: rgba(22,163,74,.1); border-color: rgba(22,163,74,.35); }
  .switch-old .switch-col-label, .switch-old .switch-list li::before { color: #f87171; }
  .switch-new .switch-col-label, .switch-new .switch-list li::before { color: #4ade80; }

  /* specialization */
  .spec-list li { border-bottom-color: #1d3450; }
  .spec-visual { border: 1px solid rgba(86,180,211,.18); }

  /* community button */
  .btn-community { color: #78350f; border-color: #92400e; }
  .btn-community:hover { background: #78350f; color: #fff; }
  .community-icon { color: #92400e; }
  .community-body p { color: #92400e; }

  /* contact form */
  .contact-form { background: #14253c; border-color: rgba(86,180,211,.15); box-shadow: 0 4px 24px rgba(0,0,0,.35); }
  .form-group label { color: #cfe0f0; }
  .form-group input,
  .form-group textarea,
  .form-group select { background: #0e1c30; border-color: #2a4666; color: var(--text); }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { background: #122338; border-color: var(--cyan); }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #5f7894; }
  .form-status.success { color: #4ade80; }
  .form-status.error { color: #f87171; }

  /* legal page */
  .legal-inner { background: #14253c; border-color: rgba(86,180,211,.15); box-shadow: 0 4px 24px rgba(0,0,0,.35); }
  .legal h1, .legal h2 { color: #e9f2fb; }
  .legal a { color: var(--cyan); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}
