/* ============================================================
   AgtForce — Main Stylesheet
   ============================================================ */

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

:root {
  --red:         #E8272A;
  --red-dark:    #c01f22;
  --red-glow:    rgba(232,39,42,0.35);
  --dark:        #0d0d14;
  --dark2:       #13131f;
  --dark3:       #1a1a2e;
  --card:        #16162a;
  --card-border: rgba(232,39,42,0.18);
  --white:       #ffffff;
  --grey:        #9a9ab0;
  --light:       #e8e8f0;
  --nav-h:       110px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn-r {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 13px 30px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(232,39,42,0.4);
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-r:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,39,42,0.5);
}
.btn-g {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 13px 30px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.9rem;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.btn-g:hover {
  border-color: var(--red);
  background: rgba(232,39,42,0.06);
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.s-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(13,13,20,0.9);
  border-bottom: 1px solid rgba(232,39,42,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 0 0;
  z-index: 999;
  overflow: visible;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s, border-color 0.3s;
}
.s-nav.scrolled {
  background: rgba(13,13,20,0.98);
  border-color: rgba(232,39,42,0.2);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0;
  padding-left: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.88; }
.nav-logo img {
  height: 220px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(232,39,42,0.45)) drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 16px rgba(232,39,42,0.7)) drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transform: scale(1.04);
}

/* Nav links */
.s-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
  white-space: nowrap;
}
.s-nav-links li a {
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.s-nav-links li a:hover { color: var(--white); }
.s-nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.s-nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

.s-nav-login {
  border: 1.5px solid rgba(232,39,42,0.6) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: border-color 0.2s, background 0.2s !important;
}
.s-nav-login:hover {
  background: rgba(232,39,42,0.12) !important;
  border-color: var(--red) !important;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.s-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 40px 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(232,39,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 75%, rgba(80,0,200,0.06) 0%, transparent 55%),
    var(--dark);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.65;
}

.s-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.s-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,39,42,0.1);
  border: 1px solid rgba(232,39,42,0.35);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s var(--ease) both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(232,39,42,0.5); }
  50% { opacity:0.6; transform:scale(0.8); box-shadow: 0 0 0 5px rgba(232,39,42,0); }
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 22px;
  animation: fadeInUp 0.9s 0.15s var(--ease) both;
}
.hero-title em { color: var(--red); font-style: normal; }

.hero-sub {
  color: var(--grey);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.9s 0.25s var(--ease) both;
}

.s-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.35s var(--ease) both;
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: fadeIn 1.2s 1s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0%   { opacity:0; transform:scaleY(0); transform-origin:top; }
  50%  { opacity:1; transform:scaleY(1); }
  100% { opacity:0; transform:scaleY(1); transform-origin:bottom; }
}
.scroll-ind span { color: #555; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ════════════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════════════ */
.s-sec { padding: 96px 0; }
.s-sec-dark  { background: var(--dark); }
.s-sec-dark2 { background: var(--dark2); }
.s-sec-dark3 { background: var(--dark3); }

.s-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.s-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.s-label.center { justify-content: center; }
.s-label.center::before { display: none; }

.s-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}
.s-title em { color: var(--red); font-style: normal; }

.s-sub {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 580px;
}
.s-sub.center { margin: 0 auto; text-align: center; }

.s-hdr { margin-bottom: 52px; }
.s-hdr.center { text-align: center; }

/* ════════════════════════════════════════
   EXPLAINER
════════════════════════════════════════ */
.explainer-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
}
.exp-card {
  background: var(--card);
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.exp-card:hover { background: #1e1e38; }
.exp-card::after {
  content: '→';
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.2rem;
  z-index: 2;
}
.exp-card:last-child::after { display: none; }
.exp-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232,39,42,0.16);
  line-height: 1;
  margin-bottom: 10px;
}
.exp-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.exp-t {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.exp-d { color: var(--grey); font-size: 0.83rem; line-height: 1.65; }

.exp-tagline {
  text-align: center;
  margin-top: 44px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--grey);
}
.exp-tagline em { color: var(--red); font-style: normal; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.srv-card {
  background: var(--card);
  border: 1px solid rgba(232,39,42,0.14);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease), border-color 0.28s, box-shadow 0.28s;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.srv-card:hover { transform: translateY(-6px); border-color: rgba(232,39,42,0.4); box-shadow: 0 12px 40px rgba(232,39,42,0.12); }
.srv-card:hover::before { opacity: 1; }
.srv-card.feat {
  border-color: rgba(232,39,42,0.42);
  background: linear-gradient(140deg, #1e1630 0%, var(--card) 100%);
}
.srv-card.feat::before { opacity: 1; }
.srv-badge {
  display: inline-block;
  background: rgba(232,39,42,0.12);
  border: 1px solid rgba(232,39,42,0.36);
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.srv-ico { font-size: 1.9rem; margin-bottom: 16px; display: block; }
.srv-t {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.srv-d { color: var(--grey); font-size: 0.83rem; line-height: 1.65; }

/* ════════════════════════════════════════
   SECURITY / TECHNOLOGY (OpenClaw)
════════════════════════════════════════ */
.oc-section { position: relative; overflow: hidden; }
.oc-bg-orb {
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,39,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.oc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.oc-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,39,42,0.09);
  border: 1px solid rgba(232,39,42,0.26);
  border-radius: 50px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 20px;
}
.oc-tag-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}
.oc-tag > span { font-size: 0.76rem; color: var(--light); font-weight: 500; }
.oc-sub { color: var(--grey); font-size: 0.9rem; line-height: 1.75; margin-bottom: 14px; }
.oc-sub strong { color: var(--white); }
.oc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
}
.oc-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--light);
  font-size: 0.74rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}
