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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: #0a0a0a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

:root {
  --black:  #0a0a0a;
  --white:  #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f2f2f2;
  --gray-200: #e5e5e5;
  --gray-400: #a0a0a0;
  --gray-600: #6b6b6b;
  --gray-800: #2a2a2a;
  --accent: #0071e3;
  --accent-dark: #005bb5;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── CURSOR DOT ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--black);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.25s, height 0.25s, background 0.25s;
}


/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(255,255,255,0.65);
  backdrop-filter: saturate(200%) blur(20px);
  -webkit-backdrop-filter: saturate(200%) blur(20px);
  border-bottom: 1px solid var(--gray-200);
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  text-decoration: none;
  background: linear-gradient(90deg, #0a0a0a 0%, #0071e3 50%, #0a0a0a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
}

.nav-logo:hover { background-position: 100% center; }

.nav-logo span {
  background: none;
  -webkit-text-fill-color: var(--accent);
}

.logo-m {
  background: linear-gradient(90deg, #1a3a8c 0%, #0071e3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 450;
  color: var(--gray-600);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-contact {
  font-size: 14px;
  font-weight: 500;
  background: var(--black);
  color: white !important;
  padding: 9px 20px;
  border-radius: 980px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
}

.nav-contact:hover {
  background: var(--gray-800) !important;
  transform: scale(1.02);
  color: white !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content { max-width: 880px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 980px;
  padding: 6px 14px 6px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.1s;
}

.hero-tag-dot {
  width: 7px; height: 7px;
  background: #34c759;
  border-radius: 50%;
}

.hero-h1 {
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--black);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.25s;
}

.hero-h1 .line2 {
  color: var(--gray-400);
}

.hero-h1 .accent {
  background: linear-gradient(90deg, #0071e3 0%, #34aadc 40%, #0071e3 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

.hero-body {
  margin-top: 36px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.55s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}

.btn-black {
  background: var(--black);
  color: white;
}

.btn-black:hover {
  background: var(--gray-800);
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--black);
  transform: scale(1.02);
}

.hero-scroll {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gray-400);
}

.hero-scroll-text {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
  background: var(--gray-50);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-sep {
  width: 4px; height: 4px;
  background: var(--gray-400);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION LAYOUT ── */
.section {
  padding: 120px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--black);
}

.section-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 500px;
}

/* ── SERVICES ── */
.services { background: var(--white); }

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.2s;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover { background: var(--gray-50); }

.service-card--center { grid-column: 2 / 3; }

.service-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.service-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process { background: var(--gray-50); }

.process-head { margin-bottom: 72px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: var(--gray-200);
}

.process-step { padding-right: 48px; }

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.process-step-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── WHY US ── */
.whyus { background: var(--white); }

.whyus-head { margin-bottom: 72px; }

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.whyus-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.25s;
}

.whyus-card:hover {
  border-color: var(--gray-400);
  transform: translateY(-4px);
}

.whyus-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.whyus-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.whyus-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── PROJECTS ── */
.projects { background: var(--white); }

.projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
}

.project-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-app-icon {
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}

.project-body { padding: 22px 24px 26px; }

.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.project-year {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

.project-dot {
  font-size: 12px;
  color: var(--gray-200);
}

.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 980px;
  padding: 3px 10px;
}

.project-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--black);
}

.project-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

.project-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.project-link:hover { text-decoration: underline; }

/* ── ABOUT ── */
.about { background: var(--black); color: white; }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left .section-label { color: rgba(255,255,255,0.35); }
.about-left .section-title { color: white; }
.about-left .section-sub { color: rgba(255,255,255,0.5); max-width: 100%; }

.about-skills {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 980px;
  padding: 5px 14px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card-big {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
}

.about-quote {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: white;
  margin-bottom: 28px;
}

.about-quote em {
  font-style: normal;
  color: var(--accent);
}

.about-sig {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071e3, #34aadc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.about-sig-name {
  font-size: 15px;
  font-weight: 600;
  color: white;
}

.about-sig-role {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.about-stat-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: white;
  line-height: 1;
}

.about-stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--gray-50); }

.testimonials-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testi-star { color: #f5a623; font-size: 14px; }

.testi-quote {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-600);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
}

.testi-company {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ── CONTACT ── */
.contact { background: var(--white); }

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}

.contact-left .section-sub { max-width: 100%; }

.contact-methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.contact-method:hover {
  border-color: var(--black);
  background: white;
}

