:root {
  --se-bg-deep: #020203;
  --se-bg-base: #050506;
  --se-bg-elevated: #0a0a0c;
  --se-surface: rgba(255, 255, 255, 0.05);
  --se-surface-strong: rgba(255, 255, 255, 0.08);
  --se-foreground: #ededef;
  --se-foreground-muted: #8a8f98;
  --se-blue: #0066ff;
  --se-blue-glow: rgba(0, 102, 255, 0.35);
  --se-cyan: #00d4ff;
  --se-cyan-glow: rgba(0, 212, 255, 0.35);
  --se-border: rgba(255, 255, 255, 0.08);
  --se-radius: 18px;
  --se-easing: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--se-bg-base);
  color: var(--se-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 0 1rem;
  line-height: 1.15;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: rgba(0, 212, 255, 0.25);
  color: #fff;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--se-blue) 0%, var(--se-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Backgrounds */
.bg-deep { background-color: var(--se-bg-deep); }
.bg-base { background-color: var(--se-bg-base); }
.bg-elevated { background-color: var(--se-bg-elevated); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--se-blue) 0%, var(--se-cyan) 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--se-easing), box-shadow 0.25s var(--se-easing);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -10px var(--se-cyan-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--se-foreground);
  font-weight: 500;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  transition: all 0.25s var(--se-easing);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Glassmorphism */
.glass {
  background: var(--se-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--se-border);
}

.glass-card {
  background: var(--se-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--se-border);
  border-radius: var(--se-radius);
  transition: transform 0.35s var(--se-easing), box-shadow 0.35s var(--se-easing), border-color 0.35s var(--se-easing);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5), 0 0 40px -10px var(--se-blue-glow);
}

/* Liquid glass (IAGENCY style) */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: var(--se-radius);
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: var(--se-radius);
}

.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0.5) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* Utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.text-center { text-align: center; }
.text-white-muted { color: rgba(255, 255, 255, 0.65); }
.text-white-faint { color: rgba(255, 255, 255, 0.5); }
.text-cyan { color: var(--se-cyan); }
.text-blue { color: var(--se-blue); }

.tagline {
  display: inline-block;
  color: var(--se-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 6, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--se-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: none;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--se-cyan);
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--se-blue), var(--se-cyan));
  border-radius: 2px;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--se-border);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 1rem;
  right: 1rem;
  background: var(--se-bg-elevated);
  border: 1px solid var(--se-border);
  border-radius: var(--se-radius);
  padding: 1rem;
  z-index: 99;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  border-bottom: 1px solid var(--se-border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a.active {
  color: var(--se-cyan);
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 102, 255, 0.15), transparent),
    linear-gradient(180deg, rgba(2, 2, 3, 0.95) 0%, rgba(5, 5, 6, 0.85) 50%, rgba(5, 5, 6, 0.4) 100%);
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-blue {
  background: var(--se-blue);
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 12s ease-in-out infinite;
}

.hero-blob-cyan {
  background: var(--se-cyan);
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  animation: float 14s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--se-radius);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.25rem;
  border-radius: var(--se-radius);
  background: var(--se-surface);
  border: 1px solid var(--se-border);
}

.stat-card .stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Section headers */
.section-header {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.section-header-left {
  max-width: 700px;
  margin-bottom: 3rem;
  text-align: left;
}

/* Services cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 102, 255, 0.12);
  box-shadow: 0 0 20px -8px var(--se-blue-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--se-cyan);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card .link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--se-cyan);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}

.service-card .link:hover {
  gap: 0.7rem;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 2rem;
  padding-top: 3.5rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--se-cyan);
  opacity: 0.8;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Engagements */
.engagements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.engagement-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  align-items: flex-start;
}

.engagement-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--se-cyan);
  flex-shrink: 0;
}

.engagement-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.engagement-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Realisations */
.realisations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.realisation-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--se-radius);
  aspect-ratio: 4/3;
}

.realisation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--se-easing);
}

.realisation-card:hover img {
  transform: scale(1.05);
}

.realisation-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.realisation-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.realisation-card span {
  color: var(--se-cyan);
  font-size: 0.85rem;
  font-weight: 500;
}

.realisation-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border: 2px dashed rgba(255, 255, 255, 0.15);
}

.realisation-placeholder h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.realisation-placeholder p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--se-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--se-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--se-cyan);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s var(--se-easing);
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--se-easing), opacity 0.3s var(--se-easing);
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.65);
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

/* CTA section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 102, 255, 0.12), transparent);
  pointer-events: none;
}

.cta-box {
  position: relative;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--se-radius);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto 1.75rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--se-cyan);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--se-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--se-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group select option {
  background: var(--se-bg-elevated);
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-feedback {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--se-cyan);
  margin-top: 1rem;
  text-align: center;
}

.form-feedback.visible {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--se-bg-deep);
  border-top: 1px solid var(--se-border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin: 1rem 0 0;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--se-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--se-border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--se-cyan);
}

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.legal-content a {
  color: var(--se-cyan);
  text-decoration: underline;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--se-easing), transform 0.6s var(--se-easing);
}

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

/* Pulse dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--se-cyan);
  box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5);
  animation: pulse-cyan 2s infinite;
}

@keyframes pulse-cyan {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 102, 255, 0.12), transparent);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Service detail page */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.service-detail-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--se-border);
}

.service-detail-list li:last-child {
  border-bottom: none;
}

.service-detail-list li svg {
  color: var(--se-cyan);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .engagements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .realisations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(5, 1fr);
  }

  .engagements-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .realisations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
