/* ============================================================
   ENZ TECHNOLOGIES – GLOBAL STYLESHEET (built from scratch)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --clr-bg:         #0a0c14;
  --clr-bg-2:       #0f1120;
  --clr-bg-card:    #141728;
  --clr-bg-card-hov:#1a1f35;
  --clr-border:     rgba(255,255,255,0.07);

  --clr-primary:    #6C63FF;
  --clr-primary-2:  #5a52e8;
  --clr-accent:     #3ECFCF;
  --clr-pink:       #FF6CA8;
  --clr-orange:     #FF9A3C;
  --clr-green:      #34D399;

  --clr-text:       #E8EAF0;
  --clr-text-muted: #8891AA;
  --clr-text-dim:   #5a6280;

  --grad-primary:   linear-gradient(135deg, #6C63FF 0%, #3ECFCF 100%);
  --grad-hero:      linear-gradient(160deg, #0a0c14 0%, #0f1120 50%, #0a0c14 100%);
  --grad-card:      linear-gradient(135deg, #141728 0%, #1a1e30 100%);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(108,99,255,0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --navbar-h: 72px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Layout ---------- */
.container {
  width: 90%;
  max-width: 1220px;
  margin: 0 auto;
}

.section { padding: 100px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(62,207,207,0.1);
  border: 1px solid rgba(62,207,207,0.25);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--clr-text);
}

.section-subtitle {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,99,255,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,99,255,0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
}
.btn--ghost:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--clr-primary);
  font-weight: 700;
}
.btn--white:hover {
  background: #f0efff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn--full { width: 100%; justify-content: center; }

.center-action { text-align: center; margin-top: 48px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(10,12,20,0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { display: flex; align-items: center; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--clr-accent); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--clr-text);
  background: rgba(255,255,255,0.06);
}

.nav-link.active { color: var(--clr-primary); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.navbar__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding-top: var(--navbar-h);
}

/* Particles canvas area */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particles::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 50%, rgba(108,99,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 20% 70%, rgba(62,207,207,0.08) 0%, transparent 70%);
}

/* Animated dots grid */
.hero__particles::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
  0%  { transform: translate(0, 0); }
  100%{ transform: translate(48px, 48px); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(62,207,207,0.1);
  border: 1px solid rgba(62,207,207,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-text);
  margin-bottom: 22px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual – orbiting rings */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(108,99,255,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__device-ring {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-orbit {
  position: absolute;
  width: 100%; height: 100%;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.device-orbit--1 { animation: orbit1 12s linear infinite; }
.device-orbit--2 { width: 220px; height: 220px; animation: orbit2 18s linear infinite; }
.device-orbit--3 { width: 380px; height: 380px; animation: orbit3 24s linear infinite; }
.device-orbit--4 { width: 160px; height: 160px; animation: orbit4 8s linear infinite; border-style: dotted; }

.device-icon {
  font-size: 1.8rem;
  margin-top: -18px;
  filter: drop-shadow(0 0 12px rgba(108,99,255,0.5));
  animation: counterSpin 12s linear infinite;
}

.device-orbit--2 .device-icon { animation-duration: 18s; }
.device-orbit--3 .device-icon { animation-duration: 24s; }
.device-orbit--4 .device-icon { animation-duration: 8s; }

@keyframes orbit1  { to { transform: rotate(360deg); } }
@keyframes orbit2  { to { transform: rotate(-360deg); } }
@keyframes orbit3  { to { transform: rotate(360deg); } }
@keyframes orbit4  { to { transform: rotate(-360deg); } }
@keyframes counterSpin { to { transform: rotate(-360deg); } }

.hero__core {
  position: relative;
  z-index: 2;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 16px rgba(108,99,255,0.4)); }
  50%       { transform: scale(1.08); filter: drop-shadow(0 0 28px rgba(108,99,255,0.7)); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--clr-text-dim);
  border-bottom: 2px solid var(--clr-text-dim);
  transform: rotate(45deg);
  margin-top: -4px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(4px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 48px 0;
}

.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--clr-border);
}

/* ============================================================
   SERVICES PREVIEW (Home)
   ============================================================ */
.services-preview { background: var(--clr-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,99,255,0.3);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.service-card > * { position: relative; z-index: 1; }

.service-card__icon {
  width: 64px; height: 64px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(108,99,255,0.2);
  border-color: rgba(108,99,255,0.4);
  color: var(--clr-accent);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-primary);
  transition: color var(--transition);
}

.service-link:hover { color: var(--clr-accent); }

/* ============================================================
   ABOUT STRIP (Home)
   ============================================================ */
.about-strip { background: var(--clr-bg-2); }

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-strip__content p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

.check-icon {
  width: 22px; height: 22px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  flex-shrink: 0;
}

/* Floating cards visual */
.about-card-stack {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-blob {
  width: 280px; height: 280px;
  background: radial-gradient(circle at 40% 40%, rgba(108,99,255,0.18), rgba(62,207,207,0.08) 60%, transparent 80%);
  border-radius: 50%;
  position: absolute;
}

.about-float-card {
  position: absolute;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.about-float-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.about-float-card small {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.about-float-icon { font-size: 1.6rem; }

.about-float-card--1 {
  top: 20px; right: 20px;
  animation: floatA 6s ease-in-out infinite;
}

.about-float-card--2 {
  bottom: 40px; left: 10px;
  animation: floatB 8s ease-in-out infinite;
}

.about-float-card--3 {
  bottom: 10px; right: 0;
  animation: floatA 7s ease-in-out infinite 1s;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--grad-primary);
  padding: 72px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--navbar-h) + 60px) 0 72px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 0%, rgba(108,99,255,0.12) 0%, transparent 70%),
    var(--clr-bg-2);
  z-index: -1;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 12px 0 20px;
  color: var(--clr-text);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.breadcrumb a { color: var(--clr-primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   ABOUT PAGE - MAIN
   ============================================================ */
.about-main { background: var(--clr-bg); }

.about-main__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-img-block {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-frame {
  width: 280px; height: 280px;
  border-radius: var(--radius-xl);
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.about-badge-year {
  position: absolute;
  bottom: -16px; right: 20px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-year strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.about-badge-year span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-main__content p {
  color: var(--clr-text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.75;
}

.about-main__content .section-title { margin-bottom: 20px; }

.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.value-item {
  display: flex;
  gap: 16px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--transition);
}

.value-item:hover { border-color: rgba(108,99,255,0.3); }

.value-icon { font-size: 1.6rem; flex-shrink: 0; }

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--clr-text);
}

.value-item p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Coming Soon Strip ---------- */
.coming-soon-strip {
  background: var(--clr-bg-2);
  text-align: center;
  padding: 80px 0;
}

.coming-soon__inner { max-width: 600px; margin: 0 auto; }

.cs-icon { font-size: 3rem; margin-bottom: 20px; }

.coming-soon-strip h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 14px;
  color: var(--clr-text);
}

.coming-soon-strip p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cs-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.cs-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  font-size: 0.88rem;
  transition: all var(--transition);
}

.cs-social-link:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

/* ---------- Team ---------- */
.team-section { background: var(--clr-bg); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,99,255,0.3);
  box-shadow: var(--shadow-glow);
}

.team-card__avatar {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(108,99,255,0.3);
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--clr-text);
}

