/* ===== Global resets & smoothness ======================================= */

@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');
@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');

:root {
  --light: #fff;
  --dark: #000;
  --accent: #a7a5a5;
  --light-grey: #e8e8e8;
  --hero-min-h: clamp(60vh, 80vh, 92vh);
  --content-max: 1100px;
  --gutter: clamp(16px, 3vw, 40px);
  --fade-up-distance: 14px;
  --fade-up-time: 700ms;
  --fade-up-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --why-maxw: 1200px;
  --why-gutter: clamp(20px, 12vw, 80px);
  --card-bg: #111;
  --ow-maxw: 1200px;
  --ow-gutter: clamp(16px, 3.5vw, 28px);
  --card-radius: 22px;
  --tools-maxw: 1200px;
  --gutter: clamp(20px, 6vw, 80px);
  --tile-size: clamp(56px, 6.8vw, 86px);
  --tile-radius: 18px;
  --grey: #d7d7d7;
  --black: #0f0f10;
  --card: #f7f7f7;
  --bg: #000;
  --fg: #fff;
  --muted: #cfcfcf;
  --rule: #2c2c2c;
  --pill: #fff;
  --pill-fg: #000;
  --container: 1200px;
  --font-family-heading: "Neue Haas Grotesk Display Pro", "Raleway", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif;
    --font-family-body: "Helvetica Neue", "Raleway", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family-body);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
  font-family: var(--font-family-heading);
      font-weight: 600;
}
strong{
  font-weight: 800;
}

th{
      font-weight: 800;

}
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Header Wrapper ==================================================== */
.header-menu-wrapper {
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 4rem);
  background: #000;
  position: relative;
  z-index: 1001;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.header-menu-logo img {
  height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* ===== Toggle (hamburger + text) ======================================== */
.header-menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.header-menu-text {
  font-size: 14px;
  
  min-width: 50px;
  position: relative;
  height: 14px;
  overflow: hidden;
  color: #fff;
}

.header-menu-text span {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  will-change: transform, opacity;
}

.header-menu-text .menu {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header-menu-text .open,
.header-menu-text .close {
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

/* Hover states only on devices that hover */
@media (hover: hover) and (pointer: fine) {
  .header-menu-toggle:hover:not(.active) .header-menu-text .menu {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .header-menu-toggle:hover:not(.active) .header-menu-text .open {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .header-menu-toggle.active:hover .header-menu-text .menu {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .header-menu-toggle.active:hover .header-menu-text .close {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.header-menu-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.header-menu-icon span {
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease,
    width 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease,
    top 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease,
    top 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform, width, opacity, top;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.header-menu-icon span:nth-child(1) {
  top: 4px;
}
.header-menu-icon span:nth-child(2) {
  top: 9px;
  width: 12px;
}
.header-menu-icon span:nth-child(3) {
  top: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .header-menu-toggle:hover .header-menu-icon span:nth-child(2) {
    width: 20px;
  }
}

.header-menu-toggle.active .header-menu-icon span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
}
.header-menu-toggle.active .header-menu-icon span:nth-child(2) {
  opacity: 0;
}
.header-menu-toggle.active .header-menu-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 9px;
}

/* ===== Fullscreen Overlay ================================================= */
.header-menu-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  z-index: 1000;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    -webkit-transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  contain: layout paint style;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header-menu-overlay.active {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.header-menu-overlay-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

/* ===== Columns =========================================================== */
.header-menu-left,
.header-menu-right {
  width: 50%;
  padding: clamp(24px, 6vw, 60px);
}

/* Desktop: contact left, menu right */
.header-menu-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Safe area paddings */
.header-menu-left,
.header-menu-right {
  padding-left: max(env(safe-area-inset-left), clamp(24px, 4vw, 60px));
  padding-right: max(env(safe-area-inset-right), clamp(24px, 4vw, 60px));
  padding-top: max(env(safe-area-inset-top), clamp(24px, 4vw, 60px));
  padding-bottom: max(env(safe-area-inset-bottom), clamp(24px, 4vw, 60px));
}

/* ===== Contact block ===================================================== */
.header-menu-contact {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.header-menu-contact h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  
  color: var(--light);
  line-height: 1.25;
  margin-bottom: clamp(12px, 1.5vw, 18px);
}

/* Contact items */
.header-menu-contact-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.6vw, 14px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header-menu-overlay.active .header-menu-contact-item {
  opacity: 1;
  transform: translateY(0);
}

.header-menu-overlay.active .header-menu-contact-item:nth-child(2) {
  transition-delay: 60ms;
}
.header-menu-overlay.active .header-menu-contact-item:nth-child(3) {
  transition-delay: 120ms;
}
.header-menu-overlay.active .header-menu-contact-item:nth-child(4) {
  transition-delay: 180ms;
}

/* Emoji icon */
.contact-emoji {
  font-size: clamp(18px, 3.2vw, 22px);
  line-height: 1;
  flex-shrink: 0;
}

/* Text block */
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-kicker {
  font-size: clamp(11px, 1.5vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  
}

.contact-title {
  font-size: clamp(14px, 1.8vw, 14px);
  font-weight: 500;
  color: var(--light);
}

.contact-value,
.contact-value:visited {
  font-size: clamp(13px, 1.6vw, 15px);
  color: var(--accent);
  text-decoration: none;
  line-height: 1.4;
}

.contact-value:hover,
.contact-value:focus-visible {
  color: var(--light);
  text-decoration: underline;
  outline: none;
}

/* ===== Right side (menu) ================================================= */
.header-menu-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--light);
}

.header-menu-right a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.header-menu-right ul {
  list-style: none;
  padding-left: 0;
}

.header-menu-right ul li {
  margin: clamp(14px, 2vw, 25px) 0;
  font-size: clamp(22px, 3.2vw, 36px);
  
  letter-spacing: 1px;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease,
    color 0.25s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.25s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.25s ease,
    -webkit-transform 0.5s ease;
  will-change: transform, opacity, color;
}

/* reveal + stagger */
.header-menu-overlay.active .header-menu-right ul li {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.header-menu-overlay.active .header-menu-right ul li:nth-child(1) {
  transition-delay: 0.05s;
}
.header-menu-overlay.active .header-menu-right ul li:nth-child(2) {
  transition-delay: 0.1s;
}
.header-menu-overlay.active .header-menu-right ul li:nth-child(3) {
  transition-delay: 0.15s;
}
.header-menu-overlay.active .header-menu-right ul li:nth-child(4) {
  transition-delay: 0.2s;
}
.header-menu-overlay.active .header-menu-right ul li:nth-child(5) {
  transition-delay: 0.25s;
}
.header-menu-overlay.active .header-menu-right ul li:nth-child(6) {
  transition-delay: 0.3s;
}
.header-menu-overlay.active .header-menu-right ul li:nth-child(7) {
  transition-delay: 0.35s;
}
.header-menu-overlay.active .header-menu-right ul li:nth-child(8) {
  transition-delay: 0.4s;
}

/* Hover color (works for li with/without <a>) */
.header-menu-right ul li,
.header-menu-right ul li > a {
  color: var(--light);
}
.header-menu-right ul li:hover,
.header-menu-right ul li:hover > a {
  color: var(--accent);
}

/* ===== Responsive ======================================================== */
@media (max-width: 1024px) {
  .header-menu-wrapper {
    height: 76px;
  }
}

@media (max-width: 900px) {
  .header-menu-left,
  .header-menu-right {
    width: 100%;
    border: none;
    /* text-align: center; */
  }
  .header-menu-overlay {
    margin-top: 3.5rem;
    padding: 0 4rem;
  }

  /* Stack vertically on mobile */
  .header-menu-overlay-inner {
    flex-direction: column;
    gap: clamp(12px, 3vw, 20px);
  }

  /* Reorder: MENU FIRST, then CONTACT */
  .header-menu-right {
    order: 1;
  }
  .header-menu-left {
    order: 2;
  }

  /* Tighten paddings for mobile */
  .header-menu-left,
  .header-menu-right {
    padding: clamp(18px, 6vw, 28px);
    padding-left: max(env(safe-area-inset-left), clamp(16px, 4vw, 28px));
    padding-right: max(env(safe-area-inset-right), clamp(16px, 4vw, 28px));
  }
  .header-menu-left {
    padding-top: 0;
  }

  .header-menu-contact h2 {
    font-size: clamp(18px, 5vw, 24px);
  }

  .header-menu-right {
    align-items: flex-start;
  }

  .header-menu-right ul li {
    font-size: clamp(20px, 6vw, 28px);
    margin: clamp(10px, 2.5vw, 18px) 0;
  }
}

/* ===== Focus visibility for keyboard users ============================== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ===== Optional: subtle custom scrollbar (Firefox + WebKit) ============= */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) rgba(255, 255, 255, 0.08);
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}
*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.55);
}

/* ===== Light scheme fallback ============================================ */
@media (prefers-color-scheme: light) {
  body {
    background: #fff;
    color: #111;
  }
  .header-menu-wrapper {
    background: #111;
  }
}

@media (max-width: 640px) {
  .header-menu-logo img {
    height: 45px;
  }
  .header-menu-overlay {
    margin-top: 3rem;
    padding: 0 1rem;
  }
  .header-menu-right ul li {
    font-size: clamp(18px, 2vw, 22px);
  }
}

/* ===== Hero wrapper ===== */
.hero {
  position: relative;
  width: 100%;
  /* min-height: var(--hero-min-h); */
  overflow: hidden;
  /* background: #000; */
  isolation: isolate; /* contain blending/filters */
  margin-top: -1rem;
}

/* ===== Video fills cover ===== */
.hero-video {
  inset: 0;
  width: 100%;

    height: 100%;
    object-fit: cover;
  z-index: -1;
  filter: none;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-user-select: none;
  user-select: none;
}

/* ===== Overlay & content ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end; /* center on large screens */
  padding: var(--gutter);
  padding-bottom: 3rem;
}

.hero-overlay-content {
  width: min(var(--content-max), 100%);
  margin-inline: auto;
  text-align: center;
  color: var(--light);
}

/* Typography */
.hero-overlay-content h1 {
  
  line-height: 1.08;
  letter-spacing: 0.2px;
  font-size: clamp(28px, 4.5vw, 56px);
  margin-bottom: clamp(10px, 1.6vw, 16px);
}

.hero-overlay-content p {
  color: var(--light-grey);
  font-weight: 500;
  line-height: 1.6;
  font-size: clamp(14px, 1.5vw, 18px);
  max-width: 80ch;
  margin: 0 auto;
}

/* Buttons row */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 16px);
  justify-content: center;
  margin-top: clamp(16px, 3vw, 28px);
}

.white-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.2rem;
  font-size: clamp(12px, 1.4vw, 14px);
  text-transform: uppercase;
  
  letter-spacing: 0.06em;
  border-radius: 999px;
  color: var(--dark);
  background: #fff;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}



/* Icon wrapper */
 .white-button__icon img {
     width: 30px;
     height: 30px ;
    object-fit: contain;
    display: block;
}/* prevents overflow if img is bigger */



/* Arrow wrapper */
.white-button__arrow {
     width: var(--icon);
    height: var(--icon);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
}


a.white-button {
  text-decoration: none;
}

.black-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  outline: 0;
  padding: 1rem 1.2rem;
  font-size: clamp(12px, 1.4vw, 14px);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
  background: var(--dark);
  color: var(--light);
  transition: transform 0.25s var(--fade-up-ease), box-shadow 0.25s ease,
    background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  will-change: transform, box-shadow, background, color;
  gap: 20px;
}

a.black-button {
  text-decoration: none;
}

.white-button:hover,
.white-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* .white-button--ghost {
  background: transparent;
  color: var(--light);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.white-button--ghost:hover,
.white-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.9);
} */

/* ===== Subtle reveal animations (stagger) ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, var(--fade-up-distance), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.reveal-1,
.reveal-2,
.reveal-3 {
  opacity: 0;
  animation: fadeUp var(--fade-up-time) var(--fade-up-ease) forwards;
}
.reveal-1 {
  animation-delay: 0.05s;
}
.reveal-2 {
  animation-delay: 0.18s;
}
.reveal-3 {
  animation-delay: 0.32s;
}

/* ===== Mobile & tablet adjustments ===== */
@media (max-width: 1024px) {
  .hero-overlay {
    place-items: end center;
    padding-bottom: clamp(20px, 4vh, 88px);
  }
  .hero-overlay-content {
    text-align: left;
  }
  .hero-overlay-content p {
    margin-left: 0;
    margin-right: 0;
  }

}

@media (max-width: 640px) {
  .hero {
    min-height: unset !important;
    height: 50vh;
  }
  
  .hero-btns {
    gap: 10px;
  }
  .white-button {
    width: 100%;
    max-width: 360px;
        padding: 0.5rem 0.8rem !important;

  }
  .white-button__icon img {
    width: 20px;
    height: 20px;
  }

  .white-button svg{
    height: 20px;
  }
  .hero-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    filter: none;
    pointer-events: none;
    transform: translateZ(0);
    -webkit-user-select: none;
    user-select: none;
  }
}

/* ===== Accessibility: honor reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal-1,
  .reveal-2,
  .reveal-3 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .white-button {
    transition: none;
  }
}

/* ===== Edge cases / small helpers ===== */
/* Ensure video doesn’t shrink below content height on very short viewports */
@supports (height: 100svh) {
  .hero {
  }
}



.brands-section {
  background: var(--dark);
  color: var(--light);
  padding: 5rem 0rem 5rem 3rem;
}

.brands-section .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  box-sizing: border-box;
}
.brand-text {
  flex: 1 1 40%;
  min-width: 300px;
  box-sizing: border-box;
}

.brand-text h1 {
  line-height: 1.2;
  font-size: xxx-large;
  font-weight: 500;
  margin-bottom: 0rem;
}

.brand-text p {
  color: var(--light-grey);
  font-size: medium;
  font-weight: 500;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.brand-sliders {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
  min-width: 300px;
  box-sizing: border-box;
}

.slider-row {
  overflow: hidden;
  white-space: nowrap;
}

.slider-track {
  display: inline-flex;
  gap: 1rem;
  will-change: transform;
}

.slider-track img {
  height: 65px;
  width: 130px;
  background: #131315;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0.9rem 0.9rem;
  border-radius: 7px;
}

/* Animations */
.scroll-left .slider-track {
  animation: scroll-left 35s linear infinite;
}

.scroll-right .slider-track {
  animation: scroll-right 35s linear infinite;
}

/* Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media (max-width: 1024px) {
  .brands-section {
    padding: 10rem 0rem 5rem 3rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .brands-section {
    flex-direction: column;
    text-align: center;
    padding: 3.5rem 1.5rem;
  }

  .brands-section .container {
    gap: 2rem;
  }

  .brand-text,
  .brand-sliders {
    width: 100%;
  }

  .brand-text h1 {
    font-size: 2.5rem;
  }

  .brand-text p {
    font-size: smaller;
  }

  .slider-track img {
    height: 50px;
    width: 90px;
  }

  .brand-text .consultant-btn {
    display: inline-block;
    background: var(--dark);
    color: var(--light);
    border: 1px solid var(--light);
    font-size: 12px;
    padding: 5px 10px;
    font-weight: 100;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.4s ease-in;
    box-shadow: 2px 6px 0px #ffffff38;
  }

  .brand-text .con-btn-icon {
    background-color: var(--light);
    color: var(--dark);
    border-radius: 50%;
    padding: 5px;
    margin-left: 20px;
    transition: transform 0.4s ease;
    display: inline-block;
    padding: 3px; /* smaller padding */
    font-size: 12px; /* smaller icon/text if applicable */
    margin-left: 2px;
  }
}

/* ===== Consultation (Two Cards) ========================================= */
.consultation-section {
  background: #000;
  padding: clamp(32px, 5vw, 72px) clamp(24px, 5vw, 64px);
  color: var(--light);
}

/* Grid that never clips children and collapses nicely */
.consultation-section .consultation-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}

/* Card base */
.consultation-section .consultation-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* Let content drive height but keep a pleasant minimum on wide screens */
  min-height: clamp(420px, 48vw, 640px);
  background: #111;
  isolation: isolate; /* keeps overlay effects contained */
}

/* Background video fills the card */
.consultation-section .video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
}

/* Overlay content */
.consultation-section .overlay {
  position: relative; /* sits above video */
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(16px, 2.4vw, 28px);
  height: 100%;
  padding: clamp(18px, 3vw, 40px);
  /* subtle gradient for readability without hiding video */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Left-card text block */
.consultation-section .brand-text h1 {
  font-size: clamp(22px, 4.2vw, 44px);
  line-height: 1.08;
  
  margin: 0 0 clamp(8px, 1.4vw, 14px);
}

.consultation-section .features {
  list-style: none;
  margin: clamp(8px, 1.6vw, 14px) 0 0;
  padding: 0;
  max-width: 62ch;
}
.consultation-section .features li {
  position: relative;
  /* padding-left: 18px; */
  margin: 0 0 clamp(6px, 1.4vw, 10px);
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.6;
  color: var(--light-grey);
  
  text-decoration: none;
}

/* Logos row — wraps instead of cutting */
.consultation-section .brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.6vw, 18px);
  align-items: center;
}
.consultation-section .brand-logos img {
  height: clamp(20px, 2.2vw, 30px);
  width: auto;
  object-fit: contain;
  flex: 0 1 auto;
  /* filter: brightness(0) invert(1) opacity(.9); */
}

/* CTA button */
.white-button {
  align-self: flex-start;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--light);
  color: var(--dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(12px, 1.2vw, 14px);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.white-button:hover,
.white-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  outline: none;
}

.consultation-card.consultation-image {
  position: relative;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  min-height: clamp(360px, 46vw, 560px);
  padding: clamp(14px, 2.2vw, 22px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Base styles for both images */
.consultation-card.consultation-image img {
  position: absolute;
  object-fit: cover;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Top-left image (back layer) */
.consultation-card.consultation-image .Consultation-visual-1 {
  width: 60%;
  top: clamp(14px, 2vw, 22px);
  left: clamp(14px, 2vw, 22px);
  z-index: 1; /* lower layer */
}

/* Bottom-right image (front layer) */
.consultation-card.consultation-image .Consultation-visual-2 {
  width: 60%;
  bottom: clamp(14px, 2vw, 22px);
  right: clamp(14px, 2vw, 22px);
  z-index: 2; /* higher layer - sits above first image */
}

/* Hover depth effect */
@media (hover: hover) and (pointer: fine) {
  .consultation-card.consultation-image:hover img {
    transform: translateY(-4px);
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .consultation-card.consultation-image {
    min-height: clamp(380px, 64vw, 520px);
  }
  .Consultation-visual-1 {
    width: 80%;
  }
  .Consultation-visual-2 {
    width: 70%;
  }
}

/* Mobile stacking */
@media (max-width: 680px) {
  .consultation-card.consultation-image {
    min-height: auto;
    padding: clamp(10px, 4vw, 16px);
    position: relative;
  }

  .consultation-card.consultation-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .Consultation-visual-1 {
    position: relative;
    z-index: 1;
  }

  .Consultation-visual-2 {
    position: absolute;
    width: 70%;
    right: 0; /* keep aligned to right */
    bottom: -14%; /* controls vertical overlap */
    z-index: 2;
  }
}

/* ===== Subtle enter animations (stagger) ================================ */
@keyframes c-fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.consultation-section .brand-text h1 {
  opacity: 0;
  animation: c-fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.05s forwards;
}
.consultation-section .features {
  opacity: 0;
  animation: c-fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s forwards;
}
.consultation-section .brand-logos {
  opacity: 0;
  animation: c-fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
}
.consultation-section .white-button {
  opacity: 0;
  animation: c-fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.42s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .consultation-section .brand-text h1,
  .consultation-section .features,
  .consultation-section .brand-logos,
  .consultation-section .white-button {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== Tablet (stack if needed) ========================================= */
@media (max-width: 1024px) {
  .consultation-section .consultation-container {
    grid-template-columns: 1fr 1fr;
  }
  .consultation-section .consultation-card {
    min-height: clamp(380px, 56vw, 560px);
  }
  .white-button {
    align-self: stretch;
    justify-content: center;
  }
}

/* ===== Mobile tweaks ===================================================== */
@media (max-width: 640px) {
  .consultation-section {
    padding: clamp(24px, 6vw, 36px) clamp(16px, 6vw, 28px);
  }
  .consultation-section .overlay {
    padding: clamp(16px, 5vw, 24px);
  }
  .consultation-section .brand-logos {
    gap: 10px;
  }

  .consultation-section .consultation-container {
    grid-template-columns: 1fr;
  }
}

/* ===== Ultra wide monitors: keep content readable ======================= */
@media (min-width: 1440px) {
  .consultation-section .consultation-card {
    min-height: 560px;
  }
}

/* ===================== Parallels (section) ===================== */
.parallels-section {
  background: #000;
  color: #fff;
  margin-top: -2px;
  padding: clamp(20px, 3vw, 80px) 1rem;
  overflow: hidden;
}

/* centered, breathable container */
.parallels-container {
  --gutter: clamp(20px, 4vw, 48px);
  --maxw: 1200px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* left text a touch wider */
  gap: var(--gutter);
  align-items: center;
}

/* Left column --------------------------------------------------- */
.parallels-left {
  min-width: 0;
}

.label {
  font-size: clamp(14px, 1.5vw, 18px);
  
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bdbdbd;
  margin: 0 0 8px;
}

/* Logo pill with video background */
.logo-video-wrapper {
  position: relative;
  height: clamp(56px, 7.2vw, 72px);
  width: fit-content;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}
.logo-video-wrapper .video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}
.logo-video-wrapper::after {
  /* subtle inner gradient for readability */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    120% 120% at 50% 0%,
    rgba(0, 0, 0, 0.35),
    transparent 60%
  );
  pointer-events: none;
}
.logo-video-wrapper .logo-text {
  position: relative;
  z-index: 2;
  font-size: clamp(22px, 4.2vw, 40px);
  
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color:white;
 
}

/* Headline & copy */
.headline {
  font-size: clamp(24px, 4.4vw, 44px);
  
  line-height: 1.4;
  margin: clamp(14px, 2.4vw, 22px) 0 10px;
}
.headline strong {
  color: #fff;
  font-weight: 900;
}

.description {
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--light-grey);
  font-weight: 500;
  max-width: 65ch;
  margin: 0 0 clamp(8px, 1.4vw, 12px);

}

/* Feature points */
.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 18px);
  margin: clamp(16px, 3vw, 28px) 0;

}
.feature-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 1.5vw, 16px);
  color: #bdbdbd;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: 0 0 14px;
}
.blue {
  background: #2d9cdb !important;
}
.yellow {
  background: #f2c94c;
}
.green {
  background: #27ae60;
}
.orange {
  background: orange !important;
}
/* CTA button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light, #fff);
  color: var(--dark, #111);
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform, box-shadow;
}
.cta-button .arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
  transition: transform 0.3s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.cta-button:hover .arrow {
  transform: rotate(90deg);
}

/* Right column (image) ------------------------------------------ */
.parallels-right {
  min-width: 0;
  display: grid;
  place-items: center;
}
.parallels-right img {
width: 100%;
}
.parallels-right video {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: clamp(18px, 2.2vw, 24px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .parallels-right:hover img {
    transform: translateY(-6px) scale(1.02);
  }
}

/* ===== Gentle reveal animations (stagger) ======================= */
@keyframes p-fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.parallels-left > .label {
  opacity: 0;
  animation: p-fadeUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.05s forwards;
}
.logo-video-wrapper {
  opacity: 0;
  animation: p-fadeUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards;
}
.headline { 
  color: var(--light);
  opacity: 0;
  animation: p-fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s forwards;
}
.description:nth-of-type(1) {
  opacity: 0;
  animation: p-fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s forwards;
}
.description:nth-of-type(2) {
  opacity: 0;
  animation: p-fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s forwards;
}
.feature-points {
  opacity: 0;
  animation: p-fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.55s forwards;
}
.cta-button {
  opacity: 0;
  animation: p-fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s forwards;
}
.parallels-right {
  opacity: 0;
  animation: p-fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

/* Motion respect */
@media (prefers-reduced-motion: reduce) {
  .parallels-left > .label,
  .logo-video-wrapper,
  .headline,
  .description,
  .feature-points,
  .cta-button,
  .parallels-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cta-button,
  .parallels-right img {
    transition: none !important;
  }
}

/* ===================== Responsiveness ========================== */
/* Large tablets */
@media (max-width: 1100px) {
  .parallels-container {
    grid-template-columns: 1fr 1fr;
  } /* image first on tablet */
  .parallels-right img {
    max-width: 760px;
    width: 100%;
  }
  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .parallels-section {
    padding: clamp(50px, 6vw, 80px) 1.5rem;
  }
  .parallels-container {
    grid-template-columns: 1fr;
  }
  .parallels-right img {
    aspect-ratio: 16/10;
  }
  .feature-points {
    gap: 12px;
  }
  .feature-points span {
    font-size: 14px;
  }
  .cta-button {
    font-size: 12px;
    padding: 0.75rem 1rem;
  }
  .cta-button .arrow {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .logo-video-wrapper .logo-text {
    font-size: clamp(35px, 4.2vw, 40px);
  }
  .headline {
    font-size: clamp(35px, 4.4vw, 44px);
  }
}

/* About Us Section (No Animation) */
.why-section-wrappper {
  background: #000;
  color: #fff;
  margin-top: -2px;
  padding: clamp(32px, 6vw, 80px) 0;
  overflow: hidden;
}

/* 2-col layout (text + stats) */
.why-section {
  max-width: var(--why-maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* text a touch wider */
  gap: var(--why-gutter);
  align-items: center;
}

/* Put text left, stats right (your markup is row-reverse now) */
.why-left {
  order: 2;
  min-width: 0;
}
.why-right {
  order: 1;
  min-width: 0;
}

/* ---- Left (copy) ----------------------------------------------------- */
.why-left .brand-text h1 {
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.05;
  
  margin: 0 0 clamp(8px, 1.6vw, 14px);
}
.why-left .brand-text p {
  color: var(--light-grey);
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.7;
  font-weight: 500;
  margin: 0 0 clamp(10px, 1.8vw, 16px);
}

/* CTA (uses your white-button class) */
.white-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--light);
  color: var(--dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s;
}
.white-button:hover,
.white-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  outline: none;
}

/* ---- Right (stats grid) --------------------------------------------- */
.why-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2.2vw, 20px);
}
.stat-box {
  position: relative;
  background: var(--card-bg);
  border-radius: 18px;
  padding: clamp(14px, 2vw, 18px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.35s;
  will-change: transform, box-shadow;
}
@media (hover: hover) and (pointer: fine) {
  .stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
  }
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.stat-header img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(1) contrast(1.05);
}
.stat-title {
  
  font-size: clamp(14px, 1.6vw, 18px);
}
.counter {
  
  color: #fff;
}

