/* ========== SECTIONS ========== */

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 210, 0.22), transparent);
}

/* ==========================================================
   HERO — angel-inspired atmospheric brand screen
   Layers:
   1. hero-glow         — central halo + descending beam
   2. hero::before      — symmetrical wing-shaped glows
   3. hero::after       — light particles / dust
   4. hero-wings (div)  — flowing ribbon accents
   ========================================================== */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  overflow: hidden;
}

/* Layer 1 — central halo core + descending vertical beam */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    /* bright core — the "source" of light */
    radial-gradient(ellipse 18% 12% at 50% 8%, rgba(255, 245, 218, 0.18), transparent 70%),
    /* descending beam */
    linear-gradient(
      180deg,
      rgba(255, 242, 210, 0.07) 0%,
      rgba(255, 242, 210, 0.03) 30%,
      transparent 65%
    ),
    /* wide ambient from source */
    radial-gradient(ellipse 50% 40% at 50% 15%, rgba(255, 240, 210, 0.06), transparent 70%);
}

/* Layer 2 — symmetrical wing-shaped glows (spread outward from center) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    /* left wing — ellipse tilted outward */
    radial-gradient(ellipse 35% 55% at 30% 25%, rgba(255, 242, 218, 0.06), transparent 70%),
    /* right wing — mirrored */
    radial-gradient(ellipse 35% 55% at 70% 25%, rgba(255, 242, 218, 0.06), transparent 70%),
    /* outer wing tips — more subtle, wider spread */
    radial-gradient(ellipse 25% 50% at 15% 35%, rgba(255, 240, 210, 0.03), transparent 65%),
    radial-gradient(ellipse 25% 50% at 85% 35%, rgba(255, 240, 210, 0.03), transparent 65%);
}

/* Layer 3 — particle/dust effect via small radial dots */
.hero::after {
  content: "";
  position: absolute;
  top: 5%;
  left: 30%;
  width: 40%;
  height: 50%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1px 1px at 20% 15%, rgba(255, 248, 225, 0.4), transparent),
    radial-gradient(1px 1px at 45% 25%, rgba(255, 248, 225, 0.3), transparent),
    radial-gradient(1px 1px at 70% 10%, rgba(255, 248, 225, 0.35), transparent),
    radial-gradient(1px 1px at 35% 45%, rgba(255, 248, 225, 0.25), transparent),
    radial-gradient(1px 1px at 60% 35%, rgba(255, 248, 225, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 50% 5%, rgba(255, 248, 225, 0.5), transparent),
    radial-gradient(1px 1px at 80% 40%, rgba(255, 248, 225, 0.2), transparent),
    radial-gradient(1px 1px at 15% 30%, rgba(255, 248, 225, 0.25), transparent),
    radial-gradient(1px 1px at 55% 50%, rgba(255, 248, 225, 0.2), transparent),
    radial-gradient(1px 1px at 25% 55%, rgba(255, 248, 225, 0.15), transparent),
    radial-gradient(1.5px 1.5px at 40% 8%, rgba(255, 248, 225, 0.45), transparent),
    radial-gradient(1px 1px at 65% 20%, rgba(255, 248, 225, 0.3), transparent);
  opacity: 0.7;
  filter: blur(0.3px);
}

/* Layer — angel wings image overlay (semi-transparent, compositional) */
.hero-angel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("../assets/angel-wings-hero.png") no-repeat center 18%;
  background-size: clamp(600px, 75vw, 1100px) auto;
  mix-blend-mode: screen;
  opacity: 0.13;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, black 30%, transparent 75%);
}

/* Layer 4 — flowing ribbon forms (organic curves like feathers/smoke) */
.hero-wings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-wings::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 55%;
  height: 70%;
  background:
    radial-gradient(ellipse 80% 30% at 70% 30%, rgba(255, 242, 218, 0.04), transparent 65%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255, 240, 210, 0.025), transparent 60%);
  transform: rotate(-12deg);
  filter: blur(20px);
}

.hero-wings::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 55%;
  height: 70%;
  background:
    radial-gradient(ellipse 80% 30% at 30% 30%, rgba(255, 242, 218, 0.04), transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(255, 240, 210, 0.025), transparent 60%);
  transform: rotate(12deg);
  filter: blur(20px);
}

.hero-centered {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 820px;
}

.hero-symbol {
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: transparent;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 250, 240, 0.95) 35%,
    rgba(255, 245, 225, 0.45) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 16ch;
}