.team-card__role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-accent);
  background: rgba(62,207,207,0.1);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ============================================================
   SERVICES PAGE – FULL LIST
   ============================================================ */
.services-full { background: var(--clr-bg); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-full-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: all var(--transition);
}

.service-full-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,99,255,0.25);
  box-shadow: var(--shadow-md);
}

.sfc-icon {
  width: 72px; height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.sfc-icon--blue   { background: rgba(108,99,255,0.12); border-color: rgba(108,99,255,0.2); color: var(--clr-primary); }
.sfc-icon--purple { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.2); color: #a855f7; }
.sfc-icon--teal   { background: rgba(62,207,207,0.12); border-color: rgba(62,207,207,0.2); color: var(--clr-accent); }
.sfc-icon--pink   { background: rgba(255,108,168,0.12); border-color: rgba(255,108,168,0.2); color: var(--clr-pink); }
.sfc-icon--orange { background: rgba(255,154,60,0.12); border-color: rgba(255,154,60,0.2); color: var(--clr-orange); }
.sfc-icon--green  { background: rgba(52,211,153,0.12); border-color: rgba(52,211,153,0.2); color: var(--clr-green); }

.service-full-card:hover .sfc-icon { transform: scale(1.05); }

.sfc-body h3 {
  font-size: 1.15rem;
  color: var(--clr-text);
  margin-bottom: 10px;
}

.sfc-body p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.sfc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sfc-list li {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  padding-left: 18px;
  position: relative;
}

.sfc-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--clr-primary);
  font-weight: 700;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--clr-bg); }

.contact-section__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateX(4px);
}

.ci-icon { font-size: 1.6rem; flex-shrink: 0; }

.contact-info-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-accent);
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.contact-info-card a {
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.contact-info-card a:hover { color: var(--clr-primary); }

/* Contact Form */
.contact-form-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.contact-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--clr-text);
}

.contact-form-card > p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--clr-text);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-dim);
}

.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--clr-bg-2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  background: rgba(108,99,255,0.05);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--clr-green);
  font-size: 0.92rem;
  text-align: center;
}

/* Map */
.map-section { background: var(--clr-bg-2); }

.map-inner {
  width: 100%;
  filter: grayscale(30%) contrast(1.05);
  border-top: 1px solid var(--clr-border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text);
  margin-bottom: 18px;
}

.footer__col ul li { margin-bottom: 10px; }

.footer__col ul a {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer__col ul a:hover { color: var(--clr-primary); }

.footer__contact-list li {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer__contact-list a {
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer__contact-list a:hover { color: var(--clr-primary); }

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--clr-text-dim);
}

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure everything is visible on no-JS or slow-loading */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-full-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 0;
  }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__visual { margin-top: 20px; }
  .hero__scroll-hint { display: none; }

  .about-strip__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-strip__visual { display: none; }

  .about-main__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-block { margin-bottom: 40px; }

  .contact-section__inner { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }

  .cta-banner__inner { flex-direction: column; text-align: center; }

  .stat-divider { display: none; }
  .stats-strip__inner { gap: 32px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .navbar__links {
    display: none;
    position: fixed;
    top: var(--navbar-h); left: 0; right: 0;
    background: rgba(10,12,20,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--clr-border);
  }
  .navbar__links.open { display: flex; }
  .nav-link { width: 100%; border-radius: var(--radius-sm); }
  .navbar__toggle { display: flex; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .service-full-card { flex-direction: column; gap: 16px; }
}
