/* ============================================================
   Claude AI Development Services  (/service/claude-ai-development)
   Anthropic-flavoured warm system: clay orange (#D97757) on cream
   (#FAF9F5) with warm-charcoal bands. BEM-ish `cl-` prefix;
   scroll-reveal armed by `.cl-anim` on <html>.
   Motion: rotating starburst + looping chat card in the hero,
   counting trust numbers, cursor-spotlight service cards, zooming
   solution tiles, dual-direction system marquee, sticky security
   art, scroll-filled process spine, conic ring on the final CTA.
   ============================================================ */

@property --cl-spin {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}

body:has(.cl-page) {
  overflow-x: clip;
}

.cl-page {
  --cl-o: #d97757;
  --cl-o-2: #e8a87c;
  --cl-o-dk: #b8542f;
  --cl-o-soft: #f6e5dc;
  --cl-grad: linear-gradient(118deg, #b8542f 0%, #d97757 45%, #e8a87c 100%);
  --cl-grad-light: linear-gradient(118deg, #f0b89a 0%, #ffd9c2 100%);
  --cl-cream: #faf9f5;
  --cl-cream-2: #f4f0e8;
  --cl-ink: #1f1e1d;
  --cl-body: #6b6862;
  --cl-muted: #97938c;
  --cl-line: #e9e3d8;
  --cl-dark: #1c1a17;
  --cl-dark-2: #262320;
  --cl-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  background: var(--cl-cream);
  color: var(--cl-ink);
  overflow-x: clip;
  font-family: "Poppins", "Inter", system-ui, -apple-system, sans-serif;
}

.cl-page .container {
  max-width: 1240px;
}

.cl-page :where(h1, h2, h3, h4) {
  margin: 0;
  color: var(--cl-ink);
  letter-spacing: -0.015em;
}

/* style.css sets `font-family: Gabarito !important` on every h1-h6 / p /
   body, so this page has to answer in kind to keep its own type. */
.cl-page h1,
.cl-page h2,
.cl-page .cl-serif {
  font-family: "Fraunces", "Gabarito", Georgia, serif !important;
  font-weight: 600;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
}

.cl-page h3,
.cl-page h4,
.cl-page p,
.cl-page li,
.cl-page dt,
.cl-page dd,
.cl-page summary,
.cl-page a,
.cl-page span,
.cl-page strong {
  font-family: "Poppins", "Inter", system-ui, -apple-system, sans-serif !important;
}

.cl-page :where(p) {
  margin: 0;
  color: var(--cl-body);
}

.cl-page :where(ul, ol) {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cl-page :where(img) {
  max-width: 100%;
  height: auto;
}

.cl-page :where(dl, dd) {
  margin: 0;
}

.cl-mono,
.cl-page .cl-mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace !important;
  letter-spacing: 0;
}

.cl-grad-text {
  background: var(--cl-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cl-grad-text--light {
  background: var(--cl-grad-light);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- section furniture ---------- */
.cl-sec-pad {
  padding: clamp(64px, 8vw, 116px) 0;
}

.cl-head {
  max-width: 880px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}

.cl-head--left {
  margin-left: 0;
  text-align: left;
}

.cl-title {
  font-size: clamp(29px, 3.6vw, 47px);
  line-height: 1.12;
}

.cl-sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.78;
}

.cl-head p.cl-sub {
  max-width: 780px;
  margin-inline: auto;
}

.cl-head--left p.cl-sub {
  margin-inline: 0;
}

/* dark bands invert copy */
.cl-band-dark {
  position: relative;
  background: var(--cl-dark);
  color: #fff;
  overflow: hidden;
}

.cl-band-dark :where(h2, h3, h4) {
  color: #fff;
}

.cl-band-dark :where(p) {
  color: rgba(255, 255, 255, 0.68);
}

/* ---------- pill button ---------- */
.cl-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  max-width: 100%;
  padding: 11px 13px 11px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--cl-grad);
  background-size: 160% 160%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(184, 84, 47, 0.28);
  transition:
    box-shadow 0.35s var(--cl-ease),
    transform 0.35s var(--cl-ease),
    background-position 0.6s var(--cl-ease);
}

.cl-btn__label {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
}

.cl-btn__icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--cl-o-dk);
  overflow: hidden;
}

