/* ==========================================================================
   Narxoz × IT Easy School — landing styles
   Design system: blue capsules, big bold uppercase type, plenty of whitespace
   ========================================================================== */

:root {
  --blue: #066CF4;          /* primary brand blue (from palette) */
  --blue-deep: #0556C7;
  --red: #E30613;           /* Narxoz red */
  --bg: #F2F2F2;
  --bg-alt: #E8E8E8;
  --ink: #0A0A0A;
  --ink-soft: #2A2A2A;
  --white: #FFFFFF;
  --muted: #6B6B6B;

  --radius-cap: 36px;
  --radius-card: 24px;

  --shadow-soft: 0 24px 60px -20px rgba(6, 108, 244, 0.18);
  --shadow-card: 0 12px 40px -16px rgba(0, 0, 0, 0.18);

  --container: 1280px;
  --gap: clamp(24px, 4vw, 56px);

  /* Helvetica World (proprietary) → Helvetica Neue (system) → Inter */
  --font-display: 'Helvetica World', 'Helvetica Neue', 'Helvetica', 'Inter', Arial, sans-serif;
  /* Canva Sans (proprietary) → Nunito Sans (closest free analog) */
  --font-body: 'Canva Sans', 'Nunito Sans', 'Helvetica Neue', 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding: 0; margin: 0; list-style: none; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em; background: rgba(6,108,244,0.08); padding: 2px 6px; border-radius: 6px; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============================== TYPOGRAPHY =============================== */
.display-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 32px;
  color: var(--ink);
}
.display-title--white { color: var(--white); }

.brand-narxoz { color: var(--red); font-weight: 700; }
.brand-iteasy { color: var(--blue); font-weight: 700; }

/* ============================== PROGRESS BAR ============================= */
.progress-bar {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--blue);
  z-index: 100;
  transition: width 0.1s linear;
}

