﻿/* =================================================================
   DIGITAL TRUST IT SERVICES — DESIGN SYSTEM
   Palette: Ink Navy / Brass Gold / Deep Emerald / Warm Ivory
   Type:    Fraunces (display) · Inter (body) · IBM Plex Mono (labels)
   ================================================================= */

:root {
  /* Color */
  --navy-950: #06080e;
  --navy-900: #0b0f1a;
  --navy-800: #121829;
  --navy-700: #1a2238;
  --navy-600: #26304a;
  --line: rgba(245, 242, 234, 0.1);
  --line-strong: rgba(245, 242, 234, 0.18);

  --ivory: #f5f2ea;
  --ivory-dim: rgba(245, 242, 234, 0.68);
  --ivory-faint: rgba(245, 242, 234, 0.4);

  --gold: #c9a659;
  --gold-bright: #e4c67f;
  --gold-dim: rgba(201, 166, 89, 0.35);

  --emerald: #1b4d3e;
  --emerald-bright: #2f7a63;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --container: 1240px;
  --header-h: 88px;
  --header-h-scrolled: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* -----------------------------------------------------------------
   RESET
   ----------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy-900);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
svg { display: block; }

::selection { background: var(--gold-dim); color: var(--ivory); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Ambient background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(201, 166, 89, 0.07), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 20%, rgba(27, 77, 62, 0.16), transparent 55%);
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* -----------------------------------------------------------------
   CUSTOM CURSOR (fine pointers only)
   ----------------------------------------------------------------- */
@media (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }

  .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-bright);
    transition: transform 0.12s var(--ease-soft), opacity 0.2s;
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold-dim);
    transition: transform 0.18s var(--ease-soft), width 0.25s var(--ease-out),
      height 0.25s var(--ease-out), border-color 0.25s;
  }

  .cursor-ring.is-active {
    width: 54px;
    height: 54px;
    border-color: var(--gold);
    background: rgba(201, 166, 89, 0.08);
  }

  .cursor-dot.is-hidden,
  .cursor-ring.is-hidden { opacity: 0; }
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* -----------------------------------------------------------------
   BUTTONS
   ----------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background 0.3s, border-color 0.3s, color 0.3s;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 8px 24px -8px rgba(201, 166, 89, 0.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(201, 166, 89, 0.7); }

.btn--outline {
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  background: rgba(245, 242, 234, 0.02);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

.btn--outline-light {
  border: 1px solid rgba(245, 242, 234, 0.35);
  color: var(--ivory);
}
.btn--outline-light:hover { border-color: var(--ivory); background: rgba(245, 242, 234, 0.08); }

.btn--ghost {
  padding: 10px 22px;
  font-size: 13.5px;
  border: 1px solid var(--line-strong);
  color: var(--ivory-dim);
}
.btn--ghost:hover { color: var(--gold-bright); border-color: var(--gold-dim); }

.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--full { width: 100%; }

/* -----------------------------------------------------------------
   HEADER
   ----------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 15, 26, 0.5);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: height 0.4s var(--ease-soft), background 0.4s, border-color 0.4s;
}

.site-header.is-scrolled {
  height: var(--header-h-scrolled);
  background: rgba(8, 11, 18, 0.86);
  border-bottom-color: var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand mark */
.brand-mark-orbit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
}

.brand-mark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.4s var(--ease-out);
}
.brand-mark:hover .brand-mark__logo { transform: rotate(-6deg) scale(1.05); }

.brand-orbit__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 166, 89, 0.35);
  border-radius: 50%;
  background: rgba(17, 25, 38, 0.75);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: brand-orbit-float 7s ease-in-out infinite;
}
.brand-orbit__badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-orbit__badge--capcut { top: -8px; left: 0; animation-delay: 0s; }
.brand-orbit__badge--spotify { top: 0; right: -8px; animation-delay: 1.1s; }
.brand-orbit__badge--canva { bottom: -8px; right: 20px; animation-delay: 2.2s; }
.brand-orbit__badge--netflix { bottom: 0; left: 18px; animation-delay: 3.3s; }

@keyframes brand-orbit-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-5px) scale(1.06); }
}