/* two stacked arrows: the first exits top-right as the second flies in
   from bottom-left, so the disc is never empty mid-transition */
.cl-btn__icon svg {
  grid-area: 1 / 1;
  width: 16px;
  height: 16px;
  transition: transform 0.45s var(--cl-ease);
}

.cl-btn__icon svg:last-child {
  transform: translate(-140%, 140%);
}

.cl-btn:hover,
.cl-btn:focus-visible {
  color: #fff;
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(184, 84, 47, 0.36);
}

.cl-btn:hover .cl-btn__icon svg:first-child,
.cl-btn:focus-visible .cl-btn__icon svg:first-child {
  transform: translate(140%, -140%);
}

.cl-btn:hover .cl-btn__icon svg:last-child,
.cl-btn:focus-visible .cl-btn__icon svg:last-child {
  transform: none;
}

.cl-btn--light {
  background: #fff;
  color: var(--cl-o-dk);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.cl-btn--light .cl-btn__icon {
  background: var(--cl-o);
  color: #fff;
}

.cl-btn--light:hover,
.cl-btn--light:focus-visible {
  color: var(--cl-o-dk);
}

.cl-btn--ghost {
  background: transparent;
  border: 1.5px solid var(--cl-line);
  color: var(--cl-ink);
  box-shadow: none;
}

.cl-btn--ghost .cl-btn__icon {
  background: var(--cl-o-soft);
  color: var(--cl-o-dk);
}

.cl-btn--ghost:hover,
.cl-btn--ghost:focus-visible {
  border-color: var(--cl-o);
  color: var(--cl-o-dk);
  box-shadow: 0 12px 28px rgba(184, 84, 47, 0.16);
}

/* ---------- scroll reveal ---------- */
.cl-anim .cl-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--cl-ease),
    transform 0.7s var(--cl-ease);
  will-change: opacity, transform;
}

.cl-anim .cl-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .cl-anim .cl-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cl-page *,
  .cl-page *::before,
  .cl-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.cl-hero {
  position: relative;
  padding: clamp(52px, 7vw, 96px) 0 clamp(56px, 7vw, 100px);
  isolation: isolate;
  overflow: hidden;
}

.cl-hero__bg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 150%;
  background:
    url("../images/claude-development/hero-bg.webp") center top / cover no-repeat;
  opacity: 0.92;
  z-index: -3;
}

.cl-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(250, 249, 245, 0), var(--cl-cream));
  z-index: -2;
}

.cl-hero__noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.5;
  background-image: radial-gradient(rgba(184, 84, 47, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 75%);
}

.cl-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.cl-hero__title {
  font-size: clamp(34px, 5.1vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.cl-hero__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 60;
  background: var(--cl-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cl-hero__text {
  max-width: 560px;
  margin-top: 22px;
  font-size: 16.5px;
  line-height: 1.8;
}

.cl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.cl-hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cl-muted);
  font-size: 13px;
}

.cl-hero__note::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37a169;
  box-shadow: 0 0 0 4px rgba(55, 161, 105, 0.16);
}

/* -- looping chat card -- */
.cl-hero__media {
  position: relative;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  transition: transform 0.5s var(--cl-ease);
}

.cl-hero__rays {
  position: absolute;
  top: -8%;
  right: -6%;
  width: 190px;
  height: 190px;
  background: conic-gradient(from var(--cl-spin), rgba(217, 119, 87, 0.28), rgba(232, 168, 124, 0.05) 30%, rgba(217, 119, 87, 0.28) 60%, rgba(232, 168, 124, 0.05));
  border-radius: 50%;
  filter: blur(22px);
  animation: clConic 14s linear infinite;
  z-index: -1;
}

@keyframes clConic {
  to {
    --cl-spin: 360deg;
  }
}

