/* ======================================================
   DESIGN TOKENS — "Light Violet"
   Aesthetic: Light clean base, violet/purple accent,
   dramatic serif headings + clean sans body.
   ====================================================== */
:root {
  /* Palette — Light with violet accent */
  --bg: #ffffff;
  --bg-elevated: #f8f7ff;
  --bg-card: #ffffff;
  --bg-card-hover: #f3f0ff;
  --surface: #eeeaff;

  --fg: #0d0d80;
  --fg-muted: #6b6b80;
  --fg-dim: #9d9db0;

  --border: rgba(108, 92, 231, .10);
  --border-hover: rgba(108, 92, 231, .20);
  --input-border: rgba(108, 92, 231, .15);

  --accent: #6c5ce7;
  --accent-hover: #5a4bd6;
  --accent-glow: rgba(108, 92, 231, .20);
  --accent-subtle: rgba(108, 92, 231, .06);

  --ring: var(--accent);

  /* Service icon colors */
  --blue: #4a7bf7;
  --blue-bg: rgba(74, 123, 247, .08);
  --green: #22c55e;
  --green-bg: rgba(34, 197, 94, .08);
  --purple: #a855f7;
  --purple-bg: rgba(168, 85, 247, .08);
  --yellow: #f59e0b;
  --yellow-bg: rgba(245, 158, 11, .08);
  --indigo: #6366f1;
  --indigo-bg: rgba(99, 102, 241, .08);
  --red: #ef4444;
  --red-bg: rgba(239, 68, 68, .08);
  --pink: #ec4899;
  --pink-bg: rgba(236, 72, 153, .08);
  --teal: #14b8a6;
  --teal-bg: rgba(20, 184, 166, .08);

  /* Layout */
  --container: 1200px;
  --radius: 0.625rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(108, 92, 231, .06);
  --shadow: 0 8px 24px rgba(108, 92, 231, .08);
  --shadow-lg: 0 16px 48px rgba(108, 92, 231, .10);
  --shadow-xl: 0 24px 64px rgba(108, 92, 231, .12);
  --shadow-glow: 0 0 40px var(--accent-glow);

  /* Transitions */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --dur: .3s;
  --dur-slow: .6s;

  /* Theme-dependent tokens */
  --header-bg: rgba(245, 243, 240, .95);
  --header-scrolled-bg: rgba(245, 243, 240, .98);
  --header-scrolled-shadow: 0 4px 24px rgba(108, 92, 231, .06);
  --hero-overlay-top: rgba(255, 255, 255, .92);
  --hero-overlay-mid: rgba(255, 255, 255, .88);
  --hero-overlay-bot: rgba(248, 247, 255, .92);
  --grid-line: rgba(108, 92, 231, .04);
  --why-overlay-top: rgba(255, 255, 255, .85);
  --why-overlay-mid: rgba(255, 255, 255, .75);
  --why-overlay-bot: rgba(255, 255, 255, .85);
  --reason-card-bg: rgba(255, 255, 255, .6);
  --reason-card-hover-bg: rgba(248, 247, 255, .7);
  --cta-left-color: #fff;
  --cta-subtitle-color: rgba(255, 255, 255, .75);
  --cta-list-color: rgba(255, 255, 255, .9);
  --cta-dot-color: rgba(255, 255, 255, .6);
  --cta-fine-color: rgba(255, 255, 255, .4);
  --on-accent: #fff;
}

/* ======================================================
   DARK THEME OVERRIDES
   ====================================================== */
