﻿/* --- Imported: sections/base.css --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --mid-gray: #888;

  /* Premium Monochrome design system mappings for copied homepage sections */
  --ink: #0a0a0a;
  --ink-soft: #222222;
  --paper: #ffffff;
  --paper-2: #f9f9f7;
  --gray-900: #0a0a0a;
  --gray-800: #2d2d2d;
  --gray-700: #555555;
  --gray-500: #777777;
  --gray-400: #999999;
  --gray-300: #cccccc;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;

  --primary: #0a0a0a;
  --primary-hover: #222222;
  --accent: #0a0a0a;
  --accent-hover: #222222;
  --gold: #0a0a0a;

  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--black);
}

/* --- Imported: sections/responsive.css --- */
/* Responsive for brands */
@media (max-width: 768px) {
  .brand-item {
    width: 200px;
    height: 90px;
  }

  .ticker-wrapper::before,
  .ticker-wrapper::after {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .brand-item {
    width: 150px;
    height: 70px;
  }
}

/* - RESPONSIVE: TABLET (-1024px) - */
@media (max-width: 1024px) {
  .why-card {
    flex-basis: clamp(285px, 60vw, 360px);
    min-height: 405px;
  }

  .reviews-arrow {
    display: none;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    display: grid;
    grid-template-columns: 220px 1fr;
  }

  .blog-img-wrap {
    aspect-ratio: auto;
    height: 100%;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* - RESPONSIVE: MOBILE (-768px) - */
@media (max-width: 768px) {
  /* Hamburger visible, nav becomes a centered dropdown panel */
  .hamburger {
    display: flex;
  }

  .service-card {
    height: 625px;
  }

  .navbar {
    padding: 0.6rem 4vw;
    z-index: 200;
  }

  .navbar.scrolled {
    top: 8px;
    left: 5%;
    right: 5%;
    border-radius: 18px;
    padding: 0.55rem 1.2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: calc(100vh - 80px);
    padding: 1rem 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 0.24s ease,
      transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.24s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links li {
    width: min(100%, 340px);
    list-style: none;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-links li:last-child {
    margin-top: 0.9rem;
    border-bottom: none;
  }

  .nav-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    font-size: 1.1rem;
    opacity: 1 !important;
    color: #000 !important;
  }

  .nav-links li .nav-cta {
    min-height: 52px;
    font-size: 1rem !important;
    padding: 0.95rem 1.6rem !important;
    justify-content: center;
    width: 100%;
  }

  /* Mobile Tools dropdown - inline accordion */
  .nav-links .has-dropdown {
    width: min(100%, 340px);
    flex-direction: column;
  }

  .nav-links .dropdown-toggle {
    justify-content: center;
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #000 !important;
  }

  .nav-links .dropdown-arrow {
    transition: transform 0.22s ease;
    color: #000;
    opacity: 1;
  }

  .nav-links .has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-links .dropdown-menu {
    position: static !important;
    left: unset !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    min-width: unset !important;
    width: 100%;
    display: none;
  }

  .nav-links .has-dropdown.open .dropdown-menu {
    display: block;
    pointer-events: auto;
  }

  .nav-links .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: left;
  }

  .nav-links .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .nav-links .dropdown-menu li a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.95rem;
    padding: 0;
    opacity: 1 !important;
    color: #000 !important;
    letter-spacing: 0;
  }

  .nav-links .dropdown-menu li a:hover {
    opacity: 1 !important;
  }

  /* Keep has-dropdown li border only from the parent li, not double */
  .nav-links li.has-dropdown {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .dropdown-grid {
    display: block;
    padding: 0.25rem 0;
    gap: 0;
    width: 100%;
  }

  .services-dropdown .dropdown-item {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0 !important;
    text-align: left !important;
    gap: 0.75rem !important;
  }

  .services-dropdown .dropdown-item img {
    flex-shrink: 0;
    width: 36px !important;
    height: 36px !important;
  }

  .services-dropdown .dropdown-item span {
    text-align: left !important;
    font-size: 0.95rem !important;
  }

  .hero {
    height: auto;
    max-height: none;
    min-height: 0;
    justify-content: flex-start;
    padding: 8rem 1.2rem 2.9rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 1.7rem;
  }

  .headline {
    font-size: clamp(2rem, 12vw, 7rem);
    margin-bottom: 0.9rem;
  }

  .headline-line2 {
    flex-wrap: wrap;
    row-gap: 0.1em;
  }

  .sub {
    margin-bottom: 1.35rem;
  }

  .brands-section {
    padding: 38px 0 78px;
  }

  /* Projects on mobile - same layout as desktop, proportionally scaled */
  .projects-section {
    padding: 48px 0 32px;
  }

  .projects-section .sec-header {
    margin-bottom: 2rem;
    padding: 0 1.25rem;
  }

  .projects-section .sec-header h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .projects-section .sec-header p {
    font-size: 0.85rem;
  }

  .projects-container {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    width: calc(100% - 2.5rem);
    margin: 0 auto;
    align-items: flex-start;
  }

  .projects-left {
    flex: 0 0 38%;
    position: sticky;
    top: 140px;
    height: max-content;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .projects-copy {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .projects-left h2 {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    margin-bottom: 0.35rem;
    line-height: 1.1;
    font-family: "Bebas Neue", sans-serif;
  }

  .projects-left p {
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65);
  }

  .project-number-container {
    height: 68px;
    font-size: 4.2rem;
    display: block;
    margin-bottom: 0.4rem;
    overflow: hidden;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  }

  /* Number slides AFTER image starts fading - perceived as simultaneous */
  .project-number-track {
    align-items: flex-start;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s;
  }

  .project-number {
    height: 68px;
    font-size: 4.2rem;
    justify-content: flex-start;
    transition: color 0.3s ease 0.15s;
  }

  .projects-right {
    flex: 1;
    min-width: 0;
    gap: 30vh;
    padding-top: 0;
    padding-bottom: 5vh;
  }

  /* Image fades in immediately with no delay */
  .project-item {
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    height: auto;
    width: 100%;
    transform: scale(0.94);
    opacity: 0.3;
    filter: blur(4px);
    transition:
      opacity 0.35s ease 0s,
      transform 0.35s ease 0s,
      filter 0.35s ease 0s;
  }

  .project-item.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }

  .project-info {
    padding: 0.85rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
  }

  .project-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .project-info p {
    font-size: 0.75rem;
    opacity: 0.85;
  }

  /* Hero background letters off on mobile */
  .hero-bg-letter-left,
  .hero-bg-letter-right {
    display: none;
  }

  /* New sections */
  .why-us-section,
  .blog-section,
  .reviews-section,
  .contact-section {
    padding: 70px 5vw;
  }

  .why-us-rail {
    overflow-x: auto;
    cursor: auto;
    scroll-snap-type: none;
    padding: 0.45rem 0 0.55rem;
  }

  .why-us-grid {
    gap: 1rem;
    padding: 0 0.2rem;
    transform: rotate(-0.5deg);
  }

  .why-card {
    flex-basis: 86vw;
    max-width: 390px;
    min-height: 395px;
    transform: rotate(var(--tilt));
  }

  .why-card:nth-child(odd) {
    --tilt: -0.9deg;
  }

  .why-card:nth-child(even) {
    --tilt: 0.75deg;
  }

  .reviews-section {
    overflow: hidden;
  }

  .reviews-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding: 0.5rem 5vw 1.5rem;
    margin: 0 -5vw;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 82vw;
    scroll-snap-align: center;
  }

  .blog-card {
    display: block;
  }

  .blog-img-wrap {
    aspect-ratio: 16/10;
    height: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .site-footer {
    padding: 60px 5vw 36px;
  }

  .sec-header {
    margin-bottom: 2.5rem;
  }
}

/* - RESPONSIVE: SMALL MOBILE (-480px) - */
@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .why-us-section,
  .blog-section,
  .reviews-section,
  .contact-section {
    padding: 55px 5vw;
  }

  .hero {
    padding: 7.25rem 1rem 2.5rem;
  }

  .brands-section {
    padding: 34px 0 72px;
  }

  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.82rem;
  }
}

/* --- Scoped services and overrides: web-development.css --- */
/* =====================================================
   WEB DEVELOPMENT SERVICES PAGE
   Nexa Solutions - matches homepage design system
   ===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap");

/* - SCOPED RESET / VARS - */
.webdev-page {
  background: var(--white, #fff);
  color: var(--black, #0a0a0a);
  font-family: "DM Sans", sans-serif;
  overflow-x: clip;
}

.webdev-page *,
.webdev-page *::before,
.webdev-page *::after {
  box-sizing: border-box;
}

/* - COMMON UTILITIES - */
.wd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wd-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black, #0a0a0a);
  margin-bottom: 1.2rem;
}

.wd-section-label::before,
.wd-section-label::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

.wd-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  margin-bottom: 1.2rem;
}

.wd-section-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  max-width: 620px;
}

/* - REVEAL ANIMATION - */
@media (max-width: 900px) {
  .service-card {
    position: sticky;
    top: 90px;
    left: 0;
    right: 0;
    width: 92vw;
    min-height: 500px;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
  /* Reduce the lifted amount on small screens to avoid overlap with header */
  .services-stacked {
    margin-top: -20px;
  }

  .service-card:nth-child(even) {
    flex-direction: column;
  }

  .service-card:nth-child(1) {
    z-index: 11;
  }
  .service-card:nth-child(2) {
    z-index: 12;
  }
  .service-card:nth-child(3) {
    z-index: 13;
  }
  .service-card:nth-child(4) {
    z-index: 14;
  }
  .service-card:nth-child(5) {
    z-index: 15;
  }
  .service-card:nth-child(6) {
    z-index: 16;
  }

  .service-card-body {
    flex: 0 0 auto;
    padding: 2.2rem 1.8rem 1.5rem;
    margin-top: 0;
  }

  .service-card-image-wrap {
    flex: 1.5;
    min-height: 45vh; /* Much larger images for mobile as requested */
    order: 2;
    overflow: hidden;
  }
  .service-card-image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .service-card h3 {
    font-size: 2.1rem;
    margin-bottom: 0.8rem;
  }

  .service-card p {
    max-width: 100%;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }
}

/* SHORT VIEWPORT HEIGHT RESPONSIVENESS */
@media (max-height: 800px) {
  .service-card {
    min-height: 420px;
  }
  .service-card-body {
    padding: 2.5rem;
  }
}

@media (max-height: 650px) {
  .service-card {
    min-height: 350px;
  }
  .service-card-body {
    padding: 1.5rem;
  }
  .service-card h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
  }
  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 1024px) {
  .projects-section {
    padding: 64px 0;
  }

  .projects-section .sec-header {
    margin-bottom: 2.5rem;
  }

  .projects-container {
    gap: 1.5rem; /* Reduced gap for mobile */
    align-items: flex-start;
  }

  .projects-left {
    flex: 0 0 60px; /* Narrow sticky column for numbers */
    top: 100px;
  }

  .projects-copy {
    display: none; /* Hide extra text to save space on mobile */
  }

  .project-number-container {
    height: 60px;
    font-size: 3.5rem;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  }

  .project-number {
    height: 60px;
  }

  .projects-right {
    gap: 10vh; /* Peppier scroll on mobile */
    padding-bottom: 10vh;
  }

  .project-item {
    border-radius: 20px;
    width: 100%;
  }

  .project-info {
    padding: 1.5rem;
  }

  .project-info h3 {
    font-size: 1.5rem;
  }
}