.cl-chat {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(233, 227, 216, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow:
    0 30px 70px -30px rgba(31, 30, 29, 0.35),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.cl-chat__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cl-line);
}

.cl-chat__bar img {
  width: 22px;
  height: 22px;
}

.cl-chat__bar strong {
  font-size: 13.5px;
  font-weight: 600;
}

.cl-chat__bar span {
  margin-left: auto;
  color: var(--cl-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cl-chat__thread {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  min-height: 258px;
  align-content: start;
}

.cl-chat__msg {
  max-width: 88%;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  opacity: 0;
  animation: clMsg 13s var(--cl-ease) infinite;
  animation-delay: calc(var(--d) * 1s);
}

.cl-chat__msg--user {
  justify-self: end;
  border-bottom-right-radius: 5px;
  background: var(--cl-grad);
  color: #fff;
}

.cl-chat__msg--bot {
  justify-self: start;
  border: 1px solid var(--cl-line);
  border-bottom-left-radius: 5px;
  background: #fff;
  color: var(--cl-ink);
}

.cl-chat__msg--tool {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  padding: 9px 14px;
  border: 1px dashed rgba(217, 119, 87, 0.45);
  border-radius: 999px;
  background: rgba(246, 229, 220, 0.6);
  color: var(--cl-o-dk);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
}

.cl-chat__msg--tool::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cl-o);
  animation: clPulse 1.6s ease-in-out infinite;
}

@keyframes clPulse {
  50% {
    opacity: 0.25;
    transform: scale(0.7);
  }
}

@keyframes clMsg {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  4%,
  84% {
    opacity: 1;
    transform: none;
  }

  92%,
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.cl-chat__caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--cl-o);
  vertical-align: -2px;
  animation: clBlink 1s steps(2) infinite;
}

@keyframes clBlink {
  50% {
    opacity: 0;
  }
}

.cl-chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--cl-line);
}

.cl-chat__chips span {
  padding: 6px 12px;
  border: 1px solid var(--cl-line);
  border-radius: 999px;
  background: var(--cl-cream);
  color: var(--cl-body);
  font-size: 11.5px;
  font-weight: 500;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.cl-trust {
  padding-bottom: clamp(48px, 6vw, 80px);
}

.cl-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(24px, 3vw, 38px) clamp(12px, 2vw, 26px);
  border: 1px solid var(--cl-line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, var(--cl-cream));
  box-shadow: 0 24px 60px -44px rgba(31, 30, 29, 0.5);
}

.cl-trust__cell {
  position: relative;
  padding: 6px clamp(10px, 2vw, 28px);
  text-align: center;
}

.cl-trust__cell + .cl-trust__cell::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 0;
  width: 1px;
  height: 76%;
  background: linear-gradient(180deg, transparent, var(--cl-line), transparent);
}

.cl-trust__num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1;
  background: var(--cl-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cl-trust__lab {
  display: block;
  margin-top: 10px;
  color: var(--cl-body);
  font-size: 13px;
  line-height: 1.5;
}

/* ============================================================
   PRODUCTS (dark band, 6 cards)
   ============================================================ */
.cl-prod::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  width: min(900px, 90%);
  height: 560px;
  translate: -50% 0;
  background: radial-gradient(closest-side, rgba(217, 119, 87, 0.3), transparent);
  filter: blur(20px);
  pointer-events: none;
}

.cl-prod__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cl-prod__card {
  position: relative;
  padding: 30px 26px 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  transition:
    transform 0.45s var(--cl-ease),
    border-color 0.45s ease,
    background 0.45s ease;
}

.cl-prod__card::after {
  content: "";
  position: absolute;
  inset: auto -30% -70% auto;
  right: -30%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 119, 87, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.cl-prod__card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 87, 0.45);
  background: linear-gradient(180deg, rgba(217, 119, 87, 0.12), rgba(255, 255, 255, 0.02));
}

.cl-prod__card:hover::after {
  opacity: 1;
}