/* ============================== NAV ====================================== */
.nav {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(242, 242, 242, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav__brand { display: inline-flex; align-items: center; gap: 8px; }

.nav__links {
  display: flex; gap: clamp(14px, 2vw, 28px);
  font-weight: 600; font-size: 14px;
}
.nav__links a { color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--blue); text-decoration: none; }

.nav__cta {
  background: var(--blue); color: var(--white);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.nav__cta:hover {
  background: var(--blue-deep); text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -8px rgba(6,108,244,0.6);
}

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ============================== BRAND LOGOS ============================== */
.brand-logo {
  display: inline-block;
  height: 44px; width: auto;
  object-fit: contain;
}
.brand-logo--lg { height: 72px; }
@media (max-width: 880px) {
  .brand-logo { height: 38px; }
  .brand-logo--lg { height: 56px; }
}

/* ============================== HERO ===================================== */
.hero {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.2fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 48px) clamp(60px, 8vw, 120px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: stretch;
}

.hero__left {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
}
.hero__logos { display: flex; gap: 12px; }
.hero__sub {
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
  margin: 0;
}

.hero__capsule {
  position: relative;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-cap);
  padding: clamp(32px, 5vw, 64px);
  min-height: clamp(420px, 60vh, 600px);
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.hero__capsule:hover { transform: translateY(-2px); box-shadow: 0 30px 70px -20px rgba(6,108,244,0.32); }

.hero__arrow {
  position: absolute; top: clamp(24px, 4vw, 40px); right: clamp(24px, 4vw, 40px);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 200; line-height: 1;
  color: var(--white); opacity: 0.95;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(4px, -4px) rotate(2deg); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.hero__title .word {
  display: inline-block;
  opacity: 0; transform: translateY(20px);
  animation: wordIn .7s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__title .word:nth-child(1) { animation-delay: .05s; }
.hero__title .word:nth-child(2) { animation-delay: .15s; }
.hero__title .word:nth-child(3) { animation-delay: .25s; }
.hero__title .word:nth-child(4) { animation-delay: .35s; }
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__caption {
  font-size: clamp(15px, 1.4vw, 18px);
  margin: 0 0 24px;
  max-width: 540px;
  opacity: 0.95;
}
.hero__caption strong { font-weight: 800; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700; font-size: 16px;
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
  cursor: pointer; border: none;
  align-self: flex-start;
}
.btn--white {
  background: var(--white); color: var(--blue);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(0,0,0,0.3); text-decoration: none; }
.btn--primary {
  background: var(--blue); color: var(--white);
}
.btn--primary:hover { background: var(--blue-deep); text-decoration: none; transform: translateY(-2px); }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero__left { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .hero__capsule { min-height: 480px; }
}

/* ============================== SECTIONS ================================ */
.section {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section--how { background: var(--blue); color: var(--white); }
.section--how .feature-list strong { color: var(--white); }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 880px) { .grid--2 { grid-template-columns: 1fr; } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================== FEATURE LIST ============================ */
.feature-list { display: grid; gap: 18px; }
.feature-list li {
  position: relative; padding-left: 28px;
  font-size: 17px; line-height: 1.55;
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue);
}
.section--how .feature-list li::before { background: var(--white); }
.feature-list strong { font-weight: 800; color: var(--ink); }

/* ============================== WHAT SECTION LAYOUT ===================== */
.what-grid { align-items: center; }
.what-grid .feature-list { margin-top: 24px; }

/* ============================== HOW SECTION LAYOUT ====================== */
.how-head {
  margin-bottom: clamp(32px, 4vw, 56px);
}
.how-head .display-title { margin: 0 0 clamp(28px, 4vw, 48px); }

.steps--inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps--inline li {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 8px;
  padding: 18px 20px;
  min-height: auto;
}
.steps--inline li:hover { transform: translateY(-3px); }
.steps--inline .steps__num {
  font-size: 26px; opacity: 0.8;
}
.steps--inline p { margin: 0; font-size: 18px; line-height: 1.45; font-weight: 500; }

@media (max-width: 880px) {
  .steps--inline { grid-template-columns: 1fr; }
  .steps--inline li { min-height: auto; }
}

.section--how .tech-icons { justify-content: center; margin-top: clamp(32px, 5vw, 56px); }

/* ============================== SCREENSHOTS ============================== */
.screenshot {
  margin: 32px 0 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform .35s ease, box-shadow .35s ease;
}
.screenshot:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
}
.screenshot img { width: 100%; height: auto; display: block; }
.screenshot__caption {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap;
  padding: 14px 18px;
  font-size: 14px; color: var(--ink-soft);
  background: #FAFBFC;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.screenshot__caption a {
  color: var(--blue); font-weight: 700;
}
.screenshot__caption a:hover { color: var(--blue-deep); }
.screenshot--dark {
  background: #0F1115;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
}
.screenshot--hero {
  margin: 0 auto;
  max-width: 1200px;
  border-radius: clamp(20px, 2.5vw, 32px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.screenshot--hero img { display: block; width: 100%; height: auto; }

/* ============================== STEPS =================================== */
.steps { display: grid; gap: 20px; margin: 32px 0; padding: 0; list-style: none; }
.steps li {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 18px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  transition: background .2s, transform .2s;
}
.steps li:hover { background: rgba(255,255,255,0.14); transform: translateX(4px); }
.steps__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; color: var(--white); opacity: 0.7;
}
.steps p { margin: 6px 0 0; font-size: 17px; }

.tech-icons { display: flex; gap: 16px; margin-top: 28px; align-items: center; }
.tech-icon {
  width: 64px; height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
  transition: transform .25s ease;
}
.tech-icon:hover { transform: translateY(-4px) rotate(-3deg); }

/* ============================== CAPSULES ================================ */
.capsule {
  background: var(--blue); color: var(--white);
  border-radius: var(--radius-cap);
  padding: clamp(32px, 5vw, 64px);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.capsule:hover { transform: translateY(-2px); }
.capsule--header { padding: clamp(28px, 4vw, 56px); margin-bottom: clamp(32px, 4vw, 56px); }
.capsule--full { padding: clamp(40px, 5vw, 72px); }

.capsule__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.capsule__title--lg { font-size: clamp(40px, 6vw, 88px); margin-bottom: 32px; }

/* PATH section */
.path-grid { margin-top: 0; }
.path-col__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: uppercase; letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.path-col__title span { color: var(--blue); }
.path-note {
  margin-top: clamp(32px, 4vw, 48px);
  color: var(--muted); font-size: 15px;
  padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08);
}

/* FAIR section */
.fair-grid { margin-top: 24px; }
.fair-col__lead { font-size: 17px; margin: 0 0 16px; opacity: 0.95; }
.check-list { display: grid; gap: 10px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 18px;
}
.check-list li::before {
  content: '✓';
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); color: var(--blue);
  display: grid; place-items: center; font-weight: 900;
  flex-shrink: 0;
}

.groups { display: grid; gap: 12px; }
.group {
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform .4s ease;
}
.group__label {
  display: inline-block; font-weight: 800; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--white); color: var(--blue);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 8px;
}
.group p { margin: 0; font-size: 15px; }

.fair-quote {
  margin: clamp(28px, 4vw, 48px) 0 16px;
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55;
  padding: 20px 24px;
  background: rgba(255,255,255,0.1);
  border-left: 4px solid var(--white);
  border-radius: 12px;
}
.fair-bonus {
  font-size: clamp(16px, 1.6vw, 20px);
  margin: 0 0 20px;
}
.fair-footnote { font-size: 13px; opacity: 0.8; margin: 0; }

/* RESULT */
.section--result { background: var(--bg-alt); }
.capsule--result { display: block; }
.result-grid { align-items: center; gap: clamp(24px, 4vw, 64px); }
.result__text { font-size: clamp(15px, 1.4vw, 18px); margin: 16px 0 0; line-height: 1.6; max-width: 560px; }
.medal-wrap { display: grid; place-items: center; }
.medal-img {
  width: clamp(220px, 26vw, 340px);
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35));
  animation: medalFloat 5s ease-in-out infinite;
}
@keyframes medalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-2deg); }
}

