/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
  position: relative; overflow: hidden;
  height: clamp(640px, 92vh, 880px);
  background: var(--primary-dark);
}
.hero-carousel input[type="radio"] { display: none; }
.slides {
  width: 300%; height: 100%; display: flex;
  transition: transform 1s var(--ease-out);
}
.slide {
  width: 33.3333%; height: 100%;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  position: relative;
}
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,28,41,0.3) 100%);
  pointer-events: none;
}
.slide-content { color: #fff; max-width: 680px; position: relative; z-index: 2; opacity: 0; transform: translateY(30px); transition: opacity 1s 0.3s var(--ease-out), transform 1s 0.3s var(--ease-out); }

#slide-1:checked ~ .slides > .slide:nth-child(1) .slide-content,
#slide-2:checked ~ .slides > .slide:nth-child(2) .slide-content,
#slide-3:checked ~ .slides > .slide:nth-child(3) .slide-content {
  opacity: 1; transform: translateY(0);
}

.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); font-weight: 500; margin-bottom: 24px;
}
.slide-eyebrow span { width: 40px; height: 1px; background: var(--copper); display: inline-block; }
.slide-content h1 {
  color: #fff; font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 400; line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.slide-content h1 em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.85); }
.slide-content p {
  font-size: 16px; color: rgba(255,255,255,0.82);
  max-width: 560px; margin-bottom: 34px; line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

#slide-1:checked ~ .slides { transform: translateX(0); }
#slide-2:checked ~ .slides { transform: translateX(-33.3333%); }
#slide-3:checked ~ .slides { transform: translateX(-66.6666%); }

/* Carousel Nav Dots */
.carousel-nav {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.carousel-nav label {
  width: 28px; height: 28px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.carousel-nav label span {
  width: 28px; height: 2px; background: rgba(255,255,255,0.35);
  display: block; transition: background var(--transition);
}
.carousel-nav label:hover span { background: rgba(255,255,255,0.7); }
#slide-1:checked ~ .carousel-nav label:nth-child(1) span,
#slide-2:checked ~ .carousel-nav label:nth-child(2) span,
#slide-3:checked ~ .carousel-nav label:nth-child(3) span {
  background: var(--copper); height: 3px;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.06);
}
.carousel-prev { left: 36px; }
.carousel-next { right: 36px; }

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 40px; right: 40px; z-index: 5;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
}
.hero-scroll i { width: 1px; height: 50px; background: rgba(255,255,255,0.25); position: relative; overflow: hidden; }
.hero-scroll i::after {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%; background: var(--copper);
  animation: scrollLine 2.4s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { top: -50%; } 100% { top: 100%; }
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro { padding: 140px 0 130px; }
.intro-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 100px; align-items: center; }
.intro-copy h2 {
  font-size: clamp(36px, 4.6vw, 58px); margin-bottom: 28px;
  line-height: 1.08; letter-spacing: -0.02em;
}
.intro-copy h2 em { font-style: italic; font-weight: 400; color: var(--copper); }
.intro-copy .lead { font-size: 19px; color: var(--text); margin-bottom: 20px; line-height: 1.65; }
.intro-copy > p:not(.lead) { color: var(--muted); font-size: 16px; margin-bottom: 30px; }

.intro-meta { display: flex; gap: 50px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 30px 0 36px; }
.intro-meta strong { display: block; color: var(--primary); font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; }
.intro-meta span { display: block; color: var(--muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

.intro-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.intro-plain-img {
  width: 800px;
  max-width: 150%;
  height: 370%;
  object-fit: contain;
  display: block;
}

/* ============================================================
   WAVE STATS
   ============================================================ */
.wave-stats {
  position: relative; overflow: hidden;
  padding: 160px 0 130px;
  background: linear-gradient(180deg, #2d9aa6 0%, #1C8A9E 55%, #147380 100%);
  color: #fff;
}
.wave-top {
  position: absolute; top: -1px; left: 0; right: 0;
  height: 120px; line-height: 0; pointer-events: none; overflow: hidden;
}
.wave-top .wave { position: absolute; top: 0; left: 0; width: 200%; height: 100%; display: block; will-change: transform; }
.wave-top .wave path { fill: #fff; }
.wave-back  { opacity: 0.35; animation: waveSlide 14s linear infinite; }
.wave-front { opacity: 1;    animation: waveSlide 9s  linear infinite reverse; }
@keyframes waveSlide {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubbles span {
  position: absolute; bottom: -40px; left: var(--left);
  width: var(--size); height: var(--size); border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.1) 70%);
  opacity: 0; animation: bubbleRise var(--dur) linear var(--delay) infinite;
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) scale(0.8); opacity: 0; }
  15%  { opacity: 0.7; }
  100% { transform: translateY(-700px) scale(1.1); opacity: 0; }
}
.wave-stats-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.wstat { position: relative; padding: 0 20px; }
.wstat::after {
  content: ''; position: absolute; right: 0; top: 25%; bottom: 25%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.wstat:last-child::after { display: none; }
.wstat strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 84px); font-weight: 400; color: #fff;
  line-height: 1; margin-bottom: 16px; letter-spacing: -0.02em;
}
.wstat strong em { font-style: normal; font-weight: 400; color: rgba(255,255,255,0.75); }
.wstat span {
  display: block; color: rgba(255,255,255,0.9);
  font-size: 13px; letter-spacing: 2px; font-weight: 500; text-transform: uppercase;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition);
  border: 1px solid var(--line);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-img {
  height: 220px; background-size: cover; background-position: center;
  position: relative; transition: transform 0.6s ease;
}
.service-card:hover .service-img { transform: scale(1.04); }
.service-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,46,66,0.25) 100%);
}
.service-body { padding: 32px 30px; position: relative; }
.service-num {
  position: absolute; top: -18px; left: 30px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}
