

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: none;
  border: none;
  padding: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.reveal.in .tag,
.tag.reveal.in {
  opacity: 1;
}
.tag--dark {
  color: rgba(240,242,244,0.45);
}
.tag--dot::before {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.page-main {
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  overflow: clip;
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: gap var(--t2) var(--ease), opacity var(--t2);
}
.hero__cta-btn:hover { gap: 1.4rem; opacity: 0.7; }
.hero__cta-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(6,14,39,0.88) 0%, rgba(3,8,24,0.72) 100%);
  color: #f0f2f4;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(0,0,0,0.32),
    0 4px 18px rgba(6,14,39,0.30),
    0 1px 4px rgba(0,0,0,0.14);
  transition: background var(--t2) var(--ease), box-shadow var(--t2) var(--ease), transform var(--t2) var(--ease);
}
.hero__cta-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.hero__cta-btn:hover .hero__cta-icon {
  background: linear-gradient(145deg, rgba(8,18,52,0.96) 0%, rgba(4,10,32,0.84) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 6px 28px rgba(6,14,39,0.40),
    0 2px 6px rgba(0,0,0,0.20);
  transform: translateY(4px);
}

.btn--pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 1.4rem;
  border-radius: var(--r-pill);
  position: relative;
  isolation: isolate;
  transition: background var(--t2) var(--ease), color var(--t2), box-shadow var(--t2) var(--ease), border-color var(--t2), transform var(--t2) var(--ease);
}
.btn--dark {
  background: linear-gradient(145deg, rgba(6,14,39,0.88) 0%, rgba(3,8,24,0.72) 100%);
  color: #f0f2f4;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(0,0,0,0.32),
    0 4px 18px rgba(6,14,39,0.30),
    0 1px 4px rgba(0,0,0,0.14);
}
.btn--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.btn--dark:hover {
  background: linear-gradient(145deg, rgba(8,18,52,0.96) 0%, rgba(4,10,32,0.84) 100%);
  border-color: rgba(255,255,255,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 6px 28px rgba(6,14,39,0.40),
    0 2px 6px rgba(0,0,0,0.20);
  transform: translateY(-1px);
}
.btn--accent {
  background: linear-gradient(145deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.66) 100%);
  color: #060e27;
  border: 1px solid rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(200%);
  -webkit-backdrop-filter: blur(18px) saturate(200%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(0,0,0,0.04),
    0 4px 18px rgba(0,0,0,0.12),
    0 1px 4px rgba(0,0,0,0.08);
}
.btn--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.btn--accent:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.82) 100%);
  border-color: rgba(255,255,255,0.90);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 6px 28px rgba(0,0,0,0.16),
    0 2px 6px rgba(0,0,0,0.10);
  transform: translateY(-1px);
}
.btn--outline {
  background: linear-gradient(145deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.16) 100%);
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.12);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.70),
    inset 0 -1px 0 rgba(0,0,0,0.06),
    0 2px 12px rgba(0,0,0,0.08);
}
.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.30) 0%, transparent 55%);
  pointer-events: none;
}
.btn--outline:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0.28) 100%);
  border-color: rgba(0,0,0,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.80),
    0 4px 18px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}
.btn--outline-light {
  background: linear-gradient(145deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 100%);
  color: rgba(240,242,244,0.9);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 2px 10px rgba(0,0,0,0.16);
}
.btn--outline-light:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.10) 100%);
  border-color: rgba(255,255,255,0.34);
  transform: translateY(-1px);
}

@keyframes glowDrift {
  0%, 100% { transform: translateX(-22%) translateY(8%)  scale(1);    opacity: 0.55; }
  50%       { transform: translateX(22%)  translateY(-8%) scale(1.18); opacity: 1;    }
}
@keyframes glowDrift2 {
  0%, 100% { transform: translateX(18%)  translateY(-12%) scale(1);   opacity: 0.35; }
  33%       { transform: translateX(-10%) translateY(6%)  scale(1.1);  opacity: 0.7;  }
  66%       { transform: translateX(-20%) translateY(-4%) scale(0.95); opacity: 0.5;  }
}
@keyframes glowDrift3 {
  0%, 100% { transform: translate(-30%, 20%) scale(1);   opacity: 0.2; }
  50%       { transform: translate( 30%, -10%) scale(1.2); opacity: 0.45; }
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 0.9;  }
}