.oc-pill:hover { border-color: var(--red); background: rgba(232,39,42,0.07); }

/* "Powered by OpenClaw" footnote */
.oc-powered-by {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  font-size: 0.74rem;
}
.oc-powered-lbl { color: #555; }
.oc-powered-tag {
  color: var(--grey);
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.73rem;
}

/* Right column */
.oc-right { display: flex; flex-direction: column; gap: 12px; }
.oc-fc {
  background: var(--card);
  border: 1px solid rgba(232,39,42,0.13);
  border-radius: 11px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
}
.oc-fc:hover { border-color: rgba(232,39,42,0.38); transform: translateX(6px); }
.oc-fc-ico {
  width: 40px; height: 40px;
  background: rgba(232,39,42,0.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.oc-fc-t { font-weight: 600; font-size: 0.84rem; margin-bottom: 3px; }
.oc-fc-d { color: var(--grey); font-size: 0.74rem; }

/* Security Framework hero box */
.sec-hero-box {
  background: linear-gradient(135deg, rgba(232,39,42,0.1) 0%, rgba(232,39,42,0.04) 100%);
  border: 1px solid rgba(232,39,42,0.3);
  border-radius: 14px;
  padding: 26px 24px;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}
.sec-hero-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(232,39,42,0.2));
  border-radius: 14px 14px 0 0;
}
.sec-hero-icon { font-size: 2rem; margin-bottom: 10px; line-height: 1; }
.sec-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.sec-hero-sub {
  color: var(--grey);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.sec-layers { display: flex; flex-direction: column; gap: 7px; }
.sec-layer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 8px 12px;
  transition: background 0.2s, border-color 0.2s;
}
.sec-layer:hover {
  background: rgba(232,39,42,0.07);
  border-color: rgba(232,39,42,0.25);
}
.sec-layer-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  background: rgba(232,39,42,0.1);
  border: 1px solid rgba(232,39,42,0.25);
  border-radius: 5px;
  padding: 2px 7px;
  flex-shrink: 0;
}
.sec-layer-t { font-size: 0.8rem; font-weight: 500; color: var(--light); }