.service-kicker { display: block; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 10px; font-weight: 500; }
.service-body h3 { font-size: 22px; margin-bottom: 14px; font-weight: 500; line-height: 1.2; }
.service-body p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ============================================================
   WORKFLOW  (scroll-triggered three-act reveal)
   ============================================================ */
.workflow { background: #fff; }
.workflow-list {
  position: relative;
  padding-left: 20px;
}
/* vertical progress line */
.workflow-track {
  position: absolute; top: 30px; bottom: 30px;
  left: 59px; width: 2px; background: var(--line);
  overflow: hidden; border-radius: 2px;
}
.workflow-track span {
  display: block; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--copper) 0%, var(--copper-light) 100%);
  transition: height 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.workflow-item {
  position: relative;
  display: grid; grid-template-columns: 80px 1fr 380px;
  gap: 50px; align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.workflow-item:last-child { border-bottom: none; }
.workflow-item:first-child { padding-top: 20px; }

/* Marker column (dot + number) */
.workflow-marker {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 2;
  gap: 16px;
}
.workflow-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line);
  position: relative;
  transition: border-color 0.6s ease, transform 0.6s var(--ease-out), box-shadow 0.6s ease;
}
.workflow-dot::after {
  content: ''; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--copper);
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}
.workflow-num {
  font-family: 'Playfair Display', serif; font-size: 56px;
  color: var(--line); font-weight: 400; line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.8s ease 0.2s;
}
.workflow-act {
  display: block; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--copper);
  margin-bottom: 10px; font-weight: 500;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.8s var(--ease-out) 0.25s, transform 0.8s var(--ease-out) 0.25s;
}
.workflow-item h3 {
  font-size: 32px; margin-bottom: 14px;
  font-weight: 500; letter-spacing: -0.01em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out) 0.35s, transform 0.8s var(--ease-out) 0.35s;
}
.workflow-item p {
  color: var(--muted); font-size: 16px; max-width: 560px; line-height: 1.75;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out) 0.45s, transform 0.8s var(--ease-out) 0.45s;
}

.workflow-image {
  overflow: hidden; border-radius: var(--radius);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1) 0.35s;
}
.workflow-image img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transform: scale(1.18);
  transition: transform 2s var(--ease-out) 0.4s;
}

/* ACTIVATED STATE — triggered by IntersectionObserver */
.workflow-item.is-in .workflow-dot {
  border-color: var(--copper);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(184, 115, 51, 0.12);
}
.workflow-item.is-in .workflow-dot::after { transform: scale(1); }
.workflow-item.is-in .workflow-num { color: var(--copper); }
.workflow-item.is-in .workflow-act,
.workflow-item.is-in h3,
.workflow-item.is-in p {
  opacity: 1; transform: translate(0, 0);
}
.workflow-item.is-in .workflow-image { clip-path: inset(0 0 0 0); }
.workflow-item.is-in .workflow-image img { transform: scale(1); }

/* Hover bonus on the image */
.workflow-item.is-in .workflow-image:hover img { transform: scale(1.06); transition: transform 0.8s ease; }

/* ============================================================
   PARALLAX INTERLUDE
   ============================================================ */
.parallax-interlude {
  position: relative;
  padding: 180px 0;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.parallax-content {
  position: relative; z-index: 2;
  max-width: 820px;
}
.parallax-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--aqua); font-weight: 500;
  margin-bottom: 40px;
}
.parallax-eyebrow span {
  width: 40px; height: 1px; background: var(--aqua);
}
.parallax-interlude blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.35; font-weight: 400;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.parallax-interlude blockquote em {
  font-style: italic; color: var(--aqua);
}
.parallax-meta span {
  display: inline-block;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7); font-weight: 500;
}