.hero {
  min-height: 100svh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 2;
}
.hero::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
}
.hero::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

.hero__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 3;
}

.hero__eyebrow {
  margin-bottom: 2rem;
}
.hero__eyebrow-logo {
  height: 44px;
  width: auto;
  display: inline-block;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.8vw, 5.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.hero__heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}
#convertWord { font-style: normal; }

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__reel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-subtle);
  transition: color var(--t1);
}
.hero__reel-btn:hover { color: var(--text); }
.hero__reel-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: grid;
  place-items: center;
  color: #f0f2f4;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--t2);
}
.hero__reel-btn:hover .hero__reel-icon { background: #3a3a3d; }

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  
  background-image: radial-gradient(circle, rgba(3,64,255,0.55) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  background-position: center center;
  animation: gridPulse 8s ease-in-out infinite;
}

.hero__glow::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 130%;
  top: -15%;
  left: 0%;
  background: radial-gradient(ellipse 55% 45% at 50% 50%,
    rgba(3,64,255,0.32) 0%,
    rgba(18,91,255,0.14) 38%,
    transparent 65%
  );
  animation: glowDrift 13s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero__glow::after {
  content: '';
  position: absolute;
  width: 75%;
  height: 95%;
  top: 2%;
  left: 12%;
  background: radial-gradient(ellipse 48% 40% at 50% 50%,
    rgba(18,91,255,0.22) 0%,
    rgba(3,64,255,0.08) 42%,
    transparent 68%
  );
  animation: glowDrift2 17s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero__glow-orb {
  position: absolute;
  width: 65%;
  height: 85%;
  bottom: -15%;
  right: -5%;
  background: radial-gradient(ellipse 52% 52% at 60% 60%,
    rgba(3,64,255,0.20) 0%,
    rgba(18,91,255,0.08) 48%,
    transparent 72%
  );
  animation: glowDrift3 19s ease-in-out infinite;
  will-change: transform, opacity;
}

.intro {
  background: var(--bg);
  padding: 7rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: clip;
}
.intro__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.intro__text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  letter-spacing: -0.01em;
}
.intro__reel {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-dark);
  color: #f0f2f4;
  border-radius: var(--r-pill);
  padding: 0.6rem 1.5rem 0.6rem 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--t2);
}
.intro__reel:hover { background: #3a3a3d; }
.intro__reel-thumb {
  width: 56px; height: 40px;
  border-radius: 50px;
  background: var(--bg-lavender);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.intro__reel-thumb::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.values {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.values__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.values__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 5rem 3.5rem 5rem 0;
  border-right: 1px solid var(--border);
  position: relative;
}
.values__icon-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 0;
  pointer-events: none;
  color: var(--text);
  opacity: 0;
}
.values__icon-bg svg {
  width: 200px;
  height: 200px;
  stroke-width: 1;
}
.values__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--text);
  transition: width 0.8s var(--ease);
}
.values__item.in::before { width: 2.5rem; }

.values__item:first-child { padding-left: 0; }
.values__item:last-child  { border-right: none; padding-right: 0; padding-left: 3.5rem; }
.values__item:not(:first-child):not(:last-child) { padding-left: 3.5rem; }

.values__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}
.values__body {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  color: var(--text-subtle);
}

.marquee-bar {
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
}
.marquee__item::after {
  content: '✦';
  font-size: 0.65rem;
  color: var(--accent);
}

