/* ===== PARALLAX TECH LLC — Shared Styles ===== */
:root {
  --purple: #6D28D9;
  --slate: #1E1B2E;
  --white: #F3F1FA;
  --lime: #A3E635;
  --magenta: #E838B8;
  --void: #0B0817;
  --text-dark: #14101F;
  --text-light: #F3F1FA;
  --radius-card: 12px;
  --radius-btn: 8px;
  --shadow-depth: 0 2px 8px rgba(109,40,217,0.12), 0 12px 36px rgba(232,56,184,0.14), 0 36px 90px rgba(11,8,23,0.96);
  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", sans-serif;
  background: var(--void);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-head { font-family: "Sora", sans-serif; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { position: relative; padding: 100px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 18px;
}

.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.sec-sub { color: rgba(243,241,250,0.7); max-width: 640px; font-size: 1.05rem; }

.text-lime { color: var(--lime); }
.text-magenta { color: var(--magenta); }
.grad-text {
  background: linear-gradient(120deg, var(--purple), var(--magenta));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--lime));
  z-index: 2000; transition: width 0.1s linear;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-btn);
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.98rem;
  cursor: pointer; border: none; transition: all 0.22s ease;
  min-height: 48px;
}
.btn-primary {
  background: var(--purple); color: var(--white);
  box-shadow: 0 0 0 1px var(--magenta), 0 8px 24px rgba(109,40,217,0.4);
}
.btn-primary:hover {
  background: #5b1fc0; transform: scale(1.04);
  box-shadow: 0 0 26px var(--magenta), 0 8px 30px rgba(109,40,217,0.5);
}
.btn-secondary {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(243,241,250,0.4);
}
.btn-secondary:hover {
  border-color: var(--lime); color: var(--lime);
  transform: scale(1.04); box-shadow: 0 0 20px rgba(163,230,53,0.25);
}
.btn-lime {
  background: var(--lime); color: var(--void);
  box-shadow: 0 0 26px rgba(163,230,53,0.35);
  animation: pulseGlow 2.4s ease-in-out infinite;
}
.btn-lime:hover { transform: scale(1.04); box-shadow: 0 0 34px var(--magenta); }

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 22px rgba(163,230,53,0.3); }
  50% { box-shadow: 0 0 34px rgba(232,56,184,0.45); }
}

:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--magenta));
  opacity: 0.6;
}
.navbar.scrolled {
  background: rgba(11,8,23,0.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,56,184,0.4);
  box-shadow: 0 12px 40px rgba(11,8,23,0.6);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  position: relative; width: 42px; height: 42px;
  perspective: 400px;
}
.logo-mark span {
  position: absolute; inset: 0; border-radius: 6px;
  transform-style: preserve-3d;
}
.logo-mark .p1 {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  transform: skewX(-14deg) translateZ(0); border: 1px solid rgba(163,230,53,0.5);
}
.logo-mark .p2 {
  background: rgba(109,40,217,0.4); transform: skewX(-14deg) translate(6px,-4px);
  z-index: -1; border: 1px solid rgba(232,56,184,0.4);
}
.logo-mark .p3 {
  background: rgba(30,27,46,0.9); transform: skewX(-14deg) translate(12px,-8px);
  z-index: -2; border: 1px solid rgba(109,40,217,0.4);
}
.logo-mark b {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--white); font-size: 1rem;
  z-index: 3; letter-spacing: -0.02em;
}
.logo-text { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.logo-text small { display: block; font-size: 0.6rem; letter-spacing: 0.24em; color: var(--lime); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: "Sora", sans-serif; font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 6px 2px; color: rgba(243,241,250,0.8);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--purple); text-shadow: 0 0 14px rgba(109,40,217,0.8);
}
.nav-links a.active::after {
  content: ""; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
  background: var(--lime); border-radius: 2px;
}
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1100;
}
.hamburger span {
  width: 26px; height: 2.5px; background: var(--purple); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--magenta); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--magenta); }