[data-theme="dark"] {
  --bg: #0d0d0f;
  --bg-elevated: #16161a;
  --bg-card: #1c1c22;
  --bg-card-hover: #22222a;
  --surface: #232329;

  --fg: #f0f0f5;
  --fg-muted: #a8a8b8;
  --fg-dim: #7a7a90;

  --border: rgba(255, 255, 255, .06);
  --border-hover: rgba(255, 255, 255, .12);
  --input-border: rgba(255, 255, 255, .10);

  --accent: #6c5ce7;
  --accent-hover: #7c6ef0;
  --accent-glow: rgba(108, 92, 231, .25);
  --accent-subtle: rgba(108, 92, 231, .10);

  --blue: #5b9bf5;
  --blue-bg: rgba(91, 155, 245, .10);
  --green: #4ade80;
  --green-bg: rgba(74, 222, 128, .10);
  --purple: #c084fc;
  --purple-bg: rgba(192, 132, 252, .10);
  --yellow: #fbbf24;
  --yellow-bg: rgba(251, 191, 36, .10);
  --indigo: #818cf8;
  --indigo-bg: rgba(129, 140, 248, .10);
  --red: #f87171;
  --red-bg: rgba(248, 113, 113, .10);
  --pink: #f472b6;
  --pink-bg: rgba(244, 114, 182, .10);
  --teal: #2dd4bf;
  --teal-bg: rgba(45, 212, 191, .10);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .3);
  --shadow: 0 8px 24px rgba(0, 0, 0, .35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .45);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .5);

  --header-bg: rgba(13, 13, 15, .75);
  --header-scrolled-bg: rgba(13, 13, 15, .92);
  --header-scrolled-shadow: 0 4px 24px rgba(0, 0, 0, .4);
  --hero-overlay-top: rgba(13, 13, 15, .88);
  --hero-overlay-mid: rgba(13, 13, 15, .82);
  --hero-overlay-bot: rgba(13, 13, 15, .90);
  --grid-line: rgba(255, 255, 255, .025);
  --why-overlay-top: rgba(13, 13, 15, .85);
  --why-overlay-mid: rgba(13, 13, 15, .75);
  --why-overlay-bot: rgba(13, 13, 15, .85);
  --reason-card-bg: rgba(28, 28, 34, .6);
  --reason-card-hover-bg: rgba(34, 34, 42, .7);
  --cta-left-color: #fff;
  --cta-subtitle-color: rgba(255, 255, 255, .7);
  --cta-list-color: rgba(255, 255, 255, .85);
  --cta-dot-color: rgba(255, 255, 255, .5);
  --cta-fine-color: rgba(255, 255, 255, .35);
  --on-accent: #fff;
}

/* Dark theme navigation overrides */
[data-theme="dark"] .nav__link {
  color: #e0e0f0;
}

[data-theme="dark"] .nav__link:hover {
  color: #a78bfa;
}

[data-theme="dark"] .mobile-menu__link {
  color: #e0e0f0;
}

[data-theme="dark"] .mobile-menu__link:hover {
  color: #a78bfa;
}


/* ======================================================
   RESET & BASE
   ====================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Sora', sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Noise texture overlay on body */