.about {
  background: var(--bg);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,100,255,0.18) 0%, transparent 68%);
  top: -180px; left: -120px;
  pointer-events: none;
}
.about::after {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60,130,255,0.14) 0%, transparent 68%);
  bottom: -120px; right: 4%;
  pointer-events: none;
}
.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}
.about__canvas {
  position: relative;
  min-height: 660px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background: linear-gradient(
    155deg,
    rgba(255,255,255,0.80) 0%,
    rgba(220,228,255,0.58) 100%
  );
  backdrop-filter: blur(52px) saturate(220%);
  -webkit-backdrop-filter: blur(52px) saturate(220%);

  border: 1px solid rgba(255,255,255,0.95);
  border-bottom-color: rgba(160,175,230,0.40);

  box-shadow:
    0  2px 0  rgba(255,255,255,1)      inset,
    0 -1px 0  rgba(120,140,220,0.18)   inset,
    0 40px 100px rgba(10,20,80,0.10),
    0  8px  24px rgba(10,20,80,0.06);
}
.about__canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.62) 0%,
    rgba(255,255,255,0.06) 36%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 0;
}
.about__text {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 5rem 2rem;
}
.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
.about__heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.about__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-subtle);
  max-width: 420px;
}

@media (max-width: 768px) {
  .about__canvas { min-height: auto; padding: 3rem 1.5rem; }
  .about__text { padding: 1.5rem 0 2rem; }
}

.services {
  background: var(--bg);
  padding: 8rem 0;
}
.services__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 6rem;
  align-items: start;
}
.services__left {
  position: sticky;
  top: calc(var(--nav-h) + 2.5rem);
}
.services__heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.services__sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-subtle);
}

.services__cards { display: flex; flex-direction: column; gap: 2.5rem; }

.services__entry { display: flex; flex-direction: column; gap: 0; }

.services__card {
  background: var(--bg-white);
  border-radius: var(--r-card);
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
}
.services__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.services__card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.services__card-arrow {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--text-subtle);
  text-decoration: none;
  transition: background var(--t2), border-color var(--t2), color var(--t2), transform var(--t2) var(--ease);
}
.services__card:hover .services__card-arrow {
  background: var(--text);
  border-color: var(--text);
  color: #f0f2f4;
  transform: rotate(45deg);
}
.services__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.services__card-list li {
  font-size: 0.95rem;
  color: var(--text-subtle);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t1), padding-left var(--t2) var(--ease);
}
.services__card:hover .services__card-list li:hover { color: var(--text); padding-left: 0.5rem; }

.work {
  background: var(--bg-white);
  padding: 8rem 0 0;
  position: relative;
}
.work__header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  margin-bottom: 3rem;
}
.work__heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1rem;
}
.work__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--text); }
.work__sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-subtle);
  max-width: 52ch;
}
.work__gallery-wrap {
  overflow: hidden;
}
.work__gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  list-style: none;
  padding: 0 max(var(--pad), calc((100% - 1060px) / 2));
  gap: 20px;
  scroll-padding-inline: max(var(--pad), calc((100% - 1060px) / 2));
}
.work__gallery::-webkit-scrollbar { display: none; }