.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(11,8,23,0.98); backdrop-filter: blur(16px);
  padding: 90px 24px 40px; z-index: 1050;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
  border-bottom: 2px solid var(--magenta);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  display: block; font-family: "Sora", sans-serif; font-size: 1.4rem; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid rgba(109,40,217,0.2);
  transform: translateX(-20px); opacity: 0;
}
.mobile-menu.open a { animation: slideIn 0.5s ease forwards; }
.mobile-menu.open a:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { animation-delay: 0.16s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.24s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.32s; }
@keyframes slideIn { to { transform: translateX(0); opacity: 1; } }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0; transform: translateY(40px) translateZ(-32px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0) translateZ(0); }

/* ===== Page hero banner (inner pages) ===== */
.page-hero {
  padding: 170px 0 90px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(109,40,217,0.28), transparent 60%), var(--void);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em;
  position: relative; text-shadow: 4px 4px 0 rgba(109,40,217,0.4), 8px 8px 0 rgba(232,56,184,0.25);
}
.breadcrumb {
  margin-top: 22px; color: rgba(243,241,250,0.6); font-size: 0.9rem;
  display: inline-flex; gap: 8px; align-items: center;
}
.breadcrumb .sep { color: var(--purple); }
.hero-underline {
  width: 90px; height: 4px; background: var(--lime); margin: 26px auto 0; border-radius: 3px;
  box-shadow: 0 0 18px rgba(163,230,53,0.6);
}

/* ===== Cards generic ===== */
.perspective { perspective: 1200px; }
.card-3d { transform-style: preserve-3d; transition: all 0.4s ease; }

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, var(--slate), var(--void));
  padding: 80px 0 30px; position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 50px;
}
.footer h4 {
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 20px; font-weight: 700;
}
.footer-col p { color: rgba(243,241,250,0.6); font-size: 0.92rem; margin-top: 16px; }
.footer-col a {
  display: block; color: rgba(243,241,250,0.65); padding: 6px 0; font-size: 0.92rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover { color: var(--lime); transform: translateX(4px); }
.footer-contact li { color: rgba(243,241,250,0.65); font-size: 0.9rem; margin-bottom: 12px; display: flex; gap: 10px; }
.footer-contact i { color: var(--lime); margin-top: 4px; }
.footer-rule {
  height: 1px; background: linear-gradient(90deg, transparent, var(--lime), transparent);
  background-size: 200% 100%; animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 24px; color: rgba(243,241,250,0.5); font-size: 0.82rem;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: rgba(109,40,217,0.15); color: var(--white); transition: all 0.25s ease;
}
.socials a:hover {
  background: var(--purple); color: var(--white);
  box-shadow: 0 0 20px var(--magenta); transform: translateY(-3px);
}

/* ===== Depth wash bg ===== */
.depth-wash {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.depth-wash::before, .depth-wash::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
  animation: drift 16s ease-in-out infinite;
}
.depth-wash::before {
  width: 500px; height: 500px; background: radial-gradient(circle, var(--purple), transparent 70%);
  top: -100px; left: -100px;
}
.depth-wash::after {
  width: 460px; height: 460px; background: radial-gradient(circle, var(--magenta), transparent 70%);
  bottom: -120px; right: -80px; animation-delay: -8s;
}
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,30px) scale(1.15); }
}