/* body text */
.stat-box p {
  margin: 0;
  color: var(--light-grey);
  font-weight: 500;
  line-height: 1.55;
  font-size: clamp(12px, 1.4vw, 13px);
}

/* ---- Feature rail (below) ------------------------------------------- */
.why-section-wrappper .feature-points {
  max-width: var(--why-maxw);
  margin: clamp(24px, 5vw, 40px) auto 0;
  padding: 0 clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 20px);
}
.why-section-wrappper .feature-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 2.2vw, 22px);
  color: #eaeaea;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 12px;
}
.white {
  background: #ffffff;
}
.yellow {
  background: #f2c94c;
}
.green {
  background: #27ae60;
}
.why-section-wrappper .feature-points .arrow-icon {
  font-size: clamp(22px, 3.2vw, 32px);
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .why-section-wrappper .feature-points .arrow-icon:hover {
    transform: translateX(4px);
  }
}

/* ---- Reveal animations (stagger) ------------------------------------- */
@keyframes whyFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.why-left .brand-text h1 {
  opacity: 0;
  animation: whyFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.05s forwards;
}
.why-left .brand-text p:nth-of-type(1) {
  opacity: 0;
  animation: whyFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s forwards;
}
.why-left .brand-text p:nth-of-type(2) {
  opacity: 0;
  animation: whyFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
}
.white-button {
  opacity: 0;
  animation: whyFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s forwards;
}

.why-right .stat-box {
  opacity: 0;
  animation: whyFadeUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards;
}
.why-right .stat-box:nth-child(2) {
  animation-delay: 0.25s;
}
.why-right .stat-box:nth-child(3) {
  animation-delay: 0.35s;
}
.why-right .stat-box:nth-child(4) {
  animation-delay: 0.45s;
}
.why-right .stat-box:nth-child(5) {
  animation-delay: 0.55s;
}
.why-right .stat-box:nth-child(6) {
  animation-delay: 0.65s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .why-left .brand-text h1,
  .why-left .brand-text p,
  .white-button,
  .why-right .stat-box {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =================== Responsive =================== */
/* Large tablets */
@media (max-width: 1024px) {
  .why-section {
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 4vw, 28px);
  }
  .why-right {
    order: 1;
  }
  .why-left {
    order: 2;
  }
  .white-button {
    width: 100%;
    justify-content: center;
  }
}

/* Phones */
@media (max-width: 640px) {
  .why-section {
    grid-template-columns: 1fr;
    padding: 0 clamp(14px, 7vw, 30px);
  }
  .why-right {
    order: 2;
  }
  .why-left {
    order: 1;
  }
  .why-right {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stat-box {
    border-radius: 14px;
  }
  .why-left .brand-text h1 {
    font-size: clamp(35px, 6vw, 64px);
  }
  .why-section {
    gap: clamp(45px, 4vw, 28px);
  }
}

.stats-section {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 4rem;
}

.stats-section-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  border-radius: 40px;
  overflow: hidden;
  height: auto;
  min-height: 550px;
  display: flex;
  align-items: center;
}

/* Background Video */
.stats-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Foreground Content */
.stats-section-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  color: white;
}

.stats-row h2 {
  font-size: 1.2rem;
  
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.stats-value {
  font-size: 4rem;
  
  margin-right: 10px;
}

.stats-row h2 {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}

.stats-section-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #000;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 5px 12px 0px #ffffff38;
  margin-top: 20px;
  transition: transform 0.4s ease-in;
}

.stats-section-btn-icon {
  background: white;
  color: black;
  border-radius: 50%;
  padding: 10px;
  margin-left: 20px;
  font-weight: bold;
  transition: transform 0.4s ease-in;
}

.stats-section-btn:hover {
  transform: scale(1.05);
}
.stats-section-btn-icon:hover {
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
  .stats-section {
    padding: 2rem 2rem 4rem;
  }
  .stats-section-content {
    padding: 20px 25px;
  }

  .stats-row h2 {
    font-size: 14px;
  }

  .stats-section-wrapper {
    min-height: unset;
  }

  .stats-value.counted {
    font-size: 2rem;
  }
  .stats-section-btn {
    font-size: 12px;
    padding: 5px 10px;
    box-shadow: 2px 6px 0px #ffffff38;
    margin-top: 0px;
  }

  .stats-section-btn-icon {
    padding: 5px;
    margin-left: 10px;
    font-size: 12px;
  }
  .stats-value {
    font-size: 2.5rem;
    margin-right: 0px;
  }
  span.stats-txt {
    font-size: 13px;
  }
}

.our-work {
  background: #000;
  color: #fff;
  margin-top: -2rem;
  padding: 7rem 4rem;
}

.our-work-container {
  max-width: 1200px;
  margin: auto;
}
.our-work .headline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 60px;
}

.our-work .headline h1 {
  margin: 0;
  font-size: 5rem !important;
  
}

.our-work .sub-heading h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 500;
}

.sub-heading p {
  font-size: 14px;
  color: var(--light-grey);
  font-weight: 500;
  line-height: 1.6;
  text-align: justify;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.video-grid a {
  text-decoration: none; /* removes underline */
  color: inherit; /* inherits text color from parent */
  display: block; /* makes the entire card clickable */
}

.video-grid a:first-child {
  grid-column: span 2;
}

.video-card {
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #2c2c2c;
}

.video-card video,.video-card img  {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
    aspect-ratio: 3 / 2;}

.video-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 10px;
}

.video-info .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-info img {
  width: 28px;
  height: 26px;
  transition: transform 0.2s ease-in;
}

.project-name {
  font-size: 20px;
  
  color: #fff;
}

.project-year {
  font-size: 16px;
  
  color: #c4c4c4;
}

.video-grid .video-info:hover img {
  transform: rotate(90deg);
}

@media (max-width: 769px) {
  .our-work {
    padding: 1rem 2rem 3rem;
  }
  .our-work .headline {
    display: grid;
    grid-template-columns: 1fr;
  }

  .video-grid {
    display: flex;
    flex-direction: column;
  }

  .video-grid-:first-child {
    grid-column: unset;
  }

  .our-work .headline h1 {
    margin: 5px 0px;
    font-size: 3rem !important;
    line-height: 1;
  }
  .our-work .sub-heading h2 {
    font-size: 1.8rem;
  }
}

.testimonial-section {
  background: #000000;
  color: #fff;
  margin-top: -2px;
  text-align: center;
  overflow-x: hidden;
  padding: 4rem 4rem;
}

section.testimonial-section h1 {
  font-size: 3rem;
  text-transform: capitalize;
  font-weight: 500;
}

.testimonial-section h2 {
  font-size: 45px;
  
  margin-bottom: 10px;
}

.testimonial-section .subheading {
  color: var(--light-grey);
  font-size: 15px;
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4em;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  overflow: visible; /* allow card shadow and border radius to show */
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px; /* space below cards */
}

.carousel-wrapper {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  align-items: stretch; /* all cards take equal height */
}

.carousel-card {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  align-items: stretch;
}

@media (min-width: 768px) {
  .carousel-card {
    flex: 0 0 calc(33.3333% - 20px);
    max-width: calc(33.3333% - 20px);
  }
}

.card {
  background: #121214;
  border-radius: 15px;
  padding: 15px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  height: 100%;
}

.card video {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 0.95rem;
  margin-top: 5px;
  color: #ccc;
  flex-grow: 1;
}

.client-name {
  font-size: 1.1rem;
  margin-top: 10px;
  
}

.client-brand img {
  width: 100px; /* Set your desired width */
  height: auto;
  object-fit: contain;
  display: inline-block;
  margin-top: 5px; /* Optional spacing */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;

  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  cursor: pointer;

  width: 36px;
  height: 36px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0; /* Prevents distortion */
  line-height: 0; /* Removes extra vertical space */
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

@media (max-width: 640px) {
  .testimonial-section {
    padding: 2rem !important;
  }
  section.testimonial-section h1 {
    font-size: 2rem;
  }
  .testimonial-section .subheading {
    font-size: 13px;
  }
}

.four-image-wrapper {
  padding: 4rem 4rem 2rem;
  background-color: white;
  color: black;
}

.four-imager-header .heading {
  margin: 0px;
  /* margin-left: -2rem; */
}
.four-imager-header .four-img-des {
  font-size: 1.5rem;
  color: gray;
  margin: 5px;
}
.four-column-layout {
  display: flex;
  margin-top: 2rem;
}
.four-imager-header h1 {
  font-size: 45px;
  font-weight: 500;
}
.four-imager-header .four-img-des {
  font-size: 1.1rem;
  color: #383737;
  margin: 5px;
  font-weight: 500;
}
.column-block {
  width: 50px;
  background-color: #f0f0f0;
  padding: 10px 2rem;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  transition: width 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
}

.column-block .column-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  
  font-size: 2.3rem;
  text-align: center;
  transition: opacity 0.3s ease;
  margin: auto;
}
.col-button {
  height: 100%;
  display: flex;

  flex-direction: column;
}
/* Hide title in active block */
.column-block.active .col-button {
  display: none;
}

.column-content {
  width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInSlide 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%; /* ✅ preserve height */
  opacity: 0;
  display: none; /* will be overridden in active */
  transition: width 0.4s ease, opacity 0.4s ease;
}

.column-block.active .column-content {
  display: flex; /* 🟢 Show on active */
  position: relative;
  width: 100%;
  opacity: 1;
  animation: fadeInSlide 0.4s ease forwards;
}

.column-image {
  width: 0;
  position: relative;
  height: 100%;
  overflow: hidden;
  transition: width 0.4s ease;
}

.column-block.active .column-image {
  width: 100%; /* 🟢 Slide in image */
}

.column-block.active {
  width: 100%;
  background-color: #000; /* dark background for better overlay visibility */
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  align-items: stretch;
  justify-content: flex-start;
}

.col-btn {
  text-align: center;
  font-size: 2.5rem;
}
.column-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.column-text {
  position: absolute;
  bottom: 2rem;
  left: 20px;
  right: 20px;
    color: black;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
}

.column-number {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.column-head {
  font-size: 2.2rem;
  
  margin-bottom: 15px;
}

.column-para {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(50);
  }
}

@media (max-width: 768px) {
  .four-image-wrapper {
    padding: 2rem 2rem 2rem;
  }
  .four-imager-header h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  .four-imager-header .four-img-des {
    font-size: 1rem;
    text-align: center;
  }
  .four-column-layout {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scroll-behavior: smooth;
  }

  .four-imager-header .heading {
    margin: 0px 0px 0px 0rem;
  }
  .column-block {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 350px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .column-content {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    opacity: 1;
  }

  .column-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
  }

  .column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .column-text {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 10px 30px 20px; /* top right bottom left */
    color: black;
    text-align: left;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-sizing: border-box;
    overflow: hidden; /* ensure it doesn't overflow parent visually */
  }

  /* Ensure the bottom group stays pushed down */
  .column-text .column-head {
    margin-top: auto;
  }

  /* Optional text wrap and spacing */
  .column-head,
  .column-para,
  .column-number {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .column-para {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 14px;
  }

  .column-number {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 4px;
  }

  .column-head {
    font-size: 1.7rem;
    
  }

  .column-para {
    font-size: 14px;
    line-height: 1.4;
  }

  .col-button,
  .column-title {
    display: none;
  }

  .carousel-dots {
    text-align: center;
    margin-top: 12px;
  }

  .carousel-dots .dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  .carousel-dots .dot.active {
    background-color: orange;
  }
}

.yellow {
  background-color: yellow;
}

.black {
  background: black;
  color: white !important;
}

/* ===== Tools (clean + responsive, no fixed section height) ===== */
.tools-section {
  background: #fff;
  color: #111;
  padding: clamp(28px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.tools-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(16px, 6vw, 64px);
  color: black;
}

/* Left copy */
.tools-copy .eyebrow {
  margin: 0 0 8px;
  color: #696969;
  

  letter-spacing: 0.02em;
}
.tools-copy .headline {
  margin: 0 0 14px;
  font-size: clamp(28px, 6vw, 55px);
  line-height: 1.05;
  
  color: #000;
}
.tools-copy .lede {
  margin: 0;
  color: #5a5a5a;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  max-width: 60ch;
}

/* Right icon cluster (columns) */
.tools-icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.8vw, 16px);
}

.tools-icon-columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.8vw, 16px);
}

/* Individual tiles (fluid size, no fixed height for the section) */
.tools-icon-blocks {
  --tile: clamp(56px, 6.2vw, 86px);
  width: var(--tile);
  height: var(--tile);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s;
}

.block-grey {
  background: #cccdce;
}
.block-black {
  background: #000;
}

.tools-icon-blocks img {
  width: 70%;
  height: auto;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .tools-icon-blocks:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .tools-container {
    grid-template-columns: 1fr;
  }
  .tools-icon-right {
    /* flex-wrap: wrap;   */
    justify-content: flex-start;
  }
  .tools-icon-columns {
    flex: 1 1 160px; /* nice wrapping widths */
  }
}

@media (max-width: 640px) {
  p.eyebrow {
    text-align: center;
  }
  h2#tools-title {
    text-align: center;
    padding: 10px 0px;
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  .tools-icon-right {
    justify-content: center; /* center cluster on small phones */
  }
  .tools-icon-columns {
    flex: 1 1 140px;
  }
}

.choose-us-section {
  background: #fff;
  color: #111;
  padding: 3rem clamp(16px, 4vw, 48px);

}

.choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Header (eyebrow + headline + lede) ---------- */
.choosee-us-header,
.choose-us-header {
  text-align: left;
  margin-bottom: clamp(18px, 4vw, 32px);
}
.choose-us-preheading {
  margin: 0 0 8px;
  color: #6a6a6a;
  
  text-transform: uppercase;
  /* letter-spacing: .12em; */
  font-size: clamp(12px, 1.5vw, 16px);
}

.choose-us-heading {
  margin: 0 0 10px;
  
  line-height: 1.05;
  font-size: clamp(28px, 6vw, 55px);
}
.choose-us-subtext {
  margin: 0;
  color: #555;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.7;
  /* max-width: 55ch; */
}

/* ---------- Grid ---------- */
.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
  align-items: stretch;
}

/* ---------- Cards (base) ---------- */
.choose-us-card {
  background: #ededed;
  /* border-radius: 16px; */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  padding: 3rem 0rem 0rem;
}

.choose-us-left-top .black-button {
  padding: 1rem 2rem;
}

/* Left card */
.choose-us-left-top {
  /* margin-bottom: clamp(10px, 2vw, 16px); */
  padding: 0rem 1.5rem 0rem;
}
.choose-us-left h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 500;
}
.choose-us-left p {
  margin: 0 0 12px;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.choose-us-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Middle stacked card */
.choose-us-middle {
  padding: 0;
  background: transparent;
  gap: clamp(12px, 2vw, 20px);
}
.choose-us-middle-top,
.choose-us-middle-bottom {
  background: #ededed;
  /* border-radius:16px; */
  padding: clamp(16px, 2.6vw, 22px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.choose-us-middle > div {
  flex: 1;
}
.choose-us-middle-top {
  background: #eeeeee;
}
.choose-us-middle-bottom {
  background: #070707;
  color: #fff;
}
.choose-us-wave {
  display: flex;
  justify-content: center;
  align-items: center;
}
.choose-us-wave img {
  width: 35%;
}
.choose-us-middle-top p {
  margin: 0;
  font-size: clamp(16px, 3.6vw, 20px);
  font-weight: 500;
  line-height: 1.2;
}
.choose-us-middle-bottom h2 {
  margin: 0 0 10px;
  text-align: center;
  
  text-transform: uppercase;
  font-size: clamp(16px, 2.4vw, 20px);
}
.choose-us-tools-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.choose-us-tools-logos img {
  width: clamp(28px, 4.5vw, 40px);
  height: clamp(28px, 4.5vw, 40px);
  object-fit: contain;
}

/* Right card */
.choose-us-right {
  background: #98a7a7;
  padding: 2rem 1rem;
}
.choose-us-right img {
  width: 100%;
  height: auto;
  display: block;
}
.choose-us-right h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 500;
}
.choose-us-services {
  list-style: none;
  margin: 0;
  padding: 0;
}
.choose-us-services li {
  margin: 0 0 8px;
  font-size: clamp(14px, 1.8vw, 15px);
  font-weight: 500;
}
.choose-us-services li span {
  margin-right: 8px;
}

/* Button */
.choose-us-btn {
  background: var(--dark);
  color: var(--light);
  font-weight: 800;
  font-size: clamp(12px, 1.6vw, 16px);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s;
}
.choose-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}
.choose-us-btn span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-weight: 900;
  transition: transform 0.3s ease;
}
.choose-us-btn:hover span {
  transform: rotate(90deg);
}

/* --------- Responsive --------- */
@media (max-width: 960px) {
  .choose-us-grid {
    grid-template-columns: 1fr;
  }
  .choose-us-middle {
    order: 2;
  } /* keep a nice story flow on mobile */
}

@media (prefers-reduced-motion: reduce) {
  .choose-us-btn,
  .choose-us-btn span {
    transition: none !important;
  }
}

@media (max-width: 640px) {
  .choose-us-preheading {
    text-align: center;
  }
  h1.choose-us-heading {
    text-align: center;
    line-height: 1.3;
  }
  .choose-us-subtext {
    font-size: clamp(13px, 1.5vw, 18px);
  }
  .choose-us-middle-top {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 0rem; */
  }
  .choose-us-middle-bottom {
    padding: 3rem 1rem;
  }
  .choose-us-left h3 {
    font-size: clamp(20px, 2.2vw, 25px);
  }
  .choose-us-right h2 {
    font-size: clamp(20px, 2.4vw, 25px);
  }
}

.faq-section {
  background: var(--bg);
  color: var(--fg);
  padding: clamp(28px, 6vw, 80px) 0;
}

.faq-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* Header */
.faq-subtitle {
  margin: 0 0 10px;
  color: var(--muted);
  
  /* letter-spacing: .12em; */
  text-transform: uppercase;
  font-size: clamp(11px, 1.5vw, 17px);
}
.faq-heading {
  margin: 0 0 10px;
  line-height: 1.05;
  
  font-size: clamp(24px, 5.6vw, 55px);
}
.faq-description {
  margin: 0 0 clamp(18px, 4vw, 32px);
  color: var(--muted);
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
}

/* List + items */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}

/* Question button */
.faq-question {
  width: 100%;
  padding: clamp(14px, 2.6vw, 20px) 0;
  background: transparent;
  border: 0;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-weight: 500;
  font-size: clamp(16px, 2.6vw, 25px);
  line-height: 1.2;
}
.faq-question:focus-visible {
  outline: 2px solid #999;
  outline-offset: 4px;
}

/* Icon pill */
.faq-icon {
  display: inline-grid;
  place-items: center;
  background: var(--pill);
  color: var(--pill-fg);
  width: clamp(28px, 3.8vw, 36px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  font-size: clamp(12px, 1.8vw, 16px);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(90deg);
}

/* Smooth answer reveal */
.faq-answer {
  /* start collapsed */
  max-height: 0;
  overflow: hidden;
  padding: 0; /* will add when open */
  opacity: 0;
  transform: translateY(-6px);

  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;

  transition: max-height 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 420px;
  padding: 0 0 clamp(14px, 2.4vw, 20px);
  font-weight: 500;
  opacity: 1;
  transform: translateY(0);
}

.faq-section .animated-button {
  margin: 2rem auto;
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-icon,
  .view-more-btn {
    transition: none !important;
  }
}

@media screen and (max-width: 640px) {
  .faq-section {
    padding: clamp(28px, 6vw, 80px) 1rem;
  }
  .faq-subtitle {
    text-align: center;
  }
  h1.faq-heading {
    text-align: center;
    font-size: clamp(35px, 5.6vw, 55px);
  }
}

.blog-section {
  background: var(--bg);
  color: var(--fg);
  text-align: center;
  /* padding: clamp(28px,6vw,80px) 0; */
  padding: 0rem 3rem 5rem;
}

.blog-section .animated-button{
  margin: 2rem auto;
}

.blog-section > h2 {
  margin: 0 0 10px;
  
  line-height: 1.05;
  font-size: clamp(24px, 5.6vw, 45px);
}

.blog-subheading {
  margin: 0 auto clamp(18px, 4vw, 36px);
  max-width: 70ch;
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--muted);
  font-weight: 500;
  line-height: 1.7;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* cards grid */
.blog-cards {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2.6vw, 24px);
}

/* card */
.blog-card {
  background: #141414;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s;
  will-change: transform, box-shadow;
}
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  }
}

/* media */
.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10; /* keeps thumbnails consistent */
  object-fit: cover;
  background: #0b0b0b;
}

/* content */
.card-content {
  padding: clamp(14px, 2.6vw, 25px);
}
.card-content h3 {
  margin: 0 0 6px;
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: 500;
  line-height: 1.2;
}
.card-content p {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: clamp(13px, 1.6vw, 13px);
  line-height: 1.7;
}
.card-content a {
  color: var(--fg);
  text-decoration: none;
  
  font-size: small;
  letter-spacing: 0.04em;
  position: relative;
}
.card-content a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.2));
  opacity: 0.5;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .card-content a:hover::after {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* motion safety */
@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .all-articles-btn a,
  .all-articles-btn a span {
    transition: none !important;
  }
}

@media screen and (max-width: 1100px) {
  .blog-section {
    padding: 0rem 1rem 4rem;
  }
}

@media screen and (max-width: 640px) {
  .blog-section {
    padding: 2rem 1.5rem 5rem;
  }
  .blog-section > h2 {
    font-size: clamp(35px, 5.6vw, 45px);
  }
  .blog-cards {
    gap: clamp(20px, 2.6vw, 24px);
  }
}

.footer-section a {
  text-decoration: none;
}

/* Footer Structure */
.footer-section {
  font-size: 16px;
  background: #fff;
  overflow-x: hidden;
}

/* --- Top Footer --- */
.footer-section__top {
  display: grid;
  grid-template-columns: 50% 25% 25%;
  border-bottom: 1px solid #ddd;
}

/* Add vertical borders to center */
.footer-section__top > *:not(:first-child) {
  border-left: 1px solid #ddd;
}
/* Left Links */
.footer-section__links {
  display: flex;
  justify-content: flex-start;
  padding: 60px 40px;
}

.footer-section__link-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.footer-section__link-group a {
  display: inline-block;
  width: fit-content;
  position: relative;
  font-size: 1.7rem;
  font-weight: 500;
  color: #111;
  transition: color 0.3s ease;
}

.footer-section__link-group a.more {
  color: #919191;
}

.footer-section__link-group a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 10%;
  height: 2px;
  background: var(--black);
  transition: width 0.3s ease;
}

.footer-section__link-group a:hover::after {
  width: 100%;
}

.footer-section__link-group a:hover {
  color: var(--accent);
}

/* Center Loop */
.footer-section__loop {
  position: relative;
  padding: 60px 40px;
  background: #c3c1c132;
}

.footer-section__loop h2 {
  font-size: 3rem;
  
  margin-bottom: 5px;
  color: #000;
  position: relative;
  z-index: 2;
}

.footer-section__loop p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.footer-section__note {
  font-size: 0.85rem;
  color: #888;
  position: relative;
  z-index: 2;
}

.footer-section__email-box {
  position: relative;
  margin-top: 20px;
  z-index: 2;
}

.footer-section__email-box input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #111;
  padding: 12px 45px 12px 12px;
  font-size: 1rem;
  color: #000;
  outline: none;
}

.footer-section__email-box input::placeholder {
  color: #000;
  font-size: 1.3rem;
  opacity: 1;
}
.footer-section__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* pointer-events: none; ❌ REMOVE this */
}

.footer-section__arrow-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.footer-section__arrow-img:hover {
  transform: rotate(180deg) scale(1.3);
}

/* Social section */
.footer-section__socials {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer-section__socials a {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid #ddd;
  font-size: 1.7rem;
  font-weight: 500;
  color: #111;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover styles for background and text */
.footer-section__socials a:hover {
  background: #000;
  color: #fff;
}

/* Image wrapper for right side */
.social-arrow-wrapper {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
}

/* Both images share space */
.arrow-default,
.arrow-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Default arrow visible initially */
.arrow-default {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Hover arrow hidden initially */
.arrow-hover {
  opacity: 0;
  transform: scale(0.95);
  z-index: 2;
}

/* On hover: switch visibility */
.footer-section__socials a:hover .arrow-default {
  opacity: 0;
  transform: scale(1.1);
}

.footer-section__socials a:hover .arrow-hover {
  opacity: 1;
  transform: scale(1);
}

/* Optional: white filters on hover */
.footer-section__socials a:hover .arrow-hover,
.footer-section__socials a:hover .arrow-default {
  filter: brightness(0) invert(1);
}

/* --- Bottom Footer --- */
.footer-section__bottom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  font-size: 0.95rem;
  color: #444;
  border-bottom: 1px solid #ddd;
}

/* Apply left border to all except the first child */
.footer-section__bottom > div:not(:first-child) {
  border-left: 1px solid #ddd;
}

.footer-section__column-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;

  padding: 60px 40px;
  margin: 0;
  box-sizing: border-box;
}

.footer-section__contact,
.footer-section__legal {
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #8a8a91;
  white-space: nowrap;
}
.footer-section_copyright {
  display: grid;
  align-items: center;
  justify-content: flex-end;
  justify-content: flex-start;
  padding: 60px 40px;
  color: #8a8a91;
}
.footer-section__highlight {
  color: orangered;
  font-weight: bold;
  font-family: var(--font-family-heading);
}

.footer-section__offline {
  font-size: 0.9rem;
  color: gray;
  margin-bottom: 6px;
}
.footer-section__text {
  font-size: 16px;
}
.footer-section__phone {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 6px;
  color: #000;
  font-family: var(--font-family-heading);
}

.footer-section__designed-by {
  margin-top: 10px;
  font-size: 0.9rem;
}
.footer-section__buy-template {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  padding: 10px; /* Optional, if needed */
}

/* Background color change on hover */
.footer-section__buy-template:hover {
  background-color: #000;
}

/* Arrow container */
.buy-arrow-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
}

/* Common styles for both images */
.buy-arrow-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  transform: rotate(-90deg);
}

/* Default image */
.buy-arrow-wrapper .arrow-default {
  opacity: 1;
  z-index: 1;
}

/* Hover image (initially hidden) */
.buy-arrow-wrapper .arrow-hover {
  opacity: 0;
  z-index: 2;
  transform: rotate(-90deg);
  transition: transform 1s ease;
}

/* Swap on parent hover */
.footer-section__buy-template:hover .arrow-default {
  opacity: 0;
}

.footer-section__buy-template:hover .arrow-hover {
  opacity: 1;
  transform: rotate(-90deg) scale(1.03);
}

/* ✨ Hover effect on parent container */
.footer-section__buy-template:hover .arrow-default {
  opacity: 0;
}

.footer-section__buy-template:hover .arrow-hover {
  opacity: 1;
}