/* --- Imported: sections/utils.css --- */
/* - FILLER SECTION - */
.section {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--white);
}

.section-inner {
  text-align: center;
  color: rgba(0, 0, 0, 0.15);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.25em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* - SHARED SECTION HEADER - */
.sec-header {
  text-align: center;
  margin-bottom: 4rem;
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.sec-eyebrow::before,
.sec-eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}
.sec-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.sec-header p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* - REVEAL ANIMATION - */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  :root {
    --orbit-r: 150px;
    --card-w: 165px;
    --card-h: 215px;
    --social-lottie-offset: clamp(140px, 24vw, 210px);
    --social-lottie-scale: 0.97;
  }
  .social-media-section {
    min-height: 360px;
    padding: 0 0 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --orbit-r: 30vw;
    --card-w: 30vw;
    --card-h: 40vw;
    --social-lottie-offset: clamp(115px, 27vw, 170px);
    --social-lottie-scale: 0.92;
  }
  .social-media-section {
    min-height: 88vw;
    padding: 0 0 5vw;
    margin-bottom: 0;
  }
  .scene {
    width: 100vw;
    height: 100vw;
  }
  .card-headline {
    font-size: clamp(24px, 7vw, 40px);
  }
  .brand {
    font-size: 8px;
    letter-spacing: 0.18em;
  }
  .platform-icon svg {
    width: 20px;
    height: 20px;
  }
  .card-sub {
    font-size: 8px;
    letter-spacing: 0.18em;
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  :root {
    --orbit-r: 28vw;
    --card-w: 32vw;
    --card-h: 43vw;
  }

  .social-media-section {
    min-height: 94vw;
  }
  .brand {
    font-size: 8px;
    letter-spacing: 0.18em;
  }
  .platform-icon svg {
    width: 20px;
    height: 20px;
  }
  .card-sub {
    font-size: 8px;
    letter-spacing: 0.18em;
    margin-top: 6px;
  }
}

@media (max-width: 1024px) {
  .blog-article-body {
    padding: 2rem 2rem;
  }
}

@media (max-width: 640px) {
  .blog-article-body {
    padding: 1.4rem 1.1rem;
  }

  .blog-article-cover {
    max-height: 240px;
  }
}

/* Live blog listing page used by templates/blog.html */
.blog-container {
  width: 90vw;
  max-width: 1300px;
  margin: 0 auto;
}

.mobile-filter-toggle {
  display: none;
}

.blog-filter-section {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem 0;
  position: sticky;
  top: 70px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.filter-bar {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
}

.search-group {
  flex: 1;
}

.filter-input-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 0 1.2rem;
  height: 52px;
  transition: all 0.3s ease;
}

.filter-input-wrapper:focus-within {
  background: #fff;
  border-color: #000;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.03);
}

.search-icon {
  color: #888;
  margin-right: 0.8rem;
}

.filter-input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  color: #111;
  font-weight: 500;
}

.category-group {
  width: 220px;
}

.category-dropdown-wrapper {
  position: relative;
  width: 100%;
}

.category-select {
  width: 100%;
  height: 52px;
  appearance: none;
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-select:hover {
  border-color: #000;
}

.category-dropdown-wrapper .dropdown-arrow {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}

.button-group {
  width: auto;
}

.apply-filter-btn {
  height: 52px;
  padding: 0 1.8rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.apply-filter-btn:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-main-grid {
  display: flex;
  gap: 2rem;
}

.blog-feed {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-content: start;
}

.blog-card-custom {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.blog-card-custom:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.card-lottie-container {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 64px;
  height: 64px;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}

.card-lottie2-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}

.blog-card-image {
  position: relative;
  z-index: 2;
  height: clamp(130px, 12vw, 168px);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 1.8vw, 1.5rem);
  flex: 1;
}

.meta-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 0.75rem;
}

.tag-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.blog-card-body h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.15rem, 1.3vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  color: #111;
}

.blog-card-body p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.86rem;
  line-height: 1.58;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.read-article-btn,
.join-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.join-now-btn,
.sidebar-widget .join-now-btn,
.sidebar-widget button.join-now-btn {
  padding: 0.65rem 1.2rem;
  background: #fff !important;
  color: #111 !important;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.join-now-btn:hover,
.sidebar-widget .join-now-btn:hover {
  background: #f0f0f0 !important;
  transform: translateY(-1px);
}

.newsletter-join-btn,
.sidebar-widget .newsletter-join-btn,
.sidebar-widget button.newsletter-join-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #fff !important;
  color: #111 !important;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.newsletter-join-btn:hover,
.sidebar-widget .newsletter-join-btn:hover {
  background: #f0f0f0 !important;
  transform: translateY(-1px);
}

.read-article-btn {
  padding: 0.55rem 0.85rem;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  font-size: 0.82rem;
}

.read-article-btn:hover {
  transform: translateY(-1px);
  background: #222;
  color: #fff;
}

.author-name {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
}

.author-name div {
  max-width: none;
  color: #333;
  word-break: break-word;
}

.sticky-sidebar {
  position: sticky;
  top: 90px;
  width: 280px;
  flex-shrink: 0;
}

.sidebar-widget,
.recent-widget,
.blog-side-cta {
  border-radius: 20px;
  padding: 1.25rem;
  margin-bottom: 1.1rem;
}

.sidebar-widget {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ddd;
}

.sidebar-widget p,
.sidebar-widget li,
.sidebar-widget a,
.sidebar-widget small,
.sidebar-widget input,
.sidebar-widget button {
  color: inherit;
}

.sidebar-widget form {
  display: grid;
  gap: 0.75rem;
}

.newsletter-widget p {
  margin-bottom: 1.1rem;
}

.newsletter-email-input {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 0.65rem 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font: inherit;
}

.newsletter-email-input::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.newsletter-join-btn {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fff;
  color: #111;
  border: 1px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.newsletter-join-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.recent-widget {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.04),
    0 10px 25px rgba(0, 0, 0, 0.06);
  color: #111;
}

.blog-side-cta {
  background: #111;
  color: #fff;
}

.sidebar-widget h3,
.recent-widget h3,
.blog-side-cta h3 {
  margin: 0 0 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.sidebar-widget h3 {
  border-left: 4px solid currentColor;
  padding-left: 0.85rem;
}

.recent-post-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  padding: 0.5rem 0;
  border-radius: 12px;
}

.recent-post-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.recent-post-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
}

.recent-post-info h4 {
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 0;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-info small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(0, 0, 0, 0.58);
}

.blog-pagination {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

@media (max-width: 1200px) {
  .blog-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .blog-page-wrap {
    padding-inline: 4vw;
  }

  .blog-main-grid {
    flex-direction: column;
  }

  .sticky-sidebar {
    position: static;
    width: 100%;
  }

  .blog-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .blog-page-grid {
    grid-template-columns: 1fr;
  }

  .blog-side-sticky {
    position: static;
    margin-top: 0.7rem;
  }
}

@media (max-width: 768px) {
  .blog-page-hero {
    padding: 5.5rem 1.2rem 2.5rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .blog-page-hero::after {
    letter-spacing: 0.05em;
    font-size: clamp(1.6rem, 13vw, 4.4rem);
    transform: translate(-50%, -48%);
  }

  .blog-page-wrap {
    padding: 1.1rem 1rem 3rem;
  }

  .blog-list-card {
    grid-template-columns: 1fr;
    margin-bottom: 0.95rem;
  }

  .blog-list-media,
  .blog-fallback-image {
    min-height: 210px;
  }

  .blog-list-content {
    padding: 1.05rem;
  }

  .blog-list-content h2 {
    font-size: 1.45rem;
  }
}

@media (max-width: 768px) {
  .blog-page-wrap {
    padding: 1.1rem 1rem 2.5rem;
  }

  .category-nav-wrapper {
    margin-bottom: 1.4rem;
    padding-bottom: 0.9rem;
  }

  .blog-filter-section {
    padding: 0.8rem 0;
    top: 60px;
  }

  .mobile-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1.2rem;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    gap: 0.8rem;
  }

  .mobile-filter-toggle svg:first-child {
    color: #888;
  }

  .mobile-filter-toggle .toggle-chevron {
    transition: transform 0.3s ease;
  }

  .mobile-filter-toggle.active .toggle-chevron {
    transform: rotate(180deg);
  }

  .filter-bar-form {
    display: none;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0.8rem;
  }

  .filter-bar-form.active {
    display: block;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .filter-bar {
    flex-direction: column;
    gap: 0.85rem;
    align-items: stretch;
  }

  .filter-group {
    width: 100%;
  }

  .filter-input-wrapper,
  .category-select,
  .apply-filter-btn {
    width: 100% !important;
    height: 50px;
    border-radius: 12px;
  }

  .filter-input-wrapper,
  .category-select {
    background: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.06);
  }

  .blog-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .blog-card-image {
    height: 150px;
  }

  .blog-card-body {
    padding: 0.85rem;
    gap: 0.6rem;
  }

  .blog-card-body h2 {
    font-size: 1.1rem;
  }

  .blog-card-body p {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .card-footer-flex {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .author-name {
    display: none;
  }

  .sidebar-widget,
  .recent-widget,
  .blog-side-cta {
    padding: 1rem;
    border-radius: 18px;
  }

  .blog-side-cta a,
  .join-now-btn,
  .read-article-btn {
    width: 100%;
  }

  .newsletter-join-btn {
    padding: 0.8rem 0.95rem;
  }
}

@media (max-width: 480px) {
  .blog-feed {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .author-name {
    display: flex;
  }

  .blog-card-image {
    height: 180px;
  }

  .blog-card-body p {
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 640px) {
  .blog-summary h1 {
    font-size: 1.8rem;
  }

  .blog-summary h2 {
    font-size: 1.5rem;
  }

  .blog-summary h3 {
    font-size: 1.15rem;
  }

  .blog-summary p,
  .blog-summary li {
    font-size: 0.95rem;
  }

  .blog-summary pre {
    padding: 1rem;
    font-size: 0.82rem;
  }

  .blog-summary blockquote {
    padding-left: 1rem;
  }

  .blog-summary img {
    border-radius: 8px;
  }
}

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .contact-page-hero {
    padding: 7.2rem 1.2rem 2.6rem;
  }

  .contact-page-wrap {
    padding: 3rem 1.2rem 4rem;
  }

  .contact-form-col {
    padding: 2rem 1.5rem;
  }

  .cp-form-row {
    grid-template-columns: 1fr;
  }

  .cp-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Floating contact buttons */
.floating-contact-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.floating-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
}

.btn-whatsapp svg {
  fill: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  background: #20ba5a;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover::before {
  opacity: 1;
}

/* Call Theme - Matching Nexa Black/Dark */
.btn-call {
  background: #111;
  color: #fff;
}

.btn-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-call:hover {
  transform: translateY(-5px) scale(1.05);
  background: #000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-call:hover::before {
  opacity: 1;
}

/* Label Tooltip (Optional but nice) */
.floating-btn::after {
  content: attr(data-label);
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateX(10px);
}

.floating-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-contact-wrap {
    right: 20px;
    bottom: 20px;
    gap: 12px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }

  .floating-btn::after {
    display: none; /* Hide tooltips on mobile */
  }
}

.wd-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.wd-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wd-reveal-left.wd-visible {
  opacity: 1;
  transform: translateX(0);
}

.wd-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wd-reveal-right.wd-visible {
  opacity: 1;
  transform: translateX(0);
}

.wd-delay-1 {
  transition-delay: 0.1s;
}
.wd-delay-2 {
  transition-delay: 0.2s;
}
.wd-delay-3 {
  transition-delay: 0.3s;
}
.wd-delay-4 {
  transition-delay: 0.4s;
}
.wd-delay-5 {
  transition-delay: 0.5s;
}
.wd-delay-6 {
  transition-delay: 0.6s;
}

/* -
   1. HERO SECTION
- */
@media (max-width: 900px) {
  .wd-hero {
    padding: 7rem 0 3rem;
  }
  .wd-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
    text-align: center;
  }
  .wd-hero-text {
    order: 1;
  }
  .wd-hero-visual {
    order: 2;
    margin-bottom: 1rem;
  }
  .wd-hero-form {
    padding: 24px 20px;
  }
  .wd-hero-form-grid {
    grid-template-columns: 1fr;
  }
  .wd-hero-form-title {
    text-align: left;
  }
  .wd-hero-form-row label {
    text-align: left;
  }
  .wd-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .wd-hero-btns {
    justify-content: center;
    flex-wrap: nowrap;
  }
  .wd-hero-btns .wd-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1rem;
  }
  .wd-hero-laptop {
    transform: none;
  }
  .wd-float-card--tl {
    left: -8px;
  }
  .wd-float-card--tr {
    right: -8px;
  }
  .wd-float-card--br {
    right: -8px;
  }
}

@media (max-width: 480px) {
  .wd-float-card--tr,
  .wd-float-card--br {
    display: none;
  }
  .wd-float-card--tl {
    left: 0;
  }
}

/* - BUTTONS - */
.wd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid #0a0a0a;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  white-space: nowrap;
}