/* ===== Float layers (touch fallback + accents) ===== */
.float-shape { position: absolute; pointer-events: none; opacity: 0.5; }
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Touch: disable transform-based parallax hovers, use gentle float */
@media (hover: none) {
  .parallax-layer, .mouse-layer { transform: none !important; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: center;
  overflow: hidden; background: var(--void); padding-top: 90px;
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
#hero-canvas.css-fallback { background:
  radial-gradient(circle at 20% 30%, rgba(109,40,217,0.4), transparent 40%),
  radial-gradient(circle at 80% 60%, rgba(232,56,184,0.3), transparent 45%),
  radial-gradient(circle at 55% 85%, rgba(163,230,53,0.15), transparent 40%); }
.hero .wrap { position: relative; z-index: 1; }
.hero-content { max-width: 720px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.06;
  letter-spacing: -0.03em; margin: 20px 0;
}
.hero h1 .line { display: block; opacity: 0; transform: translateY(30px); animation: heroUp 0.9s ease forwards; }
.hero h1 .line:nth-child(1) { animation-delay: 0.15s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.35s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.55s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }
.hero p { color: rgba(243,241,250,0.78); font-size: 1.12rem; max-width: 600px; margin-bottom: 32px;
  opacity: 0; animation: heroUp 0.9s ease 0.7s forwards; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: heroUp 0.9s ease 0.85s forwards; }

/* ===== STATS BAR ===== */
.stats-bar { padding: 70px 0; background: var(--void); }
.stats-scroll {
  display: flex; gap: 24px; overflow-x: auto; padding: 20px 4px; perspective: 1200px;
  scrollbar-width: none;
}
.stats-scroll::-webkit-scrollbar { display: none; }
.stat-card {
  flex: 0 0 auto; min-width: 250px; background: var(--slate);
  border-radius: var(--radius-card); padding: 34px 30px; transform-style: preserve-3d;
  border-top: 2px solid var(--purple); transition: all 0.35s ease; box-shadow: var(--shadow-depth);
}
.stat-card:hover { transform: rotateX(10deg) translateY(-6px); box-shadow: 0 20px 50px rgba(109,40,217,0.4); border-top-color: var(--magenta); }
.stat-val { font-family: "Sora", sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--lime); line-height: 1; }
.stat-val .suffix { color: var(--magenta); }
.stat-label { color: rgba(243,241,250,0.7); margin-top: 10px; font-size: 0.95rem; }

/* ===== ADVANTAGE ===== */
.advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; perspective: 1200px; }
.feat-box {
  background: var(--slate); border: 1px solid rgba(109,40,217,0.5); border-radius: var(--radius-card);
  padding: 30px 26px; transform-style: preserve-3d; transition: all 0.35s ease;
}
.feat-box:nth-child(2) { transform: translateZ(20px); }
.feat-box:nth-child(3) { transform: translateZ(10px); }
.feat-box:hover { transform: translateY(-8px); border-color: var(--magenta); box-shadow: 0 18px 40px rgba(232,56,184,0.25); }
.feat-box i { font-size: 1.8rem; color: var(--lime); filter: drop-shadow(0 0 10px rgba(163,230,53,0.6)); margin-bottom: 14px; }
.feat-box h4 { font-size: 1.15rem; margin-bottom: 8px; }
.feat-box p { color: rgba(243,241,250,0.65); font-size: 0.92rem; }

/* ===== SERVICES FLIP ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; perspective: 1400px; }
.flip-card { height: 300px; transform-style: preserve-3d; cursor: pointer; transition: transform 0.6s ease; position: relative; }
.flip-card:hover, .flip-card.flipped { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0; border-radius: var(--radius-card); backface-visibility: hidden;
  padding: 36px 30px; display: flex; flex-direction: column; justify-content: center;
}
.flip-front {
  background: linear-gradient(160deg, var(--slate), var(--void));
  border: 1px solid rgba(109,40,217,0.5); box-shadow: inset 0 0 40px rgba(109,40,217,0.15);
}
.flip-front i { font-size: 2.6rem; color: var(--purple); filter: drop-shadow(0 0 14px rgba(109,40,217,0.7)); margin-bottom: 18px; }
.flip-front h3 { font-size: 1.35rem; }
.flip-front .hint { position: absolute; bottom: 18px; left: 30px; font-size: 0.75rem; color: rgba(243,241,250,0.4); letter-spacing: 0.1em; }
.flip-back {
  background: linear-gradient(160deg, var(--purple), #4c1d95); transform: rotateY(180deg);
  border: 1px solid var(--magenta);
}
.flip-back h3 { font-size: 1.15rem; margin-bottom: 16px; }
.flip-back li { padding: 7px 0; padding-left: 24px; position: relative; font-size: 0.92rem; color: rgba(243,241,250,0.9); }
.flip-back li::before { content: "\f0da"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--lime); position: absolute; left: 0; }

/* ===== PROCESS ===== */
.process-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; perspective: 1400px; position: relative; }
.process-wrap::before {
  content: ""; position: absolute; top: 46px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--purple)); opacity: 0.5; z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; transition: transform 0.4s ease; }