.cl-prod__ico {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.cl-prod__ico img {
  width: 26px;
  height: 26px;
}

.cl-prod__card h3 {
  position: relative;
  font-size: 19px;
  font-weight: 600;
}

.cl-prod__card p {
  position: relative;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   WHY CLAUDE (art + checklist)
   ============================================================ */
.cl-why__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.cl-why__media {
  position: relative;
}

.cl-why__media img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 26px;
  animation: clFloat 9s ease-in-out infinite;
}

@keyframes clFloat {
  50% {
    transform: translateY(-14px);
  }
}

.cl-why__media::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 119, 87, 0.35), transparent);
  filter: blur(36px);
}

.cl-why__list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.cl-why__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--cl-line);
  border-radius: 14px;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  transition:
    transform 0.35s var(--cl-ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.cl-why__item:hover {
  transform: translateX(6px);
  border-color: rgba(217, 119, 87, 0.5);
  box-shadow: 0 14px 30px -20px rgba(184, 84, 47, 0.6);
}

.cl-why__check {
  display: grid;
  flex: none;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cl-grad);
  color: #fff;
}

.cl-why__check svg {
  width: 13px;
  height: 13px;
}

/* ============================================================
   MID CTA
   ============================================================ */
.cl-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 4vw, 52px) clamp(26px, 4vw, 56px);
  border-radius: 28px;
  background: var(--cl-dark);
  overflow: hidden;
}

.cl-cta__inner::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 119, 87, 0.55), transparent);
  filter: blur(10px);
}

.cl-cta__copy {
  position: relative;
  max-width: 660px;
}

.cl-cta__title {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 600;
  line-height: 1.18;
  color: #fff;
}

.cl-cta__text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.cl-cta__inner .cl-btn {
  position: relative;
}

/* ============================================================
   SERVICES (8 numbered cards)
   ============================================================ */
.cl-svcs__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cl-svc {
  position: relative;
  padding: 28px 24px 30px;
  border: 1px solid var(--cl-line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.45s var(--cl-ease),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.cl-svc__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(217, 119, 87, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cl-svc:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 87, 0.45);
  box-shadow: 0 26px 50px -34px rgba(184, 84, 47, 0.75);
}

.cl-svc:hover .cl-svc__glow {
  opacity: 1;
}

.cl-svc__num {
  display: block;
  margin-bottom: 16px;
  color: var(--cl-o);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.cl-svc h3 {
  position: relative;
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.35;
}

.cl-svc p {
  position: relative;
  margin-top: 11px;
  font-size: 13.8px;
  line-height: 1.72;
}

.cl-svc__rule {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 18px;
  border-radius: 2px;
  background: var(--cl-grad);
  transition: width 0.45s var(--cl-ease);
}

.cl-svc:hover .cl-svc__rule {
  width: 62px;
}

/* ============================================================
   SOLUTIONS (12 image tiles)
   ============================================================ */
.cl-sol {
  background: linear-gradient(180deg, var(--cl-cream), var(--cl-cream-2));
}

.cl-sol__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cl-sol__card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cl-dark);
  aspect-ratio: 4 / 3.4;
  isolation: isolate;
}

.cl-sol__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s var(--cl-ease),
    filter 0.5s ease;
}

.cl-sol__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 26, 23, 0) 30%, rgba(28, 26, 23, 0.55) 58%, rgba(28, 26, 23, 0.94));
  transition: opacity 0.5s ease;
}

.cl-sol__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 18px 18px 20px;
}

.cl-sol__body h3 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
}

.cl-sol__body p {
  max-height: 0;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.8px;
  line-height: 1.6;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--cl-ease),
    opacity 0.4s ease,
    margin-top 0.5s var(--cl-ease);
}

.cl-sol__card:hover img,
.cl-sol__card:focus-within img {
  transform: scale(1.09);
}

.cl-sol__card:hover .cl-sol__body p,
.cl-sol__card:focus-within .cl-sol__body p {
  max-height: 140px;
  margin-top: 8px;
  opacity: 1;
}

/* ============================================================
   EXPERIENCE  (horizontal slider)
   ============================================================ */
.cl-exp__slider {
  position: relative;
}