.wd-btn--primary {
  background: #0a0a0a;
  color: #fff;
}

.wd-btn--primary:hover {
  background: #222;
  transform: translateY(-2px);
}

.wd-btn--outline {
  background: transparent;
  color: #0a0a0a;
}

.wd-btn--outline:hover {
  background: #0a0a0a;
  color: #fff;
  transform: translateY(-2px);
}

.wd-btn--white {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.wd-btn--white:hover {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
  transform: translateY(-2px);
}

.wd-btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.wd-btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* -
   2. STATS BAR
- */
.wd-stats {
  background: #0a0a0a;
  padding: 3rem 0;
}

.wd-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.wd-stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 2rem;
}

.wd-stat-item:last-child {
  border-right: none;
}

.wd-stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.wd-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* -
   2. CERTIFIED AGENCY / STACKS
- */
@media (max-width: 900px) {
  .wd-certified {
    padding: 2rem 0 3rem;
  }
  .wd-certified-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
}

/* -
   2B. CMS & PLATFORMS
- */
.wd-cms-systems {
  background: #ffffff;
  padding: 5rem 0 3rem;
}

.wd-cms-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.wd-cms-img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.wd-cms-text .wd-section-title {
  margin-bottom: 1.6rem;
}

.wd-cms-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 2rem;
}

.wd-process-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wd-process-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.wd-process-list li:hover {
  transform: translateX(8px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: #0a0a0a;
  background: #f4f4f2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.wd-process-list li:hover .step-num {
  background: #0a0a0a;
  color: #fff;
}

.step-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
}

@media (max-width: 900px) {
  .wd-cms-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
}

/* -
   3. WEBSITE TYPES - Tabbed
- */
@media (max-width: 900px) {
  .wd-types-inner {
    padding: 0 1.2rem;
  }
  .wd-tab {
    min-width: 100px;
    padding: 1.1rem 0.8rem;
  }
  .wd-tab-name {
    font-size: 1.05rem;
  }
  .wd-tab-panel {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  /* specificity fix - must beat .wd-tab-panel.active { display: grid } */
  .wd-tab-panel.active {
    display: grid;
    grid-template-columns: 1fr;
  }
  .wd-panel-image {
    aspect-ratio: 16/9;
  }
  .wd-panel-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .wd-panel-desc {
    font-size: 0.95rem;
  }
}

/* - PHONE - */
@media (max-width: 640px) {
  .wd-types {
    padding: 5rem 0 6rem;
  }
  .wd-types-inner {
    padding: 0 1rem;
  }
  .wd-types-header {
    margin-bottom: 1.8rem;
  }

  /* show scroll hint gradient */
  .wd-tab-bar-wrap::after {
    display: block;
  }

  /* tab bar: scroll snap, show 2.5 tabs so user knows more exist */
  .wd-tab-bar {
    border-radius: 14px 14px 0 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .wd-tab-bar::-webkit-scrollbar {
    display: none;
  }

  .wd-tab {
    flex: 0 0 auto;
    width: calc(33.33% - 1px); /* show 3 tabs, hint of 4th */
    min-width: 90px;
    padding: 1rem 0.5rem 0.9rem;
    gap: 0.35rem;
    scroll-snap-align: start;
  }

  .wd-tab-icon {
    font-size: 1.3rem;
    line-height: 1;
  }

  .wd-tab-name {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: center;
  }

  /* - PANEL FIX - override display:grid from .active - */
  .wd-tab-panel,
  .wd-tab-panel.active {
    display: none;
    border-radius: 0 0 16px 16px;
    padding: 1.6rem 1.2rem 2rem;
    gap: 0;
  }

  .wd-tab-panel.active {
    display: flex !important;
    flex-direction: column;
    gap: 1.6rem;
  }

  /* image on top, text below */
  .wd-panel-image {
    order: -1;
    aspect-ratio: 16/9;
    border-radius: 10px;
  }

  .wd-panel-text {
    order: 1;
  }

  .wd-panel-title {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
  }

  .wd-panel-desc {
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 1.2rem;
  }

  /* examples */
  .wd-panel-examples {
    margin-bottom: 1.2rem;
  }
  .wd-examples-list {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  /* stack chips */
  .wd-stack-chips {
    gap: 0.5rem;
    margin-bottom: 1.4rem;
  }
  .wd-stack-chip {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  .wd-stack-chip img {
    width: 14px;
    height: 14px;
  }

  .wd-type-tag {
    font-size: 0.68rem;
    padding: 0.35rem 0.8rem;
  }
}

/* -
   4. INLINE CTA BAND (dark)
- */
@media (max-width: 900px) {
  .wd-quality-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .wd-quality-left {
    position: static;
  }
}

/* - PILLAR DOTS (hidden on desktop) - */
.wd-pillar-dots {
  display: none;
}

@media (max-width: 640px) {
  .wd-quality {
    padding: 1.5rem 0 3rem;
  }
  .wd-quality-inner {
    gap: 2rem;
    padding: 0;
  }

  /* Heading block keeps side padding */
  .wd-quality-left {
    padding: 0 1.4rem;
  }

  /* - Horizontal swipe carousel - */
  .wd-quality-right {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 0;
    padding: 0.25rem 1.4rem 0.5rem;
  }
  .wd-quality-right::-webkit-scrollbar {
    display: none;
  }

  .wd-pillar {
    flex: 0 0 calc(100% - 2.8rem);
    width: calc(100% - 2.8rem);
    scroll-snap-align: start;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.8rem 1.6rem;
    margin-right: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    background: #ffffff;
  }

  .wd-pillar:last-child {
    margin-right: 0;
  }

  .wd-pillar:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .wd-pillar-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
  }

  .wd-pillar-title {
    font-size: 1.15rem;
  }

  .wd-pillar-desc {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  /* - Dots - */
  .wd-pillar-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.4rem;
  }

  .wd-pillar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    transition:
      background 0.25s,
      transform 0.25s;
  }

  .wd-pillar-dot.active {
    background: #0a0a0a;
    transform: scale(1.35);
  }
}

/* -
   6. USP SECTION
- */
@media (max-width: 768px) {
  .wd-promise-text {
    font-size: 1.8rem;
  }
  .wd-promise-strip {
    padding: 4rem 1.5rem;
  }
}

/* -
   8. TECH STACKS
- */
@media (max-width: 900px) {
  .wd-usp-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .wd-type-card {
    flex-direction: column !important;
    height: auto;
    min-height: 500px;
    width: 92vw;
  }
  .wd-type-card-body {
    flex: 0 0 auto;
    padding: 2.5rem 2rem;
    margin-top: 0;
  }
  .wd-type-card-image {
    min-height: 42vh;
    flex: 1;
  }
  .wd-quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-stat-item:nth-child(2) {
    border-right: none;
  }
  .wd-stat-item:nth-child(1),
  .wd-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .wd-hide-mobile {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .wd-hero-title {
    font-size: clamp(3rem, 13vw, 5rem);
  }
  .wd-quality-grid {
    grid-template-columns: 1fr;
  }
  .wd-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Stack cards fix */
  .wd-stack-cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .wd-stack-card {
    padding: 1rem 0.5rem;
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }
  .wd-stack-logo {
    width: 36px;
    height: 36px;
    margin-bottom: 0.3rem;
  }
  .wd-stack-name {
    font-size: 0.85rem;
  }

  /* USP right fix */
  .wd-usp-right {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .wd-usp-card {
    padding: 1.2rem 0.75rem;
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .wd-usp-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.8rem;
  }
  .wd-usp-icon svg {
    width: 18px;
    height: 18px;
  }
  .wd-usp-card-title {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }
  .wd-usp-card-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Partners grid fix */
  .partners-grid {
    gap: 0.8rem;
    padding: 1rem 0;
  }
  .partners-grid .partner-card {
    padding: 1rem 0.5rem;
    gap: 0.4rem;
    flex-direction: column;
    text-align: center;
    border-radius: 12px;
  }
  .partners-grid .partner-logo {
    width: 32px;
    height: 32px;
    margin-bottom: 0.3rem;
  }
  .partners-grid .partner-name {
    font-size: 0.85rem;
  }
  .partners-grid .partner-desc {
    position: static;
    opacity: 1;
    visibility: visible;
    width: auto;
    font-size: 0.7rem;
    color: #666;
    margin-top: 0;
  }

  .wd-assist-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Center all section headings/labels on mobile */
  .wd-section-label {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .wd-section-title,
  .wd-section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Section-specific centering fixes */
  .wd-certified-text,
  .wd-cms-text,
  .wd-quality-left,
  .wd-usp-inner > div:first-child {
    text-align: center;
  }
  .wd-certified-btns,
  .wd-hero-btns {
    justify-content: center;
  }
}

/* -
   INJECTED STYLES FROM HOMEPAGE FOR NEW SECTIONS
   - */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 6px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.btn-outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  font-weight: 700;
}
.btn-ghost:hover {
  gap: 14px;
}
.btn-large {
  padding: 20px 36px;
  font-size: 16px;
}
.trust-strip {
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--paper);
}
.trust-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-700);
  margin-bottom: 32px;
}
.trust-grid-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.01);
}
.trust-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.04);
}
.trust-item img {
  height: 24px;
  width: auto;
  object-fit: contain;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 12px 0;
}
.partners-grid .partner-card {
  background: #fdfdfd;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 999px;
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.partners-grid .partner-card:hover {
  border-color: rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.partners-grid .partner-logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partners-grid .partner-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #111;
  margin-bottom: 0;
  letter-spacing: 0;
}
.partners-grid .partner-desc {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team {
    padding: 3rem 0 !important;
  }
  .wd-team-header {
    margin-bottom: 1.8rem !important;
  }
  .wd-team-grid {
    gap: 0.75rem !important;
  }
  .wd-team-card {
    flex-direction: row !important;
    align-items: center;
    border-radius: 12px;
  }
  .wd-team-avatar-wrapper {
    padding: 1.2rem 0.8rem 1.2rem 1rem;
    flex-shrink: 0;
    border-right: 1px solid rgba(0,0,0,0.06);
  }
  .wd-team-avatar {
    width: 52px;
    height: 52px;
  }
  .wd-team-info {
    padding: 0.8rem 0.75rem;
    border-top: none !important;
    text-align: left;
  }
  .wd-team-role {
    font-size: 0.52rem;
    letter-spacing: 0.15px;
    margin-bottom: 0.3rem;
    line-height: 1.45;
  }
  .wd-team-name {
    font-size: 1.05rem;
    letter-spacing: 0.3px;
  }
}
.testimonial-carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}
.testimonial-carousel-track {
  display: flex;
  gap: 24px;
  cursor: grab;
  user-select: none;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.testimonial {
  flex: 0 0 clamp(320px, 40vw, 420px);
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}
.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.carousel-indicators {
  display: flex;
  gap: 8px;
}
.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.25s ease;
}
.carousel-indicator.active {
  background: var(--primary);
  transform: scale(1.3);
}
.star-icon {
  color: var(--gold);
  font-size: 18px;
}
.check-icon {
  color: var(--accent);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
  flex-grow: 1;
  letter-spacing: -0.015em;
}
.testimonial-quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 4px;
  color: var(--gray-300);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.author-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.testimonial-stars {
  font-family: var(--font-mono);
  letter-spacing: 2px;
  color: var(--ink);
  margin-bottom: 16px;
  font-size: 13px;
}
/* --- Imported: sections/navbar.css --- */
/* - NAVBAR - */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 8vw;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition:
    top 0.4s ease,
    left 0.4s ease,
    right 0.4s ease,
    border-radius 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.navbar.scrolled {
  top: 12px;
  left: 8.5%;
  right: 8.5%;
  border-radius: 22px;
  padding: 0.75rem 2.2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Nav buttons */
.nav-btns {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid #111;
  background: transparent;
  color: #111;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.nav-btn-call:hover {
  background: #111;
  color: #fff;
}
.nav-btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s;
}
.nav-btn-contact:hover {
  background: #333;
}