@media (min-width: 770px) and (max-width: 1200px) {
  .footer-section__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "footer-section__links footer-section__links"
      "footer-section__loop footer-section__socials";
  }

  .footer-section__links {
    grid-area: footer-section__links;
  }

  .footer-section__loop {
    grid-area: footer-section__loop;
  }

  .footer-section__socials {
    grid-area: footer-section__socials;
  }

  /* Optional spacing reset or padding */
  .footer-section__top > * {
    border-left: none;
    border-top: 1px solid #ddd;
  }

  .footer-section__top > :first-child {
    border-top: none;
  }
  .footer-section__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "footer-section__column-split footer-section__column-split"
      "footer-section_copyright footer-section__buy-template";
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid #ddd;
  }

  .footer-section__column-split {
    grid-area: footer-section__column-split;
    border-bottom: 1px solid #ddd;
  }

  .footer-section_copyright {
    grid-area: footer-section_copyright;
  }

  .footer-section__buy-template {
    grid-area: footer-section__buy-template;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 769px) {
  .footer-section__top {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "footer-section__links"
      "footer-section__loop"
      "footer-section__socials";
  }

  .footer-section__links {
    grid-area: footer-section__links;
    padding: 40px 20px;
    justify-content: space-between;
  }
  .footer-section__link-group {
    gap: 15px;
  }
  .footer-section__link-group a {
    font-size: 1.2rem;
  }

  .footer-section__loop {
    grid-area: footer-section__loop;
    padding: 40px 20px;
  }

  .footer-section__socials {
    grid-area: footer-section__socials;
  }

  /* Optional spacing reset or padding */
  .footer-section__top > * {
    border-left: none;
    border-top: 1px solid #ddd;
  }

  .footer-section__top > :first-child {
    border-top: none;
  }
  .footer-section__bottom {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "footer-section__column-split"
      "footer-section__column-split"
      "footer-section_copyright"
      "footer-section__buy-template";
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid #ddd;
  }

  .footer-section__column-split {
    grid-area: footer-section__column-split;
    border-bottom: 1px solid #ddd;
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .footer-section_copyright {
    grid-area: footer-section_copyright;
    border-bottom: 1px solid #ddd;
    padding: 40px 20px;
  }

  .footer-section__buy-template {
    grid-area: footer-section__buy-template;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-section__loop h2 {
    font-size: 2rem;
  }
  span.social-text {
    font-size: 1.3rem;
}
.footer-section__loop p {
  font-size: 0.9rem;
}
}
.mt-page-container{
    background-color: var(--light);

}
/* Main container */
.mt-main-container {
  max-width: 1200px;
  margin: 0rem auto;
  padding: 4rem 2rem;
}

/* Intro */
.mt-intro {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.mt-intro-video-el {
  height: 400px;
  width: 400px;
  border-radius: 50%;
}

.mt-intro-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
}

.mt-intro-text {
  font-size: 1.5rem;
  max-width: 400px;
  margin: auto;
  color: #000;
}

/* Work Section */
.mt-work-title {
  font-size: 4rem;
  /* margin-top: 50px; */
  color: #000;
  font-weight: 500;
}

/* Tabs */
.mt-tabs {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.mt-tab {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 2.5rem;
  color: lightgray;
}
.mt-tab:hover {
  transform: translateY(-2px);
}
.mt-tab.mt-active {
  color: black;
}
.mt-tab.mt-active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: black;
  animation: mt-underlineSlide 0.4s ease forwards;
}

/* Tab underline animation */
@keyframes mt-underlineSlide {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Tab Content */
.mt-tab-content {
  margin-top: 20px;
}
.mt-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mt-tab-panel.mt-active {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 1;
  transform: translateY(0);
}
.mt-tag {
  border: 1px solid black;
  border-radius: 20px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  color: #000;
}
.mt-tag:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

@media screen and (max-width: 1100px) {
  .mt-intro-title {
    font-size: 2.6rem;
  }
  .mt-intro-video-el {
    height: 300px;
    width: 300px;
  }
  .mt-intro-text {
    font-size: 1.3rem;
  }
  .mt-work-title {
    font-size: 3.5rem;
  }
  .mt-tab {
    font-size: 2rem;
  }
  .mt-tag {
    font-size: 0.85rem;
  }
  .mt-overlay-title {
    font-size: 2rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mt-intro-title {
    font-size: 2rem;
  }
  .mt-intro-text {
    font-size: 1rem;
  }

  .mt-tab {
    font-size: 1.1rem;
  }

  .mt-intro {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
  }

  .mt-intro-video-el {
    height: 200px;
    width: 200px;
    border-radius: 50%;
  }

  .mt-intro-video {
    text-align: right;
  }
  .mt-work-title {
    font-size: 2rem;
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .mt-intro-title {
        font-size: 1.8rem;
        margin-top: 1rem;
    }
  .mt-intro-text {
    font-size: 0.9rem;
  }
  .mt-tab {
    font-size: 1rem;
  }
  .mt-tag {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

.mt-our-work-container {
  margin-top: 5rem;
}

.mt-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mt-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.mt-video-card {
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #2c2c2c;
  position: relative;
  display: inline-block;
  width: 100%;
}

.mt-video-card video, .mt-video-card img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 450px;
  object-position: top;
}

.mt-video-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 10px;
}

.mt-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mt-svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease-in;
}

.mt-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
}

.mt-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0 2rem;
}

.mt-video-overlay > div,
.mt-video-overlay > h3 {
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom:2rem;
  font-weight: 400;
}

.mt-overlay-title {
  font-size: 3rem;
  font-weight: 100;
  margin: 0;
}

.mt-overlay-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mt-overlay-tags span {
  background: rgb(244, 241, 241);
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 0.85rem;
  color: black;
}

.mt-video-wrapper:hover .mt-video-overlay {
  opacity: 1;
}

.mt-project-name {
  font-size: 20px;
  color: #000;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: capitalize;
}
.mt-project-year {
  font-size: 16px;
  color: black;
  font-weight: 500;
}
@media (min-width: 601px) and (max-width: 990px){
    .mt-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
}
@media (max-width: 600px) {
  .mt-video-overlay {
    padding: 0 5px;
  }


  .mt-overlay-title {
    font-size: 1.2rem;
    font-weight: 100;
    margin: 0;
  }
  .mt-video-grid {
    display: flex;
    flex-direction: column;
  }
}

/* Tag active (filters) */
.mt-tag.mt-active {
  background-color: #0f0f0f;
  color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  
}

.mt-selected-filters {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  justify-content: flex-end;
}

.mt-selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mt-selected-tags .mt-tag {
  background-color: black;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: default;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
  
  font-size: 14px;
  text-transform: capitalize;
}

.mt-selected-tags .mt-tag .mt-remove-tag {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}

.mt-clear-filters-btn {
  background: none;
  color: rgb(209, 41, 172);
  cursor: pointer;
  
  font-size: 1.2rem;
  padding: 6px 10px;
  border: none;
}

p.investors {
  padding: 1rem 0rem 2rem;
  font-size: xx-large;
  font-weight: 500;
}
.logo-video-wrapper.starlight {
  padding: 1rem 0 5rem;
  display: flex;
  gap: 15px;
  align-items: baseline;
  border-radius: 0;
}
span.starlight {
  font-size: x-large;
  
}
p.description.description-starlight {
  font-size: larger;
}
.starlight-section div .parallels-right img {
  aspect-ratio: 1 / 1;
}
.starlight-section {
  padding: 5rem 1rem;
}
.starlight-left .white-button {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
}
.logo-video-wrapper.starlight-heading {
    display: flex;
    padding: 1rem 0 5rem;
    gap: 10px;
    align-items: baseline;
    border-radius: 0;
}

@media screen and (max-width: 640px) {
  p.investors {
    padding: 1rem 0rem 2rem;
    font-size: x-large;
    font-weight: 500;
  }
  p.description.description-starlight {
    font-size: medium;
  }
  p.description.description-starlight {
    font-size: medium;
  }
  span.starlight {
    font-size: medium;
    
  }

  .logo-video-wrapper.starlight-heading {
    padding: 0rem 0rem 1rem;
  }
}

/* ===== Starlight Project (responsive + smooth) ========================= */
.starlight-project-section {
  background: #000;
  color: #fff;
      padding: 5rem 1rem;
}

.starlight-project-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  /* Desktop: 2 columns; Tablet collapses gracefully */
  grid-template-columns: minmax(300px, 1.05fr) minmax(320px, 1fr);
    gap: var(--gutter);
      align-items: stretch;
}

/* --- Left copy -------------------------------------------------------- */
.starlight-project-text {
  align-self: stretch; /* fill the row height */
  display: flex; /* enable vertical centering */
  flex-direction: column;
  justify-content: center; /* <-- centers from top/bottom */
  min-height: 100%;
}

.starlight-project-eyebrow {
  margin: 0 0 6px;
  font-size: clamp(12px, 1.6vw, 18px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-grey);
  
}

.starlight-project-heading {
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-size: clamp(28px, 5.2vw, 56px);
  line-height: 1.05;
  
}
.starlight-project-heading span {
  color: #fff;
  font-size: clamp(22px, 4.2vw, 55px);
  
}

.starlight-project-lede {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--light-grey);
  margin: 0 0 8px;
  font-weight: 500;
}

.starlight-project-body {
  margin: 0 0 12px;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  color: var(--light-grey);
  max-width: 62ch;
}

/* --- Right: video card ------------------------------------------------ */
.starlight-project-card {
  position: relative;
  display: flex; /* lets overlay take full height */
  align-items: stretch;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate; /* contain the video & overlay */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 2px 12px rgba(0, 0, 0, 0.08);
  /* Adaptive height: comfortable on all screens */
  min-height: clamp(450px, 50vh, 560px);
  /* background: radial-gradient(120% 120% at 80% 0%, #2b0f63 0%, #0a1448 45%, #0a0a20 100%); */
}

.starlight-project-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
  z-index: -1;
}

.starlight-project-overlay {
  position: relative;
  inset: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(20px, 4.5vw, 36px);
  color: #fff;
  /* background: linear-gradient( to bottom right, rgba(0,0,0,.30), rgba(0,0,0,.15) 35%, rgba(0,0,0,.35) 100% ); */
  backdrop-filter: blur(0.5px);
}

h2#starlight-project-title {
  padding: 1rem 0 2rem;
  display: flex;
  align-items: baseline;
  
  gap:  10px;
}

h2#starlight-project-title span {
  font-size: clamp(22px, 4.2vw, 40px);
  
}

/* Feature list */
.starlight-project-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(10px, 1.8vw, 16px);
}
.starlight-project-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.35;
  
  will-change: transform, opacity;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.starlight-project-list li::before {
  content: "➜";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
  font-size: 16px;
}
@media (hover: hover) and (pointer: fine) {
  .starlight-project-list li:hover {
    transform: translateX(4px);
  }
}

/* CTA */
.starlight-project-cta {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(10px, 1.4vw, 14px) clamp(16px, 2.2vw, 22px);
  border-radius: 999px;
  background: #fff;
  color: #000;
  text-decoration: none;
  
  font-size: clamp(13px, 1.6vw, 15px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.25s ease;
}
.starlight-project-cta-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
  transition: transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .starlight-project-cta:hover {
    transform: translateY(-2px);
  }
  .starlight-project-cta:hover .starlight-project-cta-icon {
    transform: rotate(90deg);
  }
}

/* --- Tablet (iPad landscape/portrait) ---------------------------------- */
@media (max-width: 1024px) {
  .starlight-project-container {
    /* grid-template-columns: 1fr; */
  }
  .starlight-project-card {
    min-height: clamp(320px, 46vh, 520px);
  }
  .starlight-project-section {
    padding: 4rem 5rem;
  }
}

/* --- Mobile ------------------------------------------------------------ */
@media (max-width: 640px) {
  .starlight-project-section {
    padding: 2rem 2rem 5rem !important;
  }
  .starlight-project-container {
    grid-template-columns: 1fr;
    gap: clamp(20px, 7vw, 89px);
  }
  .starlight-project-card {
    border-radius: 22px;
    min-height: clamp(300px, 40vh, 480px);
  }
  .starlight-project-overlay {
    gap: 18px;
  }
  h2#starlight-project-title {
    padding: 0.5rem 0 1rem;
    font-size: medium;
  }
  h2#starlight-project-title span {
    font-size: clamp(35px, 4.2vw, 40px);
    
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

#cs-hero {
  --cs-maxw: 1280px;
  --cs-padX: clamp(16px, 4vw, 40px);
  --cs-title: clamp(28px, 5vw, 64px);
  --cs-sub: clamp(16px, 2.5vw, 22px);
  --cs-logo: clamp(72px, 12vw, 150px); /* logo scales with viewport */
  --cs-logo-gap: clamp(12px, 2vw, 20px);
  --cs-overlay: 0.35; /* tweak overlay strength if needed */
  --cs-bg-url: url("https://scontent.fjai4-1.fna.fbcdn.net/v/t39.8562-6/526990692_1116349137075818_6736953177629778275_n.jpg?stp=dst-webp&_nc_cat=109&ccb=1-7&_nc_sid=28b1f4&_nc_ohc=xq43LJ3-06cQ7kNvwGy8pg1&_nc_oc=AdktSEiqfaTvlUij5gcKe7JIUt1AojZPrrqhoExBlpj3NL8d0NkVhjJxIcZuicG24DcpC1PXFXwD33eZoOTv5uqg&_nc_zt=14&_nc_ht=scontent.fjai4-1.fna&_nc_gid=JtDRXZe_ldcOBp1pIO-Nrg&oh=00_AfVPint-7bAwI6MGeCa7AoIN2BQqAeiM-jH-1Hj3ivnuyA&oe=68A0E63D");
}

.cs-hero {
  background: #fff;
  margin-top: -1rem;
  position: relative;
}

.cs-hero__bg {

  width: 100%;
  /* Reserve space so the bottom logo can overlap without cutting off */
  min-height: unset;
  display: flex;
  align-items: center; /* vertical centering for content */
  justify-content: center; /* horizontal centering for content */
  text-align: center;
  box-sizing: border-box;
}

.cs-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centers both ways */
  z-index: 1;
  color: #fff;
  max-width: min(var(--cs-maxw, 90ch), 90%);
  text-align: center;
  padding: 1rem;
}


.cs-hero__title {
  margin: 0 0 8px;
  font-size: var(--cs-title);
  line-height: 1.05;
  
  letter-spacing: -0.01em;
}

.cs-hero__subtitle {
  margin: 0;
  font-size: var(--cs-sub);
  line-height: 1.4;
  font-weight: 400;
  opacity: 0.95;
}

/* Bottom logo badge */
.cs-hero__logo {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 2;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: clamp(6px, 1.2vw, 10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cs-hero__logo img {
  width: var(--cs-logo);
  height: var(--cs-logo);
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ===== Responsive refinements ===== */

/* iPad landscape / small laptop tweaks */
@media (min-width: 992px) and (max-width: 1280px) {
  #cs-hero {
    --cs-overlay: 0.3;
  }
}

/* iPad portrait / tablets */
@media (min-width: 600px) and (max-width: 991.98px) {
  #cs-hero {
    --cs-overlay: 0.35;
  }

}

/* Phones */
@media (max-width: 599.98px) {
  #cs-hero {
    --cs-overlay: 0.4;
  }

  .cs-hero__subtitle {
    line-height: 1.45;
  }
  .cs-hero__logo {
    border-radius: 10px;
  }
}

/* Respect reduced motion users */
@media (prefers-reduced-motion: reduce) {
  .cs-hero__bg,
  .cs-hero__logo {
    scroll-behavior: auto;
  }
}

#cs-page-stats {
  --csps-maxw: 1300px;
  --csps-padX: clamp(16px, 4vw, 40px);
  --csps-padY: clamp(24px, 5vw, 64px);
  --csps-bg: #eef3f7; /* slab background */
  --csps-text: #1c1e21;
  --csps-muted: #2b3a45;
  --csps-sub: #333;
  --csps-radius: 4px;
}

.cs-page-stats {
  color: var(--csps-text);
  background: #fff;
  margin-top: clamp(24px, 6vw, 96px);
}
.csps__container {
  max-width: var(--csps-maxw);
  margin: 0 auto;
  padding: var(--csps-padY) var(--csps-padX);
  text-align: center;
}

.csps__kicker {
  margin: 0 0 10px;
  font-size: 0.95rem;
  
  color: #555;
  letter-spacing: 0.02em;
}
.csps__lede {
  max-width: 80ch;
  margin: 0 auto 5rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--csps-sub);
}

/* Grid slab */
.csps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(20px, 4vw, 5rem) 2rem;
  background: var(--csps-bg);
  border-radius: var(--csps-radius);
}
/* 2 columns on tablets */
@media (min-width: 640px) {
  .csps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* 4 columns on desktops/laptops */
@media (min-width: 1100px) {
  .csps__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .csps__container {
    padding: 0px;
  }
  .cs-page-stats {
    margin-top: clamp(24px, 20vw, 96px);
  }
  .csps__lede {
    margin: 1rem 2rem 2rem;
  }
  .csps__kicker {
    margin: 2rem 0 10px;
  }
  .csps__grid {
    gap: clamp(2rem, 2vw, 28px);
    padding: clamp(3rem, 4vw, 5rem) 2rem;
  }
}

.csps__item {
  text-align: center;
  padding: clamp(8px, 1.5vw, 14px);
}
.csps__num {
  margin: 0 0 10px;
  
  letter-spacing: -0.01em;
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  color: #12202b;
  line-height: 1.1;
}
.csps__desc {
  margin: 0;
  color: var(--csps-muted);
  font-size: clamp(0.95rem, 2.1vw, 1.05rem);
  line-height: 1.45;
  max-width: 32ch;
  margin-inline: auto;
  text-wrap: balance;
}
@supports not (text-wrap: balance) {
  .csps__desc {
    hyphens: auto;
  }
}

/* Old-browser fallback (no CSS Grid) */
@supports not (display: grid) {
  .csps__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .csps__item {
    width: 100%;
  }
  @media (min-width: 640px) {
    .csps__item {
      width: 50%;
    }
  }
  @media (min-width: 1100px) {
    .csps__item {
      width: 25%;
    }
  }
}

#cs-page-story-1 {
  --cs-maxw: 1250px;
  --cs-padX: clamp(16px, 4vw, 40px);
  --cs-padY: clamp(28px, 3vw, 72px);
  --cs-text: #1c1e21;
  --cs-muted: #465a69;
  --cs-quiet: #777;
  --cs-title: #000;
}

.cs-page-story {
  background: #fff;
  color: var(--cs-text);
}

/* Layout */
#cs-page-story-1 .csps-story__container {
  max-width: var(--cs-maxw);
  margin-inline: auto;
  padding: var(--cs-padY) var(--cs-padX);
  display: grid;
  grid-template-columns: 1fr; /* mobile */
  gap: clamp(16px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 768px) {
  #cs-page-story-1 .csps-story__container {
    grid-template-columns: 1.1fr 1fr; /* text | image */
  }
}

/* Text */
#cs-page-story-1 .csps-story__eyebrow {
  margin: 0 0 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cs-quiet);
  
}
#cs-page-story-1 .csps-story__title {
  margin: 15px 0 15px;
  font-size: clamp(1.4rem, 4vw, 2rem);
  
  color: var(--cs-title);
  line-height: 1.2;
}
#cs-page-story-1 .csps-story__body,
#cs-page-story-1 .csps-story__body + ul li {
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  color: var(--cs-muted);
  line-height: 1.65;
  font-weight: 500;
  margin: 0;
}

/* Media */
#cs-page-story-1 .csps-story__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* Old-browser fallback (no CSS Grid) */
@supports not (display: grid) {
  #cs-page-story-1 .csps-story__container {
    display: flex;
    flex-wrap: wrap;
  }
  #cs-page-story-1 .csps-story__text,
  #cs-page-story-1 .csps-story__media {
    width: 100%;
  }
  @media (min-width: 768px) {
    #cs-page-story-1 .csps-story__text,
    #cs-page-story-1 .csps-story__media {
      width: 50%;
    }
  }
}
@media screen and (max-width: 640px) {
  #cs-page-story-1 .csps-story__container {
    padding: 3rem 1.5rem;
  }
  #cs-page-story-1 .csps-story__title {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }
}


#cs-page-story {
  --cs-maxw: 1250px;
  --cs-padX: clamp(16px, 4vw, 40px);
  --cs-padY: clamp(28px, 3vw, 72px);
  --cs-text: #1c1e21;
  --cs-muted: #465a69;
  --cs-quiet: #777;
  --cs-title: #000;
}

.cs-page-story {
  background: #fff;
  color: var(--cs-text);
}

/* Layout */
#cs-page-story .csps-story__container {
  max-width: var(--cs-maxw);
  margin-inline: auto;
  padding: var(--cs-padY) var(--cs-padX);
  display: grid;
  grid-template-columns: 1fr; /* mobile */
  gap: clamp(16px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 768px) {
  #cs-page-story .csps-story__container {
    grid-template-columns:  1fr; /* text | image */
  }
}

/* Text */
#cs-page-story .csps-story__eyebrow {
  margin: 0 0 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cs-quiet);
  
}
#cs-page-story .csps-story__title {
  margin: 15px 0 15px;
  font-size: clamp(1.4rem, 4vw, 2rem);
  
  color: var(--cs-title);
  line-height: 1.2;
}
#cs-page-story .csps-story__body,
#cs-page-story .csps-story__body + ul li {
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  color: var(--cs-muted);
  line-height: 1.65;
  font-weight: 500;
  margin: 0;
}
#cs-page-story table.csps-story__body{
max-width: 800px;
margin: 2rem auto;
width: 100%;  
}
#cs-page-story .csps-story__body th,#cs-page-story .csps-story__body td {
 
    text-align: center;
}
/* Media */
#cs-page-story .csps-story__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* Old-browser fallback (no CSS Grid) */
@supports not (display: grid) {
  #cs-page-story .csps-story__container {
    display: flex;
    flex-wrap: wrap;
  }
  #cs-page-story .csps-story__text,
  #cs-page-story .csps-story__media {
    width: 100%;
  }
  @media (min-width: 768px) {
    #cs-page-story .csps-story__text,
    #cs-page-story .csps-story__media {
      width: 50%;
    }
  }
}
@media screen and (max-width: 640px) {
  #cs-page-story .csps-story__container {
    padding: 3rem 1.5rem;
  }
  #cs-page-story .csps-story__title {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }
}


#cs-page-goal-1 {
  --csgoal-maxw: 1200px;
  --csgoal-padX: clamp(16px, 4vw, 40px);
  --csgoal-padY: clamp(32px, 7vw, 80px);
  --csgoal-bg: #f5f8fa;
  --csgoal-text: #1c1e21;
  --csgoal-muted: #465a69;
  --csgoal-label: #222;
}

.cs-page-goal {
  background: var(--csgoal-bg);
  color: var(--csgoal-text);
  text-align: center;
  margin-top: 20px;
}

/* Container */
#cs-page-goal-1 .csgoal__container {
  max-width: var(--csgoal-maxw);
  margin-inline: auto;
  padding: var(--csgoal-padY)
    max(var(--csgoal-padX), env(safe-area-inset-left, 0));
  padding-right: max(var(--csgoal-padX), env(safe-area-inset-right, 0));
}

/* Typography */
#cs-page-goal-1 .csgoal__eyebrow {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--csgoal-label);
  letter-spacing: 0.02em;
}

#cs-page-goal-1 .csgoal__title {
  margin: 15px 0 15px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  
  line-height: 1.2;
  color: #000;
}

#cs-page-goal-1 .csgoal__sub {
  max-width: 70ch;
  margin: 0 auto;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--csgoal-muted);
}

#cs-page-goal-1 .csgoal__sub  {
 text-align: left;
}

/* Old-browser fallback (no clamp support not typical; grid not needed) */
@supports not (font-size: clamp(1rem, 2vw, 2rem)) {
  #cs-page-goal-1 .csgoal__title {
    font-size: 2rem;
  }
  #cs-page-goal-1 .csgoal__sub {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 640px) {
  #cs-page-goal-1 .csgoal__container {
    padding: 4rem 1rem;
  }
  #cs-page-goal-1 .csgoal__title {
    font-size: clamp(2rem, 4vw, 2rem);
  }
     .csgoal__sub {
padding: 0 2rem;  }
}

#cs-page-quote-1 {
  --csquote-maxw: 900px;
  --csquote-padX: clamp(16px, 4vw, 24px);
  --csquote-padY: clamp(36px, 7vw, 60px);
  --csquote-text: #0a1a2a;
  --csquote-muted: #465a69;
}

.cs-page-quote {
  background: #fff;
}

.csquote__container {
  max-width: var(--csquote-maxw);
  margin-inline: auto;
  padding: var(--csquote-padY) var(--csquote-padX);
  text-align: left;
}

/* Quote */
.csquote__blockquote {
  margin: 0 0 16px 0;
  color: var(--csquote-text);
}
.csquote__blockquote p {
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  font-size: clamp(1.1rem, 3.2vw, 1.3rem);
  text-wrap: balance;
}
@supports not (text-wrap: balance) {
  .csquote__blockquote p {
    hyphens: auto;
  }
}

/* Attribution */
.csquote__author {
  margin: 0;
  font-size: 1rem;
  color: #1c1e21;
}
.csquote__role {
  margin: 2px 0 0;
  font-size: 0.95rem;
  color: var(--csquote-muted);
}

/* Accessibility: hide heading but keep for landmarks */
.csquote__visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 1100px) {
  .csquote__blockquote p {
    font-size: clamp(1.1rem, 3.2vw, 1.1rem);
    text-wrap: auto;
  }
}

/* Small devices refinements */
@media (max-width: 768px) {
  .csquote__container {
    text-align: left;
    padding: 3rem 1.5rem;
  }
}

.csps-story__media.cs-story-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .csps-story__media.cs-story-video {
    margin-top: 1rem;
  }
  .csps-story__container.csps-story__container-new .image-3 {
    order: 2;
  }
}

.image-3 img {
  max-width: 65% !important;
  margin: auto;
}

.image-3 {
  align-items: center;
  display: flex;
}

#cs-page-products-1 {
  --csprod-maxw: 1200px;
  --csprod-padX: clamp(16px, 4vw, 40px);
  --csprod-padY: clamp(28px, 6vw, 64px);
  --csprod-text: #1c1e21;
  --csprod-muted: #465a69;
  --csprod-title: #000;
  --csprod-link: #1877f2;
  --csprod-gap: clamp(16px, 3vw, 40px);
  --csprod-img: clamp(56px, 6vw, 80px);
}

.cs-page-products {
  background: #fff;
  color: var(--csprod-text);
}

.csprod__container {
  max-width: var(--csprod-maxw);
  margin-inline: auto;
  padding: var(--csprod-padY) var(--csprod-padX);
}

.csprod__title {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2rem);
  
  /* margin-bottom: 1rem; */
  color: var(--csprod-title);
  margin: 0 0 3rem;
}