.work__card {
  flex: 0 0 min(calc(100vw - var(--pad) * 3), 440px);
  scroll-snap-align: center;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  background:
    linear-gradient(160deg, hsla(calc(var(--card-hue,220deg) + 20deg) 60% 72% / 0.55) 0%, transparent 55%),
    hsl(var(--card-hue, 220deg) 40% 32%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: box-shadow 0.5s var(--ease);
}
.work__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)   0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}
.work__card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}
.work__card-cat {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.14);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.7rem;
  align-self: flex-start;
}
.work__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.work__card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.work__card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 34ch;
}
.work__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  margin-top: 0.25rem;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.work__card-link:hover { gap: 0.75rem; color: #fff; }

.work__dotnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--pad) 5rem;
}
.work__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.work__dot {
  height: 6px;
  width: 8px;
  min-width: 8px;
  border-radius: 10px;
  background: rgba(42, 42, 45, 0.18);
  border: none;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: width 0.4s cubic-bezier(0.33, 0, 0.67, 1);
  cursor: pointer;
  flex-shrink: 0;
}
.work__dot--active {
  width: 48px;
  min-width: 48px;
}
.work__dot-fill {
  display: none;
}
/* ── Shared liquid-glass arrow button ── */
.work__arrow {
  display: grid;
  place-items: center;
  cursor: pointer;
  isolation: isolate;
  position: relative;
  background:
    linear-gradient(140deg,
      rgba(255,255,255,0.52) 0%,
      rgba(255,255,255,0.18) 100%);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.60),
    inset 0 -1px 0 rgba(0,0,0,0.04),
    0 2px 10px rgba(0,0,0,0.10),
    0 1px 2px rgba(0,0,0,0.08);
  color: var(--text);
  transition:
    background var(--t2) var(--ease),
    box-shadow var(--t2) var(--ease),
    transform var(--t2) var(--ease),
    border-color var(--t2);
}
.work__arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.35) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.work__arrow:hover {
  background:
    linear-gradient(140deg,
      rgba(255,255,255,0.70) 0%,
      rgba(255,255,255,0.32) 100%);
  border-color: rgba(255,255,255,0.60);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.75),
    0 4px 18px rgba(0,0,0,0.14),
    0 1px 3px rgba(0,0,0,0.10);
  transform: scale(1.07);
}
.work__arrow:active {
  transform: scale(0.96);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 1px 4px rgba(0,0,0,0.10);
}

.work__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}
.work__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.work__arrow svg {
  width: 14px; height: 14px;
  display: block;
}

.clients {
  background: var(--bg-white);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.clients::before {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,90,255,0.11) 0%, transparent 68%);
  bottom: -160px; left: -80px;
  pointer-events: none;
}
.clients::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50,130,255,0.10) 0%, transparent 68%);
  top: -100px; right: -60px;
  pointer-events: none;
}
.clients__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}
.clients__top {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 5rem;
}
.clients__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
.clients__sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-subtle);
  max-width: 48ch;
}
.clients__canvas {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 36px;
  padding: 5rem clamp(2rem, 5vw, 5rem);
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));

  background: linear-gradient(
    155deg,
    rgba(255,255,255,0.80) 0%,
    rgba(220,228,255,0.55) 100%
  );
  backdrop-filter: blur(52px) saturate(220%);
  -webkit-backdrop-filter: blur(52px) saturate(220%);

  border: 1px solid rgba(255,255,255,0.95);
  border-bottom-color: rgba(160,175,230,0.40);

  box-shadow:
    0  2px 0  rgba(255,255,255,1)     inset,
    0 -1px 0  rgba(120,140,220,0.18)  inset,
    0 40px 100px rgba(10,20,80,0.10),
    0  8px  24px rgba(10,20,80,0.06);
}
.clients__canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.62) 0%,
    rgba(255,255,255,0.05) 36%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 0;
}
.clients__top,
.clients__logos {
  position: relative;
  z-index: 1;
}

.clients__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 3rem 2rem;
  padding-top: 1rem;
}
.clients__logos img {
  justify-self: center;
  height: 40px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  display: block;
  pointer-events: none;
}