/* Mobile sidebar */
.nav-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 4px 0 32px rgba(0,0,0,0.12);
}
.nav-sidebar.open {
  transform: translateX(0);
}
.nav-sidebar-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #111;
  line-height: 1;
  padding: 0;
}
.nav-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #111;
}
.nav-sidebar-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav-sidebar-btns .nav-btn-call,
.nav-sidebar-btns .nav-btn-contact {
  justify-content: center;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Hide hamburger on desktop, show nav-btns */
.hamburger {
  display: none;
}
@media (max-width: 640px) {
  .nav-btns {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
}

/* Nav links - plain text, no pill border */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links li a {
  color: var(--black) !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  opacity: 1;
  white-space: nowrap;
  transition:
    opacity 0.2s,
    background 0.2s,
    color 0.2s;
}

.nav-links li a:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
}

/* Only the CTA gets the pill/button style */
.nav-cta {
  opacity: 1 !important;
  background: var(--black) !important;
  color: #fff !important;
  padding: 0.7rem 1.7rem !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.05em;
  border: none;
  transition:
    background 0.22s,
    opacity 0.22s !important;
  /* Extra specificity for anchor */
}
a.nav-cta,
.nav-cta:link,
.nav-cta:visited,
.nav-cta:active {
  color: #fff !important;
}

.nav-cta:hover {
  background: #333 !important;
  opacity: 1 !important;
}

/* - HAMBURGER - */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  z-index: 201;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-btns {
    display: none;
  }
}

@media (max-width: 400px) {
  .logo-name {
    font-size: 1.15rem;
  }
  .logo img {
    width: 36px !important;
    height: 36px !important;
  }
}

/* - TOOLS DROPDOWN - */
.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.22s ease;
  display: inline-block;
  line-height: 1;
  opacity: 1;
  color: var(--black);
}
.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  padding: 0.4rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.22s ease,
    visibility 0.2s ease;
  z-index: 300;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Keep dropdown open when focusing inside (keyboard/tab or mouse enters menu) */
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Keep open while hovering the menu itself (prevents disappearing when moving mouse) */
.has-dropdown .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Open state (used by JS toggle) */
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.dropdown-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.2rem;
  color: var(--black) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 1;
  border-radius: 0;
  transition:
    opacity 0.18s,
    background 0.18s;
}
.dropdown-menu li a:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.04);
}

/* Services dropdown - two-column grid with icon + label */
.services-dropdown .dropdown-menu {
  left: 0;
  transform: translateY(-6px);
  min-width: 540px;
  padding: 0.6rem;
}
/* Override the general translateX(-50%) for services - it uses left:0, not left:50% */
.services-dropdown:hover .dropdown-menu,
.services-dropdown:focus-within .dropdown-menu,
.services-dropdown.open .dropdown-menu {
  transform: translateY(0);
}
.services-dropdown .dropdown-menu li {
  border: none;
  padding: 0;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 0.35rem 0.6rem;
  align-items: start;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem;
  border-radius: 10px;
  color: var(--black) !important;
  text-decoration: none;
  transition:
    background 0.16s,
    transform 0.06s;
}
.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}
.dropdown-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  display: inline-block;
}
.dropdown-item span {
  font-size: 0.92rem;
  font-weight: 600;
}
/* --- Imported: sections/hero.css --- */
/* - HERO - */
.hero {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Lottie animation background */
#lottie-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  filter: grayscale(1) brightness(0) contrast(1.35);
}

/* Left decorative letter S */
.hero-bg-letter-left {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  font-size: 55vw;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  bottom: -10vw;
  left: -6vw;
  z-index: 1;
}

/* Right decorative letter N */
.hero-bg-letter-right {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  font-size: 55vw;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  bottom: -10vw;
  right: -6vw;
  z-index: 1;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s ease forwards;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
}

.headline {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s ease forwards;
}

.headline-line2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.22em;
  flex-wrap: nowrap;
}

.headline .highlight {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.02em 0.16em 0.04em;
  line-height: 1;
}

.sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: #111;
  max-width: 460px;
  margin: 0 auto 1.8rem;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}

/* - Hero Buttons - round pill style, no arrows - */
.btn-group {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s ease forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
  border: 2px solid var(--black);
}

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

.btn-primary:hover {
  background: #333;
}

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

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

.wd-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 3rem;
  overflow: hidden;
}

.wd-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

/* - LEFT TEXT - */
.wd-hero-text {
  z-index: 2;
}

.wd-hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8472e;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: wdFadeUp 0.6s 0.15s ease forwards;
}

.wd-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: wdFadeUp 0.7s 0.3s ease forwards;
}

.wd-hero-title .wd-highlight {
  display: inline-block;
  background: #0a0a0a;
  color: #fff;
  padding: 0.02em 0.14em 0.05em;
  line-height: 1;
}

.wd-hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: #444;
  max-width: 480px;
  margin-bottom: 2.4rem;
  line-height: 1.72;
  opacity: 0;
  animation: wdFadeUp 0.7s 0.45s ease forwards;
}

.wd-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: wdFadeUp 0.7s 0.6s ease forwards;
}

/* - RIGHT VISUAL - */
.wd-hero-visual {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: wdFadeUp 0.9s 0.5s ease forwards;
}

.wd-hero-laptop-wrap {
  position: relative;
  width: 100%;
}

.wd-hero-laptop {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

/* - HERO FORM - */
.wd-hero-form-wrap {
  width: 100%;
}
.wd-hero-form {
  background: #fff;
  border: 1.5px solid #e2e2e2;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wd-hero-form-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.8rem;
  text-align: center;
}
.wd-hero-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.wd-hero-form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.wd-hero-form-row label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}
.wd-hero-form-row input,
.wd-hero-form-row select,
.wd-hero-form-row textarea {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  color: #111;
  background: #fafafa;
  border: 1.5px solid #e0e0e0;
  border-radius: 7px;
  padding: 0.65rem 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.18s;
  resize: none;
}
.wd-hero-form-row input:focus,
.wd-hero-form-row select:focus,
.wd-hero-form-row textarea:focus {
  border-color: #111;
  background: #fff;
}
.wd-hero-form-btn {
  width: 100%;
  padding: 0.75rem;
  background: #0a0a0a;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.18s;
}
.wd-hero-form-btn:hover {
  background: #333;
}
.wd-hero-form-note {
  font-size: 0.82rem;
  color: #666;
  text-align: center;
  margin-top: 0.4rem;
}

/* - FLOATING METRIC CARDS - */
.wd-float-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  min-width: 140px;
  animation: wdFloat 4s ease-in-out infinite;
}