/* Grid */
.csprod__grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile first */
  gap: var(--csprod-gap);
}
@media (min-width: 600px) {
  .csprod__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .csprod__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .csprod__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Items */
.csprod__item {
  text-align: center;
}

.csprod__img {
  width: var(--csprod-img);
  height: var(--csprod-img);
  object-fit: cover;
  margin-bottom: 12px;
  display: inline-block;
  border-radius: 8px;
}

.csprod__name {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  
  color: var(--csprod-title);
  white-space: normal;
}

.csprod__desc {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: #000;
  line-height: 1.4;
}

.csprod__link {
  font-size: 0.95rem;
  color: var(--csprod-link);
  text-decoration: none;
}
.csprod__link:hover {
  text-decoration: underline;
}

/* Mobile row layout */
@media (max-width: 768px) {
  .csprod__item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 4vw, 24px);
  }
  .csprod__img {
    margin: 0;
    flex: 0 0 auto;
  }
  .csprod__container {
    padding: 3rem 1.5rem;
  }
  .csprod__grid {
    gap: 2rem;
  }
  .csprod__title {
    font-size: clamp(2rem, 4vw, 2rem);
  }
}

/* Old-browser fallback (no CSS Grid) */
@supports not (display: grid) {
  .csprod__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--csprod-gap);
  }
  .csprod__item {
    width: 100%;
  }
  @media (min-width: 600px) {
    .csprod__item {
      width: calc(50% - var(--csprod-gap));
    }
  }
  @media (min-width: 900px) {
    .csprod__item {
      width: calc(33.333% - var(--csprod-gap));
    }
  }
  @media (min-width: 1200px) {
    .csprod__item {
      width: calc(20% - var(--csprod-gap));
    }
  }
}

/* Fallback for very old engines without clamp() */
@supports not (font-size: clamp(1rem, 2vw, 2rem)) {
  .csprod__title {
    font-size: 2rem;
  }
}

#cs-page-cta-1 {
  --cscta-maxw: 1200px;
  --cscta-padX: clamp(16px, 4vw, 40px);
  --cscta-padY: clamp(28px, 6vw, 64px);
  --cscta-bg: #f5f7fa;
  --cscta-text: #1c1e21;
  --cscta-link: #1877f2;
  --cscta-link-hover: #166fe5;
  --cscta-gap: clamp(12px, 2.4vw, 20px);
}

.cs-page-cta {
  background: var(--cscta-bg);
  color: var(--cscta-text);
  text-align: center;
}

.cscta__container {
  max-width: var(--cscta-maxw);
  margin-inline: auto;
  padding: var(--cscta-padY)
    max(var(--cscta-padX), env(safe-area-inset-left, 0));
  padding-right: max(var(--cscta-padX), env(safe-area-inset-right, 0));
}

.cscta__title {
  margin: 0 0 20px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  
  line-height: 1.35;
  text-align: center;
}

.cscta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--cscta-gap);
  flex-wrap: wrap;
}

.cscta__btn-primary {
  background: var(--cscta-link);
  color: #fff;
  padding: 20px 30px;
  border-radius: 999px;
  text-decoration: none;
  
  display: inline-block;
  transition: background 0.2s ease;
}
.cscta__btn-primary:hover {
  background: var(--cscta-link-hover);
}
.cscta__btn-primary:focus-visible {
  outline: 2px solid var(--cscta-link);
  outline-offset: 2px;
}

.cscta__btn-link {
  color: var(--cscta-link);
  text-decoration: none;
  
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cscta__btn-link:hover {
  text-decoration: underline;
}
.cscta__btn-link:focus-visible {
  outline: 2px solid var(--cscta-link);
  outline-offset: 2px;
}

.cscta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile column layout */
@media (max-width: 769px) {
  .cscta__actions {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  .cscta__container {
    text-align: left;
  }
  .cscta__title {
    font-size: clamp(1.7rem, 2.5vw, 1.5rem);
  }
}

/* Fallback if clamp() unsupported (very old engines) */
@supports not (font-size: clamp(1rem, 2vw, 2rem)) {
  .cscta__title {
    font-size: 21px;
  }
}

#wdsv-header {
  --wdsv-bg: #000; /* High contrast background */
  --wdsv-fg: #fff; /* Foreground text color */
  --wdsv-accent: #e16258; /* Accent for focus/hover outlines (user’s preferred) */
  --wdsv-radius-lg: 48px;
  --wdsv-radius-sm: 20px;
  --wdsv-maxw: 1200px;
  --wdsv-pad-x: clamp(16px, 6vw, 64px);
  --wdsv-pad-t: clamp(48px, 8vw, 96px);
  --wdsv-pad-b: clamp(16px, 4vw, 4rem);
  --wdsv-gap: clamp(12px, 2.5vw, 24px);
  --wdsv-h1: clamp(32px, 8vw, 80px);
  --wdsv-h1-lh: 1.08;
  background: var(--wdsv-bg);
  color: var(--wdsv-fg);
  /* border-top-left-radius: var(--wdsv-radius-lg); */
  /* border-top-right-radius: var(--wdsv-radius-lg); */
  margin-top: -1rem;
}

#wdsv-header .wdsv-header__inner {
  max-width: var(--wdsv-maxw);
  margin-inline: auto;
  padding: var(--wdsv-pad-t) var(--wdsv-pad-x) var(--wdsv-pad-b);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--wdsv-gap);
}

/* Heading */
#wdsv-header .wdsv-heading {
  margin: 0;
  
  letter-spacing: -0.02em;
  line-height: var(--wdsv-h1-lh);
  display: inline-grid;
}

#wdsv-header .wdsv-heading__line {
  display: block;
  font-size: var(--wdsv-h1);
  white-space: nowrap;
}

/* CTA */
#wdsv-header .wdsv-cta {
  --cta-pad-y: 1.2rem;
  --cta-pad-x: 4rem;
  --wdsv-icon-size: 26px; /* Adjust once for icon + arrow */

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: #fff;
  color: #000;
  text-decoration: none;
  

  border: 1px solid #2a2a2a;
  border-radius: 999px;

  padding: var(--cta-pad-y) var(--cta-pad-x);

  transition: transform 160ms ease, background-color 160ms ease,
    border-color 160ms ease;
  will-change: transform;
}

/* Hover & Active */
#wdsv-header .wdsv-cta:hover {
  background: #191919;
  border-color: #3a3a3a;
  transform: translateY(-1px);
}
#wdsv-header .wdsv-cta:active {
  transform: translateY(0);
}
#wdsv-header .wdsv-cta:focus-visible {
  outline: 3px solid #e16258;
  outline-offset: 3px;
}

/* Icon wrapper */
#wdsv-header .wdsv-cta__icon {
  width: var(--wdsv-icon-size);
  height: var(--wdsv-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden; /* prevents overflow if img is bigger */
}

/* Icon image & fallback SVG */
#wdsv-header .wdsv-cta__img,
#wdsv-header .wdsv-cta__svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
#wdsv-header .wdsv-cta__svg {
  fill: currentColor;
  opacity: 0; /* hidden if image loads */
}

/* If no image, show SVG */
#wdsv-header .wdsv-cta__img:not([src]),
#wdsv-header .wdsv-cta__img[src=""] {
  display: none;
}
#wdsv-header .wdsv-cta__img:not([src]) + .wdsv-cta__svg,
#wdsv-header .wdsv-cta__img[src=""] + .wdsv-cta__svg {
  opacity: 1;
}

/* Text */
#wdsv-header .wdsv-cta__text {
  font-size: 1.2rem;
  line-height: 1;
}

/* Arrow wrapper */
#wdsv-header .wdsv-cta__arrow {
  width: var(--wdsv-icon-size);
  height: var(--wdsv-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: calc(var(--wdsv-icon-size) * 0.8);
  line-height: 1;
}

/* Responsive */
@media (max-width: 990px) {
  #wdsv-header {
    /* border-top-left-radius: var(--wdsv-radius-sm); */
    /* border-top-right-radius: var(--wdsv-radius-sm); */
  }

  #wdsv-header .wdsv-header__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #wdsv-header .wdsv-cta {
    /* make tap target comfy on mobile */
    --cta-pad-y: 14px;
    --cta-pad-x: 18px;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  #wdsv-header .wdsv-cta {
    transition: none;
  }
}

/* High-contrast mode friendliness */
@media (forced-colors: active) {
  #wdsv-header {
    border: 1px solid CanvasText;
  }
  #wdsv-header .wdsv-cta {
    border: 1px solid CanvasText;
  }
}

@media screen and (max-width: 640px) {
  #wdsv-header .wdsv-header__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 5rem 1.5rem 3rem;
  }
  #wdsv-header .wdsv-heading__line {
    font-size: 3rem;
  }
  #wdsv-header .wdsv-cta {
    margin-top: 1.5rem;
  }
}

/* ===============================
   WDSV - About Hero (Video Background)
   =============================== */
#wdsv-hero {
  --wdsv-bg: #000; /* safe fallback when video fails */
  --wdsv-fg: #fff;
  --wdsv-maxw: 1280px;
  --wdsv-pad-x: clamp(16px, 5vw, 96px);
  --wdsv-pad-top: clamp(48px, 10vw, 120px);
  --wdsv-pad-btm: clamp(32px, 8vw, 96px);
  --wdsv-gap: clamp(16px, 5vw, 50px);
  --wdsv-h1: clamp(36px, 8vw, 88px);
  --wdsv-body: clamp(16px, 2.2vw, 22px);
  --wdsv-li: clamp(16px, 2.4vw, 20px);

  position: relative;
  background: var(--wdsv-bg);
  color: var(--wdsv-fg);
  overflow: clip;
  isolation: isolate; /* contain z-index */
}

/* Background video fills the section */
#wdsv-hero .wdsv-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Subtle top-to-bottom gradient for readability over video */
#wdsv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: -1;
}

/* Overlay container */
#wdsv-hero .wdsv-hero__overlay {
  min-height: min(84vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--wdsv-gap);
}

/* Top row: heading + content */
#wdsv-hero .wdsv-hero__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: var(--wdsv-gap);
  padding: var(--wdsv-pad-top) var(--wdsv-pad-x) 0;
  max-width: var(--wdsv-maxw);
  /* margin-inline: auto; */
  justify-items: center;
}

#wdsv-hero .wdsv-hero__heading h1 {
  margin: 0;
  line-height: 1.05;
  font-size: var(--wdsv-h1);
  
  letter-spacing: -0.015em;
  display: block;
}

#wdsv-hero .wdsv-hero__heading h1:first-child span {
  display: inline-block;
  transform: translateX(-0.4ch); /* tiny optical pull like your original */
}

#wdsv-hero .wdsv-hero__content p {
  margin: 0;
  font-size: var(--wdsv-body);
  line-height: 1.5;
  max-width: 52ch;
  text-wrap: pretty;
  text-align: right;
}

/* Bottom row: Why us */
#wdsv-hero .wdsv-hero__bottom {
  padding: var(--wdsv-pad-btm) var(--wdsv-pad-x);
  max-width: var(--wdsv-maxw);
  margin-inline: auto;
}

#wdsv-hero .wdsv-why h3 {
  margin: 0 0 0.75rem 0;
  font-size: clamp(20px, 3.2vw, 28px);
  
}

#wdsv-hero .wdsv-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#wdsv-hero .wdsv-why__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.45;
  font-size: var(--wdsv-li);
}

#wdsv-hero .wdsv-why__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
  line-height: 1.1;
  color: var(--wdsv-fg);
  opacity: 0.9;
}

#wdsv-hero .wdsv-why strong {
  font-weight: 800;
}

/* Desktop-only manual line breaks */
.wdsv-desktop-br {
  display: inline;
}

@media screen and (max-width: 1100px) {
  #wdsv-hero .wdsv-hero__overlay {
    min-height: min(84vh, 600px);
  }
}

/* ===============================
   Responsiveness
   =============================== */
@media (max-width: 990px) {
  #wdsv-hero .wdsv-hero__top {
    grid-template-columns: 1fr;
    padding: var(--wdsv-pad-top) var(--wdsv-pad-x) 0;
  }
  #wdsv-hero .wdsv-hero__content p {
    text-align: left;
  }
  .wdsv-desktop-br {
    display: none;
  }

  #wdsv-hero .wdsv-hero__bottom {
    padding: clamp(20px, 6vw, 36px) var(--wdsv-pad-x) var(--wdsv-pad-btm);
  }
}

/* ===============================
   Preferences & Robustness
   =============================== */

/* Reduce motion / data: pause the video for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  #wdsv-hero .wdsv-hero__video {
    animation: none;
  }
}
@media (prefers-reduced-data: reduce) {
  #wdsv-hero .wdsv-hero__video {
    display: none;
  }
}

/* High-contrast / forced-colors */
@media (forced-colors: active) {
  #wdsv-hero::after {
    background: none;
  }
}

/* Make sure overlay text remains selectable and interactive */
#wdsv-hero .wdsv-hero__overlay,
#wdsv-hero .wdsv-hero__overlay * {
  pointer-events: auto;
}

@media screen and (max-width: 640px) {
  .wdsv-hero__heading {
    display: flex;
  }
  #wdsv-hero .wdsv-hero__heading h1 {
    font-size: clamp(40px, 8vw, 88px);
  }
  #wdsv-hero .wdsv-hero__overlay {
    min-height: auto;
  }
}

/* =========================================
   Website Development Service - Web Audit (FULL CSS)
   ========================================= */
#wdsv-audit {
  --wdsv-maxw: 1400px;
  --wdsv-gap: clamp(16px, 4vw, 96px);
  --wdsv-pad-x: clamp(16px, 6vw, 96px);
  --wdsv-pad-y: clamp(24px, 6vw, 64px);
  --wdsv-radius: 50px;
  --wdsv-pill: 999px;
  background-color: var(--light);

  padding: var(--wdsv-pad-y) var(--wdsv-pad-x);
  box-sizing: border-box;
}

/* Two columns that match heights */
#wdsv-audit .wdsv-audit__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wdsv-gap);
  max-width: var(--wdsv-maxw);
  margin-inline: auto;
  align-items: stretch; /* equalize column heights */
}

/* ========== LEFT COLUMN ========== */
#wdsv-audit .wdsv-audit__left {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Video area grows to fill height */
#wdsv-audit .wdsv-audit__media {
  flex: 1 1 auto; /* fill remaining height */
  min-height: 300px; /* safety */
  border-radius: var(--wdsv-radius);
  overflow: hidden;
  background: #f6f6f6;
  display: grid;
  place-items: center;
}
#wdsv-audit .wdsv-audit__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption card with requested background image */
#wdsv-audit .wdsv-audit__caption {
  margin: clamp(12px, 3vw, 40px) 0 0;
  padding: clamp(16px, 3vw, 3rem);
  font-size: clamp(15px, 2.5vw, 1.8rem);
  line-height: 1.3;
  border-radius: var(--wdsv-radius);
  color: #111;
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/service_bg_img_1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ========== RIGHT COLUMN ========== */
#wdsv-audit .wdsv-audit__right {
  display: flex; /* so the inner card can stretch full height */
  min-height: 100%;
}

/* Single card that matches left height + centers its content */
#wdsv-audit .wdsv-audit__card {
  flex: 1 1 auto; /* match left column height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  gap: clamp(16px, 2.6vw, 24px);
  padding: clamp(16px, 3vw, 28px) 4rem;
  border-radius: var(--wdsv-radius);
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/service_bg_img_1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 400px;
    margin: auto;
    height: 100%;
}

/* List inside the card */
#wdsv-audit .wdsv-audit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  color: #000;
gap: clamp(12px, 1.6vw, 18px);
    font-size: clamp(15px, 1.8vw, 20px);
  }
#wdsv-audit .wdsv-audit__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}
#wdsv-audit .wdsv-audit__itemicon {
display: inline-flex
;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    margin-right: 12px;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

li.wdsv-audit__item span {
  font-weight: 500;
}

/* Stat pill inside the same card */
#wdsv-audit .wdsv-audit__stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  border-radius: var(--wdsv-pill);
  padding: 15px 20px;
  width: 100%;
  max-width: 100%;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
#wdsv-audit .wdsv-audit__staticon {
  min-width: 28px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  /* rotate if you prefer the arrow up look like screenshot */
  /* transform: rotate(0deg); */
}
#wdsv-audit .wdsv-audit__stat p {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 800;
}
#wdsv-audit .wdsv-audit__stat a {
  color: #0097b2;
  text-decoration: none;
}

/* CTA button inside the same card */
#wdsv-audit .wdsv-audit__btn {
  background: #fff;
  color: #000;
  border: 0;
  border-radius: var(--wdsv-pill);
  padding: 15px 20px;
  font-size: clamp(16px, 2vw, 18px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
  width: 100%;
  justify-content: center;
  text-align: center;
}
#wdsv-audit .wdsv-audit__btn:hover {
  background: #eee;
  transform: translateY(-1px);
}
#wdsv-audit .wdsv-audit__btn:active {
  transform: translateY(0);
}
#wdsv-audit .wdsv-audit__btn:focus-visible {
  outline: 3px solid #e16258;
  outline-offset: 3px;
}
#wdsv-audit .wdsv-audit__btnicon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  line-height: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 990px) {
  #wdsv-audit .wdsv-audit__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #wdsv-audit .wdsv-audit__media {
    min-height: 220px;
  }
  /* keep right card centered on mobile as well */
  #wdsv-audit .wdsv-audit__card {
    justify-content: center;
  }
}

/* Nice-to-haves */
@media (prefers-reduced-motion: reduce) {
  #wdsv-audit .wdsv-audit__video {
    animation: none;
  }
}

@media screen and (max-width: 640px) {
  #wdsv-audit {
    padding: 4rem 1.5rem;
  }
  #wdsv-audit .wdsv-audit__left {
    gap: 1rem;
  }
  #wdsv-audit .wdsv-audit__caption {
    font-size: 1.2rem;
    padding: 2rem;
  }
  #wdsv-audit .wdsv-audit__card {
    padding: 3rem;
  }
  #wdsv-audit .wdsv-audit__list {
    font-size: 1rem;
  }
  #wdsv-audit .wdsv-audit__stat {
    margin-top: 1rem;
    padding: 10px 15px;
    gap: 16px;
  }
  #wdsv-audit .wdsv-audit__stat p {
    font-size: 15px;
  }
 
  #wdsv-audit .wdsv-audit__staticon {
    width: 38px;
    font-size: 18px;
  }
  #wdsv-audit .wdsv-audit__btn {
    font-size: 18px;
  }
}

/* =========================================
   WDSV - Projects (responsive masonry-like grid)
   ========================================= */
#wdsv-projects {
  background-color: var(--light);
  --wdsv-maxw: 1400px;
  --wdsv-pad-x: clamp(16px, 6vw, 96px);
  --wdsv-pad-y: clamp(24px, 6vw, 64px);
  --wdsv-gap: clamp(10px, 2vw, 16px);
  --wdsv-radius: 20px;

  padding: var(--wdsv-pad-y) var(--wdsv-pad-x);
  box-sizing: border-box;
}

#wdsv-projects .wdsv-projects__container {
  max-width: var(--wdsv-maxw);
  margin-inline: auto;
}

#wdsv-projects .wdsv-projects__title {
  margin: 0 0 clamp(16px, 3vw, 24px) 0;
  font-size: clamp(24px, 5.5vw, 50px);
  line-height: 1.1;
  
  letter-spacing: -0.01em;
  color: var(--dark);
}

/* Grid */
#wdsv-projects .wdsv-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--wdsv-gap);
  /* Create consistent row height so tall items can span rows cleanly */
  grid-auto-rows: clamp(120px, 22vw, 260px);
  grid-auto-flow: dense; /* pack items tightly */
}

/* Each card */
#wdsv-projects .wdsv-projects__item {
  margin: 0;
  border-radius: var(--wdsv-radius);
  overflow: hidden;
  background: #f6f6f6;
  position: relative;
  isolation: isolate;
}

/* Tall card (Image #2) spans 2 rows on desktop */
#wdsv-projects .wdsv-projects__item--tall {
  grid-row: span 2;
}

/* Images */
#wdsv-projects .wdsv-projects__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* cover the tile */
  transition: transform 180ms ease;
  will-change: transform;
}

/* Subtle hover (respects reduced motion) */
#wdsv-projects .wdsv-projects__item:hover .wdsv-projects__img {
  transform: scale(1.02);
}
@media (prefers-reduced-motion: reduce) {
  #wdsv-projects .wdsv-projects__item:hover .wdsv-projects__img {
    transform: none;
  }
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 990px) {
  #wdsv-projects {
    padding: clamp(16px, 13vw, 3rem) 2rem;
  }
  #wdsv-projects .wdsv-projects__title {
    font-size: clamp(40px, 5.5vw, 50px);
    margin: 0 0 clamp(2rem, 3vw, 24px) 0;
  }
  #wdsv-projects .wdsv-projects__grid {
    grid-template-columns: 1fr; /* single column */
    grid-auto-rows: auto; /* let images decide height */
    gap: 1.5rem;
  }

  /* Reset the tall span for mobile */
  #wdsv-projects .wdsv-projects__item--tall {
    grid-row: auto;
  }
  #wdsv-projects .wdsv-projects__item {
    height: 300px;
  }
}

/* Forced colors / accessibility niceties */
@media (forced-colors: active) {
  #wdsv-projects .wdsv-projects__item {
    outline: 1px solid CanvasText;
  }
}

/* =========================================
   WDSV - Branding Section
   ========================================= */
#wdsv-branding {
  --pad-x: clamp(16px, 6vw, 96px);
  --pad-y: clamp(32px, 10vw, 7rem);
  --gap: clamp(16px, 3vw, 40px);

  padding: var(--pad-y) var(--pad-x);
  box-sizing: border-box;
}

.wdsv-section-light {
  background-color: #fff;
  color: #000;
}

/* Container structure */
#wdsv-branding .wdsv-branding__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  position: relative;
}

#wdsv-branding .wdsv-branding__container-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 5rem;
}

/* Left text */
#wdsv-branding .wdsv-branding__text {
  flex: 1 1 50%;
}

#wdsv-branding .wdsv-branding__text h1 {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  
  letter-spacing: -0.01em;
}

/* Right subtext */
#wdsv-branding .wdsv-branding__subtext {
  flex: 1 1 20%;
}

#wdsv-branding .wdsv-branding__subtext h3 {
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  font-size: clamp(1rem, 2vw, 1.4rem);
}

/* CTA Button */
#wdsv-branding .wdsv-branding__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #000;
  background: #0a0a0a;
  color: #fff;
  width: fit-content;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  transition: background 0.3s ease, transform 0.2s ease;
}

#wdsv-branding .wdsv-branding__cta img {
  width: clamp(2rem, 2.2vw, 50px);
  height: auto;
}

#wdsv-branding .wdsv-branding__cta .arrow {
  transform: rotate(-45deg);
  font-size: clamp(1.2rem, 3vw, 2rem);
}

/* Hover effect */
#wdsv-branding .wdsv-branding__cta:hover {
  background: #222;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 990px) {
  #wdsv-branding .wdsv-branding__container-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  #wdsv-branding .wdsv-branding__subtext {
    margin-top: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  #wdsv-branding {
    padding: 5rem 1.5rem;
  }

  #wdsv-branding .wdsv-branding__cta {
    padding: 0.6rem 1rem;
    width: 100%;
    justify-content: center;
  }

  #wdsv-branding .wdsv-branding__cta img {
    width: 28px;
  }

  #wdsv-branding .wdsv-branding__cta .arrow {
    font-size: 1.2rem;
  }
  #wdsv-branding .wdsv-branding__container-inner {
    gap: 1rem;
  }
}

/* =========================================
   WDSV – Website Sales Section (FULL CSS)
   ========================================= */
#wdsv-sales {
  --pad-x: clamp(16px, 6vw, 96px);
  --pad-y: clamp(32px, 8vw, 96px);
  --gap: clamp(20px, 4vw, 64px);
  --radius-lg: 80px; /* big artboard corner */
  --radius-md: 24px;
  --radius-sm: 12px;
  --title: clamp(28px, 5vw, 48px);
  --body: clamp(16px, 2.2vw, 18px);

  padding: var(--pad-y) var(--pad-x);
  box-sizing: border-box;
}

#wdsv-sales.wdsv-sales--dark {
  background: #000;
  color: #fff;
}

/* Container: two equal-height columns */
#wdsv-sales .wdsv-sales__container {
  display: flex;
  align-items: stretch; /* equalize column heights */
  justify-content: space-between;
  gap: var(--gap);
  max-width: 1440px;
  margin-inline: auto;
  flex-wrap: nowrap;
}

/* Optional: flip sides by adding 'wdsv-sales--reverse' to the container */
/* Default = text left, image right */
#wdsv-sales .wdsv-sales__container.wdsv-sales--reverse {
  flex-direction: row-reverse;
}

/* Left column */
#wdsv-sales .wdsv-sales__text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  gap: clamp(12px, 2vw, 24px);
  min-width: 0;
}

#wdsv-sales .wdsv-sales__title {
  margin: 0;
  line-height: 1.15;
  font-size: var(--title);
  
  letter-spacing: -0.01em;
}

#wdsv-sales .wdsv-sales__desc {
  margin: 0;
  font-size: var(--body);
  line-height: 1.6;
  max-width: 62ch;
}

/* CTA (light on dark) */
#wdsv-sales .wdsv-sales__cta {
  --icon: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 40px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #000;
  width: max-content;
  transition: transform 0.16s ease, background-color 0.16s ease,
    border-color 0.16s ease;
}
#wdsv-sales .wdsv-sales__cta:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}
#wdsv-sales .wdsv-sales__cta:active {
  transform: translateY(0);
}
#wdsv-sales .wdsv-sales__cta:focus-visible {
  outline: 3px solid #e16258;
  outline-offset: 3px;
}
#wdsv-sales .wdsv-cta__icon {
  width: var(--icon);
  height: var(--icon);
  object-fit: contain;
  display: block;
}
#wdsv-sales .wdsv-cta__text {
  line-height: 1;
}
#wdsv-sales .wdsv-cta__arrow {
  width: var(--icon);
  height: var(--icon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--icon) * 0.9);
  line-height: 1;
}

/* Right column wrapper */
#wdsv-sales .wdsv-sales__image {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch; /* center vertically vs. left column */
  justify-content: center; /* center artboard horizontally */
  min-width: 0;
}

