/* ─────────────────────────────────────────────
   Devinty – Main Stylesheet (v1 + additions)
   Dark theme · Red accent · Bebas Neue display
───────────────────────────────────────────── */

:root {
  --primary:       #E8192C;
  --primary-dim:   rgba(232,25,44,0.12);
  --dark:          #0D0F14;
  --darker:        #080A0E;
  --slate:         #3D4559;
  --slate-light:   #5A6580;
  --muted:         #8B95A8;
  --white:         #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background-color: var(--darker);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }


/* ── NAVBAR ── */
#navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

#navbar.scrolled {
  background: rgba(8,10,14,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(61,69,89,0.3);
}

.nav-link { position: relative; padding-bottom: 2px; }
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--primary); transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }



/* new nav */

/* Navbar glass on scroll */
.nav-scrolled {
  backdrop-filter: blur(14px);
  background: rgba(10, 14, 20, 0.75);
  border-bottom: 1px solid rgba(148,163,184,0.15);
}

/* Subtle glow */
.nav-scrolled::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(232,25,44,0.15), transparent 40%);
  pointer-events: none;
}

/* Links */
.nav-link {
  position: relative;
  transition: 0.3s;
}

.nav-link:hover {
  color: white;
}

/* Underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #e8192c, transparent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA button upgrade */
.nav-cta {
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(232,25,44,0.1);
  border: 1px solid rgba(232,25,44,0.3);
  color: white;
  font-size: 13px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(232,25,44,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,25,44,0.25);
}

/* Mobile links */
.mobile-link {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  color: #94a3b8;
  transition: 0.25s;
}

.mobile-link:hover {
  color: white;
  padding-left: 6px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--primary); color: var(--white);
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--primary); text-decoration: none;
  position: relative; overflow: hidden;
  transition: color 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white); transform: translateX(-101%); transition: transform 0.3s;
}
.btn-primary:hover { color: var(--darker); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary > * { position: relative; z-index: 1; }

.btn-lg  { padding: 0.875rem 2rem;    font-size: 0.875rem; }
.btn-xl  { padding: 1.1rem 2.5rem;    font-size: 1rem; }


/* ── HERO ── */
#hero-canvas { pointer-events: none; }

.text-stroke { -webkit-text-stroke: 2px var(--white); color: transparent; }

.scroll-dot { animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ── GRID BACKGROUNDS ── */
 .grid-bg {
  background-image:
    linear-gradient(rgba(61,69,89,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,69,89,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
}
.contact-grid {
  background-image:
    linear-gradient(rgba(232,25,44,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,25,44,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
} 


/* ── Service BACKGROUNDS ── */
.svc-premium-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(900px circle at 15% 20%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(700px circle at 85% 80%, rgba(255,255,255,0.03), transparent 60%),
    linear-gradient(to bottom, #080A0E, #0D0F14);
}

.svc-light {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.06) 50%,
    transparent 80%
  );

  opacity: 0.15;
  transform: translateX(-30%);
  animation: svcSweep 18s ease-in-out infinite;
}

@keyframes svcSweep {
  0%   { transform: translateX(-30%); }
  100% { transform: translateX(30%); }
}


.svc-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.03;
}


/* ── Process Background ── */

.premium-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(800px circle at 20% 20%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(600px circle at 80% 70%, rgba(255,255,255,0.03), transparent 60%),
    linear-gradient(to bottom, #080A0E, #0D0F14);
}

.premium-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

  background-size: 80px 80px;

  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);

  opacity: 0.25;
}


.premium-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.05), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.04), transparent 45%);

  filter: blur(100px);
  animation: premiumFloat 18s ease-in-out infinite alternate;
}

@keyframes premiumFloat {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-40px, 30px); }
}




/* ── SERVICES CARDS (hover-expand, 2 rows × 3) ── */

.svc-row {
  display: flex;
  gap: 12px;
  height: 340px;
}

.svc-card {
  flex: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  border: 1px solid rgba(61,69,89,0.35);
}

/* Expand on hover */
.svc-card:hover { flex: 3.5; }

/* ── Background (SVG art) ── */
.svc-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: brightness(0.75);

  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.5s ease;
}

.svc-card:hover .svc-bg { filter: brightness(1); }

.svc-bg-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.svc-bg-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-bg-icon svg {
  width: 120px;
  height: 120px;
  color: rgba(232,25,44,0.18);
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.4s;
}