.wd-float-card--tl {
  top: -24px;
  left: -28px;
  animation-delay: 0s;
}

.wd-float-card--tr {
  top: 18px;
  right: -28px;
  animation-delay: 1.4s;
}

.wd-float-card--br {
  bottom: 28px;
  right: -24px;
  animation-delay: 0.7s;
}

.wd-float-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  margin-bottom: 0.3rem;
}

.wd-float-card-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #0a0a0a;
  line-height: 1;
}

.wd-float-card-val.wd-green {
  color: #22c55e;
}

/* mini sparkline bars */
.wd-float-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-top: 0.5rem;
  height: 22px;
}

.wd-float-spark span {
  flex: 1;
  background: #0a0a0a;
  border-radius: 2px;
  opacity: 0.15;
}

.wd-float-spark span:nth-child(1) {
  height: 50%;
}
.wd-float-spark span:nth-child(2) {
  height: 70%;
  opacity: 0.25;
}
.wd-float-spark span:nth-child(3) {
  height: 40%;
}
.wd-float-spark span:nth-child(4) {
  height: 85%;
  opacity: 0.3;
}
.wd-float-spark span:nth-child(5) {
  height: 60%;
  opacity: 0.2;
}
.wd-float-spark span:nth-child(6) {
  height: 100%;
  opacity: 0.5;
  background: #22c55e;
}

/* thin progress bar */
.wd-float-progress {
  margin-top: 0.6rem;
  height: 4px;
  background: #f0f0f0;
  border-radius: 99px;
  overflow: hidden;
}

.wd-float-progress-bar {
  height: 100%;
  width: 98%;
  background: #22c55e;
  border-radius: 99px;
}

@keyframes wdFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* - HERO RESPONSIVE - */
/* --- Imported: sections/services.css --- */
/* - SERVICES (FROM INDEX.HTML) - */
.services-section {
  background: linear-gradient(135deg, #f9f9f7 0%, #f5f5f3 100%);
  position: relative;
  padding: 12px 0 120px;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  text-align: center;
}

.services-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s ease forwards;
}

.services-header .section-label::before,
.services-header .section-label::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
}

.services-header .section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.08;
  color: #111;
  margin-bottom: 1.2rem;
}

.services-header .section-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #111;
  max-width: 680px;
  margin: 0 auto;
}

.services-stacked {
  max-width: 1400px;
  margin: 0 auto;
  /* Lift the stacked service cards slightly to reduce gap above and create breathing space after the container */
  margin-top: -60px;
  padding: 0;
  display: flex;
  flex-direction: column;

  gap: 70px; /* Mathematically perfect gap for a calc(100vh - 180px) card and a 110px sticky top offset */
}

/* CARD */
.service-card {
  position: sticky;
  top: 110px;
  left: 0;
  right: 0;
  width: 90vw;
  max-width: 1300px;
  height: calc(100vh - 100px);
  min-height: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 40px -10px rgba(0, 0, 0, 0.12); /* Negative spread prevents upward shadow overlap */
  transition:
    opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.6s;
  z-index: 10;
}

/* Alternate layout - even cards flip */
.service-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* CARD VISIBILITY */
.service-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* STACK EFFECT - complete overlap with z-index progression */
.service-card:nth-child(1) {
  z-index: 10;
}
.service-card:nth-child(2) {
  z-index: 11;
}
.service-card:nth-child(3) {
  z-index: 12;
}
.service-card:nth-child(4) {
  z-index: 13;
}
.service-card:nth-child(5) {
  z-index: 14;
}
.service-card:nth-child(6) {
  z-index: 15;
}

/* DARK CARD */
.service-card.dark {
  background: #111;
  color: #fff;
}

/* IMAGE */
.service-card-image-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.service-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card-image {
  transform: scale(1.05);
}

/* CONTENT */
.service-card-body {
  flex: 0 0 35%;
  padding: 4.5rem;
  max-height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: 90px;
}

.service-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #0a0a0a;
}

.service-card p {
  color: #111;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.8rem;
  max-width: 85%;
}

.service-card.dark p {
  color: #fff;
}

.service-card.dark h3 {
  color: #fff;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid #0a0a0a;
  background: transparent;
  color: #0a0a0a;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: fit-content;
}

.service-card-btn:hover {
  background: #0a0a0a;
  color: #fff;
  transform: translateX(6px);
}

.service-card.dark .service-card-btn {
  border-color: #fff;
  color: #fff;
}

.service-card.dark .service-card-btn:hover {
  background: #fff;
  color: #0a0a0a;
}

/* SPACER FOR SCROLL TRIGGER */
.services-spacer {
  height: 0;
  pointer-events: none;
}

/* MOBILE */
.wd-certified {
  background: #f9f9f7;
  padding: 5rem 0;
}

.wd-certified-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.wd-certified-img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.wd-certified-text .wd-section-title {
  margin-bottom: 1.6rem;
}

.wd-certified-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.1rem;
}

.wd-certified-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wd-certified-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.wd-certified-list li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background-color: #0a0a0a;
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 6 5 9 10 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.wd-panel-list li {
  color: #111;
}

.wd-certified-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.wd-types {
  background: #ffffff;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.wd-types-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wd-types-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* - TAB BAR - */
.wd-tab-bar {
  display: flex;
  gap: 0;
  /* make the tab bar visually part of the panel: single border, no bottom edge */
  border: 1px solid rgba(0, 0, 0, 0.07);
  /* keep a subtle bottom divider to separate tabs from panels */
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin-bottom: 0;
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
}

.wd-tab-bar::-webkit-scrollbar {
  display: none;
}

.wd-tab {
  flex: 1;
  min-width: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1.4rem 1.1rem;
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  position: relative;
}

.wd-tab:last-child {
  border-right: none;
}

.wd-tab-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: #333;
  transition: color 0.25s ease;
  line-height: 1;
  font-weight: 700;
}

.wd-tab-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.wd-tab:hover {
  background: #f5f5f3;
}

.wd-tab.active {
  background: #0a0a0a;
}

.wd-tab.active .wd-tab-num {
  color: #fff;
  opacity: 0.9;
}

.wd-tab.active .wd-tab-name {
  color: #fff;
}

/* - TAB PANELS - */
.wd-tab-panels {
  position: relative;
  min-height: 420px;
  margin-top: 0.5rem; /* small offset to visually connect with tab bar */
}

.wd-tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  background: #fff;
  /* remove top border so the tab-bar border acts as the panel top */
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: none;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  padding: 3rem 4.5rem; /* reduce top padding so content sits closer */
}

.wd-tab-panel.active {
  display: grid;
  animation: wdPanelIn 0.35s ease forwards;
}

@keyframes wdPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wd-panel-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.wd-panel-desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.wd-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.2rem;
}

.wd-type-tag {
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid #111;
  color: #111;
  background: transparent;
  transition: all 0.3s ease;
}

.wd-type-tag:hover {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

.wd-panel-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.wd-panel-image img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.wd-tab-panel:hover .wd-panel-image img {
  transform: scale(1.04);
}

/* - TAB BAR SCROLL HINT - */
.wd-tab-bar-wrap {
  position: relative;
}

.wd-tab-bar-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
  border-radius: 0 16px 0 0;
  display: none;
}

/* - TABLET - */
.wd-quality {
  background: #ffffff;
  padding: 5rem 0;
}

.wd-quality-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7rem;
  align-items: start;
}

.wd-quality-left {
  position: sticky;
  top: 100px;
  align-self: start;
}

.wd-quality-left .wd-section-title {
  margin-bottom: 1.4rem;
}

/* - PILLAR LIST - */
.wd-quality-right {
  display: flex;
  flex-direction: column;
}

.wd-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease;
}

.wd-pillar:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.wd-pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #0a0a0a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.wd-pillar-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.wd-pillar-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.wd-usp {
  background: #f9f9f7;
  padding: 5rem 0;
}

.wd-usp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 769px) {
  .wd-usp-inner > .wd-reveal-left {
    order: 2;
  }
  .wd-usp-right {
    order: 1;
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-usp-inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 9rem;
    align-items: center;
  }
}

/* - RIGHT - bordered card list - */
.wd-usp-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.wd-usp-card {
  padding: 1.4rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  cursor: default;
}

.wd-usp-card:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04); /* Unset the previous last-child rule implicitly by replacing it */
}

.wd-usp-card:hover {
  transform: translateY(-6px);
  background: #0a0a0a;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #0a0a0a;
}

.wd-usp-card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0;
  line-height: 1.4;
  transition: color 0.4s ease;
}

.wd-usp-card:hover .wd-usp-card-title {
  color: #fff;
}

.wd-usp-card-title::before {
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #0a0a0a
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/14px no-repeat;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.wd-usp-card:hover .wd-usp-card-title::before {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  transform: scale(1.1) rotate(5deg);
}

.wd-promise-strip {
  background: #0a0a0a;
  color: #fff;
  padding: 5rem 2rem;
  margin-top: 0;
  text-align: center;
}

.wd-promise-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wd-promise-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0;
}

.wd-promise-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.8rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.wd-promise-sub::before,
.wd-promise-sub::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

.wd-promise-btn {
  display: block;
  width: fit-content;
  margin: 1.4rem auto 0;
  padding: 0.85rem 2rem;
  background: #ffffff;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.wd-promise-btn:hover {
  background: #e0e0e0;
}

.wd-stacks {
  background: #f9f9f7;
  padding: 5rem 0;
}

.wd-stacks-cta {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 1rem;
}
.wd-stacks-cta-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.2rem;
}

.wd-stacks-header {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  text-align: center;
}

.wd-stacks-categories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wd-stack-cat-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wd-stack-cat-label::before,
.wd-stack-cat-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #000;
}