.cl-exp__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* room for the card shadow, which `overflow` would otherwise clip */
  padding: 6px 6px 14px;
  margin: -6px -6px -14px;
}

.cl-exp__track::-webkit-scrollbar {
  display: none;
}

.cl-exp__slide {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid var(--cl-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 70px -56px rgba(31, 30, 29, 0.7);
}

.cl-exp__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.cl-exp__media img {
  display: block;
  width: 100%;
  transition: transform 0.8s var(--cl-ease);
}

.cl-exp__slide:hover .cl-exp__media img {
  transform: scale(1.04);
}

.cl-exp__name {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 600;
  line-height: 1.15;
}

.cl-exp__lede {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
}

.cl-exp__psr {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cl-exp__psr > div {
  position: relative;
  padding-left: 20px;
}

.cl-exp__psr > div::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 3px;
  height: calc(100% - 10px);
  border-radius: 2px;
  background: var(--cl-line);
  transition: background 0.4s ease;
}

.cl-exp__slide:hover .cl-exp__psr > div::before {
  background: var(--cl-grad);
}

.cl-exp__psr dt {
  color: var(--cl-o-dk);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cl-exp__psr dd {
  margin-top: 5px;
  color: var(--cl-body);
  font-size: 14px;
  line-height: 1.7;
}

.cl-exp__foot {
  margin-top: 26px;
}

/* ---- slider controls ---- */
.cl-exp__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cl-exp__arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--cl-line);
  border-radius: 50%;
  background: #fff;
  color: var(--cl-ink);
  cursor: pointer;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s var(--cl-ease);
}

.cl-exp__arrow svg {
  width: 19px;
  height: 19px;
}

.cl-exp__arrow:hover {
  transform: scale(1.06);
  border-color: transparent;
  background: var(--cl-grad);
  color: #fff;
  box-shadow: 0 14px 28px -16px rgba(184, 84, 47, 0.9);
}

.cl-exp__dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cl-exp__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--cl-line);
  cursor: pointer;
  transition:
    width 0.4s var(--cl-ease),
    background 0.4s ease;
}

.cl-exp__dot.is-on {
  width: 30px;
  background: var(--cl-grad);
}

/* ============================================================
   SYSTEMS MARQUEE
   ============================================================ */
.cl-sys {
  overflow: hidden;
}

.cl-sys__rail {
  position: relative;
  display: flex;
  gap: 16px;
  width: max-content;
  animation: clMarquee var(--dur, 46s) linear infinite;
}

.cl-sys__rail--rev {
  animation-direction: reverse;
}

.cl-sys__track {
  position: relative;
  /* the rail hover lifts items 4px and casts a shadow - without the
     vertical breathing room `overflow: hidden` shears both off */
  padding: 12px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.cl-sys__track + .cl-sys__track {
  margin-top: -6px;
}

.cl-sys__track:hover .cl-sys__rail {
  animation-play-state: paused;
}

@keyframes clMarquee {
  to {
    transform: translateX(-50%);
  }
}

.cl-sys__item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 310px;
  padding: 16px 20px;
  border: 1px solid var(--cl-line);
  border-radius: 16px;
  background: #fff;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s var(--cl-ease);
}

.cl-sys__item:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 87, 0.45);
  box-shadow: 0 18px 36px -26px rgba(184, 84, 47, 0.8);
}