.svc-card:hover .svc-bg-icon svg {
  opacity: 0.12;
  transform: scale(1.05);
}

.svc-bg-icon--light svg { color: rgba(255,255,255,0.15); }


.svc-label-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}


.svc-bg-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,7,12,0.9),
    rgba(5,7,12,0.3)
  );
  z-index: 1;
}

/* ── Dark overlay ── */
.svc-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(5,7,12,0.62);
  transition: background 0.45s;
}

.svc-card:hover .svc-overlay { background: rgba(5,7,12,0.78); }
.svc-overlay--accent { background: rgba(140,8,18,0.55); }
.svc-card:hover .svc-overlay--accent { background: rgba(140,8,18,0.72); }

/* Red top border on hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 10;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.svc-card:hover::before { transform: scaleX(1); }

/* ── Collapsed label (vertical, rotated) ── */
.svc-label {
 position: absolute;
  inset: 0;
  z-index: 4;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;

  padding: 1.5rem;
  gap: 6px;

  pointer-events: none;
  transition: opacity 0.25s;
  
}

.svc-card:hover .svc-label { opacity: 0; }

.svc-label-num {
 font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--primary);
  font-weight: 600;
  opacity: 0.8;
}

.svc-label--accent .svc-label-num { 
  color: rgba(255,150,150,0.9); 
  font-size: 2rem;
  opacity: 0.15;
}

.svc-proof {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
  font-style: italic;
}

.svc-label-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease;
}

/* ── Expanded content ── */
.svc-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s 0.15s;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.svc-card:hover .svc-content { opacity: 1; pointer-events: all; }

.svc-content-inner {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  min-width: 260px;
}

.svc-content-inner::-webkit-scrollbar { display: none; }

.svc-content-tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.svc-content-tag--light { color: rgba(255,180,180,0.85); }

.svc-content-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.06;
  color: #fff;
  margin-bottom: 0.625rem;
  letter-spacing: 0.02em;
}

.svc-content-bar {
  width: 36px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}
.svc-content-bar--light { background: rgba(255,180,180,0.7); }

.svc-content-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1rem;
}
.svc-content-desc--light { color: rgba(255,255,255,0.65); }

.svc-content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.svc-content-list li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.svc-content-list li svg {
  width: 13px;
  height: 13px;
  color: var(--primary);
  flex-shrink: 0;
}

.svc-content-list--light li { color: rgba(255,255,255,0.65); }
.svc-content-list--light li svg { color: rgba(255,180,180,0.85); }

.svc-content-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.75rem;
  flex-shrink: 0;
  transition: gap 0.2s;
}
.svc-content-cta svg { width: 13px; height: 13px; }
.svc-content-cta:hover { gap: 0.65rem; }
.svc-content-cta--light { color: rgba(255,200,200,0.9); }

/* ── Floating dots ── */
.fdot {
  position: absolute;
  z-index: 3;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
  transition: transform 0.35s, opacity 0.35s;
}
.fdot--light { background: rgba(255,180,180,0.9); }

/* Accent card (card 6) */
.svc-card--accent::before { background: rgba(255,120,120,0.8); }

/* Mobile: stack vertically */
@media (max-width: 900px) {
  .svc-row { flex-direction: column; height: auto; gap: 8px; }
  .svc-card { flex: none !important; height: 60px; border-radius: 10px; }
  .svc-card:hover { height: 380px; }
  .svc-label { writing-mode: horizontal-tb; transform: none; flex-direction: row; justify-content: flex-start; padding: 0 1.25rem; gap: 0.75rem; }
  .svc-content { position: relative; }
}


/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  position: relative;
  display: flex;
  align-items: stretch;
}

.process-step-inner {
  flex: 1;
  background: rgba(13,15,20,0.8);
  border: 1px solid rgba(61,69,89,0.4);
  border-right: none;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.process-step:last-child .process-step-inner { border-right: 1px solid rgba(61,69,89,0.4); }

.process-step-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0; transition: opacity 0.3s;
}

.process-step:hover .process-step-inner { border-color: rgba(232,25,44,0.3); }
.process-step:hover .process-step-inner::before { opacity: 1; }

.step-inner--last {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  border-right: 1px solid var(--primary) !important;
}

.step-connector {
  display: flex;
  align-items: center;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  flex-direction: row;
  gap: 0;
}