body::before {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

input:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

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

/* Selection */
::selection {
  background: var(--accent);
  color: var(--on-accent);
}


/* ======================================================
   TYPOGRAPHY
   ====================================================== */
.font-display {
  font-family: 'Instrument Serif', serif;
}

.section-label {
  font-family: 'Sora', sans-serif;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label--light {
  color: var(--accent);
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--fg);
}

.section-title--light {
  color: var(--fg);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 38rem;
  line-height: 1.75;
}

.section-desc--light {
  color: var(--fg-muted);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header .section-desc {
  margin: 0 auto;
}


/* ======================================================
   CONTAINER
   ====================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}


/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .03em;
  border-radius: var(--radius-full);
  padding: .75rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
}

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

.btn__icon {
  width: 1rem;
  height: 1rem;
  transition: transform var(--dur) var(--ease);
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background: transparent;
  color: var(--fg);
  box-shadow: inset 0 0 0 1.5px var(--border-hover);
}

.btn--outline:hover {
  background: var(--accent-subtle);
  box-shadow: inset 0 0 0 1.5px var(--border-hover);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: .875rem;
}

.btn--full {
  width: 100%;
}


/* ======================================================
   BADGE
   ====================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .375rem 1.25rem;
  font-family: 'Sora', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-glow);
  background: var(--accent-subtle);
  color: var(--accent);
  margin-bottom: 2rem;
}


/* ======================================================
   HEADER
   ====================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
}

.header.scrolled {
  background: var(--header-scrolled-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--header-scrolled-shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .625rem;
}

.logo__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .625rem;
  background: var(--accent);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .6875rem;
  font-family: 'Sora', sans-serif;
  letter-spacing: .03em;
}

.logo__text {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fg);
}

.logo__arts {
  color: var(--accent);
}

.logo__radar {
  color: var(--fg);
}

.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav__link {
  font-size: .875rem;
  font-weight: 700;
  color: #0d0d80;
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .4s var(--ease);
}

.nav__link:hover {
  color: #6c5ce7;
}

.nav__link:hover::after {
  display: none;
}

.nav__link--gradient {
  background: linear-gradient(90deg, #ff8c00 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__link--gradient:hover {
  background: linear-gradient(90deg, #ff7700 0%, #ff5555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__cta {
  display: none;
  color: #fff;
}

@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
  }
}

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg-muted);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  padding: 0;
  margin-left: .5rem;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}

.theme-toggle svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform .4s var(--ease);
}

.theme-toggle:hover svg {
  transform: rotate(30deg);
}

.theme-toggle__sun,
.theme-toggle__moon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Light mode: show sun, hide moon */
.theme-toggle__moon {
  display: none;
}

.theme-toggle__sun {
  display: flex;
}

/* Dark mode: show moon, hide sun */
[data-theme="dark"] .theme-toggle__moon {
  display: flex;
}

[data-theme="dark"] .theme-toggle__sun {
  display: none;
}

/* Smooth body transition */
body {
  transition: background-color .4s var(--ease), color .4s var(--ease);
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}

.hamburger:hover {
  color: var(--fg);
}

.hamburger__icon {
  width: 1.375rem;
  height: 1.375rem;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.mobile-menu.active {
  display: block;
  animation: slideDown .35s var(--ease);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__link {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color var(--dur) var(--ease);
}

.mobile-menu__link:hover {
  color: var(--accent);
}

.mobile-menu__link--gradient {
  background: linear-gradient(90deg, #ff8c00 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.mobile-menu__link--gradient:hover {
  background: linear-gradient(90deg, #ff7700 0%, #ff5555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu__cta {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ======================================================
   HERO — Dramatic editorial
   ====================================================== */
.hero {
  position: relative;
  padding: 6rem 0 3rem;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

/* Photo background */
.hero__bg-photo {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: url('hero-bg.png') center center / cover no-repeat;
}

/* Light overlay for readability */
.hero__bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      var(--hero-overlay-top) 0%,
      var(--hero-overlay-mid) 50%,
      var(--hero-overlay-bot) 100%);
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 0 4rem;
  }
}

/* Grid background */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

/* Gradient mesh glow */
.hero__bg-glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 500px at 25% 20%, rgba(108, 92, 231, .10) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 75% 70%, rgba(168, 85, 247, .08) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 50% 50%, rgba(99, 102, 241, .06) 0%, transparent 60%);
}

/* Floating decorative orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .04;
  filter: blur(100px);
  top: -80px;
  right: -60px;
  z-index: -1;
  animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 20px) scale(1.1);
  }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

.hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: var(--fg);
}

.text-gradient {
  background: linear-gradient(135deg, #6c5ce7 0%, #a855f7 50%, #6c5ce7 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradient 4s ease infinite;
}

@keyframes textGradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero__subtitle {
  font-size: 1.1875rem;
  color: var(--fg-muted);
  max-width: 34rem;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    gap: 1.25rem;
  }
}

.hero__tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 38rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 576px) {
  .hero__tags {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero__tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
}

.hero__tag-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all var(--dur) var(--ease);
}

.hero__tag-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.hero__tag:hover .hero__tag-icon {
  background: var(--accent-subtle);
  border-color: var(--accent-glow);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(108, 92, 231, .1);
}

.hero__tag span {
  font-size: .75rem;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: .02em;
}

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: inline;
  }
}


/* ======================================================
   CLIENT LOGOS — Infinite marquee
   ====================================================== */
.logos {
  padding: 3rem 0 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.logos__label {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 2rem;
}

.logos__track {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Fade edges */
.logos__track::before,
.logos__track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logos__track::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.logos__track::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.logos__scroll {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.logos__scroll:hover {
  animation-play-state: paused;
}

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

  100% {
    transform: translateX(-50%);
  }
}

.logos__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos__svg {
  width: auto;
  height: 2rem;
  color: var(--fg-dim);
  opacity: .45;
  transition: all .4s var(--ease);
  filter: grayscale(1);
}

.logos__item:hover .logos__svg {
  opacity: .85;
  color: var(--accent);
  filter: grayscale(0);
  transform: scale(1.08);
}


/* ======================================================
   ABOUT — Asymmetric sticky layout
   ====================================================== */
.about {
  padding: 6rem 0;
  position: relative;
  background: var(--bg);
}

/* Decorative gradient blob */
.about::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 10%;
  left: -200px;
  z-index: 0;
  pointer-events: none;
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .about__inner {
    flex-direction: row;
    gap: 4rem;
  }
}

.about__text {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .about__text {
    width: 36%;
    position: sticky;
    top: 6rem;
    align-self: flex-start;
  }
}

.about__text .section-title {
  margin-bottom: 1.25rem;
}

.about__text .section-desc {
  font-size: 1rem;
}

.about__cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .about__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}

/* Subtle glow on hover */
.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow) 0%, transparent 60%);
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.about-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.about-card:hover::after {
  opacity: 1;
}

.about-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: all var(--dur) var(--ease);
}