.step:nth-child(1) { transform: translateZ(40px); }
.step:nth-child(2) { transform: translateZ(20px); }
.step:nth-child(3) { transform: translateZ(10px); }
.step:hover { transform: translateY(-8px); }
.step-badge {
  width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--void); border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--lime);
  box-shadow: 0 0 24px rgba(109,40,217,0.5);
}
.step h4 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: rgba(243,241,250,0.65); font-size: 0.92rem; }

/* ===== INDUSTRIES ===== */
.pill-cloud { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; perspective: 1000px; }
.depth-pill {
  background: var(--slate); border: 1px solid var(--purple); color: var(--lime);
  padding: 14px 28px; border-radius: 40px; font-family: "Sora", sans-serif; font-weight: 600;
  transition: all 0.3s ease; font-size: 0.98rem;
}
.depth-pill:nth-child(even) { transform: translateY(-10px); }
.depth-pill:hover { border-color: var(--magenta); box-shadow: 0 0 24px var(--magenta); color: var(--white); transform: translateY(-14px) scale(1.05); }

/* ===== TESTIMONIALS ===== */
.slider-wrap { position: relative; max-width: 780px; margin: 0 auto; perspective: 1200px; }
.t-track { position: relative; min-height: 280px; }
.t-slide {
  position: absolute; inset: 0; opacity: 0; transform: rotateX(4deg) rotateY(-4deg) translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease; pointer-events: none;
  background: var(--white); color: var(--text-dark); border-radius: var(--radius-card);
  padding: 50px 46px; border-top: 4px solid var(--purple); box-shadow: var(--shadow-depth);
}
.t-slide.active { opacity: 1; transform: rotateX(4deg) rotateY(-4deg) translateY(0); pointer-events: auto; }
.t-slide .quote-mark { font-family: "Sora", sans-serif; font-size: 4rem; color: var(--magenta); line-height: 0.6; }
.t-slide p { font-size: 1.15rem; margin: 16px 0 24px; line-height: 1.6; }
.t-author { font-family: "Sora", sans-serif; font-weight: 700; color: var(--purple); }
.t-author small { display: block; color: #6b6580; font-weight: 500; }
.t-dots { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.t-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(109,40,217,0.3); border: none; cursor: pointer; transition: all 0.3s ease; }
.t-dot.active { background: var(--lime); transform: scale(1.2); box-shadow: 0 0 12px var(--lime); }

/* ===== CTA BANNER ===== */
.cta-banner { text-align: center; background: var(--void); overflow: hidden; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ===== ABOUT ===== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sculpt {
  position: relative; height: 380px; perspective: 1000px; display: flex; align-items: center; justify-content: center;
}
.sculpt .plane {
  position: absolute; width: 180px; height: 180px; border-radius: 18px;
  transform-style: preserve-3d; animation: revolve 18s linear infinite;
}
.sculpt .plane.p-a { background: linear-gradient(135deg, var(--purple), transparent); border: 1px solid var(--purple); }
.sculpt .plane.p-b { background: linear-gradient(135deg, var(--magenta), transparent); border: 1px solid var(--magenta); animation-delay: -6s; width: 150px; height: 150px; }
.sculpt .plane.p-c { background: linear-gradient(135deg, var(--lime), transparent); border: 1px solid var(--lime); animation-delay: -12s; width: 120px; height: 120px; opacity: 0.7; }
@keyframes revolve { 0% { transform: rotateY(0) rotateX(20deg); } 100% { transform: rotateY(360deg) rotateX(20deg); } }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; perspective: 1200px; }
.mv-card {
  background: var(--slate); border-radius: var(--radius-card); padding: 40px 36px;
  transition: all 0.4s ease; box-shadow: var(--shadow-depth);
}
.mv-card.mission { border-left: 4px solid var(--purple); }
.mv-card.vision { border-left: 4px solid var(--magenta); transform: translateZ(20px); }
.mv-card:hover { transform: translateY(-8px); }
.mv-card i { font-size: 2rem; color: var(--lime); margin-bottom: 16px; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.mv-card p { color: rgba(243,241,250,0.7); }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; perspective: 1200px; }
.value-card {
  background: var(--slate); border: 1px solid rgba(109,40,217,0.4); border-radius: var(--radius-card);
  padding: 34px 26px; text-align: center; transition: all 0.4s ease;
}
.value-card:nth-child(even) { transform: translateZ(16px); }
.value-card:hover { transform: translateY(-8px) rotateX(6deg); border-color: transparent; box-shadow: 0 0 0 1.5px var(--magenta), 0 20px 44px rgba(109,40,217,0.35); }
.value-card i { font-size: 2rem; color: var(--lime); margin-bottom: 14px; filter: drop-shadow(0 0 10px rgba(163,230,53,0.5)); }
.value-card h4 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: rgba(243,241,250,0.65); font-size: 0.9rem; }