.brand-mark__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-mark__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--ivory);
}
.brand-mark__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Primary nav */
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 22px; min-width: 0; flex: 1; }
.primary-nav__list { position: relative; display: flex; align-items: center; gap: clamp(10px, 1.25vw, 22px); min-width: 0; padding: 7px 13px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; background: linear-gradient(110deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045) 42%, rgba(201, 166, 89, 0.08)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.24), 0 1px 1px rgba(255, 255, 255, 0.08), 0 12px 34px rgba(0, 0, 0, 0.22); backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%); transform: perspective(700px) rotateX(var(--nav-tilt-y, 0deg)) rotateY(var(--nav-tilt-x, 0deg)); transition: transform 0.25s var(--ease-out), box-shadow 0.3s; }
.primary-nav__list::before { content: ""; position: absolute; inset: 1px; z-index: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(circle 90px at var(--nav-glow-x, 50%) var(--nav-glow-y, 0%), rgba(255, 255, 255, 0.25), transparent 72%); opacity: 0.8; transition: opacity 0.25s; }
.primary-nav__list::after { content: ""; position: absolute; top: -50%; bottom: -50%; left: -30%; z-index: 0; width: 20%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); transform: skewX(-20deg); animation: nav-glass-sheen 8s ease-in-out infinite; }
.primary-nav__list:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -1px 0 rgba(0, 0, 0, 0.24), 0 16px 42px rgba(0, 0, 0, 0.28), 0 0 28px rgba(201, 166, 89, 0.08); }

.nav-link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ivory-dim);
  padding: 6px 0;
  white-space: nowrap;
  z-index: 1;
  transition: color 0.3s, transform 0.3s var(--ease-out), text-shadow 0.3s, background 0.3s, padding 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav-link:hover { padding-left: 8px; padding-right: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.12); color: var(--ivory); transform: translateY(-1px); text-shadow: 0 0 14px rgba(245, 242, 234, 0.25); }
.nav-link:hover::after { left: 8px; width: calc(100% - 16px); }

.nav-cta { flex-shrink: 0; border-color: rgba(245, 242, 234, 0.18); background: rgba(245, 242, 234, 0.055); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.15); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.nav-cta:hover { background: rgba(245, 242, 234, 0.11); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 28px rgba(0, 0, 0, 0.22); }

.admin-icon-link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex-shrink: 0; border: 1px solid rgba(201, 166, 89, 0.35); border-radius: 50%; color: var(--gold-bright); background: rgba(201, 166, 89, 0.08); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 18px rgba(0, 0, 0, 0.16); transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out); }
.admin-icon-link:hover { border-color: var(--gold); background: rgba(201, 166, 89, 0.14); color: var(--ivory); transform: translateY(-2px); }
.admin-icon-link__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@keyframes nav-glass-sheen { 0%, 35% { left: -35%; opacity: 0; } 48% { opacity: 1; } 65%, 100% { left: 120%; opacity: 0; } }

@media (max-width: 1180px) and (min-width: 901px) {
  .header-inner { gap: 14px; padding-left: 22px; padding-right: 22px; }
  .primary-nav { gap: 12px; }
  .primary-nav__list { gap: 11px; padding-left: 9px; padding-right: 9px; }
  .nav-link { font-size: 12px; }
  .nav-cta { padding-left: 15px; padding-right: 15px; font-size: 12px; }
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 40px;
  height: 40px;
  z-index: 620;
}
.menu-toggle__bar {
  display: block;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s, width 0.35s var(--ease-out), background 0.3s;
}
.menu-toggle__bar:nth-child(1) { width: 26px; }
.menu-toggle__bar:nth-child(2) { width: 20px; }
.menu-toggle__bar:nth-child(3) { width: 26px; }
.menu-toggle:hover .menu-toggle__bar { background: var(--gold-bright); }

.menu-toggle.is-open .menu-toggle__bar { width: 26px; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* -----------------------------------------------------------------
   MOBILE DRAWER
   ----------------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(340px, 84vw);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
  border-left: 1px solid var(--line);
  z-index: 610;
  padding: calc(var(--header-h) + 16px) 32px 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer__list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mobile-drawer__list a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-drawer__list a:hover { color: var(--gold-bright); padding-left: 10px; }

.mobile-drawer__cta { margin-bottom: 18px; }
.mobile-drawer__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ivory-faint);
  text-align: center;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 14, 0.6);
  backdrop-filter: blur(2px);
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-soft), visibility 0.4s;
}
.drawer-backdrop.is-visible { opacity: 1; visibility: visible; }