.cl-sys__item img {
  flex: none;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.cl-sys__item h3 {
  font-size: 15px;
  font-weight: 600;
}

.cl-sys__item p {
  margin-top: 3px;
  font-size: 12.6px;
  line-height: 1.55;
}

/* ============================================================
   TECH STACK
   ============================================================ */
.cl-tech__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cl-tech__col {
  padding: 26px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.4s ease,
    background 0.4s ease;
}

.cl-tech__col:hover {
  border-color: rgba(217, 119, 87, 0.45);
  background: rgba(217, 119, 87, 0.08);
}

.cl-tech__col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cl-tech__col h3 span {
  color: var(--cl-o-2);
  font-size: 12px;
}

.cl-tech__col ul {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.cl-tech__col li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  transition: color 0.3s ease, transform 0.3s var(--cl-ease);
}

.cl-tech__col li img {
  flex: none;
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 9px;
  transition: transform 0.35s var(--cl-ease);
}

.cl-tech__col li:hover {
  color: #fff;
  transform: translateX(4px);
}

.cl-tech__col li:hover img {
  transform: scale(1.12);
}

/* ============================================================
   SCALE (startups / growing / enterprise)
   ============================================================ */
.cl-scale__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cl-scale__card {
  position: relative;
  padding: 32px 28px 34px;
  border: 1px solid var(--cl-line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.45s var(--cl-ease),
    box-shadow 0.45s ease;
}

.cl-scale__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--cl-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--cl-ease);
}

.cl-scale__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -44px rgba(184, 84, 47, 0.85);
}

.cl-scale__card:hover::before {
  transform: scaleX(1);
}

.cl-scale__ico {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--cl-grad);
  box-shadow: 0 16px 30px -18px rgba(184, 84, 47, 0.9);
}

.cl-scale__ico img {
  width: 28px;
  height: 28px;
}

.cl-scale__card h3 {
  font-size: 21px;
  font-weight: 600;
}

.cl-scale__card p {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.75;
}

/* ============================================================
   SECURITY (sticky art + list)
   ============================================================ */
.cl-sec {
  background: linear-gradient(180deg, var(--cl-cream-2), var(--cl-cream));
}

.cl-sec__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(30px, 5vw, 64px);
}

.cl-sec__aside {
  position: sticky;
  top: 110px;
}

.cl-sec__media {
  position: relative;
  margin-top: 30px;
  border-radius: 26px;
}

.cl-sec__media img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 26px;
}

.cl-sec__media::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 119, 87, 0.4), transparent);
  filter: blur(40px);
}

.cl-sec__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cl-sec__item {
  padding: 24px 22px 26px;
  border: 1px solid var(--cl-line);
  border-radius: 18px;
  background: #fff;
  transition:
    transform 0.4s var(--cl-ease),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.cl-sec__item:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 119, 87, 0.45);
  box-shadow: 0 22px 44px -32px rgba(184, 84, 47, 0.85);
}

.cl-sec__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border: 1px solid var(--cl-line);
  border-radius: 14px;
  background: var(--cl-cream);
}

.cl-sec__ico img {
  width: 22px;
  height: 22px;
}

.cl-sec__item h3 {
  font-size: 16.5px;
  font-weight: 600;
}

.cl-sec__item p {
  margin-top: 9px;
  font-size: 13.6px;
  line-height: 1.7;
}

/* ============================================================
   COST
   ============================================================ */
.cl-cost__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--cl-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 34px 80px -64px rgba(31, 30, 29, 0.8);
}

.cl-cost__price {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: var(--cl-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cl-cost__note {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.75;
}

.cl-cost__cta {
  margin-top: 28px;
}

.cl-cost__factors h3 {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cl-muted);
}

.cl-cost__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.cl-cost__chips li {
  padding: 9px 15px;
  border: 1px solid var(--cl-line);
  border-radius: 999px;
  background: var(--cl-cream);
  font-size: 13.2px;
  color: var(--cl-body);
  transition:
    transform 0.3s var(--cl-ease),
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.cl-cost__chips li:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 119, 87, 0.5);
  background: var(--cl-o-soft);
  color: var(--cl-o-dk);
}

/* ============================================================
   PROCESS  (descending staircase)
   ============================================================ */
.cl-proc__flow {
  display: grid;
  gap: 14px;
  max-width: 1060px;
  margin: 0 auto;
}

.cl-step {
  --i: 0;

  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  /* each step drops one notch to the right, so the six read as a stair */
  margin-left: calc(var(--i) * clamp(0px, 2.6vw, 44px));
  margin-right: calc((5 - var(--i)) * clamp(0px, 0.8vw, 14px));
  padding: 24px 30px 26px 22px;
  border: 1px solid var(--cl-line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.5s var(--cl-ease),
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

/* left accent grows top-down once the step is reached */
.cl-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--cl-grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--cl-ease);
}