.about-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.about-card:hover .about-card__icon {
  background: var(--accent);
  color: #fff;
}

.about-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.about-card__desc {
  font-size: .8125rem;
  color: var(--fg-muted);
  line-height: 1.7;
}


/* ======================================================
   SERVICES — Bento grid
   ====================================================== */
.services {
  padding: 6rem 0;
  background: var(--bg-elevated);
  position: relative;
}

/* Top fade separator */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-hover) 50%, transparent 100%);
}

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

@media (min-width: 576px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
  }

  /* Make first and last cards span for visual interest */
  .services__grid .service-card:first-child {
    grid-column: span 2;
  }
}

.service-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}

/* Accent line at top */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-hover) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--dur) var(--ease);
}

.service-card__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card__icon--blue {
  background: var(--blue-bg);
  color: var(--blue);
}

.service-card__icon--green {
  background: var(--green-bg);
  color: var(--green);
}

.service-card__icon--purple {
  background: var(--purple-bg);
  color: var(--purple);
}

.service-card__icon--yellow {
  background: var(--yellow-bg);
  color: var(--yellow);
}

.service-card__icon--indigo {
  background: var(--indigo-bg);
  color: var(--indigo);
}

.service-card__icon--red {
  background: var(--red-bg);
  color: var(--red);
}

.service-card__icon--pink {
  background: var(--pink-bg);
  color: var(--pink);
}

.service-card__icon--teal {
  background: var(--teal-bg);
  color: var(--teal);
}

.service-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.service-card__desc {
  font-size: .8125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card__list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.service-card__list li {
  font-size: .8125rem;
  color: var(--fg-dim);
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  transition: color var(--dur) var(--ease);
}

.service-card:hover .service-card__list li {
  color: var(--fg-muted);
}

.service-card__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: .5rem;
  opacity: .5;
}


/* ======================================================
   WHY US — Glass cards on gradient
   ====================================================== */