/* -----------------------------------------------------------------
   HERO
   ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 0;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 1100px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(201, 166, 89, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__brand-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(6, 8, 14, 0.06), rgba(6, 8, 14, 0.38) 48%, rgba(6, 8, 14, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%, rgba(6, 8, 14, 0.28));
  isolation: isolate;
}
.hero__brand-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.055) 48%, transparent 72%);
  mix-blend-mode: screen;
}
.hero__brand-mark {
  position: absolute;
  z-index: 1;
  width: clamp(170px, 22vw, 330px);
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.13;
  filter: blur(9px) saturate(145%);
  mix-blend-mode: screen;
  transform: rotate(var(--mark-rotation, 0deg));
  animation: brand-mark-drift 18s ease-in-out infinite alternate;
}
.hero__brand-mark--netflix {
  top: 5%;
  left: 4%;
  --mark-rotation: -12deg;
  background-image: url("../images/netflix.svg");
  filter: blur(10px) saturate(180%) drop-shadow(0 0 34px rgba(229, 9, 20, 0.6));
}
.hero__brand-mark--spotify {
  top: 13%;
  right: 4%;
  --mark-rotation: 10deg;
  background-image: url("../images/spotify.svg");
  filter: blur(10px) saturate(170%) drop-shadow(0 0 34px rgba(30, 215, 96, 0.55));
  animation-delay: -5s;
}
.hero__brand-mark--prime {
  bottom: 4%;
  left: 26%;
  --mark-rotation: 8deg;
  background-image: url("../images/prime.png");
  filter: blur(11px) saturate(160%) drop-shadow(0 0 38px rgba(0, 168, 225, 0.55));
  animation-delay: -9s;
}
.hero__brand-mark--chatgpt {
  right: 24%;
  bottom: 1%;
  --mark-rotation: -8deg;
  background-image: url("../images/netflix.svg");
  filter: blur(10px) saturate(180%) drop-shadow(0 0 34px rgba(229, 9, 20, 0.6));
  animation-delay: -13s;
}
@keyframes brand-mark-drift {
  from { opacity: 0.09; transform: translate3d(-8px, 5px, 0) rotate(var(--mark-rotation, 0deg)) scale(0.98); }
  to { opacity: 0.15; transform: translate3d(10px, -8px, 0) rotate(calc(var(--mark-rotation, 0deg) + 2deg)) scale(1.04); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: 56px;
}

/* Trust seal — signature element */
.hero__seal { display: flex; justify-content: center; }

.trust-seal {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-seal__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.trust-seal__ring--outer {
  inset: 0;
  border-color: var(--gold-dim);
  animation: spin-slow 34s linear infinite;
}
.trust-seal__service-orbit { position: absolute; inset: 16px; z-index: 3; border: 1px solid rgba(201, 166, 89, 0.18); border-radius: 50%; animation: service-orbit 24s linear infinite; }
.trust-seal__service { position: absolute; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(245, 242, 234, 0.2); border-radius: 50%; background: rgba(11, 15, 26, 0.92); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.16); animation: service-counter-orbit 24s linear infinite; }
.trust-seal__service img { width: 21px; height: 21px; object-fit: contain; }
.trust-seal__service--netflix { top: -17px; left: calc(50% - 17px); }
.trust-seal__service--spotify { right: -17px; top: calc(50% - 17px); }
.trust-seal__service--youtube { bottom: -17px; left: calc(50% - 17px); }
.trust-seal__service--prime { left: -17px; top: calc(50% - 17px); }

.trust-seal__ring--dashed {
  inset: 26px;
  border-style: dashed;
  border-color: rgba(245, 242, 234, 0.22);
  animation: spin-slow-reverse 46s linear infinite;
}

.trust-seal__ring--inner {
  inset: 58px;
  border-color: var(--line);
  background: radial-gradient(circle at 30% 20%, rgba(201, 166, 89, 0.08), transparent 60%);
}

.trust-seal__core {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px -10px rgba(201, 166, 89, 0.35), inset 0 0 30px rgba(0, 0, 0, 0.4);
  animation: pulse-glow 4s ease-in-out infinite;
}