.hero-subtitle {
  margin-top: var(--space-md);
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: var(--color-text-secondary);
  max-width: 48ch;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

/* ==========================================================
   MANIFESTO — subtle flowing light on one side
   ========================================================== */

.manifesto {
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.manifesto::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background:
    radial-gradient(ellipse 60% 40% at 40% 50%, rgba(255, 240, 215, 0.025), transparent 65%);
  transform: rotate(-8deg);
  pointer-events: none;
  filter: blur(30px);
}

.manifesto-text {
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(1.5rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: transparent;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 245, 0.9) 0%,
    rgba(255, 248, 235, 0.5) 60%,
    rgba(255, 245, 225, 0.25) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 22ch;
}

.manifesto-line { display: block; }
.manifesto + .section::before { display: none; }

/* ========== ABOUT ========== */

.about-studio {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.about-statement {
  color: var(--color-text-primary);
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  line-height: 1.65;
  max-width: 52ch;
}

.about-values {
  display: grid;
  gap: 0.625rem;
  margin-top: var(--space-lg);
}

.about-value {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  transition: color var(--transition-base), border-color var(--transition-base);
}

.about-value:hover {
  color: var(--color-text-secondary);
  border-left-color: rgba(255, 240, 215, 0.35);
}

/* ========== SERVICES ========== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: visible;
}

.service-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-bg-secondary);
  position: relative;
  transition:
    transform 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 240, 215, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-3px);
  background: var(--color-bg-elevated);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 240, 215, 0.07);
}

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

.service-num {
  display: block;
  color: rgba(255, 240, 215, 0.2);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

/* ========== PROBLEM — faint wing-shaped light ========== */

.problem { overflow: hidden; }

.problem::after {
  content: "";
  position: absolute;
  top: -15%;
  right: -8%;
  width: 55%;
  height: 130%;
  background:
    radial-gradient(ellipse 60% 45% at 40% 45%, rgba(255, 242, 218, 0.025), transparent 60%),
    radial-gradient(ellipse 40% 55% at 60% 35%, rgba(255, 240, 210, 0.018), transparent 55%);
  transform: rotate(8deg);
  pointer-events: none;
  filter: blur(25px);
  z-index: 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: var(--space-xl);
}

.problem-card { display: flex; gap: 1rem; align-items: flex-start; }

.problem-num {
  flex-shrink: 0;
  color: rgba(255, 240, 215, 0.16);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.problem-text { padding-top: 0.25rem; }

.problem-conclusion {
  margin-top: var(--space-xl);
  max-width: 640px;
}

/* ========== ANGEL ZONE — wraps Solution + Steps ========== */

.angel-zone {
  position: relative;
  overflow: hidden;
  --angel-parallax-y: 0px;
}

/* angel image layer (no separate element) */
.angel-zone::before {
  content: "";
  position: absolute;
  inset: -18% -22% -26% 28%;
  pointer-events: none;
  z-index: 1;
  background-image: url("../assets/angel-hero-detail.png");
  background-repeat: no-repeat;
  background-position: right calc(62% + var(--angel-parallax-y));
  background-size: contain;
  opacity: 0.4;
  mix-blend-mode: screen;
  filter: contrast(0.95) brightness(0.96);
  mask-image:
    linear-gradient(to left, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 0.95) 34%, rgba(0, 0, 0, 0.55) 56%, rgba(0, 0, 0, 0.18) 72%, transparent 86%),
    linear-gradient(to top, rgba(0, 0, 0, 1) 16%, rgba(0, 0, 0, 0.85) 44%, rgba(0, 0, 0, 0.34) 70%, transparent 92%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 0.35) 72%, transparent 94%),
    radial-gradient(ellipse 94% 86% at 82% 44%, rgba(0, 0, 0, 0.96) 24%, rgba(0, 0, 0, 0.56) 58%, transparent 82%);
  -webkit-mask-image:
    linear-gradient(to left, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 0.95) 34%, rgba(0, 0, 0, 0.55) 56%, rgba(0, 0, 0, 0.18) 72%, transparent 86%),
    linear-gradient(to top, rgba(0, 0, 0, 1) 16%, rgba(0, 0, 0, 0.85) 44%, rgba(0, 0, 0, 0.34) 70%, transparent 92%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 0.35) 72%, transparent 94%),
    radial-gradient(ellipse 94% 86% at 82% 44%, rgba(0, 0, 0, 0.96) 24%, rgba(0, 0, 0, 0.56) 58%, transparent 82%);
}

/* dark integration veil + soft halo, removes any block edge */
.angel-zone::after {
  content: "";
  position: absolute;
  inset: -14% -18% -22% 34%;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.96) 0%, rgba(7, 7, 8, 0.8) 30%, rgba(7, 7, 8, 0.3) 56%, transparent 76%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.4) 0%, transparent 20%, transparent 78%, rgba(7, 7, 8, 0.72) 100%),
    radial-gradient(ellipse 64% 56% at 80% 40%, rgba(255, 242, 218, 0.06), transparent 70%);
  filter: blur(16px);
}

