/* ============================================
   NODIAN DIGITAL — Light + Petrol Accent v2
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f5f1ea;
  --bg-2:      #ebe6dc;
  --paper:     #fbf8f1;
  --white:     #ffffff;
  --ink:       #15161a;
  --ink-2:     #2a2c33;
  --muted:     #6b6b73;
  --muted-2:   #9a9aa0;
  --line:      #e0d9c8;
  --line-2:    #d0c8b4;
  --accent:    #1f4842;
  --accent-2:  #2c5d56;
  --accent-3:  #143834;
  --accent-soft: #d8e2dd;
  --accent-soft-2: #b9ccc4;
  --accent-light:#5b8b80;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --shadow:    0 30px 80px -20px rgba(31, 72, 66, 0.25);
  --shadow-sm: 0 10px 30px -10px rgba(21, 22, 26, 0.12);
  --shadow-accent: 0 30px 80px -25px rgba(31, 72, 66, 0.5);
  --ease:      cubic-bezier(.2,.8,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select, button { font-family: inherit; }

::selection { background: var(--accent); color: var(--bg); }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.anchor { position: absolute; transform: translateY(-100px); }

@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--light {
  color: var(--accent-soft-2);
}
.eyebrow--light::before { background: var(--accent-soft-2); }

.section-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section-title--light { color: var(--bg); }
.accent-text { color: var(--accent); }
.accent-text--light { color: var(--accent-soft-2); }

.section-head {
  margin-bottom: 64px;
  max-width: 780px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow { padding: 0; }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.65;
  max-width: 640px;
}

/* ===== TEXT REVEAL ANIMATION ===== */
.reveal-line {
  display: block;
  overflow: hidden;
  /* extra room below so descenders (g, j, y, p) aren't clipped */
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}
.reveal-line__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}
.reveal-line.is-visible .reveal-line__inner {
  transform: translateY(0);
}
.reveal-line:nth-child(2) .reveal-line__inner { transition-delay: 0.08s; }
.reveal-line:nth-child(3) .reveal-line__inner { transition-delay: 0.16s; }
.reveal-line:nth-child(4) .reveal-line__inner { transition-delay: 0.24s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ===== TOP STRIP — seamless infinite loop ===== */
.top-strip {
  background: var(--accent);
  color: var(--bg);
  overflow: hidden;
  padding: 9px 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  user-select: none;
}
.top-strip__viewport {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: top-strip-scroll 22s linear infinite;
}
.top-strip__viewport:hover { animation-play-state: paused; }
.top-strip__track {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;   /* matches gap so seam is invisible */
  white-space: nowrap;
  flex-shrink: 0;
}
.top-strip__track .dot { color: var(--accent-soft-2); opacity: 0.6; font-size: 0.55rem; }
@keyframes top-strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--strip-shift, -50%)); }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); flex-shrink: 0; }
.brand__logo { width: 40px; height: 40px; display: block; color: var(--ink); transition: transform 0.4s; }
.brand:hover .brand__logo { transform: rotate(-8deg) scale(1.05); }
.brand__logo--light { color: var(--bg); }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name strong { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; }
.brand__name-sub { font-weight: 400; font-size: 0.82rem; color: var(--muted); margin-top: 3px; letter-spacing: 0.02em; }

.nav__links { display: flex; gap: 4px; }
.nav__links a {
  position: relative;
  padding: 9px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease);
}
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after { transform: translateX(-50%) scale(1); }
.nav__links a:hover { background: var(--bg-2); color: var(--ink); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--accent-3); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 10px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 8px 24px 32px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
  font-weight: 500;
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-menu a:hover { color: var(--accent); padding-left: 6px; }
.mm-num {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.mobile-menu__cta {
  margin-top: 16px;
  background: var(--accent) !important;
  color: var(--bg);
  padding: 16px 22px !important;
  border-radius: 100px !important;
  border: none !important;
  text-align: center;
  justify-content: center;
}
.mobile-menu__cta:hover { padding-left: 22px !important; }

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn--accent {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn--accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent-3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease), height 0.5s var(--ease);
  z-index: 0;
}
.btn--accent:hover::before { width: 350px; height: 350px; }
.btn--accent > * { position: relative; z-index: 1; }
.btn--accent:hover { transform: translateY(-2px); border-color: var(--accent-3); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn--cream {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--bg);
}
.btn--cream:hover { background: var(--white); border-color: var(--white); transform: translateY(-2px); }