.trust-seal__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.trust-seal__badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--emerald);
  border: 3px solid var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  animation: badge-pop 0.6s var(--ease-out) 0.9s backwards;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes spin-slow-reverse { to { transform: rotate(-360deg); } }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 50px -10px rgba(201, 166, 89, 0.35), inset 0 0 30px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 70px -6px rgba(201, 166, 89, 0.55), inset 0 0 30px rgba(0,0,0,0.4); }
}
@keyframes badge-pop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* Hero content */
.hero__content .eyebrow { margin-bottom: 18px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 22px;
}

.typewriter-line { position: relative; }
.typewriter-line.is-typing::after { content: ""; display: inline-block; width: 2px; height: 0.9em; margin-left: 7px; vertical-align: -0.08em; background: var(--gold-bright); animation: typewriter-caret 0.8s steps(1) infinite; }
.typewriter-loop.is-typing::after { content: ""; display: inline-block; width: 2px; height: 1em; margin-left: 6px; vertical-align: -0.12em; background: var(--gold-bright); animation: typewriter-caret 0.8s steps(1) infinite; }

@keyframes typewriter-caret { 50% { opacity: 0; } }

.hero__subtitle {
  max-width: 520px;
  font-size: 16.5px;
  color: var(--ivory-dim);
  margin-bottom: 34px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.hero__trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.hero__trust-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ivory-faint);
}
.hero__trust-points .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 1px var(--gold-dim);
}

/* Ticker */
.ticker {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 234, 0.02);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker__track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 14px 0;
  animation: ticker-scroll 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  white-space: nowrap;
}
.ticker__track span { color: var(--ivory-faint); }
.ticker__track span:nth-child(odd) { color: var(--gold); }
.ticker:hover .ticker__track { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__brand-mark { animation: none; }
}

@media (max-width: 700px) {
  .hero__brand-mark { width: 180px; opacity: 0.1; filter: blur(10px) saturate(145%); }
  .hero__brand-mark--netflix { top: 2%; left: -12%; }
  .hero__brand-mark--spotify { top: 19%; right: -15%; }
  .hero__brand-mark--prime { bottom: 12%; left: -14%; }
  .hero__brand-mark--chatgpt { right: -11%; bottom: 4%; }
}

/* -----------------------------------------------------------------
   POPULAR SERVICES
   ----------------------------------------------------------------- */
.popular-services { padding: 110px 0 120px; position: relative; z-index: 1; }
.popular-services__texture { opacity: 0.62; }
.popular-services__texture .hero__brand-mark--netflix { top: 8%; left: 8%; }
.popular-services__texture .hero__brand-mark--spotify { top: 4%; right: 10%; }
.popular-services__texture .hero__brand-mark--prime { bottom: 6%; left: 42%; }
.popular-services__texture .hero__brand-mark--chatgpt { right: 4%; bottom: 8%; }

.section-heading { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-heading .eyebrow { display: block; margin-bottom: 14px; }
.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  color: var(--ivory);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: linear-gradient(160deg, rgba(245, 242, 234, 0.04), rgba(245, 242, 234, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.45s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dim);
  box-shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.55);
}

.service-card__logo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  background: rgba(245, 242, 234, 0.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.45s var(--ease-out), border-color 0.4s;
}
.service-card:hover .service-card__logo-wrap {
  transform: scale(1.06) rotate(-3deg);
  border-color: var(--gold-dim);
}
.service-card__logo { width: 65px; height: 65px; object-fit: contain; }

.service-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 6px;
}
.service-card__desc {
  font-size: 13.5px;
  color: var(--ivory-faint);
  margin-bottom: 24px;
}

/* Explore-more card — distinct closing CTA */
.service-card--explore {
  background: linear-gradient(160deg, var(--emerald), var(--navy-900) 70%);
  border-color: rgba(47, 122, 99, 0.5);
  justify-content: center;
}
.service-card--explore__inner { display: flex; flex-direction: column; align-items: center; }
.service-card--explore h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card--explore p {
  font-size: 13.5px;
  color: var(--ivory-dim);
  margin-bottom: 22px;
}
.service-card--explore:hover { border-color: var(--gold); }

/* Scroll reveal (driven by JS toggling .in-view) */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }
[data-animate="seal"] { transform: translateX(-24px); }
[data-animate="seal"].in-view { transform: translateX(0); }