.cl-step.is-lit {
  border-color: rgba(217, 119, 87, 0.35);
  box-shadow: 0 26px 52px -42px rgba(184, 84, 47, 0.9);
}

.cl-step.is-lit::before {
  transform: scaleY(1);
}

.cl-step:hover {
  transform: translateX(6px);
}

.cl-step__ghost {
  position: absolute;
  top: 50%;
  right: 18px;
  translate: 0 -50%;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--cl-line);
  transition: -webkit-text-stroke-color 0.5s ease;
  pointer-events: none;
  user-select: none;
}

.cl-step.is-lit .cl-step__ghost {
  -webkit-text-stroke-color: rgba(217, 119, 87, 0.3);
}

.cl-step__node {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--cl-line);
  border-radius: 20px;
  background: var(--cl-cream);
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    transform 0.45s var(--cl-ease);
}

.cl-step__node img {
  width: 28px;
  height: 28px;
}

.cl-step.is-lit .cl-step__node {
  transform: rotate(-4deg);
  border-color: transparent;
  background: var(--cl-o-soft);
}

.cl-step__text {
  position: relative;
  padding-right: clamp(0px, 9vw, 140px);
}

.cl-step__num {
  display: block;
  margin-bottom: 7px;
  color: var(--cl-o);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cl-step__text h3 {
  font-size: 19px;
  font-weight: 600;
}

.cl-step__text p {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.72;
}

/* ============================================================
   CHOOSE (dark band, phone art + list)
   ============================================================ */
.cl-choose__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.cl-choose__col {
  display: grid;
  gap: 14px;
}

.cl-choose__media {
  position: relative;
  display: grid;
  place-items: center;
}

.cl-choose__media img {
  position: relative;
  max-width: 300px;
  border-radius: 28px;
  animation: clFloat 8s ease-in-out infinite;
}

.cl-choose__media::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 119, 87, 0.55), transparent);
  filter: blur(24px);
}

.cl-choose__item {
  padding: 22px 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s var(--cl-ease);
}

.cl-choose__item:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 119, 87, 0.45);
  background: rgba(217, 119, 87, 0.1);
}

.cl-choose__item img {
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
}

.cl-choose__item h3 {
  font-size: 16px;
  font-weight: 600;
}

.cl-choose__item p {
  margin-top: 8px;
  font-size: 13.4px;
  line-height: 1.68;
}

@keyframes clSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cl-final {
  padding: clamp(60px, 7vw, 100px) 0;
}

