/* Will-Hosting Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors - Premium Dark Mode - Blue Dominant */
  --bg-dark: #050505;
  --bg-darker: #0D0D0D;
  --primary-color: #0085FF;
  /* Reverted to Will Hosting Blue */
  --primary-light: #339DFF;
  --primary-glow: rgba(0, 133, 255, 0.4);
  --accent-cyan: #00f2ff;

  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --border-color: rgba(255, 255, 255, 0.08);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-card-hover: rgba(255, 255, 255, 0.05);

  /* Spacing */
  --container-width: 1240px;
  --header-height: 90px;
  --section-padding: 120px 0;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(0, 133, 255, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0, 242, 255, 0.05) 0%, transparent 25%);
  background-size: 150% 150%;
  animation: bg-drift 60s ease-in-out infinite alternate;
}

@keyframes bg-drift {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

p.lead {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-weight: 600;
  border-radius: 50px;
  /* Pill shape is more premium */
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--text-white);
  background: rgba(0, 133, 255, 0.1);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

/* Form Elements */
input,
textarea {
  width: 100%;
  padding: 16px;
  background-color: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 133, 255, 0.2);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.blue-text {
  color: var(--primary-color);
}

/* Animation Classes - Faster Reveals */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  filter: blur(5px);
  /* Significantly faster transition */
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Staggered Delays for Grid Items */
.services-grid .service-card:nth-child(1),
.clients-grid .client-card:nth-child(1) {
  transition-delay: 50ms;
}

.services-grid .service-card:nth-child(2),
.clients-grid .client-card:nth-child(2) {
  transition-delay: 100ms;
}

.services-grid .service-card:nth-child(3),
.clients-grid .client-card:nth-child(3) {
  transition-delay: 150ms;
}

.services-grid .service-card:nth-child(4),
.clients-grid .client-card:nth-child(4) {
  transition-delay: 200ms;
}

.services-grid .service-card:nth-child(5),
.clients-grid .client-card:nth-child(5) {
  transition-delay: 250ms;
}

.services-grid .service-card:nth-child(6),
.clients-grid .client-card:nth-child(6) {
  transition-delay: 600ms;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  height: 60px;
  /* Significantly smaller on scroll */
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  /* Ensure container has width */
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}


.logo img {
  height: 38px;
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(0, 133, 255, 0.3));
}

header.scrolled .logo img {
  height: 30px;
  /* Smaller resize on scroll */
}

/* Nav Centered on Desktop */
nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  /* More modern than uppercase */
  letter-spacing: 0.3px;
  color: var(--text-gray);
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--primary-color);
}

nav a:hover,
nav a.active {
  color: var(--text-white);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.mobile-only {
  display: none;
}

@media (min-width: 969px) {
  nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-flags {
  display: flex;
  gap: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-flag {
  opacity: 0.5;
  transition: var(--transition-fast);
  font-size: 1.1rem;
  filter: grayscale(100%);
  display: flex;
  align-items: center;
}

.lang-flag:hover,
.lang-flag.active {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.btn-header {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  /* Removed default bg, handled in body */
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Improve text readability over background image */
.hero h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero .lead {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero h1 span {
  display: block;
  background: linear-gradient(to right, #fff, var(--text-gray));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: -20px;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 90%;
  z-index: 1;
  pointer-events: none;
  /* Revert to simple vertical float (no rotation/lateral movement) */
  animation: float 6s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(0, 133, 255, 0.2));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-50%) translateY(0px);
  }

  50% {
    transform: translateY(-50%) translateY(-20px);
  }
}



/* Services Section */
.services-section {
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  background: var(--glass-card-hover);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 133, 255, 0.3);
  z-index: 10;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 133, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  border: 1px solid rgba(0, 133, 255, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-gray);
  font-size: 1rem;
}

/* Clients Section (Grid) */
.clients-section {
  padding: var(--section-padding);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.client-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 12px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-card:hover {
  border-color: var(--primary-color);
  background: var(--glass-card-hover);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 133, 255, 0.2);
  z-index: 10;
}

.client-logo {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.client-logo img {
  max-height: 100%;
  max-width: 180px;
  width: auto;
}

.client-details {
  text-align: left;
  list-style: none;
  padding-left: 0;
  color: var(--text-gray);
  font-size: 0.95rem;
  width: 100%;
}

.client-details li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.client-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-gray);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  background: linear-gradient(to bottom, transparent, rgba(0, 133, 255, 0.03));
}

/* Testimonials Carousel Wrapper */
.testimonials-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

/* Carousel Container */
.testimonials-carousel {
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
}

/* Carousel Track */
.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Carousel Navigation Buttons */
.carousel-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text-white);
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0, 133, 255, 0.2);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--primary-glow);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn:disabled:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--text-white);
  box-shadow: none;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  /* Fixed width for compact cards like before */
  width: 380px;
  min-width: 380px;
  flex-shrink: 0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: var(--primary-color);
  opacity: 0.1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  background: var(--glass-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 133, 255, 0.1);
}