.wd-stack-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.wd-stack-card {
  background: #fdfdfd;
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 1.2rem 1.8rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.wd-stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.wd-stack-logo {
  height: 42px;
  width: 42px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wd-stack-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.wd-stack-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
  letter-spacing: 0;
}

.wd-stack-text,
.wd-stack-badges {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wd-stack-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: #555;
}

/* -
   9. ASSISTANCE FLOATING STRIP
- */
.wd-assist-strip {
  background: #f0f0ee;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.wd-assist-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.wd-assist-text {
  font-size: 1rem;
  font-weight: 500;
  color: #0a0a0a;
}

.wd-assist-text strong {
  font-weight: 700;
}

/* -
   10. FINAL GRAND CTA
- */
.wd-final-cta {
  position: relative;
  background: #0a0a0a;
  padding: 10rem 2rem;
  text-align: center;
  overflow: hidden;
}

.wd-final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.wd-final-cta-bg-letter {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  font-size: 55vw;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  bottom: -12vw;
  left: 50%;
  transform: translateX(-50%);
}

.wd-final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.wd-final-cta-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.wd-final-cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: #fff;
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.wd-final-cta-title .wd-stroke {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  color: transparent;
}

.wd-final-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.wd-final-cta-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.wd-final-cta-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

/* -
   ANIMATIONS
- */
@keyframes wdFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -
   RESPONSIVE
- */
/* --- Imported: sections/brands.css --- */
/* - BRANDS TICKER (imported from new_index) - */
.brands-section {
  background: #fff;
  padding: 48px 0;
  border-top: 0;
  border-bottom: 0;
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.08;
  color: #111;
  margin-bottom: 1.2rem;
}

.brands-sub {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  max-width: 680px;
  margin: 0 auto 1.6rem;
}

.ticker-wrapper {
  position: relative;
  overflow: hidden;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
  display: none;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker-track.reverse {
  animation-direction: reverse;
  animation-duration: 32s;
}

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

.ticker-set {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 0;
}

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

.brand-item {
  width: 290px;
  height: 130px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  display: block;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.2);
  transform: scale(1.24);
  transition: var(--transition, all 0.28s cubic-bezier(0.4, 0, 0.2, 1));
}

.brand-item:hover .brand-logo {
  transform: scale(1.3);
  filter: grayscale(0);
}

/* - STATS STRIP - */
.stats-strip {
  display: none;
}
.wd-team-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.wd-team-avatar-wrapper {
  padding: 1.5rem 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-team-avatar {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.wd-team-info {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.2rem 1.5rem 1.5rem;
  text-align: center;
}
.wd-team-role {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #888;
  text-transform: none;
  letter-spacing: 0.3px;
  margin-bottom: 0.5rem;
}
.wd-team-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.3px;
}
.wd-team-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.wd-team-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: opacity 0.18s, transform 0.18s;
}
.wd-team-link:hover {
  opacity: 0.82;
  transform: scale(1.1);
}
.wd-team-link svg {
  width: 16px;
  height: 16px;
}
.wd-team-link--linkedin {
  background: #0077b5;
  border: 1.5px solid #0077b5;
  color: #fff;
}
.wd-team-link--email {
  background: #EA4335;
  border: 1.5px solid #EA4335;
  color: #fff;
}
.wd-team-link--whatsapp {
  background: #25D366;
  border: 1.5px solid #25D366;
  color: #fff;
}

#book .wd-hero-form-title {
  margin-bottom: 2.8rem;
}
@media (max-width: 768px) {
  #book .wd-hero-form-title {
    font-size: 1.25rem;
    white-space: nowrap;
  }
}

/* Team section dark theme */
#team .wd-section-label {
  color: rgba(255, 255, 255, 0.5);
}
#team .wd-section-label::before,
#team .wd-section-label::after {
  background: rgba(255, 255, 255, 0.3);
}
#team .wd-section-title {
  color: #fff;
}
#team .wd-section-desc {
  color: rgba(255, 255, 255, 0.65);
}
#team .wd-team-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
#team .wd-team-info {
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#team .wd-team-name {
  color: #fff;
}
#team .wd-team-role {
  color: rgba(255, 255, 255, 0.5);
}

.longform {
  background: var(--paper-2);
}
.longform-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.longform-left {
  position: relative !important;
  top: 0 !important;
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.2s;
  cursor: pointer;
  touch-action: manipulation;
}
.faq-question:hover {
  color: var(--gray-700);
}
.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 24px;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 32px;
}
.faq-answer p {
  font-size: 16px;
  max-width: 760px;
  line-height: 1.65;
}
.cta {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.cta-left h2 {
  color: var(--white);
  margin-bottom: 28px;
  text-align: left;
}
.cta-left p {
  color: var(--gray-300);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 500;
}
.cta-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-bullets li {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.cta-bullets li .check-icon {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cta-form {
  padding: 0;
}
.cta-form h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.cta-form .subtitle {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-700);
  margin-bottom: 28px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form-row textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-note {
  font-size: 12px;
  color: var(--gray-700);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.calendly-alt {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}
.calendly-alt a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.show {
  display: block;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Heading typography overrides for injected homepage sections to match DM Sans / Bebas Neue */
.trust-label,
.partner-name,
.team-name,
.testimonial-stars,
.faq-question,
.cta-form h3,
.form-row label {
  font-family: "DM Sans", sans-serif !important;
}
.longform-left h2,
.team h2,
.cta-left h2,
.testimonial-quote {
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 0.02em !important;
  font-weight: 700 !important;
}

/* Format the right-hand column of the Long-form section */
.longform-right h3 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 40px;
  text-align: left;
}
.longform-right h3:first-child {
  margin-top: 0;
}
.longform-right p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* --- Added layout utilities from home page for newly added sections --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.container-tight {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  max-width: 880px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-header h2 {
  margin-top: 24px;
  margin-bottom: 28px;
  text-align: center;
}
.section-header p {
  font-size: 19px;
  max-width: 720px;
  line-height: 1.55;
  font-weight: 500;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--ink);
  display: inline-block;
}
/* --- Imported: sections/footer.css --- */
/* - FOOTER - */
.site-footer {
  background: #050505;
  padding: 80px 5vw 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.footer-brand p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.footer-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  filter: invert(1) brightness(2);
}
.footer-logo-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: #fff;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}
.footer-copy {
  color: #ffffff;
  font-size: 0.84rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  opacity: 0.9;
}
.social-btn:hover {
  transform: translateY(-3px);
  opacity: 1;
}
.social-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* LinkedIn — brand blue */
.social-btn[aria-label="LinkedIn"] {
  background: #0A66C2;
  border: none;
}
/* Twitter / X — white background with black X */
.social-btn[aria-label="Twitter / X"] {
  background: #fff;
  border: none;
}
.social-btn[aria-label="Twitter / X"] svg {
  fill: #000;
  stroke: none;
  width: 15px;
  height: 15px;
}
/* Instagram — brand gradient */
.social-btn[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
}

.wd-cta-band {
  background: #0a0a0a;
  padding: 5rem 2rem;
  text-align: center;
}

.wd-cta-band-inner {
  max-width: 760px;
  margin: 0 auto;
}

.wd-cta-band-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}

.wd-cta-band-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.wd-cta-band-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

.wd-cta-band-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* -
   5. WHAT MAKES A GOOD WEBSITE
- */
/* =========================================================
   NEXA SOLUTIONS Ã¢â‚¬â€ STYLESHEET
   ========================================================= */

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

:root {
  --white: #ffffff;
  --paper: #f8fafc; /* sleek cool slate background */
  --paper-2: #f1f5f9; /* slightly darker cool slate background */
  --ink: #0f172a; /* premium slate-900 */
  --ink-soft: #1e293b; /* premium slate-800 */
  --gray-900: #0f172a;
  --gray-800: #334155; /* slate-700 */
  --gray-700: #475569; /* slate-600 */
  --gray-500: #64748b; /* slate-500 */
  --gray-400: #94a3b8; /* slate-400 */
  --gray-300: #cbd5e1; /* slate-300 */
  --gray-200: #e2e8f0; /* slate-200 */
  --gray-100: #f1f5f9; /* slate-100 */

  --primary: #000000; /* Premium Indigo */
  --primary-hover: #1b1b1b;
  --accent: #000000; /* Vibrant Emerald */
  --accent-hover: #1b1b1b;
  --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --gold: #000000; /* Star Rating Gold */

  --font-display: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Geist Mono", "SF Mono", monospace;

  --max-width: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  font-weight: 500; /* heavier base body weight */
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--ink);
  color: var(--white);
}

/* ===================================
   TYPOGRAPHY Ã¢â‚¬â€ REDUCED & BALANCED
   =================================== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: left; /* Default back to left-aligned for grids */
}

#faq {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  #faq {
    padding: 3rem 0;
  }
  #faq .container {
    padding: 0 1.5rem;
  }
}

/* Re-center headings inside explicitly centered section headers */
.wd-stacks-header .wd-section-title,
.wd-types-header .wd-section-title,
.wd-team-header .wd-section-title,
.wd-partners-header .wd-section-title,
#faq .wd-section-title {
  text-align: center;
}

h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h4 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}
h5 {
  font-size: 15px;
  font-weight: 700;
}

p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--gray-800);
  font-weight: 500;
}

.lede {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--gray-800);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--ink);
  display: inline-block;
}

.italic-accent {
  font-weight: 600;
  color: var(--gray-700);
}

strong,
b {
  font-weight: 700;
  color: var(--ink);
}

/* ===================================
   LAYOUT
   =================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-tight {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section {
  padding: 5rem 0;
  position: relative;
}

/* ===================================
   ANNOUNCEMENT BAR
   =================================== */
.announcement {
  background: var(--ink);
  color: var(--white);
  padding: 12px var(--gutter);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.005em;
}
.announcement span {
  color: var(--gray-400);
  font-weight: 500;
}
.announcement strong {
  font-weight: 700;
  color: var(--white);
}
.announcement::before {
  content: "Ã¢â€”Â";
  color: #10b981;
  margin-right: 10px;
  font-size: 9px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--gray-800);
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 6px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.btn-outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  font-weight: 700;
}
.btn-ghost:hover {
  gap: 14px;
}
.btn-large {
  padding: 20px 36px;
  font-size: 16px;
}

/* ===================================
   HERO Ã¢â‚¬â€ TWO COLUMN BANNER
   =================================== */
.hero {
  padding: clamp(20px, 3vw, 40px) 0 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--gray-200);
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.hero-left h1 {
  margin-top: 8px;
  margin-bottom: 32px;
  text-align: left;
}
.hero-left h1 em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-form-card {
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  text-align: left;
}
.hero-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
  text-align: left;
}
.hero-form-card .form-sub-text {
  font-size: 13.5px;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0 80px;
}
@media (max-width: 1024px) {
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero-meta-item .label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-700);
  margin-top: 10px;
  display: block;
}

/* ===================================
   TRUST STRIP Ã¢â‚¬â€ SYMMETRICAL ROW
   =================================== */
.trust-strip {
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--paper);
}
.trust-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-700);
  margin-bottom: 32px;
}
.trust-grid-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.01);
}
.trust-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.04);
}
.trust-item img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

/* ===================================
   SECTION HEADER Ã¢â‚¬â€ CENTERED
   =================================== */
.section-header {
  max-width: 880px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-header h2 {
  margin-top: 24px;
  margin-bottom: 28px;
  text-align: center;
}
.section-header p {
  font-size: 19px;
  max-width: 720px;
  line-height: 1.55;
  font-weight: 500;
  margin: 0 auto;
}

/* ===================================
   WHO WE SERVE
   =================================== */
.who-we-serve {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .who-we-serve {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.who-image-wrap {
  position: relative;
}
.who-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}
.who-image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.who-image-caption strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}
.who-content h2 {
  margin-bottom: 28px;
  text-align: left;
}
.who-content p {
  margin-bottom: 20px;
}
.who-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.who-list li {
  padding: 14px 0;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.who-list li:last-child {
  border-bottom: 1px solid var(--gray-200);
}
.who-list li .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 30px;
}

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: var(--primary);
}
.service-image-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image {
  transform: scale(1.06);
}
.service-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.12em;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.service-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
  color: var(--gray-700);
  flex-grow: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid var(--gray-300);
  border-radius: 100px;
  color: var(--gray-800);
  background: var(--white);
}