/* Artboard: responsive square with big top-right corner */
#wdsv-sales .wdsv-sales__artboard {
  display: flex; /* no absolute children */
  align-items: center; /* baseline centering */
  justify-content: space-between; /* space between screenshots */
  gap: clamp(8px, 3vw, 20px);

  width: clamp(260px, 42vw, 520px);
  aspect-ratio: 1 / 1; /* perfect square */
  padding: clamp(10px, 2.4vw, 30px);

  /* border-radius: 24px; */
  border-top-right-radius: 90px;
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/sales_bg.png");
  background-size: cover;
  background-position: center;

  /* we keep overflow hidden for the rounded corners, but ensure children never exceed */
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Screenshots: responsive, never cropped */
#wdsv-sales .wdsv-sales__shot {
  /* width constraint so two fit side-by-side */
  flex: 1 1 0;
  max-width: 46%; /* < 50% to keep a gap */
  width: 100%;

  /* height constraint so tall images don't exceed square height */
  max-height: 88%; /* respects padding & corners */
  height: auto;

  display: block;
  object-fit: contain; /* keep original aspect */
  background: #fff; /* clean edges for PNGs */
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* Stagger: 1st a bit higher, 2nd a bit lower (no overlap) */
#wdsv-sales .wdsv-sales__shot--left {
  transform: translateY(-4%);
}
#wdsv-sales .wdsv-sales__shot--right {
  transform: translateY(4%);
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 1200px) {
  #wdsv-sales .wdsv-sales__artboard {
    aspect-ratio: 16 / 12;
  }
  #wdsv-sales .wdsv-sales__shot {
    width: 46%;
  }
}

@media (max-width: 990px) {
  #wdsv-sales {
    padding: clamp(4rem, 6vw, 40px) clamp(16px, 7vw, 32px);
  }
  #wdsv-sales .wdsv-sales__container {
    flex-direction: column; /* stack */
    gap: clamp(16px, 4vw, 24px);
  }
  #wdsv-sales .wdsv-sales__artboard {
    width: 100%;
    aspect-ratio: auto;
    min-height: 360px;
    border-top-right-radius: 40px;
  }
  #wdsv-sales .wdsv-sales__shot {
    width: 48%;
  }
}

@media (max-width: 640px) {
  /* Stack screenshots inside artboard so nothing gets cropped */

  #wdsv-sales .wdsv-sales__artboard {
    width: clamp(240px, 86vw, 420px);
    padding: clamp(1.5rem, 2vw, 14px);
    /* stack vertically so nothing ever gets tight */
    /* flex-direction: column; */
    justify-content: center;
  }
  #wdsv-sales .wdsv-sales__shot {
    max-width: 80%;
    /* max-height: 44%;                      */
  }
  #wdsv-sales .wdsv-sales__shot--left {
    transform: translateY(0);
  }
  #wdsv-sales .wdsv-sales__shot--right {
    transform: translateY(6%);
  }
  #wdsv-sales .wdsv-sales__cta {
    width: 100%;
    margin: 1rem 0 2rem;
    justify-content: center;
  }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  #wdsv-sales .wdsv-sales__cta {
    transition: none;
  }
}

/* =========================================
   WDSV — E-Commerce Section
   ========================================= */
#wdsv-ecom {
  --pad-x: clamp(16px, 6vw, 96px);
  --pad-y: clamp(32px, 7vw, 96px);
  --gap: clamp(20px, 4vw, 56px);
  --radius-pill: 999px;

  padding: var(--pad-y) var(--pad-x);
  color: #0b0b0b;
  background: #fff;
  box-sizing: border-box;
}

/* Top row */
#wdsv-ecom .wdsv-ecom__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 20px);
  flex-wrap: wrap;
}

#wdsv-ecom .wdsv-ecom__eyebrow {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 18px);
}

#wdsv-ecom .wdsv-ecom__tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1;
  font-weight: 500;
}

/* Title */
#wdsv-ecom .wdsv-ecom__title {
  margin: clamp(6px, 1.5vw, 10px) 0 clamp(14px, 2.5vw, 20px);
  font-size: clamp(32px, 7vw, 50px);
  line-height: 1.05;
  
  letter-spacing: -0.01em;
}

/* Two columns */
#wdsv-ecom .wdsv-ecom__container {
  display: flex;
  align-items: stretch; /* equal height columns */
  justify-content: space-between;
  gap: var(--gap);
  max-width: 1400px;
  margin-inline: auto;
}

/* Left column */
#wdsv-ecom .wdsv-ecom__text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 24px);
  min-width: 280px;
}

#wdsv-ecom .wdsv-ecom__desc {
  margin: 0;
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.5;
  max-width: 62ch;
  color: #222;
}

/* Feature list */
#wdsv-ecom .wdsv-ecom__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(10px, 2vw, 14px);
}
#wdsv-ecom .wdsv-ecom__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
}
#wdsv-ecom .wdsv-ecom__feature img {
  width: clamp(16px, 2.2vw, 20px);
  height: clamp(16px, 2.2vw, 20px);
  display: block;
}

/* CTA */
#wdsv-ecom .wdsv-ecom__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 40px;
  border-radius: var(--radius-pill);
  background: #0b0b0b;
  color: #fff;
  text-decoration: none;
  width: max-content;
  transition: transform 0.16s ease, background-color 0.16s ease;
}
#wdsv-ecom .wdsv-ecom__cta:hover {
  transform: translateY(-1px);
  background: #171717;
}
#wdsv-ecom .wdsv-ecom__cta:active {
  transform: translateY(0);
}
#wdsv-ecom .wdsv-ecom__cta:focus-visible {
  outline: 3px solid #e16258;
  outline-offset: 3px;
}

#wdsv-ecom .wdsv-ecom__ctaicon {
  width: clamp(20px, 2.6vw, 26px);
  height: clamp(20px, 2.6vw, 26px);
  display: block;
}
#wdsv-ecom .wdsv-ecom__arrow {
  font-size: clamp(16px, 2.4vw, 22px);
  line-height: 1;
  transform: rotate(-45deg);
}

/* Right column (laptop image) */
#wdsv-ecom .wdsv-ecom__image {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 280px;
}
#wdsv-ecom .wdsv-ecom__image img {
  width: 100%;
  height: auto; /* keep natural aspect (laptop frame) */
  object-fit: contain;
  display: block;
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 990px) {
  #wdsv-ecom {
    padding: clamp(4rem, 6vw, 40px) clamp(16px, 6vw, 28px);
  }
  #wdsv-ecom .wdsv-ecom__container {
    flex-direction: column;
  }
  #wdsv-ecom .wdsv-ecom__image {
    justify-content: center;
  }
  #wdsv-ecom .wdsv-ecom__title {
    font-size: clamp(32px, 9vw, 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #wdsv-ecom .wdsv-ecom__cta {
    transition: none;
  }
}

@media screen and (max-width: 640px) {
  #wdsv-ecom .wdsv-ecom__cta {
    width: 100%;
    justify-content: center;
    margin: 1rem 0rem 2rem;
  }
}

/* ==============================
   WDSV – Shopify Champions
   ============================== */
#wdsv-shopify {
  --pad-x: clamp(16px, 6vw, 80px);
  --pad-y: clamp(32px, 7vw, 96px);
  --gap: clamp(24px, 6vw, 64px);
  --radius-card: 28px;
  --radius-big: 90px;

  background: #000;
  color: #fff;
  padding: var(--pad-y) var(--pad-x);
  box-sizing: border-box;
}

#wdsv-shopify .wdsv-shopify__container {
  display: flex;
  align-items: stretch; /* equal height columns */
  justify-content: space-between;
  gap: var(--gap);
  max-width: 1400px;
  margin-inline: auto;
}

/* Left column */
#wdsv-shopify .wdsv-shopify__text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 24px);
  min-width: 280px;
}

#wdsv-shopify .wdsv-shopify__title {
  margin: 0 0 clamp(8px, 1.5vw, 12px);
  line-height: 1.04;
  
  letter-spacing: -0.01em;
  font-size: clamp(36px, 7.2vw, 55px);
}

#wdsv-shopify .wdsv-shopify__desc {
  margin: 0;
  max-width: 62ch;
  line-height: 1.6;
  font-size: clamp(15px, 2.1vw, 17px);
  color: #e9e9e9;
}

#wdsv-shopify .wdsv-shopify__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(10px, 2vw, 14px);
}
#wdsv-shopify .wdsv-shopify__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 2vw, 18px);
}
#wdsv-shopify .wdsv-shopify__features img {
  width: clamp(16px, 2.2vw, 20px);
  height: clamp(16px, 2.2vw, 20px);
  display: block;
}

/* Right column (card + CTA) */
#wdsv-shopify .wdsv-shopify__right {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 3vw, 24px);
  min-width: 280px;
}

/* Gradient card with big rounded top-right corner */
#wdsv-shopify .wdsv-shopify__card {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1 / 1; /* square */
  /* border-radius: var(--radius-card); */
  border-top-right-radius: var(--radius-big);
  overflow: hidden;
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/1_4aac13e9-230e-4fe2-9c24-f78e910baac5.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  margin-left: auto; /* aligns to the right like screenshot */
}

/* Shopify bag inside the card */
#wdsv-shopify .wdsv-shopify__logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

/* CTA button */
#wdsv-shopify .animated-button {
margin: auto;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 1100px) {
  #wdsv-shopify .wdsv-shopify__card {
    width: min(420px, 100%);
  }
}

@media (max-width: 990px) {
  #wdsv-shopify {
    padding: clamp(4rem, 6vw, 40px) clamp(16px, 8vw, 28px);
  }
  #wdsv-shopify .wdsv-shopify__container {
    flex-direction: column;
    gap: clamp(20px, 6vw, 28px);
  }
  #wdsv-shopify .wdsv-shopify__right {
    align-items: center;
  }
  #wdsv-shopify .wdsv-shopify__card,
  #wdsv-shopify .wdsv-shopify__cta {
    margin-left: 0; /* center on mobile */
  }
}

@media screen and (max-width: 640px) {
  #wdsv-shopify .wdsv-shopify__title {
    font-size: clamp(40px, 7.2vw, 55px);
  }
  #wdsv-shopify .wdsv-shopify__right {
    align-items: center;
    margin-top: 0.5rem;
  }
  #wdsv-shopify .wdsv-shopify__card,
  #wdsv-shopify .wdsv-shopify__cta {
    margin-top: 1rem;
  }
}

/* =========================================
   WDSV — Our approach
   ========================================= */
#wdsv-approach {
  --pad-x: clamp(16px, 6vw, 96px);
  --pad-y: clamp(3rem, 7vw, 80px);
  --gap: clamp(20px, 5vw, 56px);
  --radius-card: 22px; /* bump to 28px if you want even rounder corners */
  --pill: 999px;

  padding: var(--pad-y) var(--pad-x);
  background: #fff;
  color: #0b0b0b;
  box-sizing: border-box;
}

/* Header row: big title + pill tag on the right */
#wdsv-approach .wdsv-approach__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 20px);
  flex-wrap: wrap;
  margin-bottom: clamp(10px, 5vw, 4rem);
}
#wdsv-approach .wdsv-approach__title {
  margin: 0;
  line-height: 1.05;
  
  letter-spacing: -0.01em;
  font-size: clamp(32px, 7vw, 64px);
}
#wdsv-approach .wdsv-approach__tag {
  padding: 15px 30px;
  border: 1px solid currentColor;
  border-radius: var(--pill);
  font-size: clamp(12px, 1.8vw, 20px);
  
  line-height: 1;
}

/* Two-column body: left card + right CTA (CTA sits near baseline) */
#wdsv-approach .wdsv-approach__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 1fr);
  gap: var(--gap);
  align-items: end; /* keeps CTA near the lower baseline like the mock */
}

/* Black steps card */
#wdsv-approach .wdsv-approach__card {
  background: #000;
  color: #fff;
  border-radius: var(--radius-card);
  padding: clamp(18px, 5vw, 3rem) 2rem;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 18px);
}

#wdsv-approach .wdsv-step {
  padding: clamp(6px, 1vw, 10px) 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
#wdsv-approach .wdsv-step__heading {
  margin: 0 0 6px 0;
  display: grid;
  grid-template-columns: 1fr; /* number + title */
  align-items: baseline;
  gap: clamp(10px, 1.6vw, 14px);
}
#wdsv-approach .wdsv-step__num {
  font-size: clamp(22px, 5vw, 4rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 40px;
}
#wdsv-approach .wdsv-step__title {
  font-size: clamp(16px, 2.5vw, 30px);
  
}
#wdsv-approach .wdsv-step__body {
  margin: 0;
  color: #e9e9e9;
  font-size: clamp(13px, 1.9vw, 16px);
  line-height: 1.55;
  font-weight: 500;
  max-width: 48ch;
}

#wdsv-approach .animated-button-black{
  text-align: center;
  margin: auto;
}

@media (max-width: 1100px) {
  #wdsv-approach .wdsv-step__num {
    font-size: clamp(22px, 4vw, 4rem);
  }
  #wdsv-approach .wdsv-step__title {
    font-size: clamp(16px, 2.2vw, 30px);
  }
  #wdsv-approach .wdsv-approach__cta {
    font-size: 22px;
  }
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 990px) {
  #wdsv-approach .wdsv-approach__grid {
    grid-template-columns: 1fr; /* stack */
    align-items: start;
    gap: clamp(18px, 4vw, 24px);
  }
  #wdsv-approach .wdsv-approach__ctaWrap {
    justify-content: flex-start; /* CTA aligns left under card */
  }
}

@media screen and (max-width: 640px) {
  #wdsv-approach .wdsv-approach__title {
    font-size: clamp(40px, 7vw, 64px);
    width: 50%;
  }
  #wdsv-approach .wdsv-approach__tag {
    padding: 10px 15px;
  }
  #wdsv-approach .wdsv-approach__cta {
    font-size: 16px;
  }
  #wdsv-approach .wdsv-approach__arrow {
    font-size: 2rem;
  }
  #wdsv-approach .wdsv-approach__ctaWrap {
    justify-content: center;
  }
  #wdsv-approach .wdsv-approach__grid {
    margin-top: 2rem;
  }
  #wdsv-approach .wdsv-approach__card {
    padding: clamp(18px, 7vw, 3rem) 1.5rem;
  }
  #wdsv-approach .wdsv-step {
    gap: 1rem;
  }
  #wdsv-approach .wdsv-step__num {
    font-size: clamp(30px, 4vw, 4rem);
    line-height: 25px;
  }
  #wdsv-approach .wdsv-step__title {
    font-size: clamp(18px, 2.2vw, 30px);
  }
  #wdsv-approach .wdsv-approach__spark {
    width: clamp(35px, 4.5vw, 3rem);
    height: clamp(35px, 4.5vw, 3rem);
  }
}

/* =========================================
   WDSV — Nerdy Stuff (Web Development)
   ========================================= */
#wdsv-nerdy {
  --pad-x: clamp(16px, 6vw, 96px);
  --pad-y: clamp(32px, 8vw, 96px);
  --gap: clamp(20px, 5vw, 64px);
  --title: clamp(45px, 8vw, 140px); /* big right title */
  --h3: clamp(18px, 2.6vw, 26px);
  --body: clamp(15px, 2.1vw, 18px);
  --pill: 999px;

  padding: var(--pad-y) var(--pad-x);
  background: #fff;
  color: #000;
  box-sizing: border-box;
}

/* Top row: tag at left, huge title at right */
#wdsv-nerdy .wdsv-nerdy__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: var(--gap);
  margin-bottom: clamp(28px, 8vw, 80px);
}

#wdsv-nerdy .wdsv-nerdy__tag {
  justify-self: start;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: var(--pill);
  font-size: clamp(12px, 1.6vw, 18px);
  line-height: 1;
}

#wdsv-nerdy .wdsv-nerdy__title {
  margin: 0;
  text-align: right;
  font-size: var(--title);
  line-height: 0.9;
  
  letter-spacing: -0.02em;
  /* optional “techy” flavor; remove if you have brand font */
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Inter, Arial, sans-serif;
}

/* Features grid */
#wdsv-nerdy .wdsv-nerdy__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
}

#wdsv-nerdy .wdsv-nerdy__feature {
  max-width: 36ch; /* keeps line length readable */
}

#wdsv-nerdy .wdsv-nerdy__featureTitle {
  margin: 0 0 10px 0;
  font-size: var(--h3);
  
  line-height: 1.15;
}

#wdsv-nerdy .wdsv-nerdy__featureCopy {
  margin: 0;
  font-size: var(--body);
  line-height: 1.6;
  color: #222;
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 1100px) {
  #wdsv-nerdy .wdsv-nerdy__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  #wdsv-nerdy .wdsv-nerdy__top {
    grid-template-columns: 1fr 1fr; /* stack tag & title */
    gap: clamp(12px, 2.8vw, 20px);
  }
  #wdsv-nerdy .wdsv-nerdy__title {
    text-align: right;
  }
  #wdsv-nerdy .wdsv-nerdy__features {
    grid-template-columns: 1fr; /* features single column */
  }
  #wdsv-nerdy .wdsv-nerdy__feature {
    max-width: none;
  }
}

/* Motion preference (keep it snappy for all users) */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
}

/* =========================================
   WDSV — Copywriting
   ========================================= */
#wdsv-copy {
  --pad-x: clamp(16px, 6vw, 96px);
  --pad-y: clamp(25px, 2vw, 96px);
  --gap: clamp(24px, 6vw, 80px);
  --title: clamp(36px, 7vw, 72px);
  --body: clamp(15px, 2.1vw, 18px);
  --radius-lg: 140px;
  --pill: 999px;

  padding: var(--pad-y) var(--pad-x);
  background: #fff;
  color: #0b0b0b;
  box-sizing: border-box;
}

/* Two columns on desktop, single on mobile */
#wdsv-copy .wdsv-copy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  max-width: 1400px;
  margin-inline: auto;
}

/* Left card with background image + big rounded corner */
#wdsv-copy .wdsv-copy__card {
  margin: 0;
  position: relative;
  width: 100%;
  /* aspect-ratio: 16/11;  */
  border-top-right-radius: var(--radius-lg);
  /* border-radius: 24px; */
  overflow: hidden;
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/copyright-bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3.2vw, 28px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

/* Phone mock inside the card */
#wdsv-copy .wdsv-copy__phone {
  width: min(60%, 520px);
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Right content */
#wdsv-copy .wdsv-copy__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* right-align like mock */
  text-align: right;
  gap: clamp(12px, 2.2vw, 20px);
}

#wdsv-copy .wdsv-copy__title {
  margin: 0;
  line-height: 1.05;
  
  letter-spacing: -0.01em;
  font-size: var(--title);
}
#wdsv-copy .wdsv-copy__underscore {
  display: inline-block;
  transform: translateY(-0.06em);
}

/* Body */
#wdsv-copy .wdsv-copy__desc {
  margin: 0;
  font-size: var(--body);
  line-height: 1.65;
  max-width: 46ch;
  color: #1a1a1a;
}

/* CTA */
#wdsv-copy .wdsv-copy__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--pill);
  text-decoration: none;
  color: #000;
  
  width: max-content;
  transition: transform 0.16s ease, background-color 0.16s ease;
  font-size: 1.2rem;
  margin-top: 4rem;
}
#wdsv-copy .wdsv-copy__cta:hover {
  transform: translateY(-1px);
}
#wdsv-copy .wdsv-copy__spark {
  width: clamp(18px, 2.4vw, 25px);
  height: auto;
  display: block;
}
#wdsv-copy .wdsv-copy__arrow {
  font-size: clamp(18px, 2.6vw, 30px);
  /* transform: rotate(-45deg); */
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 1100px) {
  #wdsv-copy .wdsv-copy__title {
    font-size: clamp(36px, 5vw, 72px);
  }
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 990px) {
  #wdsv-copy .wdsv-copy__grid {
    grid-template-columns: 1fr;
  }
  #wdsv-copy .wdsv-copy__content {
    align-items: flex-start;
    text-align: left;
  }
  #wdsv-copy {
    --radius-lg: 80px;
  }
  #wdsv-copy .wdsv-copy__card {
    aspect-ratio: 4/3;
  }
}

@media screen and (max-width: 640px) {
  #wdsv-copy {
    padding: clamp(30px, 2vw, 96px);
  }
  #wdsv-copy .wdsv-copy__card {
    aspect-ratio: auto;
  }
  #wdsv-copy .wdsv-copy__grid {
    gap: 3rem;
  }
  #wdsv-copy .wdsv-copy__cta {
    margin-top: 1rem;
    padding: 10px 0px;
  }
  #wdsv-copy .wdsv-copy__spark {
    width: clamp(25px, 2.4vw, 25px);
  }
  #wdsv-copy .wdsv-copy__arrow {
    font-size: clamp(25px, 2.6vw, 30px);
  }
}

/* =========================================
   WDSV — Website Overview
   ========================================= */
#wdsv-overview {
  --pad-x: clamp(16px, 6vw, 96px);
  --pad-y: clamp(32px, 6vw, 96px);
  --gap: clamp(16px, 4.5vw, 40px);
  --card-pad: clamp(18px, 3vw, 32px);
  --card-minh: clamp(260px, 38vw, 420px);
  --radius: 22px;
  --radius-tr: 70px; /* big top-right corner */

  background: #000;
  color: #fff;
  padding: var(--pad-y) var(--pad-x);
  box-sizing: border-box;
}

/* Header */
#wdsv-overview .wdsv-overview__header {
  margin-bottom: clamp(14px, 4vw, 3rem);
}
#wdsv-overview .wdsv-overview__title {
  margin: 0 0 clamp(6px, 1.6vw, 10px);
  
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(32px, 6.8vw, 56px);
}
#wdsv-overview .wdsv-overview__lead {
  margin: 0;
  max-width: 60ch;
  opacity: 0.9;
  line-height: 1.55;
  font-size: clamp(14px, 2.1vw, 18px);
}

/* Grid of cards */
#wdsv-overview .wdsv-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

/* Card base */
#wdsv-overview .wdsv-overview__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* title at top */
  min-height: var(--card-minh);
  padding: var(--card-pad);
  /* border-radius: var(--radius); */
  border-top-right-radius: var(--radius-tr);
  overflow: hidden;
  isolation: isolate; /* keep overlay below text */
}

/* Background image + gentle overlay for text legibility */
#wdsv-overview .wdsv-overview__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
#wdsv-overview .wdsv-overview__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
  z-index: -1;
}

/* Titles / copy */
#wdsv-overview .wdsv-overview__cardTitle {
  margin: 0 0 clamp(8px, 1.8vw, 20px);
  text-align: center;
  
  font-size: clamp(18px, 2.8vw, 30px);
}
#wdsv-overview .wdsv-overview__cardBody {
  margin: 0;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  opacity: 0.95;
}

/* Specific backgrounds (your images) */
#wdsv-overview .wdsv-overview__card--discovery::before {
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/1_006e870e-8e00-4d33-b71e-47cff316d53f.png");
}
#wdsv-overview .wdsv-overview__card--structure::before {
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/2_9dbcf97c-69c9-4132-9548-7ff0bb9b295d.png");
}
#wdsv-overview .wdsv-overview__card--development::before {
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/3_40e81a66-7d6d-4b1e-99ce-c8c044489318.png");
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 1100px) {
  #wdsv-overview .wdsv-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #wdsv-overview {
    --radius-tr: 55px;
    padding: clamp(3rem, 6vw, 96px) 1.5rem;
  }
  #wdsv-overview .wdsv-overview__grid {
    grid-template-columns: 1fr; /* 1 per row */
    margin-top: 2rem;
  }
  #wdsv-overview .wdsv-overview__cardTitle {
    font-size: clamp(25px, 2.8vw, 30px);
    margin: 0 0 clamp(15px, 1.8vw, 20px);
  }
}

section.testimonial-section.wdsv-testimonials h1 {
  font-size: clamp(32px, 6.8vw, 56px);
  margin-bottom: 3rem;
}

/* ===============================
   WDSV — Brand strip
   =============================== */
#wdsv-brands {
  --pad-x: clamp(12px, 6vw, 96px);
  --pad-y: clamp(16px, 6vw, 4rem);
  --gap: clamp(14px, 5vw, 56px);
  --logo-h: clamp(28px, 7vw, 72px); /* logo height scales with viewport */

  padding: var(--pad-y) var(--pad-x) calc(var(--pad-y) * 0.6);
  background: #fff;
  color: #0b0b0b;
  text-align: center;
}

#wdsv-brands .wdsv-brands__text {
  margin: 0 0 clamp(12px, 3.2vw, 28px);
  font-weight: 500;
  line-height: 1.45;
  font-size: clamp(14px, 2.1vw, 18px);
  color: #333;
}

#wdsv-brands .wdsv-brands__logos {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: var(--gap);
  align-items: center;
  justify-items: center;
  overflow-x: auto; /* graceful overflow on tiny screens */
  padding-block: clamp(6px, 1.5vw, 10px);
  scrollbar-width: none; /* hide scrollbar (Firefox) */
}
#wdsv-brands .wdsv-brands__logos::-webkit-scrollbar {
  display: none;
} /* WebKit */

#wdsv-brands .wdsv-brands__logo {
  height: var(--logo-h);
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) contrast(1) opacity(0.95);
  transition: filter 0.2s ease, transform 0.2s ease;
  will-change: transform;
}
#wdsv-brands .wdsv-brands__logo:hover {
  filter: none;
  transform: translateY(-2px);
}

/* Stack logos into rows when space allows */
@media (max-width: 900px) {
  #wdsv-brands .wdsv-brands__logos {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
}
@media (max-width: 520px) {
  #wdsv-brands .wdsv-brands__logos {
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 4vw, 18px);
  }
}

/* Respect user preferences */
@media (prefers-reduced-motion: reduce) {
  #wdsv-brands .wdsv-brands__logo {
    transition: none;
  }
}

@media screen and (max-width: 640px) {
  #wdsv-brands {
    padding: 3rem 1.5rem;
  }
  #wdsv-brands .wdsv-brands__logo {
    max-width: 150px;
  }
}

.wdsv-pricing-section {
  padding: 1rem 5rem 4rem;
  background-color: var(--light);
}

.wdsv-pricing-wrapper {
     display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: auto;
}