.process {
  background: #060e27;
  padding: 9rem 0;
  position: relative;
  overflow: clip;
}
.process::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,91,255,0.14) 0%, transparent 65%);
  top: -280px; left: -180px;
  pointer-events: none;
}
.process::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,40,255,0.10) 0%, transparent 65%);
  bottom: -160px; right: -100px;
  pointer-events: none;
}
.process__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}
.process__header {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.process__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #f0f2f4;
}
.process__heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: rgba(110,170,255,0.9);
}
.process__sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(240,242,244,0.48);
  max-width: 52ch;
}
.process__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.process__cards::before {
  content: '';
  position: absolute;
  top: 3.4rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(18,91,255,0.25) 15%,
    rgba(18,91,255,0.25) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
.process__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-card);
  padding: 2.25rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
  transition: background var(--t2), border-color var(--t2), transform var(--t2) var(--ease);
}
.process__card:hover {
  background: rgba(18,91,255,0.09);
  border-color: rgba(18,91,255,0.28);
  transform: translateY(-3px);
}
.process__card-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(18,91,255,0.16);
  border: 1px solid rgba(18,91,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(110,170,255,0.95);
  flex-shrink: 0;
}
.process__card-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.process__card-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(18,91,255,0.65);
  display: block;
}
.process__card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f0f2f4;
  line-height: 1.25;
}
.process__card-body {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(240,242,244,0.48);
}
.process__cta {
  text-align: center;
  margin-top: 4.5rem;
}

.team {
  background: var(--bg-white);
  padding: 7rem 0;
}
.team__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.team__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}
.team__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}
.team__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--text); }
.team__sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-subtle);
  align-self: end;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--bg);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
}
.team-card__photo {
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, #dde0f8 0%, #c8ccf0 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card__info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
  text-transform: uppercase;
}

.blog {
  background: var(--bg);
  padding: 7rem 0;
  position: relative;
  overflow: clip;
}
.blog__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.blog__masthead {
  margin-bottom: 4rem;
}
.blog__masthead-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.blog__vol {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  white-space: nowrap;
  flex-shrink: 0;
}
.blog__masthead-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.blog__topics {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.blog__topic {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}
.blog__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.blog__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
}
.blog__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 300; color: var(--text); }
.blog__header-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 0.25rem;
}
.blog__header-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-subtle);
  max-width: 42ch;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg-white);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t2) var(--ease), box-shadow var(--t2);
  position: relative;
}
.blog-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.blog-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #dde0f8 0%, #c8ccf0 100%);
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); display: block; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-card__cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  
  color: var(--text-subtle);
}
.blog-card__date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-subtle);
}
.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.blog-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-subtle);
}

/* ── Location / Contact ─────────────────────────────────────────────────── */
.location {
  background: var(--bg);
  padding: 7rem 0 4rem;
}
.location__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.location__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.location__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-top: 1rem;
}
.location__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.location__body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
}
.location__strip {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.location__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-subtle);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
  transition: color var(--t2), background var(--t2);
  flex: 1;
  white-space: nowrap;
}
.location__contact-item:last-child { border-right: none; }
.location__contact-item:hover { color: var(--text); background: rgba(18,91,255,0.04); }
.location__contact-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form {
  background: var(--bg-white);
  border-radius: var(--r-card);
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form__field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color var(--t1), box-shadow var(--t1);
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: rgba(89,89,117,0.45); }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: #125bff;
  box-shadow: 0 0 0 3px rgba(18,91,255,0.1);
}
.contact-form__select-wrap { position: relative; }
.contact-form__select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  translate: 0 -50%;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-subtle);
  pointer-events: none;
}
.contact-form__field textarea { line-height: 1.6; }
.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.contact-form__wa-or {
  font-size: 0.78rem;
  color: var(--text-subtle);
  flex-shrink: 0;
  line-height: 1;
}