.connector-arrow {
  width: 36px; height: 36px;
  background: var(--darker);
  border: 1px solid rgba(232,25,44,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--primary);
  flex-shrink: 0;
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em;
  color: var(--primary); margin-bottom: 1.25rem; opacity: 0.8;
}

.step-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(232,25,44,0.1); border: 1px solid rgba(232,25,44,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.step-icon-wrap--accent {
  background: rgba(8,10,14,0.25);
  border-color: rgba(8,10,14,0.3);
}

.step-title { font-size: 1.125rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.step-title--light { color: var(--darker); }
.step-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; font-weight: 300; }
.step-desc--light { color: rgba(8,10,14,0.75); }

.step-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.4rem;
}
.step-list li {
  font-size: 0.75rem; color: var(--slate-light);
  display: flex; align-items: center; gap: 0.5rem; font-family: 'JetBrains Mono', monospace;
}
.step-list li::before { content: '→'; color: var(--primary); }
.step-list--light li { color: rgba(8,10,14,0.65); }
.step-list--light li::before { color: rgba(8,10,14,0.5); }

/* Onboarding note */
.onboarding-note {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(232,25,44,0.05); border: 1px solid rgba(232,25,44,0.2);
  padding: 1.5rem 2rem; max-width: 700px; margin: 0 auto;
}

.onboarding-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(232,25,44,0.1); border: 1px solid rgba(232,25,44,0.25);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}


/* ── PARTNERS GRID ── */
.tech-pill {
  padding: 14px;
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 10px;
  color: #94a3b8;
  transition: 0.3s;
}

.tech-pill:hover {
  color: white;
  border-color: rgba(232,25,44,0.4);
  transform: translateY(-3px);
}

/* ── ABOUT ── */
.about-visual-card { position: relative; padding: 1rem; }

.terminal-window {
  background: #0D1117; border: 1px solid rgba(61,69,89,0.5);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 40px rgba(232,25,44,0.06);
}
.terminal-header {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; background: #161B22;
  border-bottom: 1px solid rgba(61,69,89,0.4);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green  { background: #28C840; }
.terminal-title { margin-left: 0.5rem; }
.terminal-body { padding: 1.5rem; color: #CDD5E0; }

.type-cursor { animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.floating-badge {
  position: absolute; display: flex; align-items: center; gap: 0.4rem;
  background: rgba(13,15,20,0.9); border: 1px solid rgba(61,69,89,0.5);
  backdrop-filter: blur(12px); padding: 0.5rem 0.875rem;
  font-size: 0.75rem; font-weight: 600; color: var(--white);
  animation: float 4s ease-in-out infinite;
}
.badge-tl { top: -12px; right: 20px; animation-delay: 0s; }
.badge-br { bottom: -12px; left: 20px; animation-delay: 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.value-pill {
  flex-grow: 1;
  display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem;
  background: rgba(61,69,89,0.15); border: 1px solid rgba(61,69,89,0.3);
  font-size: 0.8125rem; color: var(--muted);
  transition: border-color 0.25s, color 0.25s;
}
.value-pill:hover { border-color: rgba(232,25,44,0.4); color: var(--white); }


/* ── SOCIAL BUTTONS ── */
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(61,69,89,0.2); border: 1px solid rgba(61,69,89,0.4);
  color: var(--muted);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }


/* ── CAREERS ── */
.careers-status-card {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  background: rgba(13,15,20,0.8); border: 1px solid rgba(61,69,89,0.4);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
}

.status-pulse {
  position: relative; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}

.pulse-ring {
  position: absolute; inset: 0; border: 2px solid rgba(232,25,44,0.4);
  border-radius: 50%; animation: pulsering 2s ease-out infinite;
}

.pulse-dot {
  width: 20px; height: 20px; background: var(--slate); border-radius: 50%;
  border: 3px solid rgba(61,69,89,0.6);
}

@keyframes pulsering {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}


/* ── LEGAL PAGES ── */
.legal-body { color: var(--muted); }

.legal-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem; font-weight: 700; color: var(--white);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}

.legal-section h2::before {
  content: ''; display: block;
  width: 3px; height: 1.125rem; background: var(--primary);
  flex-shrink: 0;
}

.legal-section p { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 0.75rem; }

.legal-section ul {
  list-style: none; padding: 0; margin: 0.75rem 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}

.legal-section ul li {
  font-size: 0.9rem; line-height: 1.65;
  padding-left: 1.5rem; position: relative;
}

.legal-section ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--primary); font-size: 0.75rem;
}

.legal-section a { color: var(--primary); text-decoration: underline; }
.legal-section strong { color: var(--white); font-weight: 600; }

.legal-contact {
  margin-top: 1rem; padding: 1.25rem 1.5rem;
  background: rgba(61,69,89,0.15); border: 1px solid rgba(61,69,89,0.3);
  display: flex; flex-direction: column; gap: 0.3rem;
  font-size: 0.9rem;
}

.legal-contact a { color: var(--primary); text-decoration: underline; }


/* ── GSAP REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); }
.hero-reveal { opacity: 0; transform: translateY(40px); }


/* Timeline line */
.process-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(232,25,44,0.4), transparent);
  z-index: 0;
}