.testimonial-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 133, 255, 0.1);
  border: 1px solid rgba(0, 133, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-gray);
  font-style: italic;
  border: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.testimonial-author strong {
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Pillars Bar */
.pillars-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding: 30px 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 10px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.pillar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--glass-border);
}

.pillar-item:hover {
  transform: translateY(-5px);
}

.pillar-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 133, 255, 0.3));
  /* Phase 3: Breathing Pillars */
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 133, 255, 0.3));
  }

  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(0, 133, 255, 0.6));
  }
}

.pillar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.3px;
}

/* Responsive - Testimonials Carousel */
@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .carousel-btn {
    display: none;
  }

  .testimonials-carousel {
    overflow: visible;
  }

  .testimonials-track {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-card {
    width: 100%;
    min-width: 100%;
  }

  .pillars-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .pillar-item:nth-child(3)::after {
    display: none;
  }

  .pillar-icon {
    font-size: 2rem;
  }

  .pillar-title {
    font-size: 0.9rem;
  }
}

/* Partners Carousel */
.partners-section {
  background: var(--bg-darker);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: slide 30s infinite linear;
  width: max-content;
}

.logos-slide img.partner-lg {
  height: 55px;
  /* Visual correction for horizontal logos like DigitalOcean & K8s */
}

.logos-slide img {
  height: 30px;
  width: auto;
  opacity: 0.6;
  transition: all var(--transition-fast);
  /* Make all logos monochrome white */
  filter: brightness(0) invert(1);
}

.logos-slide img:hover {
  opacity: 1;
  /* Keep monochrome but fully opaque, or option to show color if logos supported it. 
     Since some logos have dark text, keep white to ensure visibility. */
  filter: brightness(0) invert(1);
}

.logos-slide img.no-filter {
  filter: none;
  opacity: 0.9;
}

.logos-slide img.no-filter:hover {
  filter: none;
  opacity: 1;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-20%);
  }
}

/* Process Section */
.process-section {
  padding: var(--section-padding);
}

.process-steps {
  position: relative;
  margin-top: 80px;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
  /* Phase 3: Timeline Drawing Animation */
  height: 0;
  transition: height 1.5s ease-out;
}

.process-steps.active::before {
  height: 100%;
}

.process-step {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  width: 45%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  position: relative;
  transition: var(--transition-smooth);
}

.step-content:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 133, 255, 0.1);
}

.step-number {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
  z-index: 2;
}

.step-content h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background: linear-gradient(to bottom, transparent, rgba(0, 133, 255, 0.05));
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

/* Protected email link styling */
.email-protected {
  color: var(--text-gray);
  transition: var(--transition-fast);
}

.email-protected:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #000;
  padding: 80px 0 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 30px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: white;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-gray);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Header Right Group */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Language Flags */
.lang-flags {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: var(--transition-fast);
  opacity: 0.6;
}

.lang-flag:hover {
  opacity: 1;
  border-color: var(--primary-color);
  background: rgba(0, 133, 255, 0.1);
  transform: scale(1.1);
}

.lang-flag.active {
  opacity: 1;
  border-color: var(--primary-color);
  background: rgba(0, 133, 255, 0.2);
  box-shadow: 0 0 10px var(--primary-glow);
}

.flag-emoji {
  font-size: 0.9rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 968px) {
  h1 {
    font-size: 2.5rem;
  }

  .process-steps::before {
    left: 20px;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    padding-left: 60px;
  }

  .step-content {
    width: 100%;
  }

  .step-number {
    left: 20px;
    transform: translate(-50%, 0);
    margin-top: 0;
    top: 0;
  }

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

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

@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }

  nav ul {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-darker);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border-color);
  }

  nav ul.active {
    transform: translateY(0);
  }

  nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  nav a {
    display: block;
    padding: 15px 0;
    text-align: center;
  }

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

  .mobile-only {
    display: block;
  }

  .btn-header {
    display: none;
  }

  .header-right {
    gap: 10px;
  }

  .lang-flags {
    gap: 4px;
  }

  .lang-flag {
    width: 26px;
    height: 26px;
  }

  .flag-emoji {
    font-size: 0.8rem;
  }

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