/* Pricing Card */
.wdsv-pricing-card {
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* Top Banner */
.wdsv-pricing-tag {
  padding: 12px 15px;
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  
}
.wdsv-pricing-tag.green {
  background: #00b140;
}
.wdsv-pricing-tag.blue {
  background: #005bd3;
}

/* Header */
.wdsv-plan-header {
  padding: 20px;
  text-align: left;
}
.wdsv-plan-header h3 {
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  
  color: var(--dark);
}
.wdsv-plan-header .wdsv-label {
  background: #e5f5e5;
  color: #008f3d;
  padding: 5px 10px;
  font-size: 12px;
  margin-left: 8px;
  border-radius: 10px;
}
.wdsv-subtitle {
  color: #666;
  font-size: 14px;
  margin: 5px 0 15px;
}

.wdsv-price {
  font-size: 25px;
  font-weight: 500;
  color: var(--dark);
}
.wdsv-currency,
.wdsv-per {
  font-size: 14px;
  font-weight: normal;
}
.wdsv-billing {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  margin-top: 10px;
}

/* Buttons */
.wdsv-btn {
  background: black;
  color: white;
  border: none;
  padding: 10px 2rem;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
}
.wdsv-btn.black {
  background: black;
}
.wdsv-link {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: black;
  
}

/* Body */
.wdsv-plan-body {
  padding: 0 20px 20px;
}
.wdsv-plan-body h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1rem;
  
  color: var(--dark);
}
.wdsv-plan-body ul {

  list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.wdsv-plan-body ul li {
     font-size: 14px;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}
.wdsv-plan-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
}
/* Tabs */
.wdsv-pricing-tabs {
  display: none;
  margin-bottom: 1rem;
  gap: 5px;
}
.wdsv-pricing-tab {
  flex: 1;
  padding: 10px;
  background: #f5f5f5;
  border: 0.5px solid #d6d4d4;
  cursor: pointer;
  font-size: 16px;
}
.wdsv-pricing-tab.active {
  background: #00b140;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .wdsv-pricing-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .wdsv-pricing-tabs {
    display: flex;
    gap: 0;
  }
  .wdsv-pricing-wrapper {
    display: block;
  }
  .wdsv-pricing-card {
    display: none;
  }
  .wdsv-pricing-card.active {
    display: block;
  }
  #wdsv-pricing-section {
    padding: 0rem 1rem;
    padding-bottom: 2rem;
  }
  #wdsv-pricing-section .wdsv-pricing-wrapper {
    display: block;
  }
  #wdsv-pricing-section .wdsv-pricing-card {
    display: none !important;
  }
  #wdsv-pricing-section .wdsv-pricing-card.active {
    display: block !important;
  }
  section.faq-section.wdsv-faqs {
    margin: 3rem 0rem 0rem;
  }
}

/* ===== WDSV – Footer Video CTA ===== */
#wdsv-footer-cta {
  --pad-x: clamp(16px, 6vw, 96px);
  --pad-y: clamp(40px, 10vw, 120px);
  --title: clamp(28px, 6.2vw, 64px);
  --body: clamp(16px, 2.2vw, 24px);

  position: relative;
  width: 100%;
  min-height: 60vh; /* footer feel; not full-screen */
  color: #fff;
  overflow: clip;
  isolation: isolate;
  background: #000; /* safe fallback */
}

/* Background video */
#wdsv-footer-cta .wdsv-footer-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

/* Subtle gradient for readability */
#wdsv-footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 90% at 15% 25%,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: -1;
}

/* Overlay container */
#wdsv-footer-cta .wdsv-footer-cta__overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: var(--pad-y) var(--pad-x);
}

/* Two-column layout on desktop */
#wdsv-footer-cta .wdsv-footer-cta__grid {
  width: min(1400px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 6vw, 80px);
  align-items: start;
}

/* Left title */
#wdsv-footer-cta .wdsv-footer-cta__title {
  margin: 0;
  font-size: var(--title);
  line-height: 1.05;
  
  letter-spacing: -0.01em;
}

/* Right copy + link */
#wdsv-footer-cta .wdsv-footer-cta__copy {
  margin: 0;
  font-size: var(--body);
  line-height: 1.5;
  text-align: left;
}

#wdsv-footer-cta .wdsv-footer-cta__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: opacity 0.2s ease;
}
#wdsv-footer-cta .wdsv-footer-cta__link:hover,
#wdsv-footer-cta .wdsv-footer-cta__link:focus-visible {
  opacity: 0.85;
  outline: none;
}

@media screen and (max-width: 1100px) {
  #wdsv-footer-cta {
    min-height: 40vh;
  }
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  #wdsv-footer-cta {
    min-height: 30vh;
  }
  #wdsv-footer-cta .wdsv-footer-cta__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    place-items: center;
  }
}

/* Respect reduced motion / data */
@media (prefers-reduced-motion: reduce) {
  #wdsv-footer-cta .wdsv-footer-cta__bg {
    animation: none;
  }
}
@media (prefers-reduced-data: reduce) {
  #wdsv-footer-cta .wdsv-footer-cta__bg {
    display: none;
  } /* shows gradient fallback */
}

/* ========= MKT Service – Stats Band ========= */
#mktsv-stats {
  --mktsv-pad-x: clamp(16px, 6vw, 96px);
  --mktsv-pad-y: clamp(24px, 9vw, 6rem);
  --mktsv-title: clamp(28px, 6vw, 56px);
  --mktsv-num: clamp(32px, 8vw, 80px);
  --mktsv-label: clamp(14px, 2.4vw, 20px);
color: var(--dark);
  position: relative;
  background: #fff center/cover no-repeat;
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/marketing-matrix.png");
  /* gentle overlay so black text reads on bright areas */
  isolation: isolate;
}

#mktsv-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.65) 45%,
    rgba(255, 255, 255, 0.25) 100%
  );
  z-index: 0;
}

#mktsv-stats .mktsv-stats__inner {
  position: relative;
  z-index: 1;
  padding: var(--mktsv-pad-y) var(--mktsv-pad-x);
  max-width: 1300px;
  margin: 0 auto;
}

/* Title */
#mktsv-stats .mktsv-stats__title {
  margin: 0 0 clamp(10px, 3.2vw, 2rem) 0;
  font-size: var(--mktsv-title);
  font-weight: 500;
  line-height: 1.05;
}
#mktsv-stats .mktsv-stats__title span {
  
}

/* Layout row */
#mktsv-stats .mktsv-stats__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 40px);
  flex-wrap: wrap;
}

/* Stats list */
#mktsv-stats .mktsv-stats__list {
  display: grid;
  gap: clamp(8px, 2vw, 2rem);
}

#mktsv-stats .mktsv-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

#mktsv-stats .mktsv-stat__num {
  font-size: var(--mktsv-num);
  line-height: 1;
}

#mktsv-stats .mktsv-stat__label {
  font-size: var(--mktsv-label);
  font-weight: 400;
}

/* CTA */
#mktsv-stats .mktsv-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.16s ease, background-color 0.16s ease,
    box-shadow 0.16s ease;
  will-change: transform;
}

#mktsv-stats .mktsv-cta:hover {
  transform: translateY(-1px);
}
#mktsv-stats .mktsv-cta:active {
  transform: translateY(0);
}

#mktsv-stats .mktsv-cta__icon {
  width: 25px;
  height: 25px;
  display: block;
  flex: 0 0 auto;
}
#mktsv-stats .mktsv-cta__text {
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1;
}
#mktsv-stats .mktsv-cta__arrow {
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
  #mktsv-stats .mktsv-stats__row {
    flex-direction: column;
    align-items: flex-start;
  }
  #mktsv-stats .mktsv-cta {
    margin-top: clamp(10px, 3vw, 16px);
  }
}

@media screen and (max-width: 640px) {
  #mktsv-stats .mktsv-stats__inner {
    padding: 3rem 1.5rem;
  }
  #mktsv-stats .mktsv-stats__title {
    margin: 0 0 clamp(10px, 4.5vw, 2rem) 0;
    font-size: clamp(40px, 6vw, 56px);
  }

  #mktsv-stats .mktsv-stat__num {
    font-size: clamp(36px, 8vw, 80px);
  }
  a.mktsv-cta {
    width: 100%;
    justify-content: center;
  }
  #mktsv-stats .mktsv-cta {
    padding: 12px;
  }
  #mktsv-stats .mktsv-stats__list {
    gap: clamp(1rem, 2vw, 2rem);
  }
}

/* ============ Marketing Service — Powered by data ============ */
#mktsv-data {
  --pad-x: clamp(16px, 5vw, 96px);
  --pad-y: clamp(24px, 6vw, 64px);
  --title: clamp(28px, 6vw, 56px);
  --lead: clamp(16px, 2.4vw, 18px);
  --bullet: clamp(14px, 2.2vw, 18px);
color: var(--dark);
background:var(--light);
  padding: var(--pad-y) var(--pad-x) var(--pad-y) calc(var(--pad-x) * 0.2);
}

#mktsv-data .mktsv-data__title {
  text-align: right;
  margin: 0 0 clamp(16px, 3vw, 28px) 0;
  font-size: var(--title);
  font-weight: 500;
  line-height: 1.05;
}
#mktsv-data .mktsv-data__title span {
  
}

/* layout */
#mktsv-data .mktsv-data__wrap {
  display: flex;
  gap: clamp(16px, 1vw, 40px);
  align-items: stretch; /* equal column heights */
  justify-content: space-between;
  flex-wrap: wrap;
}

/* media (video) */
#mktsv-data .mktsv-data__media {
  flex: 1 1 520px;
  max-width: 640px;
  /* border-radius: 20px; */
  overflow: hidden;
  /* box-shadow: 0 20px 50px rgba(0,0,0,.12); */
  background: #000;
  aspect-ratio: 16/9; /* consistent footprint */
  display: grid;
  place-items: center;
}
#mktsv-data .mktsv-data__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* content */
#mktsv-data .mktsv-data__content {
  flex: 1 1 360px;
  max-width: 520px;
  display: grid;
  align-content: space-between;
  gap: clamp(12px, 2.2vw, 20px);
  text-align: right;
}

#mktsv-data .mktsv-data__lead {
  margin: 0;
  font-size: var(--lead);
  line-height: 1.55;
}

/* bullets */
#mktsv-data .mktsv-data__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1.8vw, 14px);
}
#mktsv-data .mktsv-data__bullets li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--bullet);
  line-height: 1.45;

}
#mktsv-data .mktsv-data__bullets img {
  width: 25px;
  height: 25px;
}

/* CTA */
#mktsv-data .animated-button-black {
margin: 2rem auto;

}

/* responsive */
@media (max-width: 990px) {
  #mktsv-data {
    padding: var(--pad-y) var(--pad-x);
  }
  #mktsv-data .mktsv-data__title {
    text-align: left;
  }
  #mktsv-data .mktsv-data__content {
    text-align: left;
  }
  #mktsv-data .mktsv-data__cta {
    justify-self: start;
  }
}

/* Reduced motion: stop the video */
@media (prefers-reduced-motion: reduce) {
  #mktsv-data .mktsv-data__video {
    animation: none;
  }
}

@media screen and (max-width: 640px) {
  #mktsv-data {
    padding: 4rem 1.5rem;
  }
  #mktsv-data .mktsv-data__title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.3rem;
  }
  #mktsv-data .mktsv-data__content {
    margin-top: 2rem;
  }
}

/* ============ Marketing Service — Creative campaigns ============ */
#mktsv-creative {
  --pad-x: clamp(16px, 5vw, 96px) 2rem;
  --pad-y: clamp(24px, 6vw, 64px);
  --title: clamp(34px, 7vw, 55px);
  --lead: clamp(16px, 2.4vw, 18px);
  --bullet: clamp(14px, 2.2vw, 18px);
background-color: var(--light);
color: var(--dark);
  padding: var(--pad-y) var(--pad-x);
}

#mktsv-creative .mktsv-creative__wrap {
  display: flex;
  gap: clamp(16px, 3.5vw, 48px);
  align-items: stretch; /* keeps columns equal height */
  justify-content: space-between;
  flex-wrap: wrap;
}

/* left column */
#mktsv-creative .mktsv-creative__left {
  flex: 1 1 420px;
  max-width: 650px;
  display: grid;
  align-content: start;
  gap: clamp(10px, 2.2vw, 20px);
}
#mktsv-creative .mktsv-creative__kicker {
  margin: 0;
  font-weight: 500;
}
#mktsv-creative .mktsv-creative__title {
  margin: 0;
  line-height: 1.05;
  font-size: var(--title);
  
}
#mktsv-creative .mktsv-creative__lead {
  margin: 0;
  font-size: var(--lead);
  line-height: 1.55;
}

/* bullets */
#mktsv-creative .mktsv-creative__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1.8vw, 14px);
}
#mktsv-creative .mktsv-creative__bullets li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  font-size: var(--bullet);
  line-height: 1.45;
}
#mktsv-creative .mktsv-creative__bullets img {
  width: 18px;
  height: 18px;
}

/* right column — CSS phone frame + video */
#mktsv-creative .mktsv-creative__right {
  flex: 1 1 360px;
  display: grid;
  place-items: center;
  min-width: 320px;
}

/* Simple “phone” device */
#mktsv-creative .mktsv-device {
  position: relative;
  width: min(250px, 100%);
  /* aspect-ratio: 9 / 19.5; */
  /* border-radius: 36px; */
  /* background: #111; */
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, .25); */
  /* padding: clamp(8px, 1.4vw, 12px); */
}
#mktsv-creative .mktsv-device::before {
  /* notch */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 38%;
  height: 18px;
  /* border-radius: 0 0 14px 14px; */
  /* background: #111; */
}
#mktsv-creative .mktsv-device__screen {
  width: 100%;
  height: 100%;
  /* border-radius: 28px; */
  overflow: hidden;
  /* background: #000; */
}
#mktsv-creative .mktsv-creative__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* responsiveness */
@media (max-width: 990px) {
  #mktsv-creative .mktsv-creative__wrap {
    /* flex-direction: column-reverse;    */
    align-items: stretch;
  }
  #mktsv-creative .mktsv-creative__right {
    min-width: unset;
    margin-top: 2rem;
  }
  #mktsv-creative {
    padding: clamp(4rem, 6vw, 64px) 1.5rem 0rem;
  }
}

/* reduced motion — pause background video if the user prefers */
@media (prefers-reduced-motion: reduce) {
  #mktsv-creative .mktsv-creative__video {
    animation: none;
  }
}

/* ============ Marketing Service — Our strategy ============ */
#mktsv-strategy {
  --pad-x: clamp(16px, 5vw, 96px);
  --pad-y: clamp(24px, 6vw, 64px);
  --tile-size: clamp(220px, 28vw, 400px);
  --radius: 28px;
  --title: clamp(28px, 5.4vw, 58px);
  --heading: clamp(18px, 2.6vw, 28px);
  --body: clamp(14px, 2.2vw, 16px);

  background: #fff;
  color: #000;
  padding: var(--pad-y) var(--pad-x);
}

#mktsv-strategy .mktsv-strategy__header {
  margin-bottom: clamp(18px, 3vw, 32px);
}

#mktsv-strategy .mktsv-strategy__title {
  margin: 0;
  font-size: var(--title);
  line-height: 1.05;
  
  margin-bottom: 3rem;
}

/* grid of cards */
#mktsv-strategy .mktsv-strategy__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 60px);
  align-items: start;
}

/* card */
#mktsv-strategy .mktsv-card {
  display: grid;
  gap: clamp(10px, 2vw, 14px);
}

/* art tile with image background */
#mktsv-strategy .mktsv-card__art {
  width: var(--tile-size);
  height: var(--tile-size);
  border-top-right-radius: calc(var(--radius) * 1.4);
  /* border-radius: 16px;  */
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-inline: auto; /* center the square */
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* background images (your assets) */
#mktsv-strategy .mktsv-card__art--d {
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/1_625b1272-60ce-46fa-84c4-1ae00401a82d.png");
}
#mktsv-strategy .mktsv-card__art--p {
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/2_28db05c6-4c9d-4311-8e33-a04f9cc136fb.png");
}
#mktsv-strategy .mktsv-card__art--l {
  background-image: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/3_c459a679-f71e-4084-83b1-431994c94878.png");
}

/* heading over tile */
#mktsv-strategy .mktsv-card__heading {
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  
  font-size: var(--heading);
  letter-spacing: 0.2px;
}

/* body copy */
#mktsv-strategy .mktsv-card__copy {
  font-size: var(--body);
  line-height: 1.5;
  text-align: center; /* like the reference */
  margin: 0;
  max-width: 52ch;
  margin-inline: auto;
}

/* CTA */
#mktsv-strategy .animated-button-black {
margin-top: 2rem; 

}

/* responsiveness */
@media (max-width: 1024px) {
  #mktsv-strategy .mktsv-strategy__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  #mktsv-strategy .mktsv-strategy__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #mktsv-strategy .mktsv-strategy__cta {
    display: flex;
    margin-left: auto;
    margin-right: auto; /* center CTA like your mock */
    justify-content: center;
  }
  #mktsv-strategy {
    padding: 3rem 1.5rem 0rem;
  }
  #mktsv-strategy .mktsv-strategy__title {
    font-size: clamp(40px, 5.4vw, 58px);
    text-align: center;
  }
  #mktsv-strategy .mktsv-card__art {
    width: clamp(300px, 28vw, 400px);
    height: clamp(300px, 28vw, 400px);
  }
  #mktsv-strategy .mktsv-card__heading {
    font-size: clamp(35px, 2.6vw, 28px);
  }
}

/* ============ Tokens (easy tweaks) ============ */
:root {
  --msk-pad-x: clamp(20px, 5vw, 96px);
  --msk-pad-t: clamp(28px, 9vw, 10rem);
  --msk-pad-b: clamp(28px, 10vw, 10rem);
  --msk-maxw: 1280px;
  --msk-text: #0a0a0a;
  --msk-cta-bg: #000;
  --msk-cta-fg: #fff;
}

/* ============ Section ============ */
.msk-hero {
  position: relative;
  color: var(--msk-text);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  color: var(--light);
}
.msk-hero video{
  height: 100vh;
  width: 100%;
  object-fit: cover;
}


.msk-hero__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: auto auto;
  padding: var(--msk-pad-t) var(--msk-pad-x) var(--msk-pad-b);
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

/* ============ Top row ============ */
.msk-hero__top {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  align-items: start;
  gap: clamp(16px, 4vw, 48px);
}

.msk-hero__title {
  display: grid;
  gap: 0.15em;
  
}

.msk-hero__h1 {
  margin: 0;
  line-height: 0.95;
  font-size: clamp(40px, 8vw, 80px);
  
}

/* shimmering lede like the reference */
.msk-hero__lede p {
  margin: 0;
  line-height: 1.55;
  font-weight: 500;
  background: linear-gradient(90deg, #e5ccd7, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ Bottom row ============ */
.msk-hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  /* gap: clamp(18px, 3vw, 40px); */
}

.msk-hero__cta {
   display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: .8rem 2rem;
    background: #000;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    
    margin-top: 1rem;
width: fit-content;
}

.msk-hero__cta img {
  width: clamp(28px, 3.6vw, 40px);
  height: clamp(22px, 3vw, 30px);
  object-fit: contain;
}

.msk-hero__arrow {
  font-size: clamp(18px, 2.6vw, 32px);
  transform: rotate(-45deg);
  line-height: 1;
}

.msk-hero__why {
  max-width: 650px;
}

.msk-hero__why-title {
  margin: 0 0 10px;
  
}

.msk-hero__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 10px;
}

.msk-hero__list li {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.45;
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .msk-hero__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  msk-hero__inner {
    padding: 4rem 1.5rem;
  }
  .msk-hero__top {
    grid-template-columns: 1fr;
  }
  .msk-hero__bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .msk-hero__cta {
    order: 2;
    margin-top: 2rem;
  }
  .msk-hero__why {
    order: 1;
    max-width: none;
  }
  .msk-hero__h1 {
    font-size: clamp(50px, 8vw, 80px);
  }
 
  .msk-hero__why-title {
    margin: 5px 0 10px;
    
    font-size: 2rem;
  }
}

/* ========== Namespace: msm-shipcheck ========== */
.msm-shipcheck {
  padding: clamp(32px, 6vw, 96px) clamp(20px, 6vw, 96px) clamp(16px, 4vw, 48px);
  box-sizing: border-box;
  background: #fff;
  color: #000;
}

.msm-shipcheck__container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* left a tad wider */
  gap: clamp(24px, 5vw, 72px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

/* ---------- LEFT ---------- */
.msm-shipcheck__left {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 18px);
}

/* Headings + Rocket in one row */
.msm-shipcheck__headingwrap {
  display: flex;
  align-items: center;
  /* gap: clamp(16px, 4vw, 32px); */
}

.msm-shipcheck__headingtext {
  flex: 1;
  min-width: 260px;
}

.msm-shipcheck__eyebrow {
  margin: 0 0 6px 0;
  font-weight: 500;
  font-size: clamp(18px, 6vw, 2.5rem);
  color: #111;
}

.msm-shipcheck__title {
  margin: 0;
  line-height: 1.1;
  
  font-size: clamp(28px, 4vw, 48px);
}
.msm-shipcheck__title strong {
  
}

/* Rocket scales but stays tidy */
.msm-shipcheck__rocket img {
  width: clamp(120px, 15vw, 220px);
  height: auto;
  display: block;
  /* filter: drop-shadow(0 8px 24px rgba(0,0,0,.12)); */
}

.msm-shipcheck__sub,
.msm-shipcheck__desc {
  color: #555;
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 60ch;
  margin: 0;
}
.msm-shipcheck__desc {
  color: #000;
}

/* ---------- RIGHT: Gradient Card ---------- */
.msm-shipcheck__card {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.2vw, 24px);
  border-radius: 22px;
  padding: clamp(20px, 5.2vw, 5rem);
  background: url("https://cdn.shopify.com/s/files/1/0522/6178/1673/files/spaceship_bg.png")
    center/cover no-repeat;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
      max-width: 400px;
    margin: auto;
}

/* Checklist */
.msm-shipcheck__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  font-size: clamp(15px, 1.8vw, 20px);
  color: #000;
}
.msm-shipcheck__list li {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.msm-shipcheck__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  margin-right: 12px;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Stat pill */
.msm-shipcheck__stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.msm-shipcheck__stat p {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #111;
}
.msm-shipcheck__staticon {
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  
}

/* CTA */
.msm-shipcheck__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  text-decoration: none;
  
  justify-content: center;
  width: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.msm-shipcheck__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.msm-shipcheck__ctaarrow {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .msm-shipcheck__container {
    grid-template-columns: 1fr; /* stack */
  }
  .msm-shipcheck__card {
    order: 2; /* left first, card second */
  }
}

@media (max-width: 640px) {
  .msm-shipcheck__headingwrap {
    /* flex-direction: column; */
    align-items: flex-start;
  }
  .msm-shipcheck__rocket img {
    width: clamp(120px, 42vw, 130px);
  }
  .msm-shipcheck__sub,
  .msm-shipcheck__desc {
    max-width: 100%;
  }
  .msm-shipcheck__headingtext {
    flex: 1;
    min-width: auto;
  }
  section#msm-shipcheck {
    padding: 4rem 1.5rem 0rem;
  }
  .msm-shipcheck__card {
    order: 2;
    padding: 3rem;
    margin-top: 1rem;
  }
}

/* ===== Marketing Service: Concepts → Conversions ===== */
.ms-ctc-section {
  padding: 4rem 6rem;
  background: #fff;
}

/* 2-col grid on desktop */
.ms-ctc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left column */
.ms-ctc-left {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.ms-ctc-title {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    
    margin: 0;
    color: black;
}

/* CTA */
.ms-ctc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 40px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  width: fit-content;
}

.ms-ctc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.ms-ctc-btn-icon {
  width: 28px;
  height: 28px;
}

.ms-ctc-btn-text {
  font-size: 1.1rem;
}

.ms-ctc-btn-arrow {
  font-size: 1.5rem;
  transform: rotate(-45deg);
}

/* Right column */
.ms-ctc-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
}

.ms-ctc-desc {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #111;
    font-weight: 500;
    width: 60%;
}

.ms-ctc-big-arrow {
    font-size: clamp(2rem, 9vw, 6rem);
    text-align: right;
}

@media screen and (max-width: 1100px) {
  .ms-ctc-left {
    gap: 7rem;
}
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .ms-ctc-section {
    padding: 4rem 1.5rem 0rem;
  }

  .ms-ctc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ms-ctc-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }
  .ms-ctc-left {
        gap: 2rem;
    }

  .ms-ctc-right {
    align-items: flex-start;
  }
  .ms-ctc-desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #111;
    font-weight: 500;
    width: 100%;
    text-align: justify;
}

  .ms-ctc-big-arrow {
    text-align: left;
    display: none;
  }
}

/* =========================================================
   Marketing – Metaverse section
   ========================================================= */
#mktg-metaverse.mktg-metaverse{
  padding: 4rem 6rem;
  background:#fff;
}

.mktg-meta__container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem 3rem;
  align-items: center;
}

/* Left column */
.mktg-meta__content{
  text-align: left;            /* desktop like the reference */
}

.mktg-meta__title {
    margin: 0 0 1rem 0;
    line-height: 1.1;
    
    font-size: 3rem;
    color: var(--dark);
}

.mktg-meta__pixel{
  display:inline-block;
  margin-top:.35rem;
  font-family: "Courier New", monospace;  /* pixelish look */
  text-transform: uppercase;
  letter-spacing: 2px;
  color:#2b7cff;                           /* blue like the comp */
}

.mktg-meta__desc{
  max-width: 520px;
  margin: .25rem 0 1.25rem;
  line-height: 1.45;
  color: grey;
}

/* Logos grid: 2 rows × 3 cols, evenly sized; no overlap */
.mktg-meta__logos{
  display:grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  grid-auto-rows: 64px;
  gap: 10px 15px;
  align-items:center;
  justify-items:center;
  margin: 1.25rem 0 1.75rem;
  width: 70%;
}

.mktg-meta__logos img {
    max-height: 58px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* CTA */
.mktg-meta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: .8rem 2rem;
    background: #000;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    
    margin-top: 1rem;
}
.mktg-meta__btn img{ width:34px; height:34px; }
.mktg-meta__btn .arrow{ font-size:1.6rem; }

/* Right column visual card */
.mktg-meta__visual{
  display:flex;
  justify-content:flex-end;
}
.mktg-meta__visual img{
  width:100%;
  max-width:420px;                  /* fixes “too big” issue */
  aspect-ratio: 3 / 4;              /* consistent card shape */
  object-fit: cover;
  border-radius:20px;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

/* ===================== Responsive ===================== */
@media (max-width: 990px){
  #mktg-metaverse.mktg-metaverse{ padding: 2rem 1.5rem; }

  .mktg-meta__container{
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align:center;
  }
  .mktg-meta__content{ text-align:center; }
  .mktg-meta__desc{ margin-left:auto; margin-right:auto; }

  .mktg-meta__logos{
    /* grid-template-columns: repeat(3, 1fr); */
    grid-auto-rows: 44px;
    gap: 12px 16px;
    width: 100%;
  }
  .mktg-meta__logos img{ max-height: 38px; max-width: 90px;}
  .mktg-meta__title {
    font-size: 2.5rem;
  }

  .mktg-meta__btn {
        padding: .8rem 1rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
  .mktg-meta__btn img{ width:24px; height:24px; }
  .mktg-meta__btn .arrow{ font-size:1.2rem; }

  .mktg-meta__visual img{
    max-width: 100%;
    aspect-ratio: auto;
  }
  .mktg-meta__visual {
    margin-top: 2rem;
}
}





/* ============ Our services — Web Development ============ */
#ors-webdev {
  --pad-x: clamp(16px, 2vw, 40px) 0rem;
  --pad-y: clamp(24px, 2vw, 64px);
  --title: clamp(34px, 7vw, 55px);
  --lead: clamp(18px, 2.4vw, 24px);
  --bullet: clamp(14px, 2.2vw, 18px);
background-color: var(--light);
color: var(--dark);
  padding: var(--pad-y) var(--pad-x);
}

#ors-webdev .ors-webdev__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;  gap: clamp(16px, 4.5vw, 60px);
  align-items: center; /* keeps columns equal height */
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

#ors-webdev .ors-webdev__left {
  max-width: 550px;  /* still cap it */
  min-width: 0;      /* required so flexbox allows shrinking properly */
  display: grid;
  align-content: start;
  gap: clamp(10px, 2.2vw, 20px);
}