.why-us {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: url('img2.png') center center / cover no-repeat;
}

/* Dark overlay for text readability */
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      var(--why-overlay-top) 0%,
      var(--why-overlay-mid) 40%,
      var(--why-overlay-bot) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Gradient mesh on top of overlay */
.why-us::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 20% 30%, rgba(108, 92, 231, .08) 0%, transparent 60%),
    radial-gradient(ellipse 400px 350px at 80% 70%, rgba(168, 85, 247, .06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.why-us>.container {
  position: relative;
  z-index: 1;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 576px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why-us__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--reason-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  overflow: hidden;
  transition: all .4s var(--ease);
}

.reason-card:hover {
  border-color: var(--border-hover);
  background: var(--reason-card-hover-bg);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.reason-card__num {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-family: 'Instrument Serif', serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--accent);
  opacity: .08;
  line-height: 1;
  user-select: none;
  transition: opacity var(--dur) var(--ease);
}

.reason-card:hover .reason-card__num {
  opacity: .15;
}

.reason-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--fg);
}

.reason-card__desc {
  font-size: .8125rem;
  color: var(--fg-muted);
  line-height: 1.7;
}


/* ======================================================
   PROCESS — Timeline with glow
   ====================================================== */
.process {
  padding: 6rem 0;
  background: var(--bg-elevated);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-hover) 50%, transparent 100%);
}

.process__timeline {
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
}

.process__line {
  position: absolute;
  left: 1.5rem;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
}

.process-step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  position: relative;
}

.process-step+.process-step {
  margin-top: 1.5rem;
}

.process-step__circle {
  position: relative;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .4s var(--ease);
}

.process-step__circle svg {
  width: 1rem;
  height: 1rem;
}

.process-step:hover .process-step__circle {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow), 0 0 48px rgba(108, 92, 231, .1);
}

.process-step__content {
  flex: 1;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  transition: all .4s var(--ease);
}

.process-step:hover .process-step__content {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.process-step__header {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: .375rem;
}

.process-step__num {
  font-family: 'Instrument Serif', serif;
  font-size: .875rem;
  color: var(--accent);
  opacity: .6;
}

.process-step__title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.process-step__desc {
  font-size: .8125rem;
  color: var(--fg-muted);
  line-height: 1.7;
}


/* ======================================================
   TEAM — Creative team section
   ====================================================== */
.team {
  padding: 6rem 0;
  background: var(--bg-elevated);
  position: relative;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-hover) 50%, transparent 100%);
}

.team__header {
  margin-bottom: 2.5rem;
}

.team__header-text {
  max-width: 36rem;
}

/* Social icons row */
.team__socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.team__socials-icons {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.team__socials-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  transition: all .3s var(--ease);
}

.team__socials-icons a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(108, 92, 231, .06);
}

.team__socials-icons a svg {
  width: 1rem;
  height: 1rem;
}

.team__website {
  font-family: 'Sora', sans-serif;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color .3s var(--ease);
}

.team__website:hover {
  color: var(--accent);
}

/* Team cards grid */
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all .4s var(--ease);
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Avatar */
.team-card__avatar {
  width: 7rem;
  height: 7rem;
  margin-bottom: 1.5rem;
  color: var(--fg-dim);
  transition: color .4s var(--ease);
}

.team-card:hover .team-card__avatar {
  color: var(--accent);
}

.team-card__avatar-svg {
  width: 100%;
  height: 100%;
}

/* Name & role */
.team-card__name {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: .25rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.team-card__role {
  font-size: .8125rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

/* Social links on card */
.team-card__links {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-top: auto;
}

.team-card__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--fg-dim);
  transition: all .3s var(--ease);
}

.team-card__links a:hover {
  color: var(--accent);
}

.team-card__links a svg {
  width: .875rem;
  height: .875rem;
}


/* ======================================================
   CTA — Dramatic split card
   ====================================================== */