.contact-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-600);
  transition: color 0.2s;
  margin-top: 3px;
}
.contact-method:hover .contact-method-icon { color: var(--accent); }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--black);
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--black);
  background: white;
}

.form-group select { cursor: pointer; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--black);
}

.form-submit {
  align-self: flex-start;
  background: var(--black);
  color: white;
  border: none;
  border-radius: 980px;
  padding: 15px 36px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover {
  background: var(--gray-800);
  transform: scale(1.02);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 32px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
}

.footer-logo span { color: rgba(255,255,255,0.35); }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── BLOB HERO BG ── */
.hero-blob {
  position: fixed;
  top: -20vh;
  left: -10vw;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0,113,227,0.10) 0%, rgba(52,170,220,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 12s ease-in-out infinite;
  filter: blur(40px);
}

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

@keyframes blobFloat {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(4vw, 3vh) scale(1.05); }
  66%      { transform: translate(-3vw, 5vh) scale(0.97); }
}

@keyframes gradientShift {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s 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; }

/* ── TYPEWRITER CURSOR ── */
.type-active::after {
  content: '|';
  display: inline-block;
  font-weight: 300;
  color: var(--black);
  -webkit-text-fill-color: var(--black);
  background: none;
  margin-left: 2px;
  animation: typeBlink 0.65s step-end infinite;
}
.line2.type-active::after {
  color: var(--gray-400);
  -webkit-text-fill-color: var(--gray-400);
}
.accent.type-active::after {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}
@keyframes typeBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── PREMIUM EFFECTS ── */

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* Text selection */
::selection { background: rgba(0,113,227,0.15); color: var(--black); }

/* Section labels → accent blue */
.section-label { color: var(--accent); }
.about-left .section-label { color: rgba(255,255,255,0.45); }

/* Hero dot grid */
.hero { position: relative; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 85% 100% at 15% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 85% 100% at 15% 50%, black 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; }

/* Service cards — top accent bar + mouse spotlight */
.service-card { position: relative; overflow: hidden; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.45s ease;
  z-index: 1;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,113,227,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-num { color: var(--accent); }

/* Process — gradient numbered circles + glowing line */
.process-steps::before {
  background: linear-gradient(90deg, rgba(0,113,227,0), rgba(0,113,227,0.45), rgba(52,170,220,0.45), rgba(0,113,227,0));
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
}
.process-step-num {
  background: linear-gradient(135deg, #0071e3 0%, #34aadc 100%);
  color: white;
  border: none;
  box-shadow: 0 0 0 5px rgba(0,113,227,0.1), 0 6px 20px rgba(0,113,227,0.3);
}
.process-step {
  border-radius: var(--radius);
  transition: background 0.25s;
}
.process-step:hover { background: rgba(0,113,227,0.03); }

/* Why Us cards — mouse spotlight + glow hover + icon styling */
.whyus-card { position: relative; overflow: hidden; }
.whyus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,113,227,0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.whyus-card:hover::before { opacity: 1; }
.whyus-card:hover {
  border-color: rgba(0,113,227,0.3);
  box-shadow: 0 16px 48px rgba(0,113,227,0.12);
  transform: translateY(-5px);
}
.whyus-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,113,227,0.08);
  border: 1px solid rgba(0,113,227,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background 0.25s, box-shadow 0.25s;
}
.whyus-card:hover .whyus-icon {
  background: rgba(0,113,227,0.14);
  box-shadow: 0 4px 20px rgba(0,113,227,0.25);
}

/* Project cards — spotlight via existing --mx/--my */
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.05) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 20px;
}

/* About stats — glow on hover */
.about-stat {
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: default;
}
.about-stat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,113,227,0.4);
  transform: translateY(-2px);
}
.about-stat-num {
  filter: drop-shadow(0 0 18px rgba(0,113,227,0.45));
}
.about-card-big {
  box-shadow: 0 4px 48px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Contact methods — blue hover */
.contact-method:hover {
  border-color: var(--accent);
  background: rgba(0,113,227,0.04);
  box-shadow: 0 4px 20px rgba(0,113,227,0.1);
}

/* Marquee — slightly more visible */
.marquee-item { color: var(--gray-600); }
.marquee-sep { background: var(--accent); opacity: 0.35; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 24px; }
  .hero { padding: 110px 24px 60px; }
  .section { padding: 80px 24px; }
  .services-head { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--center { grid-column: auto; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .process-step { padding-right: 0; }
  .whyus-grid { grid-template-columns: 1fr; gap: 16px; }
  .projects-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