.angel-zone .section .container {
  position: relative;
  z-index: 2;
}

/* ========== SOLUTION ========== */

.solution .solution-list {
  margin-top: var(--space-lg);
  display: grid;
  gap: 0.75rem;
  max-width: 56ch;
}

.solution .solution-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 1rem;
  transition: border-color var(--transition-base);
}

.solution .solution-item:hover {
  border-left-color: rgba(255, 240, 215, 0.4);
}

/* ========== STEPS — timeline ========== */

.timeline {
  margin-top: var(--space-xl);
  position: relative;
  padding-left: 3rem;
}

.timeline-line {
  position: absolute;
  left: 0.5rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 240, 215, 0.3), rgba(255, 255, 255, 0.04));
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 0.15rem;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-num {
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 240, 215, 0.4);
  letter-spacing: 0.05em;
}

.timeline-marker::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 240, 215, 0.35);
  box-shadow: 0 0 12px rgba(255, 240, 215, 0.2);
}

.timeline-title {
  color: var(--color-text-primary);
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.timeline-text {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  max-width: 45ch;
}

/* ========== CASES — abstract wing forms ========== */

.cases {
  overflow: hidden;
}

.cases-angel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("../assets/angel-wings-abstract.png") no-repeat center 50%;
  background-size: clamp(700px, 80vw, 1200px) auto;
  mix-blend-mode: screen;
  opacity: 0.06;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, black 20%, transparent 70%);
}

.cases::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 40vw, 600px);
  height: 50%;
  background: radial-gradient(ellipse 50% 40% at 50% 30%, rgba(255, 240, 215, 0.025), transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: var(--space-xl);
}

.case-card { display: flex; flex-direction: column; gap: 0.75rem; }

.cases .card.case-card {
  transition:
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.cases .card.case-card::after {
  transition: opacity 260ms ease;
}

.cases .card.case-card:hover {
  transform: translateY(-3px);
  background: var(--color-bg-elevated);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 240, 215, 0.06);
}

.cases .card.case-card:hover::after {
  opacity: 0.85;
}

.case-niche {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 240, 215, 0.45);
  margin-bottom: 0.25rem;
}

.case-line {
  margin: 0;
  line-height: 1.55;
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.case-key {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.125rem;
}

.case-result { color: var(--color-text-primary); }

/* ========== TRUST — halo glow ========== */

.trust {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  overflow: hidden;
}

.trust::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 35vw, 460px);
  height: clamp(280px, 35vw, 460px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 245, 225, 0.04) 0%, rgba(255, 240, 210, 0.015) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
  z-index: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trust-item {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--color-bg-secondary);
  transition: background var(--transition-base);
}

.trust-item:hover { background: var(--color-bg-elevated); }

.trust-title {
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.trust-text {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

/* ========== CTA — echo of Hero divine light ========== */

.cta {
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}

.cta-angel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("../assets/angel-cta-clean.png") no-repeat center 45%;
  background-size: auto clamp(350px, 60vh, 560px);
  mix-blend-mode: screen;
  opacity: 0.08;
  mask-image: radial-gradient(ellipse 55% 60% at 50% 48%, black 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 55% 60% at 50% 48%, black 15%, transparent 65%);
}

.cta-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 250%;
  background:
    radial-gradient(ellipse 30% 20% at 50% 25%, rgba(255, 242, 218, 0.08), transparent 60%),
    radial-gradient(ellipse 25% 35% at 40% 30%, rgba(255, 240, 210, 0.03), transparent 60%),
    radial-gradient(ellipse 25% 35% at 60% 30%, rgba(255, 240, 210, 0.03), transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--color-bg-secondary);
}

.cta-symbol { margin-bottom: var(--space-md); }

.cta-symbol .brand-mark {
  width: 40px;
  margin: 0 auto;
  opacity: 0.3;
}

.cta-title {
  color: var(--color-text-primary);
  font-size: var(--font-size-h2);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0 auto;
}

.cta-text {
  margin-top: var(--space-md);
  color: var(--color-text-secondary);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ========== FOOTER ========== */

.footer {
  padding: var(--space-xl) 0 var(--space-2xl);
  font-size: var(--font-size-sm);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 210, 0.18), transparent);
}

.footer .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.footer-brand { color: var(--color-text-primary); font-weight: 600; }