/* iOS / mobile: background-attachment fixed is unreliable */
@media (max-width: 900px) {
  .parallax-interlude {
    background-attachment: scroll;
    padding: 120px 0;
  }
}

/* ============================================================
   TESTIMONIALS — looping marquee with edge fades
   ============================================================ */
.testimonials {
  position: relative;
  overflow: hidden;
  background-color: #F5F3EE;
  background-image:
    linear-gradient(rgba(245, 243, 238, 0.55), rgba(245, 243, 238, 0.55)),
    url('../assets/testimonials.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonials > .container,
.testimonials > .testimonial-marquee { position: relative; z-index: 1; }

.testimonial-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 55s linear infinite;
  will-change: transform;
}
.testimonial-marquee:hover .testimonial-track { animation-play-state: paused; }

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

.testimonial {
  flex: 0 0 auto;
  width: 340px;
  background: #fff;
  padding: 28px 26px 24px;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid var(--line);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.quote-mark {
  font-family: 'Playfair Display', serif; font-size: 54px;
  color: var(--copper); line-height: 0.7; margin-bottom: 6px;
  display: block; font-weight: 500;
}
.testimonial blockquote {
  color: var(--text); font-size: 14.5px; line-height: 1.55;
  margin-bottom: 16px; font-family: 'Playfair Display', serif;
  font-weight: 400; font-style: italic;
}
.testimonial figcaption { padding-top: 14px; border-top: 1px solid var(--line); }
.testimonial figcaption strong {
  color: var(--primary); display: block; font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 500;
}
.testimonial figcaption span { color: var(--muted); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }

@media (max-width: 560px) {
  .testimonial { width: 280px; padding: 24px 22px 20px; }
  .testimonial-track { gap: 18px; animation-duration: 40s; }
  .testimonial-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
}

/* ============================================================
   CTA
   ============================================================ */
.cta-banner {
  background-size: cover; background-position: center;
  color: #fff; padding: 110px 0;
}
.cta-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; flex-wrap: wrap; }
.cta-banner h2 {
  color: #fff; font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em;
  margin-top: 16px;
}
.cta-inner p { color: rgba(255,255,255,0.78); max-width: 520px; margin-top: 18px; font-size: 16px; line-height: 1.65; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   WE ARE EXPERTS
============================================================ */
.experts { background: var(--cream, #FBF7F1); }
.experts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.experts-copy h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.02em; margin: 18px 0 20px; font-weight: 400; }
.experts-copy h2 em { font-style: italic; color: var(--copper); font-weight: 400; }
.experts-copy > p { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 520px; margin-bottom: 30px; }
.experts-list { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 14px; }
.experts-list li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; color: var(--text); }
.experts-list .check,
.pricing-list .check {
  width: 28px; height: 28px; border-radius: 50%; background: var(--copper); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.experts-visual img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius, 20px); box-shadow: var(--shadow, 0 20px 60px rgba(6,28,41,0.12)); }

/* ============================================================
   PRICING PACKAGE
============================================================ */
.pricing-package {
  background: linear-gradient(135deg, #0A2E42 0%, #1C3F52 100%);
  color: #fff; position: relative; overflow: hidden;
}
.pricing-package::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(91,192,190,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(184,115,51,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.pricing-copy .section-eyebrow { color: var(--aqua, #5BC0BE); }
.pricing-copy h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.02em; margin: 18px 0 20px; font-weight: 400; }
.pricing-copy h2 em { font-style: italic; color: var(--aqua, #5BC0BE); font-weight: 400; }
.pricing-copy > p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.75; max-width: 480px; }
.pricing-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 40px; border-radius: var(--radius, 20px); backdrop-filter: blur(8px);
}
.pricing-card h3 {
  font-size: clamp(24px, 2.4vw, 30px); font-weight: 500; margin-bottom: 26px;
  color: #fff; letter-spacing: -0.01em;
}
.pricing-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 14px; }
.pricing-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: rgba(255,255,255,0.88); }

/* ============================================================
   GALLERY TEASER
============================================================ */
.gallery-teaser-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
.gallery-teaser-copy h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.02em; margin: 18px 0 20px; font-weight: 400; }
.gallery-teaser-copy h2 em { font-style: italic; color: var(--copper); font-weight: 400; }
.gallery-teaser-copy > p { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 480px; margin-bottom: 30px; }
.gallery-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gallery-teaser-grid img {
  width: 100%; height: 240px; object-fit: cover; border-radius: 14px;
  transition: transform var(--transition, 0.3s ease);
}
.gallery-teaser-grid img:nth-child(1) { transform: translateY(-20px); }
.gallery-teaser-grid img:nth-child(4) { transform: translateY(20px); }
.gallery-teaser-grid img:hover { transform: translateY(-24px) scale(1.02); }

@media (max-width: 1024px) {
  .experts-grid, .pricing-grid, .gallery-teaser-inner { grid-template-columns: 1fr; gap: 50px; }
  .experts-visual img { height: 380px; }
  .gallery-teaser-grid img:nth-child(1),
  .gallery-teaser-grid img:nth-child(4) { transform: none; }
}
@media (max-width: 560px) {
  .gallery-teaser-grid img { height: 180px; }
  .pricing-card { padding: 32px 26px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 60px; }
  .intro-visual { max-width: 500px; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .workflow-item { grid-template-columns: 60px 1fr; gap: 30px; }
  .workflow-image { grid-column: 1 / -1; grid-row: 2; }
  .workflow-num { font-size: 42px; }
  .workflow-track { left: 39px; }
  .workflow-list { padding-left: 10px; }
}
@media (max-width: 900px) {
  .wave-stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .wstat:nth-child(2)::after { display: none; }
  .carousel-prev { left: 16px; }
  .carousel-next { right: 16px; }
  .hero-scroll { display: none; }
  .intro-badge { left: 0; padding: 20px 24px; }
  .intro-badge .num { font-size: 40px; }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .wave-stats-grid { grid-template-columns: 1fr; }
  .wstat::after { display: none; }
  .slide-content h1 { font-size: 32px; }
  .intro { padding: 80px 0; }
  .wave-stats { padding: 120px 0 80px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .intro-meta { flex-direction: column; gap: 24px; }
  .carousel-arrow { width: 44px; height: 44px; font-size: 18px; }
}

/* ---- EXTENDED MOBILE ---- */
@media (max-width: 768px) {
  /* Hero carousel */
  .hero-carousel { height: clamp(520px, 85vh, 700px); }
  .slide-content { padding: 0 16px; }
  .slide-content h1 { font-size: clamp(28px, 8vw, 42px); margin-bottom: 16px; }
  .slide-content p { font-size: 15px; margin-bottom: 26px; }
  .hero-ctas { gap: 10px; }
  .carousel-arrow { display: none; }
  .carousel-nav { bottom: 24px; }

  /* Intro */
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-copy h2 { font-size: clamp(28px, 7vw, 42px); }
  .intro-copy .lead { font-size: 17px; }
  .intro-meta { flex-wrap: wrap; gap: 20px 40px; }
  .intro-plain-img { width: 100%; max-width: 100%; height: auto; }

  /* Wave stats */
  .wave-stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .wstat::after { display: none; }
  .wstat strong { font-size: clamp(40px, 12vw, 64px); }

  /* Services */
  .service-grid { grid-template-columns: 1fr; }
  .service-img { height: 200px; }

  /* Workflow */
  .workflow-item { grid-template-columns: 50px 1fr; gap: 20px; padding: 44px 0; }
  .workflow-image { display: none; }
  .workflow-num { font-size: 38px; }
  .workflow-item h3 { font-size: 24px; }
  .workflow-track { left: 29px; }
  .workflow-list { padding-left: 6px; }

  /* Parallax */
  .parallax-interlude { padding: 90px 0; background-attachment: scroll; }
  .parallax-interlude blockquote { font-size: clamp(20px, 6vw, 32px); }

  /* Experts */
  .experts-grid { grid-template-columns: 1fr; gap: 40px; }
  .experts-visual img { height: 280px; }
  .experts-copy h2 { font-size: clamp(26px, 7vw, 40px); }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-copy h2 { font-size: clamp(26px, 7vw, 40px); }

  /* Gallery teaser */
  .gallery-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-teaser-grid img { height: 160px; }
  .gallery-teaser-grid img:nth-child(1),
  .gallery-teaser-grid img:nth-child(4) { transform: none; }
  .gallery-teaser-copy h2 { font-size: clamp(26px, 7vw, 40px); }

  /* CTA */
  .cta-banner { padding: 80px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-banner h2 { font-size: clamp(26px, 7vw, 38px); }
}

@media (max-width: 480px) {
  .hero-carousel { height: 90vh; min-height: 480px; }
  .slide-content h1 { font-size: clamp(24px, 8.5vw, 34px); }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .wave-stats-grid { grid-template-columns: 1fr; }
  .wstat { padding: 0; }
  .workflow-item { grid-template-columns: 44px 1fr; gap: 16px; padding: 36px 0; }
  .workflow-num { font-size: 32px; }
  .workflow-item h3 { font-size: 20px; }
  .workflow-item p { font-size: 14.5px; }
}