/* -----------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--navy-950);
  padding-top: 76px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ivory-dim);
  margin: 18px 0 8px;
  max-width: 280px;
}
.footer-brand__reg {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory-dim);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--ivory-dim); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 32px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ivory-faint);
}
.footer-bottom__credit { color: var(--gold); }
.footer-reg-logo { height: 20px; width: auto; object-fit: contain; margin-right: 8px; vertical-align: middle; display: inline-block; }


/* -----------------------------------------------------------------
   BACK BUTTON
   ----------------------------------------------------------------- */
.back-button {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}
.back-button:hover {
  background: rgba(201, 166, 89, 0.1);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.back-button svg {
  width: 16px;
  height: 16px;
}

/* -----------------------------------------------------------------
   BACK TO TOP
   ----------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out), visibility 0.4s, border-color 0.3s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--gold); transform: translateY(-3px); }

/* Homepage campaign notice */
.dashain-offer {
  position: fixed;
  right: 26px;
  bottom: 92px;
  z-index: 480;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(90vw, 350px);
  padding: 15px 42px 15px 15px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px) rotate(1deg);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(27, 77, 62, 0.97), rgba(18, 24, 41, 0.98));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38), 0 0 30px rgba(201, 166, 89, 0.12);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), visibility 0.45s;
}
.dashain-offer::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(201, 166, 89, 0.18); border-radius: calc(var(--radius-md) - 3px); pointer-events: none; }
.dashain-offer.is-visible { visibility: visible; opacity: 1; transform: translateY(0) rotate(0); }
.dashain-offer__mark { position: relative; z-index: 1; display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-bright); font-size: 22px; animation: dashain-sparkle 1.8s ease-in-out infinite; }
.dashain-offer__content { position: relative; z-index: 1; min-width: 0; }
.dashain-offer__eyebrow { display: block; color: var(--gold-bright); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; }
.dashain-offer strong { display: block; margin-top: 3px; color: var(--ivory); font-family: var(--font-display); font-size: 18px; font-weight: 500; line-height: 1.1; }
.dashain-offer small { display: block; margin-top: 5px; color: var(--ivory-dim); font-size: 10px; }
.dashain-offer__close { position: absolute; top: 9px; right: 9px; z-index: 2; width: 25px; height: 25px; color: var(--ivory-faint); font-size: 20px; line-height: 1; }
.dashain-offer__close:hover { color: var(--gold-bright); }

@keyframes dashain-sparkle { 0%, 100% { transform: rotate(0) scale(0.92); box-shadow: 0 0 0 rgba(201, 166, 89, 0); } 50% { transform: rotate(12deg) scale(1.08); box-shadow: 0 0 18px rgba(201, 166, 89, 0.32); } }