.footer-note {
  color: var(--color-text-muted);
  margin-left: 0.75rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links { display: inline-flex; gap: 1.25rem; align-items: center; }
.footer-links a { color: var(--color-text-muted); transition: color var(--transition-base); }
.footer-links a:hover { color: var(--color-text-primary); }

/* ========== WORKS / PROOF PAGE ========== */

.works-page-title {
  font-size: var(--font-size-h1);
  max-width: 20ch;
}

.works-page-lead {
  max-width: 52ch;
}

.page-hero {
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.works-cases-section {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.works-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: var(--space-xl);
}

.works-cases-section .card.case-card {
  transition:
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
  text-align: left;
}

.works-cases-section .card.case-card::after {
  transition: opacity 260ms ease;
}

.works-cases-section .card.case-card:hover {
  transform: translateY(-4px);
  background: var(--color-bg-elevated);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 240, 215, 0.06);
}

.works-cases-section .card.case-card:hover::after {
  opacity: 0.85;
}

.page-case-title {
  font-size: var(--font-size-h3);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.page-case-desc {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-sm);
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.page-case-deliverables {
  margin: 0 0 var(--space-md);
  padding: 0;
  list-style: none;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.page-case-deliverables li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.page-case-deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 240, 215, 0.35);
}

.page-case-result {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.55;
  color: var(--color-text-primary);
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.page-case-result-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.works-process-section {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.works-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.25rem);
  margin-top: var(--space-xl);
}

.works-process-step {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.works-process-step:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.works-process-num {
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 240, 215, 0.4);
  margin-bottom: 0.5rem;
}

.works-process-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.375rem;
  color: var(--color-text-primary);
}

.works-process-text {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.works-social-section {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.works-social-head {
  max-width: 40ch;
  margin-bottom: var(--space-lg);
}

.works-social-lead {
  margin: var(--space-md) 0 0;
  max-width: 48ch;
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.works-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

.works-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

.works-tile:focus-visible {
  outline: 1px solid rgba(255, 240, 210, 0.4);
  outline-offset: 3px;
}

.works-tile:hover {
  transform: translateY(-4px);
}

.works-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.works-tile:hover .works-tile-icon {
  color: var(--color-text-secondary);
  border-color: var(--color-border-strong);
  background: rgba(255, 255, 255, 0.04);
}

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

.works-tile-icon-svg--vk {
  width: 1.25rem;
  height: 1.25rem;
}

.works-tile-title {
  margin-bottom: 0.5rem;
}

.works-tile-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 var(--space-md);
}

.works-tile-cta {
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: auto;
  transition: color var(--transition-base), transform var(--transition-base);
}

.works-tile:hover .works-tile-cta {
  color: var(--color-text-primary);
  transform: translateX(2px);
}

.works-trust {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.works-trust-text {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.works-cta-block {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.works-final-cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-lg);
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.works-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.works-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* ========== CONTACT — каналы связи ========== */

.contact-channels-block {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.contact-channels-block > .section-kicker {
  display: block;
  margin-bottom: var(--space-md);
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

.contact-channel-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  min-height: 9.5rem;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.contact-channel-card::after {
  transition: opacity 260ms ease;
}

.contact-channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 240, 215, 0.05);
}

.contact-channel-card:hover::after {
  opacity: 0.55;
}

.contact-channel-card:focus-visible {
  outline: 1px solid rgba(255, 240, 210, 0.4);
  outline-offset: 3px;
}

.contact-channel-title {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.contact-channel-text {
  display: block;
  font-size: var(--font-size-sm);
  line-height: 1.55;
  color: var(--color-text-secondary);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .works-tile-grid { grid-template-columns: 1fr; }
  .works-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .works-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .cases-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .angel-zone::before { inset: -16% -34% -26% 38%; opacity: 0.34; }
  .angel-zone::after { inset: -14% -28% -22% 42%; }
}

@media (max-width: 640px) {
  .contact-channels-grid { grid-template-columns: 1fr; }
  .works-cases-grid { grid-template-columns: 1fr; }
  .works-process-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 4rem); padding-bottom: 3rem; }
  .hero-title { font-size: clamp(2.25rem, 8vw, 3rem); max-width: none; }
  .hero::after { opacity: 0.3; }
  .hero-angel { opacity: 0.08; background-size: 90vw auto; }
  .angel-zone::before { inset: -12% -54% -22% 54%; opacity: 0.26; }
  .angel-zone::after { inset: -12% -44% -20% 56%; }
  .manifesto-text { max-width: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .cases-angel { opacity: 0.04; }
  .cta-angel { opacity: 0.05; }
  .problem::after { opacity: 0.6; }

  .hero-actions, .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline { padding-left: 2.5rem; }
  .timeline-marker { left: -2rem; }
}