/* Hero-specific button variants (on dark background) */
.btn--accent-hero {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
  padding: 16px 32px;
  font-size: 1rem;
  box-shadow: 0 0 0 0 rgba(31,72,66,0);
  transition: background 0.3s, transform 0.2s var(--ease), box-shadow 0.3s;
}
.btn--accent-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--accent-3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease), height 0.5s var(--ease);
  z-index: 0;
}
.btn--accent-hero:hover::before { width: 400px; height: 400px; }
.btn--accent-hero > * { position: relative; z-index: 1; }
.btn--accent-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(31,72,66,0.5); }

.btn--ghost-light {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.30);
  font-weight: 500;
  padding: 16px 32px;
  font-size: 1rem;
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.btn svg { transition: transform 0.25s; }
.btn:hover svg:last-child { transform: translate(2px, -2px); }
.btn__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  transition: background 0.25s;
}
.btn--ghost:hover .btn__play { background: var(--bg); color: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,18,14,0.78) 0%, rgba(10,22,17,0.72) 60%, rgba(12,26,20,0.80) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 0 80px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd75f;
  position: relative;
}
.hero__badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(45, 215, 95, 0.3);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  75%, 100% { transform: scale(2.5); opacity: 0; }
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 28px;
  max-width: 800px;
}
.hero__highlight {
  position: relative;
  color: var(--accent-soft-2);
  display: inline-block;
  font-weight: 800;
}
.hero__highlight::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 10px;
  background: rgba(104,190,155,0.28);
  z-index: -1;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlight-grow 1s var(--ease) 1.2s forwards;
}
@keyframes highlight-grow {
  to { transform: scaleX(1); }
}

.hero__lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.14);
  width: 100%;
  max-width: 520px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.proof-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1.5px solid rgba(104,190,155,0.6);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  box-shadow: 0 0 0 5px rgba(104,190,155,0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  backdrop-filter: blur(4px);
}
.proof-ring::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.20);
  pointer-events: none;
}
.proof-item:hover .proof-ring {
  transform: scale(1.05);
  box-shadow: 0 0 0 8px rgba(104,190,155,0.18);
}
.proof-item strong {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
}
.proof-item em {
  display: inline-block;
  margin-left: 2px;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-soft-2);
  line-height: 1;
}
.proof-item > span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}
.proof-divider { display: none; }

/* HERO VISUAL */
.hero__visual {
  position: relative;
  height: 580px;
}
.hero__main-img {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero__main-img:hover img { transform: none; }
.hero__main-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}
.hero__main-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__small-img {
  position: absolute;
  bottom: -30px;
  left: -50px;
  width: 200px;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid var(--bg);
  z-index: 2;
}
.hero__small-img img { width: 100%; height: 100%; object-fit: cover; }

.hero__sticker {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  z-index: 3;
  box-shadow: var(--shadow-accent);
}
.hero__sticker-text {
  width: 100%;
  height: 100%;
  animation: rotate-slow 18s linear infinite;
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero__sticker-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
}

.hero__floating-card {
  position: absolute;
  bottom: 60px;
  right: -30px;
  background: var(--bg);
  padding: 14px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__floating-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__floating-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.hero__floating-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 4;
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(104,190,155,0.8), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1.4); }
}