/* Homepage customer review notice */
.review-popup { position: fixed; left: 26px; bottom: 26px; z-index: 480; display: flex; align-items: center; gap: 11px; width: min(90vw, 330px); padding: 14px 38px 14px 14px; visibility: hidden; opacity: 0; transform: translateY(16px); border: 1px solid var(--line-strong); border-radius: var(--radius-md); background: rgba(18, 24, 41, 0.97); box-shadow: 0 18px 55px rgba(0, 0, 0, 0.4); transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), visibility 0.4s; }
.review-popup.is-visible { visibility: visible; opacity: 1; transform: translateY(0); }
.review-popup__avatar { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid var(--gold); border-radius: 50%; background: rgba(201, 166, 89, 0.13); color: var(--gold-bright); font-family: var(--font-display); font-size: 20px; }
.review-popup__content { min-width: 0; }
.review-popup__label { display: block; color: var(--gold); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.review-popup strong { display: block; margin-top: 2px; color: var(--ivory); font-family: var(--font-display); font-size: 16px; font-weight: 500; }
.review-popup p { overflow: hidden; margin-top: 2px; color: var(--ivory-dim); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.review-popup__rating { display: block; margin-top: 4px; color: var(--gold-bright); font-size: 11px; letter-spacing: 0.08em; }
.review-popup__close { position: absolute; top: 7px; right: 8px; width: 25px; height: 25px; color: var(--ivory-faint); font-size: 19px; line-height: 1; }
.review-popup__close:hover { color: var(--gold-bright); }

/* Site-wide AI assistant */
.trust-chat { position: fixed; right: 26px; bottom: 26px; z-index: 540; font-size: 13px; }
.trust-chat__launcher { display: inline-flex; align-items: center; justify-content: center; padding: 10px; border: 1px solid var(--gold-dim); border-radius: 999px; background: linear-gradient(135deg, rgba(17, 25, 38, 0.96), rgba(27, 77, 62, 0.82)); color: var(--gold-bright); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3); transition: transform 0.3s var(--ease-out), background 0.3s; }
.trust-chat__launcher:hover { transform: translateY(-3px); background: linear-gradient(135deg, rgba(17, 25, 38, 1), rgba(27, 77, 62, 0.96)); }
.trust-chat__launcher-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255, 239, 191, 0.45), rgba(201, 166, 89, 0.12) 55%, rgba(201, 166, 89, 0.05)); box-shadow: inset 0 0 0 1px rgba(201, 166, 89, 0.35), 0 0 18px rgba(201, 166, 89, 0.2); animation: botFloat 2.8s ease-in-out infinite; }
.trust-chat__launcher-icon::after { content: ""; position: absolute; width: 9px; height: 9px; right: 1px; bottom: 2px; border-radius: 50%; background: #68d391; box-shadow: 0 0 0 4px rgba(104, 211, 145, 0.18); animation: chat-online 2s ease-in-out infinite; }
.trust-chat__launcher-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; animation: botPulse 2.8s ease-in-out infinite; }
.trust-chat__panel { position: absolute; right: 0; bottom: 58px; display: flex; flex-direction: column; width: min(88vw, 360px); height: 500px; overflow: hidden; visibility: hidden; opacity: 0; transform: translateY(14px) scale(0.97); border: 1px solid var(--line-strong); border-radius: var(--radius-md); background: var(--navy-800); box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5); transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s; }
.trust-chat__panel.is-open { visibility: visible; opacity: 1; transform: translateY(0) scale(1); }
.trust-chat__header { display: flex; align-items: center; gap: 10px; padding: 16px; border-bottom: 1px solid var(--line); background: linear-gradient(120deg, rgba(27, 77, 62, 0.5), rgba(201, 166, 89, 0.08)); }
.trust-chat__avatar { display: grid; place-items: center; width: 36px; height: 36px; overflow: hidden; border: 1px solid var(--gold); border-radius: 50%; background: rgba(201, 166, 89, 0.12); box-shadow: 0 0 0 2px rgba(201, 166, 89, 0.08); }
.trust-chat__avatar img { width: 100%; height: 100%; object-fit: cover; }
.trust-chat__header strong, .trust-chat__header small { display: block; }
.trust-chat__header strong { font-family: var(--font-display); font-size: 18px; font-weight: 500; }
.trust-chat__header small { margin-top: 2px; color: #68d391; font-family: var(--font-mono); font-size: 9px; }
.trust-chat__close { margin-left: auto; color: var(--ivory-faint); font-size: 23px; line-height: 1; }
.trust-chat__messages { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 16px; overflow-y: auto; }
.trust-chat__message { max-width: 86%; margin: 0; padding: 10px 12px; border-radius: 12px; font-size: 12px; line-height: 1.5; }
.trust-chat__message p { margin: 0; }
.trust-chat__message--bot { align-self: flex-start; border: 1px solid var(--line); background: rgba(245, 242, 234, 0.06); color: var(--ivory-dim); }
.trust-chat__message--user { align-self: flex-end; background: var(--gold); color: var(--navy-950); }
.trust-chat__qr-card { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 8px; padding: 10px 10px 8px; border: 1px solid rgba(201, 166, 89, 0.3); border-radius: 12px; background: rgba(255, 255, 255, 0.04); }
.trust-chat__qr-card span { color: var(--gold-bright); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.trust-chat__qr-card img { display: block; width: 122px; height: 122px; border-radius: 8px; background: #fff; object-fit: contain; }
.trust-chat__qr { display: flex; justify-content: center; margin-top: 10px; padding: 8px; border: 1px solid rgba(201, 166, 89, 0.28); border-radius: 12px; background: rgba(255, 255, 255, 0.04); }
.trust-chat__qr img { display: block; width: 122px; height: 122px; border-radius: 8px; background: #fff; object-fit: contain; }
.trust-chat__quick { display: flex; gap: 6px; padding: 0 14px 11px; overflow-x: auto; scrollbar-width: none; }
.trust-chat__quick::-webkit-scrollbar { display: none; }
.trust-chat__quick button { flex: 0 0 auto; padding: 6px 9px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--gold-bright); font-size: 10px; }
.trust-chat__quick button:hover { border-color: var(--gold); background: rgba(201, 166, 89, 0.1); }
.trust-chat__form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); }
.trust-chat__form input { min-width: 0; flex: 1; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); outline: none; background: rgba(245, 242, 234, 0.04); color: var(--ivory); font: inherit; font-size: 12px; }
.trust-chat__form input:focus { border-color: var(--gold); }
.trust-chat__form button { width: 38px; border-radius: var(--radius-sm); background: var(--gold); color: var(--navy-950); font-size: 20px; }
.trust-chat__handoff { display: block; padding: 0 14px 13px; color: var(--gold-bright); font-family: var(--font-mono); font-size: 9px; text-align: center; }
@keyframes chat-online { 0%, 100% { opacity: 0.65; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes botFloat { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-4px) rotate(-3deg); } }
@keyframes botPulse { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(201, 166, 89, 0.25)); } 50% { transform: scale(1.08); filter: drop-shadow(0 0 12px rgba(201, 166, 89, 0.35)); } }