.cta {
  padding: 3rem 0;
  background: var(--bg);
  position: relative;
}

@media (min-width: 768px) {
  .cta {
    padding: 6rem 0;
  }
}

.cta__container {
  max-width: 64rem;
}

.cta__card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  position: relative;
}

@media (min-width: 768px) {
  .cta__card {
    grid-template-columns: 1fr 1fr;
  }

  .cta__left,
  .cta__right {
    padding: 3.5rem 3rem;
  }
}

.cta__left {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #6c5ce7 0%, #a855f7 50%, #5a4bd6 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay for text readability over photo */
.cta__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(108, 92, 231, .15) 0%,
      rgba(108, 92, 231, .05) 50%,
      rgba(108, 92, 231, .10) 100%);
  z-index: 0;
}

.cta__left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(108, 92, 231, .12) 0%,
      transparent 60%);
  z-index: 0;
}

.cta__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta__subtitle {
  color: var(--cta-subtitle-color);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  z-index: 1;
}

.cta__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--cta-list-color);
  font-size: .9375rem;
  font-weight: 500;
}

.cta__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  flex-shrink: 0;
}

.cta__fine {
  margin-top: 2rem;
  font-size: .6875rem;
  color: var(--cta-fine-color);
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

.cta__right {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta__form-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.125rem;
}

.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--fg-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  font-size: .875rem;
  transition: all var(--dur) var(--ease);
}

.form-group input::placeholder {
  color: var(--fg-dim);
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
}

.cta-form .btn {
  margin-top: .75rem;
}

.cta-form__fine {
  text-align: center;
  font-size: .6875rem;
  color: var(--fg-dim);
  margin-top: .75rem;
}

/* Checkbox grid — "I'm looking for..." */
.form-group__heading {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--fg-muted);
  margin-bottom: .75rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
}

@media (min-width: 576px) {
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkbox-tag {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.checkbox-tag input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom square checkbox */
.checkbox-tag__label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Sora', sans-serif;
  font-size: .8125rem;
  font-weight: 400;
  color: var(--fg-muted);
  transition: color .25s var(--ease);
  user-select: none;
  cursor: pointer;
}

.checkbox-tag__label::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  border: 1.5px solid var(--border-hover);
  border-radius: 3px;
  background: transparent;
  transition: all .2s var(--ease);
}

.checkbox-tag:hover .checkbox-tag__label {
  color: var(--fg);
}

.checkbox-tag:hover .checkbox-tag__label::before {
  border-color: var(--accent);
}

.checkbox-tag input:checked+.checkbox-tag__label {
  color: var(--fg);
}

.checkbox-tag input:checked+.checkbox-tag__label::before {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l3 3 5-5.5' stroke='%230d0d0f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.checkbox-tag input:focus-visible+.checkbox-tag__label::before {
  box-shadow: 0 0 0 3px var(--accent-glow);
}


/* ======================================================
   BOOK A CALL — Centered CTA block
   ====================================================== */
.book-call {
  padding: 5rem 0;
  background: var(--bg);
  position: relative;
}

.book-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}

.book-call__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.book-call__label {
  font-family: 'Sora', sans-serif;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1rem;
}

.book-call__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}

.book-call__btn {
  display: inline-flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem 2.5rem;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--fg);
  font-family: 'Sora', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .4s var(--ease);
}

.book-call__btn:hover {
  border-color: var(--accent);
  background: rgba(108, 92, 231, .06);
  box-shadow: 0 0 32px var(--accent-glow), inset 0 0 0 0.5px rgba(108, 92, 231, .15);
  transform: translateY(-2px);
}

.book-call__btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--fg-muted);
  transition: color .3s var(--ease);
}

.book-call__btn:hover .book-call__btn-icon {
  color: var(--accent);
}

.book-call__btn-arrow {
  width: 1rem;
  height: 1rem;
  color: var(--fg-dim);
  transition: all .3s var(--ease);
}