.founder-card {
  background: var(--slate); border-left: 4px solid var(--purple); border-radius: var(--radius-card);
  padding: 50px 46px; box-shadow: var(--shadow-depth); display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center;
}
.founder-photo {
  width: 200px; height: 200px; border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: flex; align-items: center; justify-content: center; font-family: "Sora", sans-serif;
  font-size: 3.6rem; font-weight: 800; color: var(--white); box-shadow: 0 0 30px rgba(232,56,184,0.4);
}
.founder-card h3 { font-size: 2rem; }
.founder-card .founder-underline { width: 80px; height: 4px; background: var(--lime); margin: 10px 0 6px; border-radius: 3px; }
.founder-card .role { color: var(--magenta); font-family: "Sora", sans-serif; font-weight: 600; margin-bottom: 18px; }
.founder-card p { color: rgba(243,241,250,0.72); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.team-card { background: var(--slate); border-radius: var(--radius-card); padding: 30px; display: flex; gap: 20px; align-items: center; border: 1px solid rgba(109,40,217,0.3); }
.team-avatar { width: 70px; height: 70px; border-radius: 12px; background: linear-gradient(135deg, var(--purple), var(--magenta)); flex: 0 0 auto; }
.team-card h4 { font-size: 1.1rem; } .team-card small { color: var(--lime); }

/* Timeline */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 0; bottom: 0; width: 2px; background: var(--magenta); opacity: 0.5; }
.tl-item { position: relative; padding-bottom: 44px; }
.tl-item::before {
  content: ""; position: absolute; left: -38px; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--void); border: 3px solid var(--purple); box-shadow: 0 0 16px rgba(109,40,217,0.6);
}
.tl-item h4 { font-size: 1.2rem; margin-bottom: 6px; color: var(--lime); }
.tl-item p { color: rgba(243,241,250,0.7); }

/* ===== SERVICES PAGE ===== */
.svc-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
  background: var(--slate); border-left: 4px solid var(--purple); border-radius: var(--radius-card);
  padding: 46px; margin-bottom: 40px; box-shadow: var(--shadow-depth); transition: transform 0.4s ease;
  position: relative; overflow: hidden;
}
.svc-panel::after { content: ""; position: absolute; top: 0; right: 0; width: 60px; height: 60px; border-top: 3px solid var(--lime); border-right: 3px solid var(--lime); opacity: 0.5; }
.svc-panel:hover { transform: perspective(1000px) rotateY(-2deg) translateY(-6px); }
.svc-panel:nth-child(even) .svc-visual { order: -1; }
.svc-visual {
  height: 260px; border-radius: var(--radius-card); display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 40% 40%, rgba(109,40,217,0.5), var(--void));
  border: 1px solid rgba(232,56,184,0.3); position: relative; overflow: hidden;
}
.svc-visual i { font-size: 5rem; color: var(--lime); filter: drop-shadow(0 0 20px rgba(163,230,53,0.6)); z-index: 1; }
.svc-num { position: absolute; top: 20px; left: 24px; font-family: "Sora", sans-serif; font-size: 5rem; font-weight: 800; color: rgba(109,40,217,0.25); }
.svc-info h3 { font-size: 1.7rem; margin-bottom: 16px; }
.svc-info li { padding: 8px 0 8px 28px; position: relative; color: rgba(243,241,250,0.78); font-size: 0.95rem; }
.svc-info li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--lime); position: absolute; left: 0; }