@media (max-width: 960px) {
  .hero__inner { padding: 100px 0 60px; }
  .hero__scroll { display: none; }
}
@media (max-width: 640px) {
  .hero__inner { padding: 90px 0 48px; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.2rem); line-height: 1.02; margin-bottom: 18px; }
  .hero__highlight::after { height: 8px; bottom: 3px; }
  .hero__lead { font-size: 0.96rem; margin-bottom: 28px; line-height: 1.6; }
  .hero__actions { margin-bottom: 40px; flex-direction: column; align-items: stretch; gap: 10px; }
  .btn--accent-hero, .btn--ghost-light { padding: 14px 24px; font-size: 0.95rem; justify-content: center; }
  .hero__proof { gap: 12px; padding-top: 28px; max-width: 100%; }
  .proof-ring { width: 72px; height: 72px; box-shadow: 0 0 0 4px rgba(104,190,155,0.12); }
  .proof-ring::before { inset: 5px; }
  .proof-item strong { font-size: 1.1rem; }
  .proof-item em { font-size: 0.72rem; }
  .proof-item > span { font-size: 0.62rem; }
}

/* ===== TRUST ===== */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  background: var(--paper);
}
.trust__label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.trust__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 20px 56px;
}
.trust__grid span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: opacity 0.25s, color 0.25s, transform 0.25s;
  position: relative;
}
.trust__grid span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.trust__grid span:hover { color: var(--accent); }
.trust__grid span:hover::after { width: 100%; }

/* ===== QUOTE BAND (full accent green) ===== */
.quote-band {
  position: relative;
  background: var(--accent);
  color: var(--bg);
  padding: 140px 0;
  overflow: hidden;
}
.quote-band__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0.08;
}
.quote-band__marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.quote-band__marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.quote-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}
.quote-band__text {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin-bottom: 48px;
}
.quote-band__text em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent-soft-2);
}
.quote-band__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft-2);
}
.quote-band__line {
  width: 40px;
  height: 1px;
  background: var(--accent-soft-2);
}

@media (max-width: 768px) {
  .quote-band { padding: 80px 0; }
}

/* ===== WORK ===== */
.work { padding: 120px 0 100px; }
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px 380px;
  gap: 24px;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.work-card--tall { grid-row: span 2; }
.work-card--wide { grid-column: span 2; }
.work-card__image { position: relative; width: 100%; height: 100%; overflow: hidden; }
.work-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 2s var(--ease);
  transform-origin: center center;
}
.work-card:hover .work-card__image img { transform: none; }
.work-card__overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 50%, rgba(21, 22, 26, 0.72) 100%);
  color: var(--bg);
  transition: background 0.5s var(--ease);
}
.work-card:hover .work-card__overlay {
  background: linear-gradient(180deg, transparent 15%, rgba(21, 22, 26, 0.90) 75%);
}
.work-card__category {
  display: inline-block;
  width: fit-content;
  background: var(--bg);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.work-card__overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.15;
}
.work-card__overlay p {
  font-size: 0.95rem;
  max-width: 400px;
}

.work__cta {
  margin-top: 64px;
  padding: 40px 48px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.work__cta::before {
  content: '✦';
  position: absolute;
  right: -40px;
  top: -40px;
  font-size: 12rem;
  opacity: 0.07;
  line-height: 1;
}
.work__cta p {
  font-size: 1.15rem;
  font-weight: 500;
  position: relative;
}
.work__cta .link-arrow {
  color: var(--bg);
  border-color: var(--bg);
  position: relative;
}
.work__cta .link-arrow:hover { color: var(--bg); border-color: var(--bg); opacity: 0.8; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.25s var(--ease), color 0.25s, border-color 0.25s;
}
.link-arrow:hover { gap: 18px; color: var(--accent); border-color: var(--accent); }
.link-arrow--light { color: var(--bg); border-color: var(--bg); }
.link-arrow--light:hover { color: var(--bg); border-color: var(--bg); opacity: 0.85; }

@media (max-width: 1024px) {
  .work__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 320px 320px;
  }
  .work-card--tall { grid-row: auto; }
  .work-card--wide { grid-column: auto; }
}
@media (max-width: 640px) {
  .work__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 280px);
  }
  .work-card__overlay { padding: 24px; }
  .work-card__overlay h3 { font-size: 1.3rem; }
  .work__cta { padding: 28px; flex-direction: column; align-items: flex-start; }
}