/* ════════════════════════════════════════
   WHO WE SERVE — AUDIENCE TABS
════════════════════════════════════════ */
.aud-tabs {
  display: flex;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  max-width: 580px;
  margin-bottom: 40px;
}
.aud-tab {
  flex: 1;
  padding: 12px 16px;
  background: var(--card);
  color: var(--grey);
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.aud-tab.active { background: var(--red); color: #fff; }
.aud-tab:hover:not(.active) { background: #1e1e38; color: var(--white); }

.aud-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.aud-panel.active { display: grid; animation: fadeIn 0.4s var(--ease); }

.aud-t {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}
.aud-d { color: var(--grey); font-size: 0.9rem; line-height: 1.75; margin-bottom: 22px; }
.aud-pts { display: flex; flex-direction: column; gap: 11px; }
.aud-pts li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: var(--light); }
.aud-pts li span { color: var(--red); flex-shrink: 0; font-weight: 700; margin-top: 2px; }

.aud-visual {
  background: var(--card);
  border: 1px solid rgba(232,39,42,0.14);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.aud-stat {
  text-align: center;
  padding: 22px;
  background: rgba(232,39,42,0.04);
  border: 1px solid rgba(232,39,42,0.12);
  border-radius: 10px;
  transition: background 0.25s, border-color 0.25s;
}
.aud-stat:hover { background: rgba(232,39,42,0.08); border-color: rgba(232,39,42,0.28); }
.aud-stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.aud-stat-l { color: var(--grey); font-size: 0.76rem; margin-top: 5px; }

/* ════════════════════════════════════════
   WHY AGTFORCE
════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin-top: 52px;
  border-radius: 14px;
  overflow: hidden;
}
.why-card {
  background: var(--card);
  padding: 44px 28px;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
}
.why-card:hover { background: #1e1e38; transform: translateY(-5px); }
.why-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.why-n--sm { font-size: 1.55rem; }
.why-l { font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }
.why-d { color: var(--grey); font-size: 0.78rem; line-height: 1.6; }

/* ════════════════════════════════════════
   TECH STACK
════════════════════════════════════════ */
.stack-wrap {
  text-align: center;
  padding: 52px 60px;
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stack-lbl {
  color: #555;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.stack-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.stk {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.stk:hover { border-color: var(--red); color: var(--white); transform: translateY(-2px); }
.stk.hi { border-color: rgba(232,39,42,0.38); color: var(--white); background: rgba(232,39,42,0.07); }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.contact-wrap::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(232,39,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.ct-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}
.ct-title em { color: var(--red); font-style: normal; }
.ct-sub { color: var(--grey); font-size: 0.9rem; line-height: 1.75; margin-bottom: 38px; }
.ct-items { display: flex; flex-direction: column; gap: 20px; }
.ct-item { display: flex; align-items: flex-start; gap: 14px; }
.ct-ico {
  width: 42px; height: 42px;
  background: rgba(232,39,42,0.08);
  border: 1px solid rgba(232,39,42,0.22);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ct-lbl { font-size: 0.67rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.ct-val { font-weight: 500; font-size: 0.9rem; }
.ct-social { display: flex; gap: 10px; margin-top: 30px; }
.ct-soc {
  width: 42px; height: 42px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--grey);
  transition: all 0.22s;
}
.ct-soc:hover { border-color: var(--red); color: var(--white); background: rgba(232,39,42,0.09); }

/* Form */
.ct-form {
  background: var(--card);
  border: 1px solid rgba(232,39,42,0.16);
  border-radius: 16px;
  padding: 40px 38px;
  position: relative;
}
.ct-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 26px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-grp { margin-bottom: 16px; position: relative; }
.f-grp label {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.f-grp input,
.f-grp select,
.f-grp textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  padding: 11px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus {
  border-color: var(--red);
  background: rgba(232,39,42,0.04);
}
.f-grp input.error,
.f-grp select.error { border-color: #f97316; }
.f-grp textarea { min-height: 96px; resize: vertical; }
.f-grp input::placeholder,
.f-grp textarea::placeholder { color: rgba(154,154,176,0.45); }
.f-grp select option { background: var(--card); }
.f-grp select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9ab0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.f-err {
  display: none;
  font-size: 0.7rem;
  color: #f97316;
  margin-top: 4px;
  position: absolute;
  bottom: -18px; left: 0;
}
.f-grp.has-error .f-err { display: block; }
.f-grp.has-error { margin-bottom: 28px; }
.f-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(232,39,42,0.28);
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.f-submit:hover:not(:disabled) { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,39,42,0.4); }
.f-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.f-note { text-align: center; color: #555; font-size: 0.7rem; margin-top: 14px; }

/* Form success */
.form-success { text-align: center; padding: 40px 20px; }
.form-success-icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success p { color: var(--grey); font-size: 0.9rem; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.s-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.s-footer-copy { color: #555; font-size: 0.76rem; }
.s-footer-copy em { color: var(--red); font-style: normal; }
.s-footer-links { display: flex; gap: 24px; }
.s-footer-links a { color: #555; font-size: 0.76rem; transition: color 0.2s; }
.s-footer-links a:hover { color: var(--white); }
.s-footer-pwr { color: #444; font-size: 0.72rem; }
.s-footer-pwr em { color: var(--red); font-style: normal; }

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232,39,42,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-2px) !important; }

/* ════════════════════════════════════════
   KEYFRAME ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeIn      { from { opacity:0; }                         to { opacity:1; } }
@keyframes fadeInUp    { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown  { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .srv-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .oc-wrap  { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .aud-panel    { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container  { padding: 0 24px; }
  .s-sec      { padding: 72px 0; }
  .s-nav      { padding: 0 24px; }
  .nav-logo img { height: 140px; }
  .nav-burger { display: flex; }
  .s-nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,13,20,0.98);
    border-bottom: 1px solid rgba(232,39,42,0.15);
    flex-direction: column;
    padding: 28px 32px;
    gap: 22px;
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
    backdrop-filter: blur(16px);
    white-space: normal;
  }
  .s-nav-links.open { transform: translateY(0); }
  .s-nav-links li a { font-size: 0.9rem; }
  .s-nav-cta { padding: 10px 22px !important; }
  .srv-grid      { grid-template-columns: 1fr; }
  .explainer-row { grid-template-columns: 1fr; }
  .exp-card::after { display: none; }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .f-row         { grid-template-columns: 1fr; }
  .s-footer      { flex-direction: column; text-align: center; padding: 24px; }
  .stack-wrap    { padding: 40px 24px; }
  .ct-form       { padding: 28px 22px; }
  .hero-title    { font-size: 2.8rem; }
  .aud-tabs      { max-width: 100%; }
}

@media (max-width: 500px) {
  .s-hero-btns { flex-direction: column; align-items: center; }
  .why-grid    { grid-template-columns: 1fr; }
  .hero-title  { font-size: 2.3rem; }
}