.book-call__btn:hover .book-call__btn-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.book-call__note {
  margin-top: 1.5rem;
  font-family: 'Sora', sans-serif;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand .logo {
  margin-bottom: 1.25rem;
}

.footer__brand-desc {
  font-size: .8125rem;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 20rem;
}

.footer__brand-subtitle {
  font-family: 'Sora', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.footer__col h4 {
  font-family: 'Sora', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__col li {
  font-size: .8125rem;
  color: var(--fg-dim);
}

.footer__col a {
  transition: color var(--dur) var(--ease);
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  font-size: .75rem;
  color: var(--fg-dim);
}

@media (min-width: 768px) {
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
  }

  .footer__bottom>p {
    justify-self: start;
  }

  .footer__links {
    justify-self: end;
  }
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  transition: color var(--dur) var(--ease);
}

.footer__links a:hover {
  color: var(--accent);
}

/* Proudly made in Volgograd */
.footer__pride {
  display: flex;
  justify-content: center;
}

.footer__pride-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all .4s var(--ease);
}

.footer__pride-inner:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 32px rgba(108, 92, 231, .08);
  transform: translateY(-2px);
}

.footer__pride-img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(108, 92, 231, .2));
  animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.footer__pride-text {
  display: flex;
  flex-direction: column;
  gap: .125rem;
}

.footer__pride-slogan {
  font-family: 'Sora', sans-serif;
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.footer__pride-city {
  font-family: 'Instrument Serif', serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: .02em;
  line-height: 1.1;
}


/* ======================================================
   SCROLL ANIMATIONS — Orchestrated reveals
   ====================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease);
  transition-delay: var(--delay, 0s);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Special reveal for cards — slight scale */
.about-card.animate-on-scroll,
.service-card.animate-on-scroll,
.reason-card.animate-on-scroll {
  transform: translateY(28px) scale(.97);
}

.about-card.animate-on-scroll.is-visible,
.service-card.animate-on-scroll.is-visible,
.reason-card.animate-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}

/* Process step slide-in from left */
.process-step.animate-on-scroll {
  transform: translateX(-20px) translateY(12px);
}

.process-step.animate-on-scroll.is-visible {
  transform: translateX(0) translateY(0);
}


/* ======================================================
   COOKIE BANNER
   ====================================================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 110;
  width: min(calc(100% - 2rem), 1760px);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 15, 20, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 60px rgba(15, 15, 20, .14);
  backdrop-filter: blur(14px);
}

.cookie-banner__content {
  max-width: 72rem;
}

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

.cookie-banner__text {
  color: #24242d;
  font-size: clamp(1rem, 1.45vw, 1.125rem);
  line-height: 1.45;
}

.cookie-banner__text a {
  text-decoration: underline;
  text-underline-offset: .14em;
}

.cookie-banner__button {
  flex: 0 0 auto;
  min-width: 10.5rem;
  border: 0;
  border-radius: 1rem;
  padding: 1.15rem 1.75rem;
  background: #151517;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.cookie-banner__button:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

.cookie-banner__button:focus-visible {
  outline: 2px solid #151517;
  outline-offset: 3px;
}

[data-theme="dark"] .cookie-banner__inner {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(20, 20, 24, .96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

[data-theme="dark"] .cookie-banner__text {
  color: #f2f2f6;
}

[data-theme="dark"] .cookie-banner__button {
  background: #f2f2f6;
  color: #151517;
}

[data-theme="dark"] .cookie-banner__button:hover {
  background: #fff;
}

@media (max-width: 900px) {
  .cookie-banner {
    width: min(calc(100% - 1rem), 100%);
    bottom: .75rem;
  }

  .cookie-banner__inner {
    gap: 1.25rem;
    padding: 1.125rem;
  }

  .cookie-banner__button {
    min-width: 9rem;
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 680px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .cookie-banner__text {
    font-size: .98rem;
  }
}
