/* IT CARE AND COMPLIANCE — Redesigned */

:root {
  --bg: #06080f;
  --bg-2: #0c1019;
  --surface: #111827;
  --surface-2: #1a2235;
  --text: #f0f4fc;
  --muted: #8b9ab8;
  --line: rgba(255, 255, 255, 0.07);
  --accent: #00d4aa;
  --accent-2: #3b82f6;
  --accent-3: #f97316;
  --gradient: linear-gradient(135deg, var(--accent), var(--accent-2));
  --gradient-warm: linear-gradient(135deg, var(--accent-3), #fbbf24);
  --glow: 0 0 60px rgba(0, 212, 170, 0.25);
  --radius: 20px;
  --radius-sm: 10px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.15rem; }

p { color: var(--muted); }

/* ── Ambient layers ── */

.noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

/* ── Reveal animations ── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Section label ── */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary {
  background: var(--gradient);
  color: var(--bg);
  box-shadow: 0 8px 32px rgba(0, 212, 170, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 12px 48px rgba(0, 212, 170, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.9rem 1.25rem;
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.btn-ghost:hover .btn-arrow { transform: translateX(4px); }

.pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  color: var(--accent);
}

/* ── Header ── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.logo-ring {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient);
  padding: 2px;
  flex-shrink: 0;
  animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(0, 212, 170, 0); }
}

.logo-letter {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--accent);
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-descriptor {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  gap: 0.25rem;
}

.nav-list a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s, background 0.25s;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta { margin-left: auto; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 170, 0.12);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.1);
  bottom: 10%;
  left: -10%;
  animation-delay: -3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(249, 115, 22, 0.08);
  top: 40%;
  left: 30%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: fade-down 0.8s var(--ease) 0.2s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  margin-bottom: 1.25rem;
  animation: fade-up 0.9s var(--ease) 0.35s both;
}

.hero-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 48ch;
  margin-bottom: 2rem;
  animation: fade-up 0.9s var(--ease) 0.5s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fade-up 0.9s var(--ease) 0.65s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual / orbit */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-orbit {
  position: relative;
  width: min(380px, 90vw);
  height: min(380px, 90vw);
}

.hero-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--glow), inset 0 0 40px rgba(0, 212, 170, 0.05);
  z-index: 2;
  animation: core-breathe 4s ease-in-out infinite;
}

@keyframes core-breathe {
  0%, 100% { box-shadow: var(--glow), inset 0 0 40px rgba(0, 212, 170, 0.05); }
  50% { box-shadow: 0 0 80px rgba(0, 212, 170, 0.35), inset 0 0 60px rgba(0, 212, 170, 0.08); }
}

.hero-core-letter {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-core-keywords {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.05em;
}

.orbit-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  animation: orbit-float 6s ease-in-out infinite;
}

.orbit-icon { font-size: 1rem; }

.orbit-card-1 { top: 5%; left: 10%; animation-delay: 0s; }
.orbit-card-2 { top: 15%; right: 0; animation-delay: -2s; }
.orbit-card-3 { bottom: 10%; left: 5%; animation-delay: -4s; }

@keyframes orbit-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  z-index: 1;
  animation: fade-up 1s var(--ease) 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ── Marquee ── */

.marquee-wrap {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 25s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee-sep {
  color: var(--accent);
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Stats ── */

.stats {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 170, 0.2);
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Profile bento ── */

.profile {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.profile-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2rem;
}

.bento-main {
  grid-row: 1 / 3;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.bento-main h2 { margin-bottom: 1rem; }
.bento-main p { font-size: 1.05rem; max-width: 42ch; margin-bottom: 1.5rem; }

.profile-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.bento-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.25);
}

.bento-mission {
  grid-column: 2 / 4;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(59, 130, 246, 0.08));
  border-color: rgba(0, 212, 170, 0.15);
}

.bento-icon { font-size: 1.5rem; }

.bento-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.bento-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.bento-mission blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* ── Values ── */

.values {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.values-header { margin-bottom: 2.5rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.value-card:hover::after { transform: scaleX(1); }

.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}

.value-icon-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.value-icon-wrap svg { width: 24px; height: 24px; }

.value-card h3 {
  margin-bottom: 0.65rem;
  color: var(--text);
}

.value-card p { font-size: 0.9rem; }

/* ── Services bento ── */

.services {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.services-header { margin-bottom: 2.5rem; }

.services-bento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.area-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.area-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.area-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(0, 212, 170, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.area-card:hover::before { opacity: 1; }

.area-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 1.25rem;
}

.area-card h3 {
  margin-bottom: 0.65rem;
  color: var(--text);
}

.area-card p { font-size: 0.9rem; }

.area-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface), rgba(0, 212, 170, 0.06));
}

/* ── Process timeline ── */

.process {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 7rem;
}

.process-sticky p {
  margin-top: 1rem;
  max-width: 32ch;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--line);
}

.timeline-line-fill {
  position: absolute;
  left: 23px;
  top: 24px;
  width: 2px;
  height: 0;
  background: var(--gradient);
  transition: height 1.2s var(--ease);
}

.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.process-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 2px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}

.process-step.visible .step-marker {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
  background: rgba(0, 212, 170, 0.1);
}

.step-content {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}

.process-step.visible .step-content {
  border-color: rgba(0, 212, 170, 0.15);
}

.process-step:hover .step-content {
  transform: translateX(6px);
}

.step-content h3 {
  margin-bottom: 0.4rem;
  color: var(--text);
}

.step-content p { font-size: 0.88rem; }

/* ── CTA Banner ── */

.cta-banner {
  position: relative;
  margin: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  overflow: hidden;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cta-banner-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.cta-banner-glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg, transparent, rgba(0, 212, 170, 0.15), transparent, rgba(59, 130, 246, 0.1), transparent);
  animation: cta-spin 8s linear infinite;
}

@keyframes cta-spin {
  to { transform: rotate(360deg); }
}

/* ── Contact ── */

.contact {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { margin-bottom: 2rem; max-width: 38ch; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 212, 170, 0.2);
}

.contact-card-icon { font-size: 1.25rem; }

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  word-break: break-word;
}

a.contact-value:hover { color: var(--accent); }

.contact-form {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form label.full-width { grid-column: 1 / -1; }

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(139, 154, 184, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 170, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.contact-form button { align-self: flex-start; margin-top: 0.5rem; }

/* ── Footer ── */

.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  background: var(--bg-2);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-letter {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--bg);
  font-size: 0.6rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.25s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-badge { justify-content: center; }
  .hero-desc { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-orbit { width: 280px; height: 280px; }
  .hero-core { width: 140px; height: 140px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-bento { grid-template-columns: 1fr 1fr; }
  .bento-main { grid-row: auto; grid-column: 1 / -1; }
  .bento-mission { grid-column: 1 / -1; }
  .values-grid { grid-template-columns: 1fr; }
  .process-layout { grid-template-columns: 1fr; }
  .process-sticky { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .area-card.featured { grid-column: span 1; }
}

@media (max-width: 680px) {
  .header-cta { display: none; }
  .burger { display: flex; margin-left: auto; }

  .nav {
    position: fixed;
    top: 5rem;
    left: 1rem;
    right: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--line);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    z-index: 300;
  }

  .nav.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .profile-bento { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .process-step { opacity: 1; transform: none; }
}