/* Card */
.process-card {
  position: relative;
  z-index: 1;
}

/* Dot */
.step-dot {
  width: 14px;
  height: 14px;
  background: #e8192c;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(232,25,44,0.6);
}

.step-dot-accent {
  background: white;
}

/* Glass card */
.process-card-inner {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px;
  transition: all 0.4s ease;
}

/* Hover effect */
.process-card:hover .process-card-inner {
  transform: translateY(-10px);
  border-color: rgba(232,25,44,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Accent last card updated */
.process-card-accent {
  background: linear-gradient(135deg, #e8192c, #ff3b4d);
  color: white;
}

/* Typography */
.step-number {
  font-size: 14px;
  font-family: monospace;
  color: #e8192c;
  margin-bottom: 10px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 15px;
}

.step-list {
  font-size: 13px;
  color: #bbb;
  line-height: 1.8;
  padding-left: 15px;
}


/* Onboarding card */
.onboarding-note {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 20px 24px;
  border-radius: 14px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.35s ease;
}

/* Hover effect */
.onboarding-note:hover {
  transform: translateY(-4px);
  border-color: rgba(232,25,44,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Left accent line */
.onboarding-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, #e8192c, transparent);
}

/* Icon */
.onboarding-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  background: rgba(232,25,44,0.1);
}

/* Content */
.onboarding-title {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.onboarding-text {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

/* Highlight words */
.onboarding-text span {
  color: white;
  font-weight: 500;
}


/* Image wrapper */
.about-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* Image */
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

/* Hover zoom */
.about-image-wrap:hover .about-image {
  transform: scale(1.05);
}

/* Glow behind image */
.about-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(232,25,44,0.25), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

/* Floating badge */
.about-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;

  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 12px;
  color: white;
}


/* Background image */
.contact-bg {
  background-image: url('/images/brick-wall-background.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) contrast(1.2);
}

/* Red glow (important magic) */
.contact-glow {
  background: radial-gradient(circle at 50% 50%, rgba(232,25,44,0.25), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}


/* Subtle zoom animation */
.contact-bg {
  animation: slowZoom 20s ease-in-out infinite alternate;
}


/* Glow background */
.footer-glow {
  background: radial-gradient(circle at 20% 30%, rgba(232,25,44,0.08), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(232,25,44,0.06), transparent 40%);
}

/* Titles */
.footer-title {
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Links */
.footer-links li a {
  display: inline-block;
  font-size: 14px;
  color: #94a3b8;
  transition: all 0.25s ease;
}

.footer-links li a:hover {
  color: white;
  transform: translateX(4px);
}

/* Bottom links */
.footer-bottom-link {
  transition: 0.25s;
}
.footer-bottom-link:hover {
  color: white;
}

/* Social buttons */
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(148,163,184,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 12px;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: rgba(232,25,44,0.5);
  color: white;
  background: rgba(232,25,44,0.1);
  transform: translateY(-3px);
}

/* ── RESPONSIVE ── */

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
@media (max-width: 1024px) {
  .process-steps  { grid-template-columns: 1fr 1fr; }
  .partners-grid  { grid-template-columns: 1fr 1fr; }
  .step-connector { display: none; }
  .process-step-inner { border-right: 1px solid rgba(61,69,89,0.4); }
}

@media (max-width: 768px) {
  .text-stroke { -webkit-text-stroke: 1.5px var(--white); }
  .process-steps  { grid-template-columns: 1fr; }
  .partners-grid  { grid-template-columns: 1fr; }
  .service-card   { padding: 1.5rem; }
  .process-step-inner { border-right: 1px solid rgba(61,69,89,0.4) !important; }
  .terminal-body  { padding: 1rem; font-size: 0.75rem; }
}


@keyframes moveGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.2); }
}