.cl-final__inner {
  position: relative;
  padding: clamp(44px, 6vw, 84px) clamp(24px, 4vw, 60px);
  border: 1px solid var(--cl-line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(250, 249, 245, 0.72), rgba(250, 249, 245, 0.88)),
    url("../images/claude-development/cta-bg.webp") center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.cl-final__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(620px, 116%);
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  background: conic-gradient(from var(--cl-spin), rgba(217, 119, 87, 0.42), transparent 28%, rgba(184, 84, 47, 0.32) 55%, transparent 80%, rgba(217, 119, 87, 0.42));
  mask-image: radial-gradient(closest-side, transparent 72%, #000 73%, #000 77%, transparent 78%);
  -webkit-mask-image: radial-gradient(closest-side, transparent 72%, #000 73%, #000 77%, transparent 78%);
  animation: clConic 18s linear infinite;
}

.cl-final__mark {
  position: relative;
  width: 46px;
  height: 46px;
  margin: 0 auto 22px;
  animation: clSpin 30s linear infinite;
}

.cl-final__title {
  position: relative;
  font-size: clamp(28px, 3.9vw, 50px);
  line-height: 1.12;
}

.cl-final__text {
  position: relative;
  max-width: 660px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.78;
}

.cl-final__inner .cl-btn {
  position: relative;
  margin-top: 30px;
}

/* ============================================================
   FAQ
   ============================================================ */
.cl-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(30px, 5vw, 64px);
}

.cl-faq__aside {
  position: sticky;
  top: 110px;
}

.cl-faq__title {
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.12;
}

.cl-faq__promo {
  margin-top: 28px;
  padding: 28px 26px 30px;
  border-radius: 22px;
  background: var(--cl-dark);
  color: #fff;
}

.cl-faq__promo h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.cl-faq__promo p {
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.cl-faq__list {
  display: grid;
  gap: 12px;
}

.cl-faq__item {
  border: 1px solid var(--cl-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.cl-faq__item[open] {
  border-color: rgba(217, 119, 87, 0.45);
  box-shadow: 0 20px 44px -36px rgba(184, 84, 47, 0.9);
}

.cl-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.5;
  list-style: none;
}

.cl-faq__q::-webkit-details-marker {
  display: none;
}

.cl-faq__mark {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border: 1px solid var(--cl-line);
  border-radius: 50%;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--cl-ease);
}

.cl-faq__mark::before,
.cl-faq__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  translate: -50% -50%;
  border-radius: 2px;
  background: var(--cl-o-dk);
  transition: transform 0.35s var(--cl-ease), background 0.35s ease;
}

.cl-faq__mark::after {
  transform: rotate(90deg);
}

.cl-faq__item[open] .cl-faq__mark {
  border-color: transparent;
  background: var(--cl-grad);
  transform: rotate(180deg);
}

.cl-faq__item[open] .cl-faq__mark::before,
.cl-faq__item[open] .cl-faq__mark::after {
  background: #fff;
}

.cl-faq__item[open] .cl-faq__mark::after {
  transform: rotate(0deg);
}

.cl-faq__a-wrap {
  padding: 0 22px 20px;
}

.cl-faq__a {
  font-size: 14.4px;
  line-height: 1.78;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
  .cl-svcs__grid,
  .cl-sol__grid,
  .cl-tech__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .cl-hero__layout,
  .cl-why__layout,
  .cl-sec__layout,
  .cl-choose__layout,
  .cl-faq__layout,
  .cl-cost__panel,
  .cl-exp__slide {
    grid-template-columns: minmax(0, 1fr);
  }

  .cl-hero__media,
  .cl-why__media {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
  }

  .cl-choose__media {
    order: -1;
  }

  .cl-choose__col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-exp__media {
    order: -1;
  }

  .cl-sec__aside,
  .cl-faq__aside {
    position: static;
  }

  .cl-sec__media {
    max-width: 380px;
    margin-inline: auto;
  }

  .cl-prod__grid,
  .cl-svcs__grid,
  .cl-sol__grid,
  .cl-tech__grid,
  .cl-scale__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .cl-trust__cell:nth-child(odd)::before {
    display: none;
  }

  /* staircase flattens - no indent, icon above the copy */
  .cl-step {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    margin-inline: 0;
    padding: 22px 22px 24px 20px;
  }

  .cl-step__ghost {
    top: 22px;
    translate: 0 0;
    font-size: 54px;
  }

  .cl-step__text {
    padding-right: 0;
  }

  .cl-step:hover {
    transform: none;
  }

  .cl-sol__body p {
    max-height: 140px;
    margin-top: 8px;
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .cl-prod__grid,
  .cl-svcs__grid,
  .cl-tech__grid,
  .cl-scale__grid,
  .cl-sec__list,
  .cl-choose__col {
    grid-template-columns: minmax(0, 1fr);
  }

  .cl-sol__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cl-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cl-chat__thread {
    min-height: 0;
  }

  .cl-sys__item {
    width: 260px;
  }
}

@media (max-width: 479.98px) {
  .cl-sol__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cl-trust__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cl-trust__cell::before {
    display: none !important;
  }

  .cl-btn {
    width: 100%;
    justify-content: space-between;
  }

  .cl-btn__label {
    white-space: normal;
  }

  .cl-hero__actions {
    align-items: stretch;
  }

  .cl-chat {
    padding: 16px;
  }

  .cl-sys__item {
    width: 230px;
    padding: 13px 15px;
  }
}