.location__map-wrap {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-lavender);
}
.location__map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.location__map-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(6,14,39,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.location__map-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(240,242,244,0.95);
  margin-bottom: 0.25rem;
}
.location__map-card-addr {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(240,242,244,0.50);
  margin-bottom: 1rem;
}
.location__map-card-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(100,150,255,0.90);
  text-decoration: none;
  transition: color var(--t2);
}
.location__map-card-link:hover { color: #6496ff; }

.contact-form__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: #075e54;
  background: linear-gradient(145deg, rgba(18,140,126,0.24) 0%, rgba(18,140,126,0.10) 100%);
  border: 1px solid rgba(18,140,126,0.32);
  border-radius: 100px;
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.40),
    inset 0 -1px 0 rgba(0,0,0,0.06),
    0 3px 14px rgba(18,140,126,0.14),
    0 1px 3px rgba(0,0,0,0.08);
  transition: background var(--t2) var(--ease), border-color var(--t2), box-shadow var(--t2) var(--ease), transform var(--t2) var(--ease);
}
.contact-form__wa-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.28) 0%, transparent 55%);
  pointer-events: none;
}
.contact-form__wa-btn:hover {
  background: linear-gradient(145deg, rgba(18,140,126,0.36) 0%, rgba(18,140,126,0.18) 100%);
  border-color: rgba(18,140,126,0.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.50),
    0 5px 20px rgba(18,140,126,0.22),
    0 2px 6px rgba(0,0,0,0.10);
  transform: translateY(-1px);
}
.contact-form__wa-btn svg {
  width: 17px; height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Reviews / Google testimonials ── */
.reviews {
  background: #060e27;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center,
    rgba(255, 220, 80, 0.07) 0%,
    rgba(255, 150, 0, 0.04) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.reviews::after {
  content: '';
  position: absolute;
  bottom: -12%;
  left: -6%;
  width: 48%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center,
    rgba(18, 91, 255, 0.10) 0%,
    rgba(18, 91, 255, 0.04) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.reviews__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.reviews__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  margin-bottom: 4rem;
}
.reviews__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(240,242,244,0.95);
  margin-top: 1rem;
}
.reviews__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.reviews__score-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.reviews__score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviews__score-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(240,242,244,0.95);
}
.reviews__score-right {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.reviews__score-stars {
  font-size: 1rem;
  color: #fbbf24;
  letter-spacing: 0.1em;
}
.reviews__score-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(240,242,244,0.40);
}
.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(240,242,244,0.40);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 0.35rem 0.85rem 0.35rem 0.6rem;
}
.reviews__badge-icon { width: 14px; height: 14px; flex-shrink: 0; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.reviews__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background var(--t2), border-color var(--t2);
}
.reviews__card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.reviews__card--featured {
  grid-column: span 3;
}
.reviews__card-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(240,242,244,0.72);
  flex: 1;
}
.reviews__card--featured .reviews__card-quote {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: rgba(240,242,244,0.85);
}
.reviews__card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviews__card-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(18,91,255,0.18);
  border: 1px solid rgba(18,91,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(240,242,244,0.65);
  flex-shrink: 0;
}
.reviews__card-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(240,242,244,0.85);
}
.reviews__card-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(240,242,244,0.35);
  margin-top: 0.15rem;
}
.reviews__cta { text-align: center; }

.footer {
  background: #060e27;
  padding: 6rem 0 3rem;
  position: sticky;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

/* ── Footer ambient blobs ── */
.footer__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(80px);
  opacity: 0;
  animation: blobFadeIn 1.2s ease forwards;
}
.footer__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(18, 91, 255, 0.28) 0%, transparent 70%);
  bottom: -200px; left: -100px;
  animation-delay: 0.1s;
}
.footer__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6, 50, 200, 0.22) 0%, transparent 70%);
  bottom: -150px; right: -80px;
  animation-delay: 0.3s;
}
.footer__blob--3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(80, 140, 255, 0.18) 0%, transparent 70%);
  bottom: 40px; left: 40%;
  animation-delay: 0.5s;
}
@keyframes blobFadeIn {
  to { opacity: 1; }
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 4rem;
}
.footer__cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #f0f2f4;
}
.footer__cta-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(240,242,244,0.6);
}
.footer__newsletter {
  flex-shrink: 0;
  max-width: 360px;
}
.footer__nl-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240,242,244,0.45);
  margin-bottom: 0.75rem;
}
.footer__nl-form {
  display: flex;
  gap: 0.5rem;
}
.footer__nl-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: 0.65rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #f0f2f4;
  outline: none;
  transition: border-color var(--t1), background var(--t1);
}
.footer__nl-input::placeholder { color: rgba(240,242,244,0.3); }
.footer__nl-input:focus {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
}
.footer__nl-btn {
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: var(--r-pill);
  padding: 0.65rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--t1);
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}
.footer__nl-btn:hover { background: #ffffff; }

.footer__mid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2.5rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.footer__bulb { height: 110px; width: auto; display: block; }
.footer__bulb .logo-bulb { fill: rgba(240, 242, 244, 0.82); }
.footer__bulb .logo-rays { fill: rgba(240, 242, 244, 0.18); }
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(240,242,244,0.4);
  max-width: 220px;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,242,244,0.35);
  margin-bottom: 1rem;
}
.footer__col-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col-link {
  font-size: 0.875rem;
  color: rgba(240,242,244,0.55);
  transition: color var(--t1);
}
.footer__col-link:hover { color: #f0f2f4; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(240,242,244,0.3);
}
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(240,242,244,0.3);
  transition: color var(--t1);
}
.footer__bottom-link:hover { color: rgba(240,242,244,0.7); }