/* ===================================
   INDUSTRIES SECTION
   =================================== */
.industries {
  background: var(--paper);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.industry-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid var(--gray-200);
}
.industry-card:hover {
  transform: translateY(-4px);
}
.industry-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.industry-content {
  padding: 24px 26px 30px;
}
.industry-content h4 {
  font-size: 22px;
  margin-bottom: 8px;
}
.industry-content p {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.industry-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================================
   TECH STACK SECTION
   =================================== */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.stack-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}
.stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border-color: var(--primary);
}
.stack-icon-wrap {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.3s ease;
}
.stack-card:hover .stack-icon-wrap {
  background: var(--ink);
}
.stack-icon {
  font-size: 52px;
  color: var(--ink);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.stack-card:hover .stack-icon {
  color: var(--white);
  transform: scale(1.15);
}
.stack-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.stack-card h4 {
  font-size: 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.stack-card h4 .domain-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
}
.stack-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.stack-list li {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  transition: all 0.2s ease;
  cursor: default;
}
.stack-list li:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1.5px);
}

/* ===================================
   CASE STUDIES
   =================================== */
.case-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.case-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .case-item,
  .case-item.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .case-item.reverse .case-image-wrap {
    order: 0;
  }
}
.case-item.reverse {
  grid-template-columns: 1fr 1fr;
}
.case-item.reverse .case-image-wrap {
  order: 2;
}
.case-image-wrap {
  position: relative;
}
.case-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.18);
}
.case-image-num {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
  color: var(--ink);
}
.case-content .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.case-content .meta span:not(:last-child)::after {
  content: " Ã‚Â·";
  color: var(--gray-400);
  margin-left: 16px;
}
.case-content h3 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 20px;
  text-align: left;
}
.case-content .case-description {
  font-size: 17px;
  color: var(--gray-800);
  margin-bottom: 28px;
  line-height: 1.6;
}
.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
}
.case-stack span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
}
.case-results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}
@media (max-width: 540px) {
  .case-results {
    grid-template-columns: 1fr 1fr;
  }
}
.case-result .val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.case-result .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: block;
}

/* ===================================
   PROCESS
   =================================== */
.process {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.process .section-header h2 {
  color: var(--white);
}
.process .section-header p {
  color: var(--gray-300);
}
.process .eyebrow {
  color: var(--white);
}
.process .eyebrow::before {
  background: var(--white);
}
.process-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .process-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-image {
    position: relative !important;
    top: 0 !important;
  }
}
.process-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  position: sticky;
  top: 100px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.process-step {
  padding: 32px 0;
  border-top: 1px solid var(--gray-700);
}
.process-step:first-child {
  border-top: none;
  padding-top: 0;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  display: block;
}
.process-step h4 {
  color: var(--white);
  font-size: 30px;
  margin-bottom: 14px;
}
.process-step p {
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.6;
}

/* ===================================
   WHY NEXA Ã¢â‚¬â€ Comparison Table
   =================================== */
.why-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .why-comparison {
    grid-template-columns: 1fr;
  }
}
.compare-card {
  background: var(--white);
  padding: 40px 36px;
}
.compare-card.featured {
  background: var(--ink);
  color: var(--white);
}
.compare-card.featured h4 {
  color: var(--white);
}
.compare-card.featured ul li {
  color: var(--gray-300);
}
.compare-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.compare-card.featured .compare-label {
  color: var(--gray-400);
}
.compare-card h4 {
  font-size: 26px;
  margin-bottom: 24px;
}
.compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-card ul li {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.compare-card.featured ul li {
  color: var(--gray-300);
}
.compare-card ul li .material-icons {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-card ul li .check-icon {
  color: var(--accent);
}
.compare-card ul li .cross-icon {
  color: var(--gray-400);
}

/* ===================================
   PARTNERS MARQUEE
   =================================== */
.partners-marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  padding: 24px 0;
}
.partners-marquee-track {
  display: flex;
  gap: 32px;
  animation: partnersScroll 30s linear infinite;
  flex-shrink: 0;
}
@keyframes partnersScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partners-marquee .partner-card {
  flex: 0 0 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}
.partners-marquee .partner-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}
.partners-marquee .partner-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.partners-marquee .partner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.partners-marquee .partner-desc {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===================================
   TEAM
   =================================== */
.team {
  background: var(--paper);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.team-bio {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray-800);
  font-weight: 500;
}

/* ===================================
   TESTIMONIALS SLIDER / CAROUSEL
   =================================== */
.testimonial-carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}
.testimonial-carousel-track {
  display: flex;
  gap: 24px;
  cursor: grab;
  user-select: none;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.testimonial-carousel-track:active {
  cursor: grabbing;
}
.testimonial {
  flex: 0 0 clamp(320px, 40vw, 420px);
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
@media (max-width: 640px) {
  .testimonial {
    flex: 0 0 calc(100vw - 2 * var(--gutter));
  }
}
.testimonial:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}
.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.carousel-indicators {
  display: flex;
  gap: 8px;
}
.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.25s ease;
}
.carousel-indicator.active {
  background: var(--primary);
  transform: scale(1.3);
}

.star-icon {
  color: var(--gold);
  font-size: 18px;
}
.check-icon {
  color: var(--accent);
  font-size: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
  flex-grow: 1;
  letter-spacing: -0.015em;
}
.testimonial-quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 4px;
  color: var(--gray-300);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.author-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.testimonial-stars {
  font-family: var(--font-mono);
  letter-spacing: 2px;
  color: var(--ink);
  margin-bottom: 16px;
  font-size: 13px;
}

/* ===================================
   SEO LONG-FORM SECTION
   =================================== */
.longform {
  background: var(--paper-2);
}
.longform-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
@media (max-width: 1024px) {
  .longform-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .longform-left {
    position: relative !important;
    top: 0 !important;
  }
}
.longform-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
.longform-left h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 24px;
  text-align: left;
}
.longform-left p {
  font-size: 18px;
}
.longform-right h3 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 40px;
  text-align: left;
}
.longform-right h3:first-child {
  margin-top: 0;
}
.longform-right p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===================================
   FAQ
   =================================== */
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.2s;
  cursor: pointer;
  touch-action: manipulation;
}
.faq-question:hover {
  color: var(--gray-700);
}
.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 24px;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 32px;
}
.faq-answer p {
  font-size: 16px;
  max-width: 760px;
  line-height: 1.65;
}

/* ===================================
   CTA / BOOKING
   =================================== */