.platform-strip { display: flex; gap: 18px; overflow-x: auto; padding: 16px 4px; scrollbar-width: none; }
.platform-strip::-webkit-scrollbar { display: none; }
.platform-badge {
  flex: 0 0 auto; border: 1.5px solid var(--purple); color: var(--lime); padding: 14px 30px;
  border-radius: 40px; font-family: "Sora", sans-serif; font-weight: 600; white-space: nowrap; transition: all 0.3s ease;
}
.platform-badge:hover { box-shadow: 0 0 24px var(--magenta); border-color: var(--magenta); transform: translateY(-4px); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; perspective: 1200px; }
.intake-panel {
  background: var(--slate); border-left: 4px solid var(--purple); border-radius: var(--radius-card);
  padding: 44px 40px; box-shadow: var(--shadow-depth);
}
.field { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.field label { color: var(--white); font-family: "Sora", sans-serif; font-weight: 500; font-size: 0.9rem; }
.field input, .field select, .field textarea {
  background: var(--void); border: 1px solid rgba(109,40,217,0.4); border-radius: 8px;
  padding: 13px 16px; color: var(--white); font-family: "Manrope", sans-serif; font-size: 0.95rem;
  transition: all 0.25s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lime); box-shadow: 0 0 16px rgba(163,230,53,0.3);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { display: none; margin-top: 16px; padding: 14px; border-radius: 8px; background: rgba(163,230,53,0.15); border: 1px solid var(--lime); color: var(--lime); }
.info-card {
  background: var(--slate); border-radius: var(--radius-card); padding: 40px 36px;
  transform: rotateY(-5deg); box-shadow: var(--shadow-depth); border: 1px solid rgba(109,40,217,0.4); transition: transform 0.4s ease;
}
.info-card:hover { transform: rotateY(0); }
.info-card h3 { font-size: 1.4rem; margin-bottom: 24px; }
.info-item { display: flex; gap: 16px; margin-bottom: 22px; }
.info-item i { color: var(--lime); font-size: 1.2rem; margin-top: 4px; width: 22px; }
.info-item strong { display: block; font-family: "Sora", sans-serif; font-size: 0.95rem; }
.info-item span { color: rgba(243,241,250,0.68); font-size: 0.9rem; }
.map-frame {
  margin-top: 40px; border-radius: var(--radius-card); overflow: hidden; position: relative;
  border: 2px solid var(--slate); box-shadow: 0 0 30px rgba(109,40,217,0.3); padding: 8px;
  background: var(--slate);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; border-radius: 8px; display: block; filter: grayscale(0.3) contrast(1.1); }
.assure-badge {
  display: inline-flex; align-items: center; gap: 12px; margin: 40px auto 0; padding: 16px 30px;
  background: rgba(163,230,53,0.1); border: 1px solid var(--lime); border-radius: 40px;
  color: var(--lime); font-family: "Sora", sans-serif; font-weight: 600;
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-wrap { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .process-wrap::before { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .advantage-grid, .story-grid, .mv-grid, .contact-grid, .svc-panel, .founder-card { grid-template-columns: 1fr; gap: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-wrap, .values-grid, .team-grid, .form-row { grid-template-columns: 1fr; }
  .svc-panel:nth-child(even) .svc-visual { order: 0; }
  .founder-photo { margin: 0 auto; }
  .founder-card { text-align: center; }
  .founder-card .founder-underline { margin: 10px auto 6px; }
}