/* On touch devices: slightly darker overlay for readability */
@media (hover: none) {
  .work-card__overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(21, 22, 26, 0.88) 70%);
  }
}

/* ===== GALLERY ===== */
.gallery {
  overflow: hidden;
  padding: 32px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery__viewport {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.gallery__track {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}
.gallery figure {
  width: 320px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.gallery figure:hover { transform: none; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 600px) { .gallery figure { width: 240px; height: 180px; } }

/* ===== SERVICES ===== */
.services { padding: 120px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-soft-2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-card__hint { transform: translate(8px, -8px); color: var(--accent); }

.service-card__num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.6;
}
.service-card__hint {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted-2);
  transition: transform 0.4s var(--ease), color 0.3s;
}

.service-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.service-card--hero::before { display: none; }
.service-card--hero:hover {
  background: var(--accent-3);
  transform: translateY(-6px);
  border-color: var(--accent-3);
}
.service-card--hero .service-card__visual {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.service-card--hero .service-card__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.service-card--hero:hover .service-card__visual img { transform: none; }
.service-card--hero .service-card__content { padding: 36px; }
.service-card--hero .service-card__num { color: var(--accent-soft-2); }
.service-card--hero h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--bg);
}
.service-card--hero p { color: rgba(245,241,234,0.8); margin-bottom: 24px; }
.service-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-card__list li {
  list-style: none;
  font-size: 0.82rem;
  background: rgba(245,241,234,0.1);
  border: 1px solid rgba(245,241,234,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--bg);
}

.service-card--cta {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--cta::before { background: var(--accent-soft-2); }
.service-card--cta:hover { background: #1a1b20; }
.service-card--cta h3 { color: var(--bg); }
.service-card--cta p { color: rgba(245,241,234,0.7); margin-bottom: 20px; }

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--hero { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card--hero { grid-column: span 1; }
  .service-card--hero h3 { font-size: 1.6rem; }
  .service-card { padding: 24px; }
}

/* ===== WHY US (full accent dark) ===== */
.why-us {
  position: relative;
  background: var(--accent);
  color: var(--bg);
  padding: 120px 0;
  overflow: hidden;
}
.why-us__bg-blob {
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
  animation: blob-float 16s ease-in-out infinite reverse;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease), background 0.4s, border-color 0.4s;
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(245, 241, 234, 0.08);
  border-color: rgba(245, 241, 234, 0.25);
}
.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
}
.why-card:hover .why-card__icon { transform: rotate(-8deg) scale(1.05); }
.why-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--bg);
}
.why-card > p {
  color: rgba(245,241,234,0.75);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.why-card__compare {
  border-top: 1px solid rgba(245,241,234,0.15);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
}
.compare-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}
.compare-row--us .compare-tag {
  background: var(--bg);
  color: var(--accent);
}
.compare-row--us span:last-child { color: var(--bg); font-weight: 500; }
.compare-row--them .compare-tag {
  background: rgba(245,241,234,0.1);
  color: rgba(245,241,234,0.6);
}
.compare-row--them span:last-child { color: rgba(245,241,234,0.6); text-decoration: line-through; }

@media (max-width: 800px) {
  .why-us { padding: 80px 0; }
  .why-us__grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px; }
}

/* ===== PHILOSOPHY ===== */
.philosophy { padding: 120px 0; background: var(--paper); }
.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy__images {
  position: relative;
  height: 600px;
}
.philosophy__deco {
  position: absolute;
  bottom: 5%;
  left: 0;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.5;
  animation: rotate-slow 18s linear infinite;
  z-index: 4;
}
.philosophy__img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.philosophy__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.philosophy__img:hover img { transform: none; }
.philosophy__img--1 { width: 65%; height: 70%; top: 0; left: 0; }
.philosophy__img--2 {
  width: 55%; height: 50%; bottom: 0; right: 0;
  border: 8px solid var(--paper); z-index: 2;
}
.philosophy__img--3 {
  width: 35%; height: 35%; top: 25%; right: 5%; z-index: 3;
  border: 6px solid var(--paper);
}