@media (max-width: 600px) {
  .dashain-offer { right: 14px; bottom: 84px; width: min(90vw, 330px); padding-right: 36px; }
  .dashain-offer strong { font-size: 16px; }
  .review-popup { left: 14px; bottom: 84px; width: min(90vw, 310px); }
  .trust-chat { right: 14px; bottom: 14px; }
  .trust-chat__panel { right: 0; bottom: 58px; height: min(72vh, 500px); }
}

/* -----------------------------------------------------------------
   PRELOADER
   ----------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-soft), visibility 0.6s;
}
#preloader.is-hidden { opacity: 0; visibility: hidden; }

.preloader-seal {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloader-pulse 1.4s ease-in-out infinite;
}
.preloader-seal img { width: 44px; height: 44px; object-fit: contain; }

@keyframes preloader-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 166, 89, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(201, 166, 89, 0); }
}

@keyframes service-orbit { to { transform: rotate(360deg); } }
@keyframes service-counter-orbit { to { transform: rotate(-360deg); } }

/* -----------------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1180px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__trust-points { justify-content: center; }
  .trust-seal { width: 260px; height: 260px; }
  .trust-seal__core { width: 140px; height: 140px; }
  .trust-seal__logo { width: 64px; height: 64px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

/* Mobile */
@media (max-width: 640px) {
  .header-inner { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  .hero__inner { padding: 0 20px; }

  .brand-mark__title { font-size: 16px; }
  .brand-mark__logo { width: 34px; height: 34px; }

  .hero { padding-top: calc(var(--header-h) + 40px); }
  .trust-seal { width: 176px !important; height: 176px !important; }
  .trust-seal__service-orbit { inset: 11px; }
  .trust-seal__service { width: 28px !important; height: 28px !important; overflow: hidden; }
  .trust-seal__service img { display: block; width: 17px !important; height: 17px !important; object-fit: contain; }
  .trust-seal__service--netflix { top: -14px; left: calc(50% - 14px); }
  .trust-seal__service--spotify { right: -14px; top: calc(50% - 14px); }
  .trust-seal__service--youtube { bottom: -14px; left: calc(50% - 14px); }
  .trust-seal__service--prime { left: -14px; top: calc(50% - 14px); }
  .trust-seal__ring--dashed { inset: 16px; }
  .trust-seal__ring--inner { inset: 36px; }
  .trust-seal__core { width: 94px !important; height: 94px !important; overflow: hidden; }
  .trust-seal__logo { display: block; width: 78px !important; height: 78px !important; object-fit: contain; }

  .hero__title { font-size: clamp(28px, 8vw, 36px); }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__trust-points { flex-direction: column; align-items: center; gap: 10px; }

  .services-grid { grid-template-columns: 1fr; }
  .popular-services { padding: 80px 0 90px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px; }

  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 900px) {
  .primary-nav { position: absolute; top: 50%; right: 58px; display: flex; flex: none; transform: translateY(-50%); }
  .primary-nav__list, .primary-nav .nav-cta { display: none; }
  .admin-icon-link { margin-right: 8px; }
}