.cta {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta--white {
  background: #ffffff;
  color: var(--ink);
}
.cta--white .container {
  max-width: 1300px;
  padding: 0 2rem;
}
.cta--white::before {
  display: none;
}
.cta--white .cta-left h2,
.cta--white .cta-left .wd-section-title {
  color: var(--ink);
}
.cta--white .cta-left .wd-section-desc {
  color: #555;
}
.cta--white .cta-bullets li {
  color: #333;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-card {
    padding: 32px 28px;
  }
  .cta-form {
    padding: 0;
  }
}
.cta-left h2 {
  color: var(--white);
  margin-bottom: 28px;
  text-align: left;
}
.cta-left p {
  color: var(--gray-300);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 500;
}
.cta-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-bullets li {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.cta-bullets li .check-icon {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cta-form {
  width: 100%;
}
.cta-form h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.cta-form .subtitle {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-700);
  margin-bottom: 28px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form-row textarea {
  resize: vertical;
  min-height: 80px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-note {
  font-size: 12px;
  color: var(--gray-700);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.calendly-alt {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}
.calendly-alt a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.show {
  display: block;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: var(--white);
  padding: 80px 0 32px;
  border-top: 1px solid var(--gray-200);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 540px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.footer-brand .logo {
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14.5px;
  color: var(--gray-700);
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--ink);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}
.footer-bottom .legal {
  display: flex;
  gap: 24px;
}
.footer-bottom .legal a {
  font-weight: 600;
}
.footer-bottom .legal a:hover {
  color: var(--ink);
}

/* ===================================
   SCROLL REVEAL & RESPONSIVENESS
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
    .wd-hero-title { font-size: clamp(3rem, 13vw, 5rem); }
    .wd-quality-grid { grid-template-columns: 1fr; }
    .wd-stats-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
    
    /* Stack cards fix */
    .wd-stack-cards { grid-template-columns: 1fr 1fr !important; gap: 0.8rem !important; }
    .wd-stack-card { padding: 1rem 0.5rem !important; border-radius: 12px; flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 0.4rem !important; }
    .wd-stack-logo { width: 36px !important; height: 36px !important; margin-bottom: 0.3rem !important; }
    .wd-stack-name { font-size: 0.85rem !important; }
    
    /* USP right fix */
    .wd-usp-right { grid-template-columns: 1fr 1fr !important; gap: 0.8rem !important; }
    .wd-usp-card { padding: 1.2rem 0.75rem !important; border-radius: 12px; flex-direction: column !important; align-items: center !important; text-align: center !important; }
    .wd-usp-icon { width: 36px !important; height: 36px !important; margin-bottom: 0.8rem !important; }
    .wd-usp-icon svg { width: 18px !important; height: 18px !important; }
    .wd-usp-card-title { font-size: 0.85rem !important; margin-bottom: 0.4rem !important; flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 0.6rem !important; }
    .wd-usp-card-desc { font-size: 0.8rem !important; line-height: 1.4 !important; }
    
    /* Partners grid fix */
    .partners-grid { gap: 0.8rem !important; padding: 1rem 0 !important; grid-template-columns: 1fr 1fr !important; }
    .partners-grid .partner-card { padding: 1rem 0.5rem !important; gap: 0.4rem !important; flex-direction: column !important; text-align: center !important; border-radius: 12px; }
    .partners-grid .partner-logo { width: 32px !important; height: 32px !important; margin-bottom: 0.3rem !important; }
    .partners-grid .partner-name { font-size: 0.85rem !important; }
    .partners-grid .partner-desc { position: static !important; opacity: 1 !important; visibility: visible !important; width: auto !important; font-size: 0.7rem !important; color: #666 !important; margin-top: 0 !important; }
    
    .wd-assist-strip-inner { flex-direction: column; text-align: center; }

    /* Center all section headings/labels on mobile */
    .wd-section-label { display: flex; justify-content: center; width: 100%; text-align: center; }
    .wd-section-title, .wd-section-desc { text-align: center; margin-left: auto; margin-right: auto; }

    /* Section-specific centering fixes */
    .wd-certified-text, .wd-cms-text, .wd-quality-left, .wd-usp-inner > div:first-child { text-align: center; }
    .wd-certified-btns, .wd-hero-btns { justify-content: center; }
}

/* =====================================================================
   MOBILE RESPONSIVE OVERRIDES â€” must come after all desktop component
   styles to win the CSS cascade.
   ===================================================================== */

/* --- 900px breakpoint --- */
@media (max-width: 900px) {
  /* Hero */
  .wd-hero {
    padding: 7rem 0 2rem;
  }
  .wd-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 3rem;
    padding: 0 1.5rem;
    text-align: center;
  }
  .wd-hero-text {
    order: 1;
  }
  .wd-hero-visual {
    order: 2;
    margin-bottom: 1rem;
  }
  .wd-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .wd-hero-btns {
    justify-content: center;
    flex-wrap: nowrap;
  }
  .wd-hero-btns .wd-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1rem;
  }
  .wd-hero-laptop {
    transform: none;
  }
  .wd-float-card--tl {
    left: -8px;
  }
  .wd-float-card--tr {
    right: -8px;
  }
  .wd-float-card--br {
    right: -8px;
  }

  /* Certified Agency */
  .wd-certified {
    padding: 2rem 0 3rem;
  }
  .wd-certified-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  /* CMS & Platforms */
  .wd-cms-inner {
    grid-template-columns: 1fr !important;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  /* Website Types â€” tabs */
  .wd-types-inner {
    padding: 0 1.2rem;
  }
  .wd-tab {
    min-width: 100px;
    padding: 1.1rem 0.8rem;
  }
  .wd-tab-name {
    font-size: 1.05rem;
  }
  .wd-tab-panel {
    grid-template-columns: 1fr !important;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  .wd-tab-panel.active {
    display: grid;
    grid-template-columns: 1fr !important;
  }
  .wd-panel-image {
    aspect-ratio: 16/9;
  }
  .wd-panel-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .wd-panel-desc {
    font-size: 0.95rem;
  }

  /* Quality / Pillars */
  .wd-quality-inner {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  .wd-quality-left {
    position: static;
  }

  /* USP */
  .wd-usp-inner {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }

  /* Type cards */
  .wd-type-card {
    flex-direction: column !important;
    height: auto;
    min-height: 500px;
    width: 92vw;
  }
  .wd-type-card-body {
    flex: 0 0 auto;
    padding: 2.5rem 2rem;
    margin-top: 0;
  }
  .wd-type-card-image {
    min-height: 42vh;
    flex: 1;
  }

  /* Stats bar */
  .wd-quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-stat-item:nth-child(2) {
    border-right: none;
  }
  .wd-stat-item:nth-child(1),
  .wd-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }
}

/* --- 768px breakpoint --- */
@media (max-width: 768px) {
  .wd-promise-text {
    font-size: 1.8rem;
  }
  .wd-promise-strip {
    padding: 4rem 1.5rem;
  }
  .wd-hide-mobile {
    display: none !important;
  }
}

/* --- 480px breakpoint --- */
@media (max-width: 480px) {
  .wd-float-card--tr,
  .wd-float-card--br {
    display: none;
  }
  .wd-float-card--tl {
    left: 0;
  }
}

/* --- 640px breakpoint --- */
@media (max-width: 640px) {
  /* Hero */
  .wd-hero-title {
    font-size: clamp(3rem, 13vw, 5rem) !important;
    text-align: center;
  }
  .wd-cta-band-title {
    text-align: center;
  }

  /* Website Types â€” phone */
  .wd-types {
    padding: 5rem 0 6rem;
  }
  .wd-types-inner {
    padding: 0 1rem;
  }
  .wd-types-header {
    margin-bottom: 1.8rem;
  }
  .wd-tab-bar-wrap::after {
    display: block;
  }
  .wd-tab-bar {
    border-radius: 14px 14px 0 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .wd-tab-bar::-webkit-scrollbar {
    display: none;
  }
  .wd-tab {
    flex: 0 0 auto;
    width: calc(33.33% - 1px);
    min-width: 90px;
    padding: 1rem 0.5rem 0.9rem;
    gap: 0.35rem;
    scroll-snap-align: start;
  }
  .wd-tab-icon {
    font-size: 1.3rem;
    line-height: 1;
  }
  .wd-tab-name {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: center;
  }
  .wd-tab-panel,
  .wd-tab-panel.active {
    display: none;
    border-radius: 0 0 16px 16px;
    padding: 1.6rem 1.2rem 2rem;
    gap: 0;
  }
  .wd-tab-panel.active {
    display: flex !important;
    flex-direction: column;
    gap: 1.6rem;
  }
  .wd-panel-image {
    order: -1;
    aspect-ratio: 16/9;
    border-radius: 10px;
  }
  .wd-panel-text {
    order: 1;
  }
  .wd-panel-title {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
  }
  .wd-panel-desc {
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 1.2rem;
  }
  .wd-panel-examples {
    margin-bottom: 1.2rem;
  }
  .wd-examples-list {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .wd-stack-chips {
    gap: 0.5rem;
    margin-bottom: 1.4rem;
  }
  .wd-stack-chip {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  .wd-stack-chip img {
    width: 14px;
    height: 14px;
  }
  .wd-type-tag {
    font-size: 0.68rem;
    padding: 0.35rem 0.8rem;
  }

  /* Quality â€” swipe carousel */
  .wd-quality {
    padding: 1.5rem 0 3rem;
  }
  .wd-quality-inner {
    gap: 2rem;
    padding: 0;
  }
  .wd-quality-left {
    padding: 0 1.4rem;
  }
  .wd-quality-right {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 0;
    padding: 0.25rem 1.4rem 0.5rem;
  }
  .wd-quality-right::-webkit-scrollbar {
    display: none;
  }
  .wd-pillar {
    flex: 0 0 calc(100% - 2.8rem) !important;
    width: calc(100% - 2.8rem) !important;
    scroll-snap-align: start;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.8rem 1.6rem;
    margin-right: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    background: #ffffff;
  }
  .wd-pillar:last-child {
    margin-right: 0;
  }
  .wd-pillar:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .wd-pillar-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
  }
  .wd-pillar-title {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .wd-pillar-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
  }
  .wd-pillar-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.4rem;
  }
  .wd-pillar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.25s, transform 0.25s;
  }
  .wd-pillar-dot.active {
    background: #0a0a0a;
    transform: scale(1.35);
  }

  /* Stats & quality grid */
  .wd-quality-grid {
    grid-template-columns: 1fr !important;
  }
  .wd-stats-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
  }

  /* Stack cards */
  .wd-stack-cards {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
  }
  .wd-stack-card {
    padding: 1rem 0.5rem !important;
    border-radius: 12px;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.4rem !important;
  }
  .wd-stack-logo {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 0.3rem !important;
  }
  .wd-stack-name {
    font-size: 0.85rem !important;
  }

  /* USP right */
  .wd-usp-right {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
  }
  .wd-usp-card {
    padding: 1.2rem 0.75rem !important;
    border-radius: 12px;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .wd-usp-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 0.8rem !important;
  }
  .wd-usp-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .wd-usp-card-title {
    font-size: 0.85rem !important;
    margin-bottom: 0.4rem !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.6rem !important;
  }
  .wd-usp-card-desc {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  /* Partners grid */
  .partners-grid {
    gap: 0.8rem;
    padding: 1rem 0;
  }
  .partners-grid .partner-card {
    padding: 1rem 0.5rem;
    gap: 0.4rem;
    flex-direction: column;
    text-align: center;
    border-radius: 12px;
  }
  .partners-grid .partner-logo {
    width: 32px;
    height: 32px;
    margin-bottom: 0.3rem;
  }
  .partners-grid .partner-name {
    font-size: 0.85rem;
  }
  .partners-grid .partner-desc {
    position: static;
    opacity: 1;
    visibility: visible;
    width: auto;
    font-size: 0.7rem;
    color: #666;
    margin-top: 0;
  }

  /* Assist strip */
  .wd-assist-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Section headings */
  .wd-section-label {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .wd-section-title,
  .wd-section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Section-specific centering */
  .wd-certified-text,
  .wd-cms-text,
  .wd-quality-left,
  .wd-usp-inner > div:first-child {
    text-align: center;
  }
  .wd-certified-btns,
  .wd-hero-btns {
    justify-content: center;
  }
}
/* Team cards - 2 columns on mobile, smaller avatar */
@media (max-width: 640px) {
  .team { padding: 2.5rem 0 !important; }
  .wd-team-header { margin-bottom: 1.6rem !important; }
  .wd-team-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; max-width: 100% !important; }
  .wd-team-card { flex-direction: column !important; align-items: stretch; border-radius: 14px; }
  .wd-team-avatar-wrapper { padding: 1rem 0.75rem 0.5rem; border-right: none; justify-content: center; }
  .wd-team-avatar { width: 100px !important; height: 100px !important; border-radius: 50%; object-fit: cover; object-position: top center; }
  .wd-team-info { padding: 0.75rem 0.75rem 1rem; border-top: 1px solid rgba(255,255,255,0.08) !important; text-align: center; }
  .wd-team-role { font-size: 0.62rem; letter-spacing: 0.2px; margin-bottom: 0.3rem; }
  .wd-team-name { font-size: 1.1rem; letter-spacing: 0; }
  .wd-team-links { gap: 0.4rem; margin-top: 0.6rem; }
  .wd-team-link { width: 28px; height: 28px; }
  .wd-team-link svg { width: 13px; height: 13px; }
}

/* ── Mobile: centre all section headings ── */
@media (max-width: 768px) {
  .wd-section-label {
    justify-content: center;
    text-align: center;
  }
  .wd-section-title {
    text-align: center;
  }
  .wd-section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  /* Bottom contact section: left col headings also centred */
  .cta-left {
    text-align: center;
  }
  .cta-left .wd-section-title,
  .cta-left .wd-section-desc {
    text-align: center;
  }
  .cta-bullets {
    display: inline-block;
    text-align: left;
  }
  /* Remove double-padding: .cta-form wrapper must not add padding on top of .wd-hero-form */
  .cta-form {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}

/* ── Lead Popup ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.popup-modal {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
}
.popup-overlay.open .popup-modal {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  z-index: 1;
  transition: background 0.18s;
}
.popup-close:hover {
  background: #e0e0e0;
}
@media (max-width: 640px) {
  .popup-modal {
    max-height: 88vh;
  }
  .popup-modal .wd-hero-form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .wd-certified-list,
  .wd-certified-list li {
    text-align: left;
  }
}
.seo-locations {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.req-star {
  color: #e53e3e;
  margin-left: 2px;
  font-weight: 700;
}