/* CTA */
.section--cta { background: var(--bg); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.cta-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cta-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -16px rgba(6,108,244,0.25); }
.cta-card__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase; letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.qr-frame {
  position: relative;
  width: clamp(260px, 28vw, 340px);
  height: clamp(260px, 28vw, 340px);
  margin: 0 auto 24px;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 0 0 2px rgba(6,108,244,0.18);
  animation: qrPulse 3s ease-in-out infinite;
}
.qr-frame img { width: 100%; height: 100%; object-fit: contain; display: block; }
.qr-frame--sm { width: 120px; height: 120px; padding: 8px; margin: 0; }
.qr-frame--link { display: block; text-decoration: none; cursor: pointer; transition: transform .25s ease; }
.qr-frame--link:hover { transform: translateY(-3px); text-decoration: none; }
@keyframes qrPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(6,108,244,0.18), 0 0 0 0 rgba(6,108,244,0.4); }
  50%      { box-shadow: 0 0 0 2px rgba(6,108,244,0.18), 0 0 0 14px rgba(6,108,244,0); }
}

.cta-instructions { text-align: center; padding: 0 16px; }
.cta-arrow {
  display: block; font-size: 48px; line-height: 1; margin-bottom: 12px;
  color: var(--ink-soft); transform: rotate(-15deg);
}
.cta-instructions ol {
  text-align: left; padding-left: 18px; margin: 0;
  list-style: decimal; display: grid; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
}

@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-arrow { transform: rotate(90deg); }
}

/* ============================== CONTACTS (redesigned) =================== */
.section--contacts { background: var(--bg); padding-bottom: 40px; }

/* Research card — sober academic header, no badges */
.research-card {
  margin-bottom: clamp(48px, 6vw, 80px);
  padding: 0 0 clamp(28px, 3vw, 36px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.research-card__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  font-size: 13px; color: var(--muted);
  font-weight: 600;
}
.research-card__kicker { color: var(--ink); font-weight: 700; }
.research-card__sep {
  width: 24px; height: 1px; background: rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.research-card__year { font-variant-numeric: tabular-nums; }
.research-card__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  max-width: 920px;
}
@media (max-width: 600px) {
  .research-card__head { flex-wrap: wrap; gap: 8px; }
  .research-card__sep { display: none; }
}

/* Section title */
.contacts-section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  text-transform: uppercase; letter-spacing: -0.01em;
  margin: 0 0 24px;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; } }

.member-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -16px rgba(6,108,244,0.22);
  border-color: rgba(6,108,244,0.25);
}
.member-card--lead {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 24px 50px -16px rgba(6,108,244,0.4);
}
.member-card--lead .member-card__role { color: rgba(255,255,255,0.85); }
.member-card--lead .member-card__sub { color: rgba(255,255,255,0.85); }
.member-card--lead .member-card__contacts a { color: var(--white); }
.member-card--lead .ico {
  background: rgba(255,255,255,0.18); color: var(--white);
}
.member-card--lead .member-card__avatar {
  background: var(--white); color: var(--blue);
}

.member-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(6,108,244,0.1); color: var(--blue);
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.member-card__role {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.member-card__name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; line-height: 1.2; margin: 0 0 4px;
}
.member-card__sub { margin: 0 0 16px; font-size: 14px; color: var(--muted); }
.member-card__contacts { display: grid; gap: 10px; margin-top: auto; }
.member-card__contacts li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.member-card__contacts a { font-weight: 600; }
.member-card__contacts a:hover { text-decoration: underline; }
.ico {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(6,108,244,0.1); color: var(--blue);
  font-size: 13px; flex-shrink: 0;
}

/* Contacts CTA row */
.contacts-cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .contacts-cta { grid-template-columns: 1fr; } }

.partner-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-cap);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 720px) { .partner-card { grid-template-columns: 1fr; text-align: center; } }

.partner-card__qr {
  width: 160px; height: 160px;
  background: #fff; border-radius: 16px; padding: 10px;
}
.partner-card__qr img { width: 100%; height: 100%; object-fit: contain; }
.partner-card__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(255,255,255,0.18);
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.partner-card__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: uppercase; letter-spacing: -0.01em;
  margin: 0 0 10px; line-height: 1.1;
}
.partner-card__text { margin: 0 0 18px; font-size: 15px; opacity: 0.95; line-height: 1.5; }

.brand-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
  transition: transform .3s ease;
}
.brand-card:hover { transform: translateY(-4px); }
.brand-card__logo { width: 56px; height: 56px; object-fit: contain; margin-bottom: 8px; }
.brand-card__label { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.brand-card__url {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(20px, 2vw, 26px); color: var(--blue);
  text-decoration: none; transition: color .2s;
}
.brand-card__url:hover { color: var(--blue-deep); text-decoration: underline; }
.brand-card__hint { margin: 0; font-size: 13px; color: var(--muted); }

/* Footer bottom */
.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--muted);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 28px; width: auto; }
.footer-link { color: var(--blue); font-weight: 700; }

/* ============================== ACCESSIBILITY =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .word { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