#ors-webdev .ors-webdev__kicker {
  margin: 0;
  font-weight: 500;
}
#ors-webdev .ors-webdev__title {
  margin: 0;
  line-height: 1.05;
  font-size: var(--title);
  
}
#ors-webdev .ors-webdev__lead {
  margin: 0;
  font-size: var(--lead);
  line-height: 1.55;
}

/* bullets */
#ors-webdev .ors-webdev__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1.8vw, 14px);
}
#ors-webdev .ors-webdev__bullets li {
  display: grid;
  grid-template-columns:1fr;
  align-items: center;
  font-size: var(--bullet);
  line-height: 1.45;

}
#ors-webdev .ors-webdev__bullets img {
  width: 18px;
  height: 18px;
}

/* right column — CSS phone frame + video */
#ors-webdev .ors-webdev__right {
  flex: 1 ;
  display: grid;
  place-items: center;
}

/* Simple “phone” device */
#ors-webdev .ors-webdev-device {

}
#ors-webdev .ors-webdev-device::before {
  /* notch */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 38%;
  height: 18px;
  /* border-radius: 0 0 14px 14px; */
  /* background: #111; */
}
#ors-webdev .ors-webdev-device__screen {
  width: 100%;
  height: 100%;
  /* border-radius: 28px; */
  overflow: hidden;
  /* background: #000; */
}
#ors-webdev .ors-webdev__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#ors-webdev .animated-button-black{
    margin: 0rem auto 0 0 !important;
  
}



@media (max-width: 769px) {
  #ors-webdev .ors-webdev__wrap {
grid-template-columns: 1fr; 
 }
  #ors-webdev .ors-webdev__left {
    max-width: unset;
  }
  #ors-webdev .ors-webdev__right {
    min-width: unset;
  }
  #ors-webdev {
    padding: clamp(2rem, 6vw, 64px) 1.5rem 0rem;
  }

    .ors-webdev__btn {
        padding: .8rem 1rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
  .ors-webdev__btn img{ width:24px; height:24px; }
  .ors-webdev__btn .arrow{ font-size:1.2rem; }

}

/* reduced motion — pause background video if the user prefers */
@media (prefers-reduced-motion: reduce) {
  #ors-webdev .ors-webdev__img {
    animation: none;
  }
}





/* ============ Our services — Performance Marketing ============ */
#ors-permkt {
  --pad-x: clamp(16px, 5vw, 96px) 2rem;
  --pad-y: clamp(24px, 6vw, 64px);
  --title: clamp(34px, 7vw, 55px);
  --lead: clamp(18px, 2.4vw, 24px);
  --bullet: clamp(14px, 2.2vw, 18px);
background-color: var(--light);
color: var(--dark);
  padding: var(--pad-y) var(--pad-x);
}

#ors-permkt .ors-permkt__wrap {
  gap: clamp(16px, 3.5vw, 48px);
  display: grid;
    grid-template-columns: 1fr 1fr;  gap: clamp(16px, 4.5vw, 60px);
  align-items: center; /* keeps columns equal height */
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* left column */
#ors-permkt .ors-permkt__right {
  
  display: grid;
  align-content: start;
  gap: clamp(10px, 2.2vw, 20px);
  text-align: right;
}
#ors-permkt .ors-permkt__kicker {
  margin: 0;
  font-weight: 500;
}
#ors-permkt .ors-permkt__title {
  margin: 0;
  line-height: 1.05;
  font-size: var(--title);
  
}
#ors-permkt .ors-permkt__lead {
  margin: 0;
  font-size: var(--lead);
  line-height: 1.55;
}

/* bullets */
.ors-permkt .ors-permkt__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1.8vw, 14px);
}
#ors-permkt .ors-permkt__bullets li {
  display: grid;
  grid-template-columns:1fr;
  align-items: center;
  font-size: var(--bullet);
  line-height: 1.45;        margin-left: auto;


}
#ors-permkt .ors-permkt__bullets img {
  width: 18px;
  height: 18px;
}

/* right column — CSS phone frame + video */
#ors-permkt .ors-permkt__left {
    max-width: 550px;
  display: grid;
  place-items: center;
  border-radius: 50px;
}

/* Simple “phone” device */
#ors-permkt .ors-permkt-device {

}
#ors-permkt .ors-permkt-device::before {
  /* notch */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 38%;
  height: 18px;
  /* border-radius: 0 0 14px 14px; */
  /* background: #111; */
}
#ors-permkt .ors-permkt-device__screen {
  width: 100%;
  height: 100%;
  /* border-radius: 28px; */
  overflow: hidden;
  /* background: #000; */
}
#ors-permkt .ors-permkt__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  
}

#ors-permkt .animated-button-black {
  margin-left: auto !important;
}

/* responsiveness */
@media (max-width: 769px) {
  #ors-permkt .ors-permkt__wrap {
    grid-template-columns: 1fr;
  }
  #ors-permkt .animated-button-black {
    margin: 1rem 0 0 auto !important;
}
  #ors-permkt .ors-permkt__right {
    min-width: unset;
    margin-top: 2rem;
  }
   #ors-permkt .ors-permkt__left {
    max-width: unset;
  
  }
  #ors-permkt {
    padding: clamp(2rem, 6vw, 64px) 1.5rem 0rem;
  }


    .ors-permkt {
        padding: .8rem 1rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

}

/* reduced motion — pause background video if the user prefers */
@media (prefers-reduced-motion: reduce) {
  #ors-permkt .ors-permkt__img {
    animation: none;
  }
}





/* ============ Our services — Ai and  Automation ============ */
#ors-aiau {
  --pad-x: clamp(16px, 5vw, 96px) 2rem;
  --pad-y: clamp(24px, 6vw, 64px);
  --title: clamp(34px, 7vw, 55px);
  --lead: clamp(18px, 2.4vw, 24px);
  --bullet: clamp(14px, 2.2vw, 18px);
background-color: var(--light);
color: var(--dark);
  padding: var(--pad-y) var(--pad-x);
}

#ors-aiau .ors-aiau__wrap {
  display: grid;
  gap: clamp(16px, 3.5vw, 48px);
  grid-template-columns: 1fr 1fr;
  align-items: stretch; /* keeps columns equal height */
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* left column */
#ors-aiau .ors-aiau__right {
  
      display: grid;
  align-content: start;
  gap: clamp(10px, 2.2vw, 20px);
  text-align: right;
}
#ors-aiau .ors-aiau__kicker {
  margin: 0;
  font-weight: 500;
}
#ors-aiau .ors-aiau__title {
  margin: 0;
  line-height: 1.05;
  font-size: var(--title);
  
}
#ors-aiau .ors-aiau__lead {
  margin: 0;
  font-size: var(--lead);
  line-height: 1.55;
}

/* bullets */
.ors-aiau .ors-aiau__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1.8vw, 14px);
}
#ors-aiau .ors-aiau__bullets li {
  display: grid;
  grid-template-columns:1fr;
  align-items: center;
  font-size: var(--bullet);
  line-height: 1.45;
    margin-left: auto;

}
#ors-aiau .ors-aiau__bullets img {
  width: 18px;
  height: 18px;
}

/* right column — CSS phone frame + video */
#ors-aiau .ors-aiau__left {
 
  display: grid;
  place-items: center;
  border-radius: 50px;
}


#ors-aiau .ors-aiau-device::before {
  /* notch */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 38%;
  height: 18px;
  /* border-radius: 0 0 14px 14px; */
  /* background: #111; */
}
#ors-aiau .ors-aiau-device__screen {
  width: 100%;
  height: 100%;
  /* border-radius: 28px; */
  overflow: hidden;
  /* background: #000; */
}
#ors-aiau .ors-aiau__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
    border-radius: 30px;

}

#ors-aiau .animated-button-black {
    margin: 2rem 0 0 auto !important;
  
}

/* responsiveness */
@media (max-width: 769px) {
  #ors-aiau .ors-aiau__wrap {
      grid-template-columns: 1fr ;

  }
  #ors-aiau .animated-button-black {
    margin: 1rem 0 0 auto !important;
  
}
  #ors-aiau .ors-aiau__right {
    min-width: unset;
    margin-top: 2rem;
  }
  #ors-aiau {
    padding: clamp(4rem, 6vw, 64px) 1.5rem 0rem;
  }


    .ors-aiau {
        padding: .8rem 1rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
  
}





/* ============ Our services — UGC and  Influencer ============ */
#ors-ugc {
  --pad-x: clamp(16px, 5vw, 96px) 2rem;
  --pad-y: clamp(24px, 6vw, 64px);
  --title: clamp(34px, 7vw, 55px);
  --lead: clamp(18px, 2.4vw, 24px);
  --bullet: clamp(14px, 2.2vw, 18px);
background-color: var(--light);
color: var(--dark);
  padding: var(--pad-y) var(--pad-x);
}

#ors-ugc .ors-ugc__wrap {
  display: grid;
  gap: clamp(16px, 3.5vw, 48px);
  grid-template-columns: 1fr 1fr;
  align-items: stretch; /* keeps columns equal height */
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* left column */
#ors-ugc .ors-ugc__right {
  
      display: grid;
  align-content: start;
  gap: clamp(10px, 2.2vw, 20px);
  text-align: right;
}
#ors-ugc .ors-ugc__kicker {
  margin: 0;
  font-weight: 500;
}
#ors-ugc .ors-ugc__title {
  margin: 0;
  line-height: 1.05;
  font-size: var(--title);
  
}
#ors-ugc .ors-ugc__lead {
  margin: 0;
  font-size: var(--lead);
  line-height: 1.55;
}

/* bullets */
.ors-ugc .ors-ugc__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1.8vw, 14px);
}
#ors-ugc .ors-ugc__bullets li {
  display: grid;
  grid-template-columns:1fr;
  align-items: center;
  font-size: var(--bullet);
  line-height: 1.45;
    margin-left: auto;

}
#ors-ugc .ors-ugc__bullets img {
  width: 18px;
  height: 18px;
}

/* right column — CSS phone frame + video */
#ors-ugc .ors-ugc__left {
 
  display: grid;
  place-items: center;
  border-radius: 50px;
}


#ors-ugc .ors-ugc-device::before {
  /* notch */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 38%;
  height: 18px;
  /* border-radius: 0 0 14px 14px; */
  /* background: #111; */
}
#ors-ugc .ors-ugc-device__screen {
  width: 100%;
  height: 100%;
  /* border-radius: 28px; */
  overflow: hidden;
  /* background: #000; */
}
#ors-ugc .ors-ugc__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
    border-radius: 30px;

}

#ors-ugc .animated-button-black {
    margin: 2rem 0 0 auto !important;
  
}

/* responsiveness */
@media (max-width: 769px) {
  #ors-ugc .ors-ugc__wrap {
      grid-template-columns: 1fr ;

  }
  #ors-ugc .animated-button-black {
    margin: 1rem 0 0 auto !important;
  
}
  #ors-ugc .ors-ugc__right {
    min-width: unset;
    margin-top: 2rem;
  }
  #ors-ugc {
    padding: clamp(4rem, 6vw, 64px) 1.5rem 0rem;
  }


    .ors-ugc {
        padding: .8rem 1rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
  
}

/* reduced motion — pause background video if the user prefers */
@media (prefers-reduced-motion: reduce) {
  #ors-ugc .ors-ugc__img {
    animation: none;
  }
}





/* ============ Our services — Graphic Design ============ */
#ors-gpds {
  --pad-x: clamp(16px, 5vw, 96px) 2rem;
  --pad-y: clamp(24px, 6vw, 64px);
  --title: clamp(34px, 7vw, 55px);
  --lead: clamp(18px, 2.4vw, 24px);
  --bullet: clamp(14px, 2.2vw, 18px);
background-color: var(--light);
color: var(--dark);
  padding: var(--pad-y) var(--pad-x);
}

#ors-gpds .ors-gpds__wrap {
  display: grid;
  gap: clamp(16px, 3.5vw, 48px);
  grid-template-columns: 1fr 1fr;
  align-items: stretch; /* keeps columns equal height */
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* left column */
#ors-gpds .ors-gpds__left {

  display: grid;
  align-content: start;
  gap: clamp(10px, 2.2vw, 20px);
}
#ors-gpds .ors-gpds__kicker {
  margin: 0;
  font-weight: 500;
}
#ors-gpds .ors-gpds__title {
  margin: 0;
  line-height: 1.05;
  font-size: var(--title);
  
}
#ors-gpds .ors-gpds__lead {
  margin: 0;
  font-size: var(--lead);
  line-height: 1.55;
}

/* bullets */
#ors-gpds .ors-gpds__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1.8vw, 14px);
}
#ors-gpds .ors-gpds__bullets li {
  display: grid;
  grid-template-columns:1fr;
  align-items: center;
  font-size: var(--bullet);
  line-height: 1.45;
}


/* right column — CSS phone frame + video */
#ors-gpds .ors-gpds__right {
  flex: 1 ;
  display: grid;
  place-items: center;
}

/* Simple “phone” device */
#ors-gpds .ors-gpds-device {

}
#ors-gpds .ors-gpds-device::before {
  /* notch */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 38%;
  height: 18px;
  /* border-radius: 0 0 14px 14px; */
  /* background: #111; */
}
#ors-gpds .ors-gpds-device__screen {
  width: 100%;
  height: 100%;
  /* border-radius: 28px; */
  overflow: hidden;
  /* background: #000; */
}
#ors-gpds .ors-gpds__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 769px){
  #ors-gpds .ors-gpds__wrap {
 
  grid-template-columns: 1fr ;
  }
  #ors-gpds{
    margin-top: -10px;
            padding: clamp(4rem, 6vw, 64px) 1.5rem  2rem;
  }
  #ors-gpds .ors-gpds__wrap {
    /* flex-direction: column-reverse;    */
    align-items: stretch;
    gap: 3rem;
  }
 #ors-gpds .ors-gpds__right {
  display: grid;
  place-items: unset;
}
}


/* reduced motion — pause background video if the user prefers */
@media (prefers-reduced-motion: reduce) {
  #ors-webdev .ors-webdev__img {
    animation: none;
  }
}






/* ============ Our services — Social Media ============ */
#ors-scmd {
  --pad-x: clamp(16px, 5vw, 96px) 2rem;
  --pad-y: clamp(24px, 6vw, 64px);
  --title: clamp(34px, 7vw, 55px);
  --lead: clamp(18px, 2.4vw, 24px);
  --bullet: clamp(14px, 2.2vw, 18px);
background-color: var(--light);
color: var(--dark);
  padding: var(--pad-y) var(--pad-x);
}

#ors-scmd .ors-scmd__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3.5vw, 48px);
  align-items: stretch; /* keeps columns equal height */
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* left column */
#ors-scmd .ors-scmd__left {
 
  display: grid;
  align-content: start;
  gap: clamp(10px, 2.2vw, 20px);
}
#ors-scmd .ors-scmd__kicker {
  margin: 0;
  font-weight: 500;
}
#ors-scmd .ors-scmd__title {
  margin: 0;
  line-height: 1.05;
  font-size: var(--title);
  
}
#ors-scmd .ors-scmd__lead {
  margin: 0;
  font-size: var(--lead);
  line-height: 1.55;
}

/* bullets */
#ors-scmd .ors-scmd__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1.8vw, 14px);
}
#ors-scmd .ors-scmd__bullets li {
  display: grid;
  grid-template-columns:1fr;
  align-items: center;
  font-size: var(--bullet);
  line-height: 1.45;

}
#ors-scmd .ors-scmd__bullets img {
  width: 18px;
  height: 18px;
}

/* right column — CSS phone frame + video */
#ors-scmd .ors-scmd__right {
  display: grid;
}

/* Simple “phone” device */
#ors-scmd .ors-scmd-device {

}
#ors-scmd .ors-scmd-device::before {
  /* notch */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 38%;
  height: 18px;
  /* border-radius: 0 0 14px 14px; */
  /* background: #111; */
}
#ors-scmd .ors-scmd-device__screen {
  width: 100%;
  height: 100%;
  /* border-radius: 28px; */
  overflow: hidden;
  /* background: #000; */
}
#ors-scmd .ors-scmd__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3rem;
}

#ors-scmd .animated-button-black{
    margin: 2rem auto 0 0 !important;
  
}

/* responsiveness  */


@media (max-width: 769px) {

    #ors-scmd{
        margin-top: -10px;

  }

  #ors-scmd .ors-scmd__wrap {
    /* flex-direction: column-reverse;    */
    align-items: stretch;
    grid-template-columns: 1fr;
  }
    #ors-scmd .ors-scmd__left {
  display: grid;
  align-content: start;
  gap: clamp(10px, 2.2vw, 20px);
}
  #ors-scmd .ors-scmd__right {
    min-width: unset;
    margin-top: 2rem;
  }
  #ors-scmd {
    padding: clamp(4rem, 6vw, 64px) 1.5rem 2rem;
  }
#ors-scmd .animated-button-black{
    margin: 1rem auto 0 0 !important;
  
}

}

/* reduced motion — pause background video if the user prefers */
@media (prefers-reduced-motion: reduce) {
  #ors-scmd .ors-scmd__img {
    animation: none;
  }
}





/* ============ Our services — Still Confused ============ */
#ors-stcn {
  --pad-x: clamp(16px, 5vw, 96px) 2rem;
  --pad-y: clamp(24px, 6vw, 64px);
  --title: clamp(34px, 7vw, 55px);
  --lead: clamp(18px, 2.4vw, 24px);
  --bullet: clamp(14px, 2.2vw, 18px);
background-color: var(--light);
color: var(--dark);
  padding: var(--pad-y) var(--pad-x);
}

#ors-stcn .ors-stcn__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3.5vw, 48px);
  align-items: stretch; /* keeps columns equal height */
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* left column */
#ors-stcn .ors-stcn__left {
 
  display: grid;
  align-content: start;
  gap: clamp(10px, 2.2vw, 20px);
}
#ors-stcn .ors-stcn__kicker {
  margin: 0;
  font-weight: 500;
}
#ors-stcn .ors-stcn__title {
  margin: 0;
  line-height: 1.05;
  font-size: var(--title);
  
}
#ors-stcn .ord-stcn-content__container {
display: flex
;
    flex-direction: column;
    gap: clamp(16px, 2.2vw, 24px);
    background: url(https://cdn.shopify.com/s/files/1/0522/6178/1673/files/still-confused-bg_4cb91e11-899a-4c58-9c35-fd69c5faca42.png?v=1756901568) center / cover no-repeat;
    max-width: 600px;
}
#ors-stcn .ord-stcn-content__container img{
  width: 100%;
}

#ors-stcn .ord-stcn-content__inner {
display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.2vw, 24px);
    padding: clamp(20px, 5.2vw, 5rem);
    align-items: center;
    
}

#ors-stcn .ors-stcn__lead {
  margin: 0;
  font-size: var(--lead);
  line-height: 1.55;
}
/* right column — CSS phone frame + video */
#ors-stcn .ors-stcn__right {
  flex: 1 ;
  display: grid;
  align-items: flex-start;
}

/* Simple “phone” device */
#ors-stcn .ors-stcn-device {

}
#ors-stcn .ors-stcn-device::before {
  /* notch */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 38%;
  height: 18px;
  /* border-radius: 0 0 14px 14px; */
  /* background: #111; */
}
#ors-stcn .ors-stcn-device__screen {
  width: 100%;
  height: 100%;
  /* border-radius: 28px; */
  overflow: hidden;
  /* background: #000; */
}
#ors-stcn .ors-stcn__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ors-stcn__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: .8rem 2rem;
    color: #000;
    background-color: #fff;
    border-radius: 20px;
    text-decoration: none;
    
    margin-top: 1rem;
    width: fit-content;
    font-size: 1.2rem;
}
.ors-stcn__btn img{ width:34px; height:34px; }
.ors-stcn__btn .arrow{ font-size:1.6rem; }

/* responsiveness */
@media (max-width: 769px) {
  #ors-stcn .ors-stcn__wrap {
    /* flex-direction: column-reverse;    */
    align-items: stretch;
    grid-template-columns: 1fr;
  }
  #ors-stcn .ors-stcn__right {
    min-width: unset;
    margin-top: 2rem;
  }
  #ors-stcn {
    padding: clamp(4rem, 6vw, 64px) 1.5rem 2rem;
    margin-top: -10px;
  }

    .ors-stcn__btn {
        padding: .8rem 1rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
  .ors-stcn__btn img{ width:24px; height:24px; }
  .ors-stcn__btn .arrow{ font-size:1.2rem; }

}

/* reduced motion — pause background video if the user prefers */
@media (prefers-reduced-motion: reduce) {
  #ors-stcn .ors-stcn__img {
    animation: none;
  }
}




/* ===== Our services – Footer Video CTA ===== */
#ors-footer-cta {
  --pad-x: clamp(16px, 6vw, 96px);
  --pad-y: clamp(40px, 10vw, 120px);
  --title: clamp(28px, 6.2vw, 64px);
  --body: clamp(16px, 2.2vw, 24px);

  position: relative;
  width: 100%;
  min-height: 60vh; /* footer feel; not full-screen */
  color: #fff;
  overflow: clip;
  isolation: isolate;
  background: #000; /* safe fallback */
}

/* Background video */
#ors-footer-cta .ors-footer-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

/* Subtle gradient for readability */
#ors-footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 90% at 15% 25%,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: -1;
}

/* Overlay container */
#ors-footer-cta .ors-footer-cta__overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: var(--pad-y) var(--pad-x);
}

/* Two-column layout on desktop */
#ors-footer-cta .ors-footer-cta__grid {
  width: min(1400px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 6vw, 80px);
  align-items: start;
}

/* Left title */
#ors-footer-cta .ors-footer-cta__title {
  margin: 0;
  font-size: var(--title);
  line-height: 1.05;
  
  letter-spacing: -0.01em;
}

/* Right copy + link */
#ors-footer-cta .ors-footer-cta__copy {
  margin: 0;
  font-size: var(--body);
  line-height: 1.5;
  text-align: left;
}

#ors-footer-cta .ors-footer-cta__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: opacity 0.2s ease;
}
#ors-footer-cta .ors-footer-cta__link:hover,
#ors-footer-cta .ors-footer-cta__link:focus-visible {
  opacity: 0.85;
  outline: none;
}

@media screen and (max-width: 1100px) {
  #ors-footer-cta {
    min-height: 40vh;
  }
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  #ors-footer-cta {
    min-height: 30vh;
  }
  #ors-footer-cta .ors-footer-cta__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    place-items: center;
  }
}

/* Respect reduced motion / data */
@media (prefers-reduced-motion: reduce) {
  #ors-footer-cta .ors-footer-cta__bg {
    animation: none;
  }
}
@media (prefers-reduced-data: reduce) {
  #ors-footer-cta .ors-footer-cta__bg {
    display: none;
  } /* shows gradient fallback */
}

/* === Toggle Plan Buttons for Mobile Card & Table View === */
#prmd .toggle-buttons {
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  margin-top: 10px;
}

#prmd .toggle-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  background: #ddd;
  font-weight: 100;
  cursor: pointer;
}

#prmd .toggle-buttons button.active {
  border-top:5px solid #00c16e;
  color: black;
}
#prmd.pricing-section{
  padding: 20px;
  margin: auto;
  padding-top: 3rem;
  background-color: var(--light);
  color: var(--dark);
}
/* === Pricing Cards === */
#prmd .pricing-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1400px;
  margin: auto;


}

#prmd .card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: unset;
  height: unset;
}
#prmd .table-row:not(.section-title):hover {
  background-color: #fafafa; /* example color */
  cursor: pointer; /* optional */
}

#prmd .top-info {
  background: #00c16e;
  text-align: center;
  font-weight: 500;
  padding: 10px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  color: white;
      min-height: 60px;

}
#prmd .plus  .top-info {
  background: navy;
}
#prmd .card-content {
  padding: 20px;
  flex: 1;
}

#prmd .card-header {
  text-align: left;
  position: relative;
}

#prmd .plan-name {
  font-size: 22px;
  
  margin: 0;
  display: inline;
}

#prmd .badge {
  background: #2ce19e;
  color: black;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 100;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 4px;
 
}

#prmd .subtitle {
  color: #555;
  font-size: 14px;
  margin: 4px 0 10px;
}

#prmd .price {
  font-size: 24px;
  
  margin-bottom: 4px;
  color: var(--dark);
}

#prmd .price span {
  font-size: 14px;
  font-weight: normal;
  margin-left: 4px;
}

#prmd .billed {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

#prmd .divider {
  border-bottom: 1px solid #ddd;
  margin: 16px 0;
}

#prmd .features h4 {
  font-size: 1.1rem;
  
  margin-bottom: 6px;
}
#prmd .features{
  text-align: left;

}
#prmd .features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

#prmd .features li {
  font-size: 14px;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;

}

#prmd .features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
}

#prmd .card-footer {
  padding: 20px;
  margin-top: auto;          /* keeps footer at bottom */
  display: flex;
  flex-direction: column;    /* 🔑 stack buttons vertically */
  justify-content: flex-start;
  gap: 10px;                 /* space between buttons */

  min-height: 150px;         /* ensures uniform height */
}

#prmd .cta-button {
  background: black;
  color: white;
  text-align: center;
  display: block;
  padding: 12px;
  border-radius: 25px;
  font-weight: 100;
  text-decoration: none;
  
}

#prmd .cta-link {
  color: black;
  text-align: center;
  display: block;
  padding: 12px;
  border-radius: 25px;
  font-weight: 100;
  text-decoration: underline;
    

}

#prmd .show-features-btn{
    border: 1px solid black;
    background: transparent;
    border-radius: 50px;
    padding: 1rem 2rem;;
}
/* === Feature Table Styles === */
#prmd .comparison-table-wrapper.hidden {
  display: none;

}
#prmd .comparison-table-wrapper {
  background-color: #f5fbff;
  padding: 3rem 1rem;
  
  
  
}
#prmd .comparison-table {
  width: 100%;
  margin-top: 20px;
}

#prmd .table-header,
#prmd .table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding: 12px;
}

#prmd .table-header{
    position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ebf1f5; /* ensure it's not transparent */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#prmd .section-title {
  font-weight: 500;
  background-color: #ebf2f6;
  grid-column: span 4;
}

 #prmd .feature-title .inner {
  word-wrap: break-word;   /* allow breaking words */
  white-space: normal;     /* allow wrapping to next line */
    overflow-wrap: anywhere;
    font-size: 14px;
    color: grey;

}
.has-check {
  color: green;
  font-weight: 100;
  font-size: 1.5rem;
}
/* === Column Naming for Toggle Logic === */
#prmd .col-basic {
  grid-column: 2 / 3;
}