.nav--light .nav__burger span { background: var(--text); }

/* ── FAQ accordion ── */
.faq {
  background: var(--bg);
  padding: 6rem 0 5rem;
}
.faq__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.faq__header {
  margin-bottom: 3rem;
}
.faq__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-top: 0.75rem;
}
.faq__heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.faq__list {
  border-top: 1px solid var(--border);
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.35rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s;
}
.faq__q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text-subtle);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s;
  flex-shrink: 0;
}
.faq__q[aria-expanded="true"] { color: #125bff; }
.faq__q[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: #125bff;
}

/* height animated by JS via scrollHeight — no snapping, no max-height cap */
.faq__a {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__a-inner {
  font-size: 0.95rem;
  color: var(--text-subtle);
  line-height: 1.7;
  padding-bottom: 1.5rem;
}

/* ── Section divider ── */
.section-divider {
  background: var(--bg);
  padding: 2.5rem var(--pad);
}
.section-divider::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border) 20%,
    var(--border) 80%,
    transparent 100%
  );
}

@media (max-width: 1024px) {
  .services__inner { grid-template-columns: 1fr; gap: 3rem; }
  .services__left { position: static; }
  .services__heading { font-size: clamp(2.5rem, 6vw, 4rem); }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__heading { position: static; }
  .about__cols { flex-direction: row; gap: 2rem; }
  .values__inner { grid-template-columns: repeat(2, 1fr); }
  .values__item:last-child { border-right: none; border-top: 1px solid var(--border); grid-column: span 2; padding: 3rem 0 3rem 0; }
  .footer__mid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
  .clients__logos { grid-template-columns: repeat(4, 1fr); gap: 2rem 2.5rem; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .intro__text { font-size: 1.1rem; }
  .values__inner { grid-template-columns: 1fr; }
  .values__item { border-right: none; border-top: 1px solid var(--border); padding: 2.5rem 0; grid-column: auto !important; }
  .values__item:first-child { border-top: none; }
  .about__cols { flex-direction: column; }
  .clients__canvas {
    margin-left: 0;
    margin-right: 0;
    border-radius: 24px;
    padding: 3rem 1.75rem;
  }
  .clients__logos { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.5rem; }
  .clients__logos img { height: 28px; max-width: 100px; }
  .process__cards { grid-template-columns: repeat(2, 1fr); }
  .process__cards::before { display: none; }
  .team__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: 1fr; }
  .blog__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog__topics { display: none; }
  .reviews__header { grid-template-columns: 1fr; gap: 2rem; }
  .reviews__score-block { align-items: flex-start; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__card--featured { grid-column: span 2; }
  .location__head { grid-template-columns: 1fr; gap: 2rem; }
  .location__strip { flex-wrap: wrap; }
  .location__contact-item { flex: none; width: 50%; }
  .location__contact-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .location__contact-item:nth-child(even) { border-right: none; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map-wrap { min-height: 320px; }
  .location__map-card { bottom: 1rem; left: 1rem; min-width: 0; padding: 1rem 1.25rem; }
  .contact-form { padding: 2rem; }
  .contact-form__row { grid-template-columns: 1fr; }
  .footer__mid { grid-template-columns: 1fr 1fr; }
  .footer__cta-heading { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 500px) {
  .clients__logos { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
  .clients__logos img { height: 26px; max-width: 100px; }
  .process__cards { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .footer__mid { grid-template-columns: 1fr; }
  .footer__nl-form { flex-direction: column; }
  .location__contact-item { width: 100%; border-right: none !important; }
  .location__map-wrap { min-height: 260px; }
  .location__map-card { display: none; }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__card--featured { grid-column: 1; }
}

/* ── Legal page prose ── */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--pad);
  background: #060e27;
  position: sticky;
  top: 0;
  z-index: 100;
}
.legal-nav__back {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(240,242,244,0.5);
  text-decoration: none;
  transition: color var(--t1);
}
.legal-nav__back:hover { color: #f0f2f4; }
.legal-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #f0f2f4;
  font-size: 0.9rem;
  font-weight: 500;
}
.legal-nav__logo img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.legal-nav__lang {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  letter-spacing: 0.08em;
  color: rgba(240,242,244,0.5);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  transition: color var(--t1), border-color var(--t1);
}
.legal-nav__lang:hover { color: #f0f2f4; border-color: rgba(255,255,255,0.4); }

.legal-main {
  flex: 1;
  background: var(--bg, #f5f5f7);
  padding: clamp(3rem, 8vw, 5rem) var(--pad);
}
.legal-article {
  max-width: 720px;
  margin: 0 auto;
}
.legal-article .tag {
  margin-bottom: 1rem;
}
.legal-article h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.legal-article h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-article h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-article h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-article p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}
.legal-article p strong { color: var(--text); font-weight: 600; }
.legal-article a { color: var(--accent-blue, #125bff); }
.legal-article ul, .legal-article ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.legal-article li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-subtle);
  margin-bottom: 0.35rem;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1.25rem 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.legal-table th {
  background: #060e27;
  color: rgba(240,242,244,0.85);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 400;
}
.legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-subtle);
  background: #fff;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  background: rgba(18,91,255,0.07);
  color: #125bff;
  padding: 0.1em 0.35em;
  border-radius: 4px;
}
.legal-footer {
  background: #060e27;
  padding: 1.5rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.legal-footer__copy {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  letter-spacing: 0.04em;
  color: rgba(240,242,244,0.30);
}
.legal-footer__links {
  display: flex;
  gap: 1.5rem;
}
.legal-footer__links a {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  letter-spacing: 0.04em;
  color: rgba(240,242,244,0.30);
  text-decoration: none;
  transition: color var(--t1);
}
.legal-footer__links a:hover { color: rgba(240,242,244,0.75); }

/* ── Cookie consent banner ─────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
  background: linear-gradient(135deg, rgba(6,14,39,0.96) 0%, rgba(3,8,24,0.94) 100%);
  border-top: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.30);
  transition: bottom 0.45s cubic-bezier(0.22,1,0.36,1);
}
.cookie-banner--visible { bottom: 0; }

.cookie-banner__text {
  font-size: 0.88rem;
  color: rgba(240,242,244,0.80);
  flex: 1;
  min-width: 200px;
}
.cookie-banner__text a {
  color: rgba(240,242,244,0.90);
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1px solid;
  transition: background var(--t2), border-color var(--t2), color var(--t2), transform 0.15s;
}
.cookie-banner__btn:active { transform: scale(0.96); }

.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(240,242,244,0.60);
  border-color: rgba(255,255,255,0.16);
}
.cookie-banner__btn--reject:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(240,242,244,0.90);
  border-color: rgba(255,255,255,0.28);
}

.cookie-banner__btn--accept {
  background: linear-gradient(145deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.68) 100%);
  color: #060e27;
  border-color: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cookie-banner__btn--accept:hover {
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}
