/* CSS Reset and Variables */
:root {
  /* Colors - Brand Theme */
  --bg-dark: #030a28;    /* Derde kleur */
  --bg-darker: #010412;
  --bg-card: rgba(242, 247, 255, 0.03); 
  --bg-card-hover: rgba(242, 247, 255, 0.06);
  --border-light: rgba(242, 247, 255, 0.08);
  
  --text-main: #f2f7ff;  /* Primaire kleur */
  --text-muted: #8aa1c4;
  
  --primary: #1c72ed;    /* Secundaire kleur */
  --primary-glow: rgba(28, 114, 237, 0.4);
  --secondary: #5a9df8;  /* Lighter accent */
  --accent: #f2f7ff;     

  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-text: linear-gradient(to right, #f2f7ff 0%, #5a9df8 100%);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Utilities */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background effects */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
  animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--primary-glow);
}

.blob-2 {
  top: 40%;
  right: -20%;
  width: 40vw;
  height: 40vw;
  background: rgba(14, 165, 233, 0.2);
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Background Squares */
.bg-squares {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.bg-square {
  position: absolute;
  top: -100px;
  background: rgba(242, 247, 255, 0.05);
  border: 1px solid rgba(242, 247, 255, 0.1);
  border-radius: 4px;
  animation: fallDown linear infinite;
  backdrop-filter: blur(2px);
}

@keyframes fallDown {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(150vh + 400px)) rotate(360deg) scale(0.5);
    opacity: 0;
  }
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

h1 span, h2 span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-small {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 20px -10px var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px var(--primary);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(3, 10, 40, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  z-index: 101;
}

.logo-icon {
  color: var(--primary);
  width: 28px;
  height: 28px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list a:not(.btn) {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-list a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-text);
  transition: width 0.3s ease;
}

.nav-list a:not(.btn):hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  z-index: 101;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px; /* Offset for fixed header */
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(28, 114, 237, 0.15);
  border: 1px solid rgba(28, 114, 237, 0.3);
  color: #a2c8ff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

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

/* Video Mockup */
.video-mockup {
  background: rgba(10, 20, 50, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.video-mockup::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: var(--gradient-primary);
  z-index: -1;
  border-radius: calc(var(--border-radius-lg) + 2px);
  opacity: 0.5;
  filter: blur(10px);
}

.mockup-header {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-light);
}

.dot {
  width: 12px;
  height: 12px;
}
.dot.red { color: #ff5f56; fill: #ff5f56; }
.dot.yellow { color: #ffbd2e; fill: #ffbd2e;}
.dot.green { color: #27c93f; fill: #27c93f;}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(to bottom right, #111, #0a0a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
  z-index: 2;
  fill: white;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.waves {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
  animation: ripple 2s infinite ease-out;
  z-index: 1;
}

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

/* ── Clients / Trusted Brands Marquee ── */
.clients {
  position: relative;
  padding: 3.5rem 0;
  background: linear-gradient(
    180deg,
    rgba(28, 114, 237, 0.03) 0%,
    rgba(3, 10, 40, 0) 100%
  );
  border-top: 1px solid rgba(28, 114, 237, 0.12);
  border-bottom: 1px solid rgba(28, 114, 237, 0.12);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 2rem;
}

/* fade edges */
.clients-fade-left,
.clients-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.clients-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}
.clients-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.clients-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clients-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scroll 40s linear infinite;
  align-items: center;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-name {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.8;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.5rem 1.5rem 0.5rem 0.6rem;
  border: 1px solid rgba(242, 247, 255, 0.15);
  border-radius: 100px;
  background: rgba(242, 247, 255, 0.05);
  transition: var(--transition);
  cursor: default;
  margin: 0 1.2rem;
}

.client-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
  transition: var(--transition);
}

.client-name::after {
  content: '◆';
  font-size: 0.35rem;
  color: var(--primary);
  opacity: 0.5;
  margin-left: 2.5rem;
}

@media (hover: hover) {
  .client-name:hover {
    opacity: 1;
    color: var(--accent);
    border-color: rgba(28, 114, 237, 0.35);
    background: rgba(28, 114, 237, 0.07);
    box-shadow: 0 0 20px rgba(28, 114, 237, 0.12);
    transform: translateY(-1px);
  }
  .client-name:hover .client-icon {
    transform: scale(1.1);
  }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About / Features Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
}

.about-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-10px);
  border-color: var(--primary-glow);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(28, 114, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.05);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Process Timeline (Werkwijze) */
.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 24px;
  width: 2px; height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
  gap: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-num {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  z-index: 2;
  box-shadow: 0 0 15px var(--primary-glow);
}

.timeline-content {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  flex-grow: 1;
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateX(5px);
}

.timeline-item:hover .timeline-num {
  background: var(--primary);
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.2);
}

.portfolio-img {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-img iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-img iframe.loaded {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(28, 114, 237, 0.2) 0%, rgba(3, 10, 40, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.overlay-play {
  width: 60px;
  height: 60px;
  background: rgba(28, 114, 237, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  fill: white;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-overlay:hover .overlay-play {
  transform: scale(1.1);
  background: var(--primary);
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.portfolio-info span {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.star {
  width: 20px; height: 20px;
  color: rgba(255, 255, 255, 0.1);
}

.star.filled {
  color: #fbbf24;
  fill: #fbbf24;
}

.quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.client-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.client-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.contact-container::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: -1;
}

.info-items {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.icon-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.info-item span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.info-item a, .info-item p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-main);
}

.info-item a:hover {
  color: var(--primary);
}

.contact-form-wrapper {
  background: var(--bg-dark);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

input, textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(242, 247, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(28, 114, 237, 0.1);
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem;
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  border-radius: var(--border-radius-sm);
  color: #27c93f;
}

.form-success.active {
  display: flex;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes successPop {
  0%   { opacity: 0; transform: scale(0.85) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.form-success .success-icon {
  width: 52px;
  height: 52px;
  color: #27c93f;
  animation: checkBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

@keyframes checkBounce {
  0%   { opacity: 0; transform: scale(0) rotate(-20deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.form-success p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #27c93f;
  animation: fadeSlideUp 0.4s ease 0.35s both;
}

@keyframes fadeSlideUp {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  text-align: center;
}

.footer-brand-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand p {
  margin: 1.5rem 0;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-contact-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-contact-inline span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.footer-contact-inline .small-icon {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.footer-contact-inline .separator {
  color: rgba(255,255,255,0.2);
}

/* Animations (Scroll Reveal) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  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; }

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-darker);
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  
  .nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .timeline-num {
    width: 40px; height: 40px; min-width: 40px;
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-contact-inline .separator {
    display: none;
  }
}