.col-grow {
  grid-column: 3 / 4;
}

#prmd .col-advanced {
  grid-column: 4 / 5;
}
#prmd .col-plus {
  grid-column: 5 / 6;
}

#prmd .col-plus {
  grid-column: 5 / 6;
}
#prmd .col-single {
  grid-column: 2 / 6;
}

#prmd .Bottom-info{
    grid-column: 1 / 6;

}
#prmd .col{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Close button explicitly shows minus */
#prmd .show-features-btn.close{
display: none;}
/* === Responsive Behavior === */
@media (max-width: 768px) {
  /* Cards Layout */

#prmd  .pricing-wrapper {
    flex-direction: column;
    align-items: center;
  }
#prmd .toggle-buttons button {
    padding: 8px 16px;
    border: none;
    background: #ffffff;
    font-weight: 100;
    cursor: pointer;
    border-radius: 0 !important;
    border: 1px solid #888;
}
#prmd   .card {
    display: none;
    box-shadow: none;
    width: 100%;
    max-width: none;
  }
 #prmd .top-info{
    border-radius: 0;
  }

#prmd  .card.active {
    display: flex;
  }

  /* Toggle buttons for plan tabs */
#prmd  .toggle-buttons {
    display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
   gap: 0;
   margin: 0;
   padding: 0;
  }

  /* === Comparison Table Mobile Columns === */

  /* Hide all pricing columns by default */
#prmd  .comparison-table .col-basic,
#prmd  .comparison-table .col-grow,
#prmd  .comparison-table .col-advanced,
#prmd    .comparison-table .col-plus  {
    display: none;
  }

  /* Show only the selected plan column */
#prmd  .comparison-table[data-active="basic"] .col-basic,
#prmd  .comparison-table[data-active="grow"] .col-grow,
#prmd  .comparison-table[data-active="advanced"] .col-advanced,
#prmd    .comparison-table[data-active="plus"] .col-plus {
 
    display: flex;
  }

  /* Always show the feature title column */
#prmd  .comparison-table .feature-title {
    display: block;
    padding: 0.5rem 0;
  }

  /* Table row layout for stacking */
#prmd  .comparison-table .table-row,
#prmd  .comparison-table .table-header {
    display: flex;
    flex-wrap: nowrap;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }

#prmd  .comparison-table .feature-title,
#prmd  .comparison-table .col {
    flex: 1 1 100%;
  }

  /* Section titles (e.g., "Core Features") */
#prmd  .comparison-table .section-title {
    width: 100%;
    padding: 1rem 0 0.5rem;
    background-color: #f9f9f9;
  }

/* Shared button styles */
#prmd .show-features-btn {
  width: 100%;
  border: none;
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  border-radius: 0;
  text-align: left !important;
  font-size: 14px;
  position: relative;
  padding-right: 30px; /* space for icon */
  cursor: pointer;
  background: #fff; /* Optional: background to match layout */
}

/* Default icon (plus) */
#prmd .show-features-btn::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #333;
}

/* When button has class "open" → show minus sign */
#prmd .show-features-btn.open::after {
  content: "−";
}

/* Close button explicitly shows minus */
#prmd .show-features-btn.close::after {
  content: "−";
}

/* Hide .plus-icon spans (you’re using pseudo-elements instead) */
#prmd .plus-icon {
  display: none;
}
 #prmd .feature-title .inner {

    font-size: 12px;

}




}

#prmd .tb-h1{
    font-size: 1.8rem;
    
}

#prmd .tb-h2{
    font-size: 1.6rem;
}
#prmd .tb-h3{
    font-size: 1.4rem;
}
#prmd .tb-h4{
    font-size: 1.2rem;
}

@media (max-width: 768px) {
#prmd .tb-h1{
    font-size: 1.4rem;
    
}

#prmd .tb-h2{
    font-size: 1.4rem;
}
#prmd .tb-h3{
    font-size: 1rem;
}
#prmd .tb-h4{
    font-size: 1rem;
}

}



/* Pricing Modal - Ecomm section */
#precomm.ecommerce-section {
  position: relative;
  background-color: var(--light);
  color: var(--dark);
      padding: 5rem 0rem;

}

#precomm .ecommerce-container {
  display: flex;
  gap: 4rem;
  align-items: stretch; /* ✅ Equal height for children */
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;

}

#precomm .ecommerce-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* ✅ Vertical centering */
  text-align: center;
  padding: 2rem;
}

#precomm .ecommerce-text .small-heading {
  margin: 0;
}

#precomm .ecommerce-text .main-heading {
  font-size: 3rem;
  margin: 0.5rem 0;
}

#precomm .ecommerce-text .description {
  margin: 1rem 0;
  line-height: 1.6;
  color: grey;
}

#precomm .ecommerce-text .features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

#precomm .ecommerce-text .features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

#precomm .ecommerce-text .features li img {
  width: 18px;
  height: 18px;
}

#precomm .ecommerce-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: stretch;
}

 #precomm .ecommerce-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
    transform: scaleX(-1); /* horizontal mirror */

}
#precomm .ecommerce-container .animated-button-black{
margin: 1rem auto;
}


@media (max-width: 900px) {

#precomm.ecommerce-section {
    padding: 2rem 0rem;
    overflow-x: hidden; /* prevent horizontal scroll */
  }

#precomm  .ecommerce-container {
    flex-direction: column;
    text-align: center; /* center mobile text */
    gap: 1.5rem;
  }

#precomm  .ecommerce-text {
    padding: 1rem;
    min-width: 0;       /* allows shrinking */
    width: 100%;        /* fit container */
    box-sizing: border-box;
  }

#precomm  .ecommerce-text .main-heading,
#precomm  .ecommerce-text .description,
#precomm  .ecommerce-text .features li {
    overflow-wrap: break-word;
  }
#precomm .ecommerce-text .main-heading{
  font-size: 2rem;;
}
#precomm  .ecommerce-image {
    flex: 1 1 100%; /* allow image to shrink */
    min-width: 0;
    width: 100%;
  }

#precomm  .ecommerce-image img {
    width: 100%;
    height: auto; /* maintain aspect ratio */
    object-fit: contain; /* fully visible */
    display: block;
    transform: scaleX(-1);
  }

#precomm  .ecommerce-container .cta-button {
  background: black;
  color: white;
  text-align: center;
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-weight: 100;
  text-decoration: none;
  width: max-content;
  margin: 10px auto;
  align-items: center;
  display: flex;
  gap: 1rem;
}

#precomm .ecommerce-container .cta-button-text{
  font-size: 1rem;
}
#precomm .ecommerce-container .cta-button-text span{
font-weight: 800;}

#precomm .ecommerce-container .arrow{
  font-size: 1.8rem;
  transform: rotate(-45deg);
}
}

#precomm .pricing-head {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  align-items: center;
}
.pricing-head img{
  max-height: 100px;
}

.pricing-head .tag{

font-size: 1.25rem;
}

@media (max-width : 990px){
.pricing-head {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
.pricing-head img{
  max-height: 50px;
}

.pricing-head .tag{

font-size: 1rem;
}  
}





#prwt.why-trust-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
    background-color: var(--light);
  color: var(--dark);
}

#prwt .container {
  max-width: 1200px;
  margin: 0 auto;
}

#prwt .why-trust-heading {
  font-size: 3rem;
  margin-bottom: 50px;
  color: #000;
  line-height: 1.4;
  text-align: left;
}

#prwt .why-trust-heading span {
  color: #000;
  
}

#prwt .why-trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

#prwt .trust-item {
  flex: 1 1 calc(20% - 30px); /* 5 per row on desktop */
  max-width: 220px;
  text-align: left;
}

#prwt .trust-item img {
  width: 100%;
  margin-bottom: 15px;
}

#prwt .trust-item h3 {
  font-size: 1rem;
  
  margin-bottom: 10px;
  color: #000;
  line-height: 1.4;
}

#prwt .trust-item h3 span {
  
}

#prwt .trust-item p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
 #prwt .why-trust-section {
  padding: 2rem 1rem;
  }
#prwt  .trust-item {
    flex: 1 1 calc(33.33% - 30px); /* 3 per row on tablet */
  }
  
#prwt .why-trust-heading {
  font-size: 2rem;
}
}

@media (max-width: 768px) {
#prwt  .trust-item {
    flex: 1 1 calc(50% - 20px); /* 2 per row on mobile */
  }
}

#prbd.brand-section {
  text-align: center;
  padding: 2rem  6rem 1rem;
  background-color: #fff;
}

#prbd .brand-text {
  font-size:1.5rem;
  color: #333;
  font-weight: 500;
}

#prbd .brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px; /* space between logos */
  flex-wrap: wrap;
}

#prbd .brand-logos img {
  max-height: 120px; /* adjust size to match */
  height: auto;
  display: block;
}


@media (max-width: 990px){
  
#prbd.brand-section {
  text-align: center;
  padding: 1rem  1rem;
  background-color: #fff;
}

#prbd .brand-logos img {
  max-height: 50px; /* adjust size to match */
  height: auto;
  display: block;
}
#prbd .brand-logos{
  gap: 10px;
}
}



#prcon.confused-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
    background-color: var(--light);
  color: var(--dark);
}

#prcon .confused-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 2rem; /* spacing between items */
}

#prcon .confused-text {
  flex: 1 1 50%; /* ✅ takes 50% */
}

#prcon .confused-text h2 {
  font-size: 3rem;
  font-weight: 500;
}

#prcon .confused-text strong {
  
}

#prcon .confused-card {
  flex: 1 1 50%; /* ✅ takes 50% */
  height: 500px;

  
}

#prcon .confused-card-inner{
  background: linear-gradient(135deg, #FFD5B5 0%, /* light peach on top-left */ #FFF5F8 100% /* very light pink/white on bottom-right */);  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
  padding: 0rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 80%;
  margin: auto;
  height: 100%;
}
#prcon .confused-card-inner img{
  width: 100%;
}
#prcon.confused-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

#prcon .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

#prcon .confused-btn {
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#prcon .confused-btn:hover {
  background: #00a0c6;
  color: #fff;
  border-color: #00a0c6;
}

#prcon .card-content{
      margin: auto;
    text-align: center;
}

/* ✅ Responsive */
@media (max-width: 768px) {

  #prcon.confused-section{
    padding: 2rem 1rem;
  }
  #prcon .confused-container {
    flex-direction: column;
  }

  #prcon .confused-text,
  .confused-card {
    flex: 1 1 100%; /* full width on mobile */
    height: 400px;
  }

 #prcon  .confused-card {
    align-items: center;
    text-align: center;
  }

  #prcon .confused-text h2 {
  font-size: 2rem;
  font-weight: 500;
}

 #prcon .confused-card-inner{
  max-width: 100%;
  width: 100%;
}
}



#prfaq.faq-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  background-color: var(--light);
  color: var(--dark);
  margin-top: unset;
}

#prfaq .faq-container {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
}

#prfaq .faq-text {
  flex: 1 1 50%;
}

#prfaq .faq-text h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.2;
  
}

#prfaq .faq-text h2 em {
  font-style: italic;
}

#prfaq .faq-item {
  padding: 0.5rem 0;
  border: unset;
}

#prfaq .faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
}

#prfaq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

#prfaq .faq-answer p, #prfaq .faq-answer ul li{
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #444;
}

#prfaq .faq-item.active .faq-answer {
  max-height:100%; /* enough for text */
  opacity: 1;
}




#prfaq .faq-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  height: 100%;
}

#prfaq .faq-image-inner{
  background: linear-gradient(135deg, #FFD5B5 0%, /* light peach on top-left */ #FFF5F8 100% /* very light pink/white on bottom-right */);  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
  padding: 0rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
width: 80%;  margin: auto auto 0;
  height: 80%;
}

#prfaq .faq-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
}

/* ✅ Responsive */
@media (max-width: 768px) {
#prfaq.faq-section{
    padding: 2rem 1rem;
  }
#prfaq  .faq-container {
    flex-direction: column;
  }

 #prfaq .faq-text, .faq-image {
    flex: 1 1 100%;
  }

#prfaq  .faq-text h2 {
font-size: 2rem;  }

#prfaq  .faq-image {
    margin-top: 2rem;
  }

#prfaq  .faq-image-inner{
    width: 100%;
    min-height: 400px;
  }
}













#prmkt .toggle-buttons {
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  margin-top: 10px;
}

#prmkt .toggle-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  background: #ddd;
  font-weight: 100;
  cursor: pointer;
}

#prmkt .toggle-buttons button.active {
  border-top:5px solid #00c16e;
  color: black;
}
#prmkt.pricing-section{
  padding: 20px;
  margin: auto;
  padding-top: 3rem;
  background-color: var(--light);
  color: var(--dark);
}
/* === Pricing Cards === */
#prmkt .pricing-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 1400px;
  margin: auto;


}

#prmkt .card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: unset;
  height: unset;
}
#prmkt .table-row:not(.section-title):hover {
  background-color: #fafafa; /* example color */
  cursor: pointer; /* optional */
}

#prmkt .top-info {
  background: #00c16e;
  text-align: center;
  font-weight: 500;
  padding: 10px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  color: white;

}
#prmkt .plus  .top-info {
  background: navy;
}
#prmkt .card-content {
  padding: 20px;
  flex: 1;
}

#prmkt .card-header {
  text-align: left;
  position: relative;
}

#prmkt .plan-name {
  font-size: 22px;
  
  margin: 0;
  display: inline;
}

#prmkt .badge {
  background: #2ce19e;
  color: black;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 100;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 4px;
 
}

#prmkt .subtitle {
  color: #555;
  font-size: 14px;
  margin: 4px 0 10px;
}

#prmkt .price {
  font-size: 24px;
  
  margin-bottom: 4px;
  color: var(--dark);
}

#prmkt .price span {
  font-size: 14px;
  font-weight: normal;
  margin-left: 4px;
}

#prmkt .billed {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

#prmkt .divider {
  border-bottom: 1px solid #ddd;
  margin: 16px 0;
}

#prmkt .features h4 {
  font-size: 1.1rem;
  
  margin-bottom: 6px;
}
#prmkt .features{
  text-align: left;

}
#prmkt .features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

#prmkt .features li {
  font-size: 14px;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;

}

#prmkt .features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
}

#prmkt .card-footer {
  padding: 20px;
  margin-top: auto;          /* keeps footer at bottom */
  display: flex;
  flex-direction: column;    /* 🔑 stack buttons vertically */
  justify-content: flex-start;
  gap: 10px;                 /* space between buttons */

  min-height: 150px;         /* ensures uniform height */
}

#prmkt .cta-button {
  background: black;
  color: white;
  text-align: center;
  display: block;
  padding: 12px;
  border-radius: 25px;
  font-weight: 100;
  text-decoration: none;
  
}

#prmkt .cta-link {
  color: black;
  text-align: center;
  display: block;
  padding: 12px;
  border-radius: 25px;
  font-weight: 100;
  text-decoration: underline;
    

}

#prmkt .show-features-btn{
    border: 1px solid black;
    background: transparent;
    border-radius: 50px;
    padding: 1rem 2rem;;
}
/* === Feature Table Styles === */
#prmkt .comparison-table-wrapper.hidden {
  display: none;

}
#prmkt .comparison-table-wrapper {
  background-color: #f5fbff;
  padding: 3rem 1rem;
  
  
  
}
#prmkt .comparison-table {
  width: 100%;
  margin-top: 20px;
}

#prmkt .table-header,
#prmkt .table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 12px;
}

#prmkt .table-header{
    position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ebf1f5; /* ensure it's not transparent */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#prmkt .section-title {
  font-weight: 500;
  background-color: #ebf2f6;
display: block;
}

#prmkt  .feature-title.bottom-section-info{
  grid-column: 1 / 5;
}
 #prmkt .feature-title .inner {
  word-wrap: break-word;   /* allow breaking words */
  white-space: normal;     /* allow wrapping to next line */
    overflow-wrap: anywhere;
    font-size: 14px;
    color: grey;

}
.has-check {
  color: green;
  font-weight: 100;
}
/* === Column Naming for Toggle Logic === */
#prmkt .col-basic {
  grid-column: 2 / 3;
}

.col-grow {
  grid-column: 3 / 4;
}

#prmkt .col-advanced {
  grid-column: 4 / 5;
}

#prmkt .col-single {
  grid-column: 2 / 5;
}

#prmkt .Bottom-info{
    grid-column: 1 / 5;

}
#prmkt .col{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

/* Close button explicitly shows minus */
#prmkt .show-features-btn.close{
display: none;}
/* === Responsive Behavior === */
@media (max-width: 768px) {
  /* Cards Layout */

#prmkt  .pricing-wrapper {
    flex-direction: column;
    align-items: center;
  }
#prmkt .toggle-buttons button {
    padding: 8px 16px;
    border: none;
    background: #ffffff;
    font-weight: 100;
    cursor: pointer;
    border-radius: 0 !important;
    border: 1px solid #888;
}
#prmkt   .card {
    display: none;
    box-shadow: none;
    width: 100%;
    max-width: none;
  }
 #prmkt .top-info{
    border-radius: 0;
  }

#prmkt  .card.active {
    display: flex;
  }

  /* Toggle buttons for plan tabs */
#prmkt  .toggle-buttons {
    display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 0;
   margin: 0;
   padding: 0;
  }

  /* === Comparison Table Mobile Columns === */

  /* Hide all pricing columns by default */
#prmkt  .comparison-table .col-basic,
#prmkt  .comparison-table .col-grow,
#prmkt  .comparison-table .col-advanced,
#prmkt    .comparison-table .col-plus  {
    display: none;
  }

  /* Show only the selected plan column */
#prmkt  .comparison-table[data-active="basic"] .col-basic,
#prmkt  .comparison-table[data-active="grow"] .col-grow,
#prmkt  .comparison-table[data-active="advanced"] .col-advanced,
#prmkt    .comparison-table[data-active="plus"] .col-plus {
 
    display: flex;
  }

  /* Always show the feature title column */
#prmkt  .comparison-table .feature-title {
    display: block;
    padding: 0.5rem 0;
  }

  /* Table row layout for stacking */
#prmkt  .comparison-table .table-row,
#prmkt  .comparison-table .table-header {
    display: flex;
    flex-wrap: nowrap;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }

#prmkt  .comparison-table .feature-title,
#prmkt  .comparison-table .col {
    flex: 1 1 100%;
  }

  /* Section titles (e.g., "Core Features") */
#prmkt  .comparison-table .section-title {
    width: 100%;
    padding: 1rem 0 0.5rem;
    background-color: #f9f9f9;
    display: block;
  }

/* Shared button styles */
#prmkt .show-features-btn {
  width: 100%;
  border: none;
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  border-radius: 0;
  text-align: left !important;
  font-size: 14px;
  position: relative;
  padding-right: 30px; /* space for icon */
  cursor: pointer;
  background: #fff; /* Optional: background to match layout */
}

/* Default icon (plus) */
#prmkt .show-features-btn::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #333;
}

/* When button has class "open" → show minus sign */
#prmkt .show-features-btn.open::after {
  content: "−";
}

/* Close button explicitly shows minus */
#prmkt .show-features-btn.close::after {
  content: "−";
}

/* Hide .plus-icon spans (you’re using pseudo-elements instead) */
#prmkt .plus-icon {
  display: none;
}
 #prmkt .feature-title .inner {

    font-size: 12px;

}




}

#prmkt .tb-h1{
    font-size: 1.8rem;
    
}

#prmkt .tb-h2{
    font-size: 1.6rem;
}
#prmkt .tb-h3{
    font-size: 1.4rem;
}
#prmkt .tb-h4{
    font-size: 1.2rem;
}

@media (max-width: 768px) {
#prmkt .tb-h1{
    font-size: 1.4rem;
    
}

#prmkt .tb-h2{
    font-size: 1.4rem;
}
#prmkt .tb-h3{
    font-size: 1rem;
}
#prmkt .tb-h4{
    font-size: 1rem;
}

}



#contact-form.contact-form-section{
  background-color: white;
  padding: 5rem;
  color: black;
}
/* Progress Bar */
#contact-form  .progress-bar {
  width: 100%;
  height: 5px;
  background: #e5e7eb;
  margin-bottom: 2rem; /* space below bar */
  position: relative;  /* stays inside container */
}

#contact-form  .progress {
  height: 100%;
  width: 0%;
  background: #37404a;
  transition: width 0.4s ease;
}
/* Progress Bar (flush with container edges) */
#contact-form .form-container .progress-bar {
  position: relative;
  left: -2rem;      /* cancel out container padding */
  top: -2rem;       /* move up into padding area */
  width: calc(100% + 4rem); /* expand to cover both left & right padding */
  border-radius: 0; /* flat edges */
  margin-bottom: 2rem; 
}

/* Home Screen */
#contact-form .home-screen {
  width: 100%;
  max-width: 600px;
  margin:  auto;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: center;

  /* animation states */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When visible */
#contact-form .home-screen.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Title */
#contact-form .home-screen h1 {
  font-size: 2rem;
  
  color: #333;
  margin-bottom: 1rem;
}

/* Description */
#contact-form .home-screen p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Description */
#contact-form .home-screen img {
  width: auto;
  max-height: 200px;
}


/* Start Button */
#contact-form #startBtn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  
  color: #fff;
  background: #37404a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#contact-form #startBtn:hover {
  background: #2a3139;
}

#contact-form #startBtn:active {
  transform: scale(0.97);
}

#contact-form .home-screen small {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
}

/* Form Container */
#contact-form .form-container {
  width: 100%;
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: none;
  animation: fade 0.5s ease;
}

#contact-form .form-container.active {
  display: block;
}

/* Form Steps */
#contact-form .form-step {
  display: none;
  animation: fade 0.5s ease;
}


/* Form Steps */
#contact-form .form-step h2{
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

#contact-form .form-step h2.phase-title{
margin: auto;
text-align: center;
  font-size: 1.5rem;
  color: #0a0a0a;
  
}

#contact-form .form-step.active {
  display: block;
}

@keyframes fade {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Inputs */
#contact-form .form-container input,
#contact-form .form-container select,
#contact-form .form-container textarea {
  width: 100%;
  padding: 0.75rem;
  margin: 1rem 0;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box; /* ✅ Prevents overflow */
}

#contact-form .form-container input:focus,
#contact-form .form-container select:focus,
#contact-form .form-container textarea:focus {
  border-bottom: 2px solid #37404a;
}

/* Textarea */
#contact-form .form-container textarea {
  resize: vertical;
  min-height: 80px;
}


/* Buttons */
#contact-form .form-container .button-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

#contact-form .form-container button {
  background: #37404a;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

#contact-form .form-container button:hover {
  background: #2a3139;
  transform: translateY(-2px);
}

#contact-form .form-container button:active {
  transform: scale(0.97);
}

/* Prev Button (20% width) */
#contact-form .form-container .prev-btn {
  flex: 0 0 10%;
  background: #37404a;
  color: #fff;
}

#contact-form .form-container .prev-btn:hover {
  background: #2a3139;
}

/* Next / OK Buttons (take remaining width) */
#contact-form .form-container .next-btn,
#contact-form .form-container .ok-btn,
#contact-form .form-container .submit-btn

 {
  flex: 1;
  background: #37404a;
  color: #fff;
}

#contact-form .form-container .next-btn:hover,
#contact-form .form-container .ok-btn:hover {
  background: #2a3139;
}

/* Error Text */
#contact-form .form-container .error {
  color: red;
  font-size: 0.85rem;
  height: 16px;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}


/* ===== Responsive for screens <= 768px ===== */
@media (max-width: 768px) {
  /* Home Screen */
  #contact-form.contact-form-section{
  background-color: white;
  padding: 2rem;
}
#contact-form  .home-screen {
    padding: 1.5rem;
    border-radius: 12px;
  }

#contact-form  .home-screen img {
    max-height: 150px;
  }

#contact-form  .home-screen h1 {
    font-size: 1.5rem;
  }

#contact-form  .home-screen p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

#contact-form  #startBtn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Form Container */
#contact-form  .form-container {
    margin: 2rem 0rem;
    padding: 1.5rem;
    border-radius: 12px;
  }

#contact-form  .form-container input,
#contact-form  .form-container select,
#contact-form  .form-container textarea {
    font-size: 0.95rem;
    padding: 0.6rem;
  }

#contact-form  .form-step h2 {
    font-size: 1rem;
  }

#contact-form  .form-step h2.phase-title {
    font-size: 1.3rem;
  }

 
  /* Progress bar adjustments */
#contact-form  .form-container .progress-bar {
    left: 0;
    width: 100%;
  }

  /* Textarea */
#contact-form  .form-container textarea {
    min-height: 70px;
  }
}

.case-container {
display: none; 
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* when active */
.case-container.active {
 display: block;
}


.case-study-toggle-btn{
    background: white;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
        margin: 2rem auto;
    display: block;


}


/* From Uiverse.io by gharsh11032000 */ 
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 14px;
  background-color: inherit;
  border-radius: 20px;
  color: white;
  box-shadow: 0 0 0 2px white;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  font-weight: 500;
  text-decoration: none;
  max-width: fit-content;
}
@media (max-width: 769px) {
  .animated-button {
      padding: 8px 20px;
  border: 2px solid;
  border-color: transparent;
  font-size: 10px;
  background-color: inherit;
  border-radius: 6px;
  margin: auto;
  }
  .animated-button svg {
  width: 16px !important;
  }
}
.animated-button svg {
  position: absolute;
  width: 24px;
  fill: white;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px white;
}

.animated-button:hover .circle {
  width:100%;
  height: 100%;
  border-radius: 10px;
  opacity: 1;
}

.animated-button-black {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 14px;
  background-color: inherit;
  border-radius: 20px;
  color: black;
  box-shadow: 0 0 0 2px black;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  font-weight: 500;
  text-decoration: none;
  max-width: fit-content;
}
@media (max-width: 769px) {
  .animated-button-black {
      padding: 8px 20px;
  border: 2px solid;
  border-color: transparent;
  font-size: 10px;
  background-color: inherit;
  border-radius: 6px;
  margin: auto;
  }
  .animated-button-black svg {
  width: 16px !important;
  }
}
.animated-button-black svg {
  position: absolute;
  width: 24px;
  fill: black;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-black .arr-1 {
  right: 16px;
}

.animated-button-black .arr-2 {
  left: -25%;
}

.animated-button-black .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: black;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-black .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-black:hover {
  box-shadow: 0 0 0 12px transparent;
  color: white;
  border-radius: 12px;
}

.animated-button-black:hover .arr-1 {
  right: -25%;
}

.animated-button-black:hover .arr-2 {
  left: 16px;
}

.animated-button-black:hover .text {
  transform: translateX(12px);
}

.animated-button-black:hover svg {
  fill: white;
}

.animated-button-black:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px white;
}

.animated-button-black:hover .circle {
  width:100%;
  height: 100%;
  border-radius: 10px;
  opacity: 1;
}