.philosophy__text p {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-top: 20px;
}
.philosophy__text p:first-of-type { margin-top: 24px; }

.philosophy__principles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.principle {
  display: grid;
  grid-template-columns: 36px 140px 1fr;
  gap: 16px;
  align-items: center;
  transition: transform 0.3s;
}
.principle:hover { transform: translateX(6px); }
.principle__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.principle strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.principle span {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .philosophy__inner { grid-template-columns: 1fr; gap: 60px; }
  .philosophy__images { max-width: 540px; height: 500px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .philosophy__images { display: none; }
  .philosophy__inner { gap: 32px; }
  .principle { grid-template-columns: 36px 1fr; }
  .principle span { grid-column: 2; }
  .principle:hover { transform: none; }
}

/* ===== ABOUT ===== */
.about { padding: 120px 0; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__lead {
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 24px;
  line-height: 1.6;
  font-weight: 500;
}
.about__content > p:not(.about__lead) {
  font-size: 1.02rem;
  color: var(--ink-2);
  margin-top: 18px;
  line-height: 1.7;
}
.about__btn { margin-top: 36px; }

.about__visual {
  position: relative;
  height: 580px;
}
.about__photo {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.about__photo:hover img { transform: none; }
.about__photo--1 { width: 70%; height: 75%; top: 0; right: 0; z-index: 1; }
.about__photo--2 {
  width: 55%; height: 45%; bottom: 0; left: 0; z-index: 2;
  border: 8px solid var(--bg);
}
.about__badge {
  position: absolute;
  top: 30%;
  left: 6%;
  background: var(--accent);
  color: var(--bg);
  padding: 18px 24px;
  border-radius: 18px;
  z-index: 3;
  box-shadow: var(--shadow-accent);
  animation: float 6s ease-in-out infinite;
}
.about__badge strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.about__badge span {
  display: block;
  font-size: 0.78rem;
  color: var(--accent-soft-2);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

@media (max-width: 1000px) {
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__visual { width: min(540px, 100%); height: 480px; justify-self: center; }
}
@media (max-width: 640px) {
  .about__visual { width: 100%; height: 300px; justify-self: stretch; }
  .about__photo--1 { width: 100%; height: 100%; top: 0; left: 0; right: 0; border-radius: var(--radius); }
  .about__photo--2 { display: none; }
  .about__badge { top: auto; bottom: 16px; left: 16px; padding: 12px 16px; }
  .about__badge strong { font-size: 1.1rem; }
}

/* ===== STATS ===== */
.stats {
  background: var(--accent-3);
  color: var(--bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
}
.stats__head {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.stats__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--bg);
}
.stats__head .eyebrow::before { display: none; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(245,241,234,0.15);
  padding-left: 24px;
}
.stat__num {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__suffix {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-soft-2);
  margin-top: -10px;
}
.stat__label {
  font-size: 0.88rem;
  color: rgba(245,241,234,0.65);
  margin-top: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 800px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
@media (max-width: 480px) {
  .stats { padding: 80px 0; }
  .stats__grid { grid-template-columns: 1fr; }
}

/* ===== PROCESS ===== */
.process { padding: 120px 0; }
.process__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.5s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--accent-soft-2);
  box-shadow: var(--shadow-sm);
}
.step:hover::after { height: 100%; }
.step__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.step__num {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.step__duration {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.step p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.step__icon { color: var(--accent); opacity: 0.5; transition: opacity 0.3s, transform 0.4s; }
.step:hover .step__icon { opacity: 1; transform: rotate(-8deg) scale(1.05); }

@media (max-width: 800px) { .process__list { grid-template-columns: 1fr; } }

/* ===== TESTIMONIAL ===== */
.testimonial { padding: 120px 0; background: var(--paper); }
.testimonial__main {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial__quote-mark {
  position: absolute;
  top: 16px;
  left: 36px;
  font-family: 'Inter', serif;
  font-size: 7rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.18;
  font-weight: 700;
}
.testimonial__main blockquote {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__author img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--accent-soft);
}
.testimonial__author strong { display: block; font-size: 1rem; font-weight: 600; }
.testimonial__author span { font-size: 0.88rem; color: var(--muted); }
.testimonial__small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.t-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.35s, border-color 0.35s;
}
.t-card:hover { transform: translateY(-4px); border-color: var(--accent-soft-2); }
.t-card__stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.t-card p { font-size: 0.98rem; color: var(--ink); line-height: 1.55; margin-bottom: 20px; }
.t-card__author { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.t-card__author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
@media (max-width: 800px) {
  .testimonial__small { grid-template-columns: 1fr; }
  .testimonial__main { padding: 48px 28px 32px; }
  .testimonial__quote-mark { font-size: 4rem; left: 20px; top: 8px; }
}

/* ===== FAQ ===== */
.faq { padding: 120px 0; }
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.faq__head { position: sticky; top: 100px; }
.faq__sub {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.faq__sub a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: gap 0.25s;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item[open] {
  background: var(--bg);
  border-color: var(--accent-soft-2);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 24px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item[open] summary { color: var(--accent); }
.faq-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s, color 0.3s;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.faq-item__content {
  padding: 0 28px 28px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  animation: fade-down 0.4s var(--ease);
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__head { position: static; }
}

/* ===== CTA BANNER (full accent) ===== */
.cta-banner {
  position: relative;
  background: var(--accent);
  color: var(--bg);
  padding: 120px 0;
  overflow: hidden;
}
.cta-banner__bg-blob {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--accent-2) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, var(--accent-light) 0%, transparent 50%);
  opacity: 0.5;
  pointer-events: none;
  animation: blob-float 12s ease-in-out infinite;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-banner__top { margin-bottom: 28px; }
.cta-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(245,241,234,0.12);
  border: 1px solid rgba(245,241,234,0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--bg);
  backdrop-filter: blur(8px);
}
.cta-banner__dot {
  width: 8px;
  height: 8px;
  background: #2dd75f;
  border-radius: 50%;
  position: relative;
}
.cta-banner__dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(45, 215, 95, 0.4);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.cta-banner__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.cta-banner__title em {
  font-style: italic;
  color: var(--accent-soft-2);
  font-weight: 800;
}
.cta-banner__lead {
  font-size: 1.1rem;
  color: rgba(245,241,234,0.85);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cta-banner { padding: 80px 0; }
}

/* ===== CONTACT ===== */
.contact { padding: 120px 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__info { position: sticky; top: 100px; }
.contact__lead {
  font-size: 1.05rem;
  color: var(--ink-2);
  margin-top: 20px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.contact-channel:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--bg);
}
.contact-channel:hover .contact-channel__arrow {
  color: var(--accent);
  transform: translate(4px, -4px);
}
.contact-channel__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
.contact-channel:hover .contact-channel__icon {
  background: var(--accent);
  color: var(--bg);
}
.contact-channel strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.contact-channel span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.contact-channel__arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--muted-2);
  transition: transform 0.25s, color 0.25s;
}

.contact__guarantees {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--bg);
  font-weight: 500;
}
.guarantee svg { color: var(--accent-soft-2); flex-shrink: 0; }

/* CONTACT FORM */
.contact__form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.form-progress__step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.form-progress__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.4s var(--ease);
}
.form-progress__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
}
.form-progress__step.is-active .form-progress__num {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--accent-soft);
}
.form-progress__step.is-active .form-progress__label { color: var(--ink); }
.form-progress__step.is-complete .form-progress__num {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.form-progress__line {
  flex: 1;
  height: 1.5px;
  background: var(--line-2);
  position: relative;
  min-width: 24px;
}
.form-progress__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.form-progress__line.is-complete::after { transform: scaleX(1); }

.form-step { display: none; }
.form-step.is-active { display: block; animation: form-fade 0.45s var(--ease); padding: 36px 40px 32px; }
@keyframes form-fade {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}

.form-step__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.form-step__sub {
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-field label small { color: var(--muted-2); font-weight: 400; font-size: 0.78rem; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea,
.form-field select {
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--ink);
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted-2); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231f4842' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}

.form-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.form-option { position: relative; }
.form-option input { position: absolute; opacity: 0; pointer-events: none; }
.form-option > span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.25s;
  color: var(--ink);
}
.form-option > span:hover { border-color: var(--accent); color: var(--accent); }
.form-option input:checked + span {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.form-option svg { flex-shrink: 0; color: currentColor; }

.form-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-pills input { position: absolute; opacity: 0; pointer-events: none; }
.pill {
  display: inline-block;
  padding: 10px 18px;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }
.form-pills input:checked + .pill {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.form-actions .btn { padding: 13px 24px; }
.form-actions .btn:only-child { margin-left: auto; }

.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 16px; }
.form-note a { text-decoration: underline; color: var(--ink-2); }

.form-step--success { text-align: center; padding: 60px 40px 40px; }
.form-success__icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pop-in 0.6s cubic-bezier(.2,1.6,.4,1);
}
@keyframes pop-in {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.form-step--success p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 400px;
  margin: 12px auto 0;
}

@media (max-width: 1000px) {
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__info { position: static; }
  .form-options { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .form-progress { padding: 20px 22px; }
  .form-step.is-active { padding: 28px 22px 24px; }
  .form-step--success { padding: 40px 22px 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-progress__label { display: none; }
  .form-progress__line { min-width: 16px; }
  .form-options { grid-template-columns: 1fr; }
  .form-actions .btn { padding: 12px 20px; font-size: 0.9rem; flex: 1; justify-content: center; }
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-accent);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s, background 0.25s;
}
.floating-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.floating-cta:hover { background: var(--accent-3); }
@media (max-width: 640px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 64px;
}
.footer__brand .brand { color: var(--bg); }
.footer__brand .brand__logo { filter: invert(1) brightness(2); }
.footer__brand .brand__name strong { color: var(--bg); }
.footer__brand .brand__name-sub { color: var(--accent-soft-2); }
.footer__brand p {
  color: rgba(245,241,234,0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 32px;
}

.footer__newsletter p {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft-2);
  margin-bottom: 12px;
}
.footer__form {
  display: flex;
  align-items: center;
  background: rgba(245,241,234,0.06);
  border: 1px solid rgba(245,241,234,0.15);
  border-radius: 100px;
  padding: 4px 4px 4px 18px;
  max-width: 320px;
  transition: border-color 0.25s;
}
.footer__form:focus-within { border-color: var(--accent-soft-2); }
.footer__form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--bg);
  flex: 1;
  font-size: 0.9rem;
  padding: 8px 0;
}
.footer__form input::placeholder { color: rgba(245,241,234,0.4); }
.footer__form button {
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s;
}
.footer__form button:hover { background: var(--accent-3); }

.footer__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.95rem;
  color: var(--bg);
  margin-bottom: 10px;
  transition: color 0.25s, transform 0.25s;
}
.footer__col a:hover { color: var(--accent-soft-2); transform: translateX(4px); }

.footer__big {
  font-size: clamp(4rem, 18vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-align: center;
  margin-bottom: 32px;
  user-select: none;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-3) 90%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(245,241,234,0.1);
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(245,241,234,0.5);
}

@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .footer__links { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== AVATAR INITIALS ===== */
.avatar-initials {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: var(--font);
  flex-shrink: 0;
  user-select: none;
}
.testimonial__author .avatar-initials {
  width: 56px;
  height: 56px;
  font-size: 1rem;
  border: 3px solid var(--accent-soft);
}
.t-card__author .avatar-initials {
  width: 32px;
  height: 32px;
  font-size: 0.68rem;
}
.avatar-initials--mh { background: var(--accent); color: var(--bg); }
.avatar-initials--sm { background: #2d4a7a; color: #fff; }
.avatar-initials--tk { background: #7a3d2d; color: #fff; }
.avatar-initials--ar { background: #4a2d7a; color: #fff; }

/* ===== MARQUEE KEYFRAME (gallery + quote-band) ===== */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
