/* ========== SUGORIA · BRAND-CORRECT REDESIGN ========== */
/* Palette: #61993B / #76689A / #F3E03B / #B0B0A9 / #8E9291 */

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap&subset=cyrillic');

:root {
  /* Brand palette */
  --green: #61993B;
  --green-deep: #4F7E2F;
  --green-darker: #3A5E22;
  --green-tint: #E8F1DF;
  --purple: #76689A;
  --purple-deep: #5E5180;
  --purple-tint: #ECE9F2;
  --yellow: #F3E03B;
  --yellow-deep: #D9C420;
  --gray-light: #B0B0A9;
  --gray-bg: #ECECE8;
  --gray-dark: #8E9291;
  --ink: #1F2622;
  --ink-dim: #5A6360;
  --ink-muted: #8E9291;
  --paper: #FFFFFF;
  --bg: #F7F7F4;
  --line: #DEDED8;

  /* Type */
  --font-display: 'Comfortaa', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

/* ===== Brand display type — Comfortaa with tracking 50 (≈ 0.05em) ===== */
.h-display, .display {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 0.98;
}

/* Layout */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section { padding: 120px 0; position: relative; }
.section--tight { padding: 80px 0; }

/* ===== Eyebrow ===== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: currentColor;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: white;
}
.btn--primary:hover { background: var(--green-deep); transform: translateY(-1px); }

.btn--purple {
  background: var(--purple);
  color: white;
}
.btn--purple:hover { background: var(--purple-deep); }

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
}
.btn--yellow:hover { background: var(--yellow-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 247, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 36px; width: auto; }
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-dim);
  transition: color .2s;
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--green); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav { padding: 12px 20px; }
  .nav__phone { display: none; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  min-height: calc(100vh - 220px);
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.92;
  font-size: clamp(56px, 8.4vw, 156px);
  color: var(--ink);
}
.hero__title .green { color: var(--green); }
.hero__title .purple { color: var(--purple); }
.hero__title .underline {
  position: relative;
  display: inline-block;
}
.hero__title .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -0.05em;
  height: 0.08em;
  background: var(--yellow);
  border-radius: 999px;
  z-index: -1;
}

.hero__lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 50ch;
}

.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green);
  min-height: 580px;
  display: flex;
  flex-direction: column;
}
.hero__visual-photo {
  position: absolute;
  inset: 0;
}
.hero__visual-photo img,
.hero__visual-photo > div,
.hero__visual-photo svg {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}
.hero__visual-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(97,153,59,0.0) 30%, rgba(97,153,59,0.85) 100%);
}
.hero__visual-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(243,224,59,0.15), transparent 50%);
  z-index: 1;
}
.hero__visual-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: white;
}
.hero__visual-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.hero__visual-bottom {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 2px solid var(--line);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.95;
  color: var(--green);
}
.hero__stat-num .small { font-size: 0.5em; vertical-align: super; color: var(--purple); }
.hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
  display: block;
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 380px; }
}

/* ===== Floral motif (decoration from brand) ===== */
.bloom {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}

/* ===== TAGS ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.tag--green { background: var(--green-tint); border-color: transparent; color: var(--green-darker); }
.tag--purple { background: var(--purple-tint); border-color: transparent; color: var(--purple-deep); }
.tag--yellow { background: var(--yellow); border-color: transparent; color: var(--ink); }
.tag--white-line { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: white; backdrop-filter: blur(8px); }

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===== SEC HEAD ===== */
.sec-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.sec-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.98;
  font-size: clamp(36px, 5vw, 76px);
  color: var(--ink);
}
.sec-head__title .green { color: var(--green); }
.sec-head__title .purple { color: var(--purple); }
.sec-head__lead { color: var(--ink-dim); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.55; max-width: 50ch; }
@media (max-width: 900px) { .sec-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; } }

/* ===== DIRECTIONS GRID ===== */
.dirs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dir {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 440px;
  position: relative;
  transition: all .3s ease;
  cursor: pointer;
  border: 1px solid var(--line);
  overflow: hidden;
}
.dir:nth-child(1) { background: var(--green); color: white; border-color: transparent; }
.dir:nth-child(2) { background: var(--purple); color: white; border-color: transparent; }
.dir:nth-child(3) { background: white; }
.dir:nth-child(4) { background: var(--yellow); }
.dir:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); }
.dir__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.dir__img {
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.15);
}
.dir__img img,
.dir__img > div,
.dir__img svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.dir__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  margin-top: auto;
}
.dir__desc { font-size: 14px; line-height: 1.5; opacity: 0.85; }
.dir__arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.dir:nth-child(3) .dir__arrow { background: var(--green-tint); color: var(--green); }
.dir:nth-child(4) .dir__arrow { background: rgba(0,0,0,0.08); color: var(--ink); }
.dir:hover .dir__arrow { transform: rotate(-45deg); }

@media (max-width: 1024px) { .dirs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dirs { grid-template-columns: 1fr; } }

/* ===== AGZS / MAP ===== */
.agzs-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.agzs-map {
  background: var(--green);
  border-radius: var(--radius-lg);
  height: 600px;
  position: relative;
  overflow: hidden;
}
.agzs-list {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  height: 600px;
  overflow-y: auto;
}
.agzs-list::-webkit-scrollbar { width: 4px; }
.agzs-list::-webkit-scrollbar-thumb { background: var(--gray-light); border-radius: 2px; }
.agzs-list__head {
  position: sticky;
  top: 0;
  background: white;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.agzs-list__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.agzs-row {
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: background .2s;
}
.agzs-row:hover, .agzs-row.active { background: var(--green-tint); }
.agzs-row__city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.agzs-row__addr { font-size: 14px; color: var(--ink-dim); }
.agzs-row__svc { display: flex; gap: 6px; }
.svc-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--green-tint);
  color: var(--green-darker);
  text-transform: uppercase;
}
.svc-pill.metan { background: var(--purple-tint); color: var(--purple-deep); }

/* MAP */
.map-canvas { position: absolute; inset: 0; }
.map-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(118,104,154,0.18), transparent 50%);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid white;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
}
.map-pin::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
}
.map-pin:hover, .map-pin.active {
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 0 0 8px rgba(243,224,59,0.3);
}
.map-pin.active { background: white; }
.map-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.map-overlay {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 18px 22px;
  max-width: 280px;
  z-index: 3;
}
.map-overlay__city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.map-overlay__addr { font-size: 13px; color: var(--ink-dim); margin-bottom: 12px; }
.map-overlay__svc { display: flex; gap: 6px; }

@media (max-width: 900px) {
  .agzs-block { grid-template-columns: 1fr; }
  .agzs-list, .agzs-map { height: 460px; }
}

/* ===== B2B ===== */
.b2b {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
}
.b2b__hero {
  background: var(--purple);
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.b2b__hero h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0.02em;
}
.b2b__hero h3 .yellow { color: var(--yellow); }
.b2b__hero p { font-size: 16px; line-height: 1.55; max-width: 40ch; opacity: 0.9; }
.b2b__hero-bignum {
  position: absolute;
  bottom: -30px; right: -10px;
  font-family: var(--font-display);
  font-size: clamp(180px, 22vw, 360px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.8;
  opacity: 0.1;
  pointer-events: none;
}
.b2b__hero-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.b2b__cards { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.b2b__card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.b2b__card:nth-child(2) { background: var(--green-tint); border-color: transparent; }
.b2b__card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--green);
}
.b2b__card:nth-child(2) .b2b__card-num { color: var(--green-darker); }
.b2b__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-top: auto;
  color: var(--ink);
}
.b2b__card-desc { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }

@media (max-width: 1024px) {
  .b2b { grid-template-columns: 1fr; }
  .b2b__hero { padding: 36px; min-height: 380px; }
}

/* ===== ECO BANNER (vs бензин) ===== */
.eco-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  color: white;
}
.eco-banner__side {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.eco-banner__side--bad {
  background: linear-gradient(135deg, #2A2520, #4A413A);
}
.eco-banner__side--bad::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(120,80,50,0.4), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(0,0,0,0.15) 20px 21px);
  opacity: 0.7;
}
.eco-banner__side--good {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
}
.eco-banner__side--good::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(40px);
}
.eco-banner__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
.eco-banner__sub {
  font-size: 14px;
  opacity: 0.85;
  max-width: 30ch;
  position: relative;
  z-index: 2;
}
.eco-banner__center {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255,255,255,0.3);
  z-index: 3;
}
.eco-banner__title {
  position: absolute;
  top: 48px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.03em;
  z-index: 4;
  color: white;
}
.eco-banner__title em { color: var(--yellow); font-style: normal; }
.eco-banner__cta {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

@media (max-width: 768px) {
  .eco-banner { grid-template-columns: 1fr; min-height: auto; }
  .eco-banner__side { min-height: 280px; }
  .eco-banner__center { display: none; }
}

/* ===== LOYALTY ===== */
.loyalty {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.loyalty__card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 60%, var(--purple) 130%);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.loyalty__card-yellow {
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.95;
}
.loyalty__card-blob {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.3);
}
.loyalty__card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.loyalty__card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.loyalty__card-foot {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.loyalty__chip {
  width: 52px; height: 36px;
  background: rgba(255,255,255,0.4);
  border-radius: 6px;
  position: relative;
}
.loyalty__chip::before, .loyalty__chip::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.6);
  left: 6px; right: 6px;
  height: 1px;
}
.loyalty__chip::before { top: 8px; }
.loyalty__chip::after { top: 18px; }

.loyalty__tiers { display: grid; grid-template-rows: repeat(3, 1fr); gap: 16px; }
.tier {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  transition: all .25s;
}
.tier:hover { border-color: var(--green); transform: translateX(4px); }
.tier:nth-child(1) .tier__pct { color: var(--gray-dark); }
.tier:nth-child(2) .tier__pct { color: var(--purple); }
.tier:nth-child(3) .tier__pct { color: var(--green); }
.tier__pct {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: 0.02em;
  line-height: 0.9;
}
.tier__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.tier__cond { color: var(--ink-dim); font-size: 14px; }

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

/* ===== TIMELINE ===== */
.timeline { position: relative; padding: 32px 0; }
.timeline__line {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 2px;
  background: var(--line);
}
.timeline__line::before, .timeline__line::after {
  content: ''; position: absolute; top: -3px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-light);
}
.timeline__line::before { left: 0; }
.timeline__line::after { right: 0; background: var(--green); }
.timeline__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.tl-item { position: relative; padding: 8px 0; }
.tl-item__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--green);
}
.tl-item:nth-child(2) .tl-item__year, .tl-item:nth-child(4) .tl-item__year { color: var(--purple); }
.tl-item__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  margin: 28px 0;
  position: relative;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--green);
}
.tl-item:nth-child(2) .tl-item__dot, .tl-item:nth-child(4) .tl-item__dot {
  background: var(--purple); box-shadow: 0 0 0 1px var(--purple);
}
.tl-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.tl-item__desc { color: var(--ink-dim); font-size: 13px; line-height: 1.5; }
@media (max-width: 900px) {
  .timeline__row { grid-template-columns: 1fr; gap: 32px; }
  .timeline__line { left: 6px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .timeline__line::before { top: 0; left: -3px; }
  .timeline__line::after { bottom: 0; top: auto; left: -3px; right: auto; }
}

/* ===== SPLIT (charity + company) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.split__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 540px;
  position: relative;
  background: var(--purple);
}
.split__visual img,
.split__visual > div:first-child,
.split__visual svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.split__visual-overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(180deg, transparent 40%, rgba(31,38,34,0.7) 100%);
  color: white;
  gap: 12px;
}
.split__text {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.split__text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.split__text h3 .green { color: var(--green); }
.split__text h3 .purple { color: var(--purple); }

.bullet-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.bullet-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-dim);
}
.bullet-list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 3px;
  flex: none;
  position: relative;
}
.bullet-list li:nth-child(2n)::before { background: var(--purple); }

@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__visual { min-height: 360px; } }

/* ===== CONTACTS ===== */
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-list { display: flex; flex-direction: column; }
.contact-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: 1px solid var(--line); }
.contact-item__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-item__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.contact-item__value:hover { color: var(--green); }

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.contact-form .small { font-size: 13px; color: var(--ink-muted); }
.input {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.input:focus { outline: none; border-color: var(--green); background: white; }
.input::placeholder { color: var(--ink-muted); }
textarea.input { resize: vertical; min-height: 80px; }

@media (max-width: 900px) {
  .contacts { grid-template-columns: 1fr; gap: 32px; }
  .contact-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green);
  color: white;
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}
.footer__col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.7;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 15px; opacity: 0.9; transition: opacity .2s; }
.footer__col a:hover { opacity: 1; }
.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 240px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  margin: 60px 0 40px;
  position: relative;
  word-break: break-all;
}
.footer__brand .yellow { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ===== TICKER ===== */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: white;
}
.ticker-track {
  display: flex;
  gap: 56px;
  animation: ticker 60s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ticker-track span { display: inline-flex; gap: 56px; align-items: center; }
.ticker-track .green { color: var(--green); }
.ticker-track .purple { color: var(--purple); }
.ticker-track .star {
  width: 14px; height: 14px;
  background: var(--yellow);
  border-radius: 50%;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BIG QUOTE / STAT ===== */
.bigstat {
  background: var(--purple);
  color: white;
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bigstat::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(80px);
}
.bigstat::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(80px);
}
.bigstat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(140px, 20vw, 360px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
.bigstat__cap {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* ===== Floral background motif (SVG via mask) ===== */
.bloom-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%2361993B'><ellipse cx='50' cy='15' rx='8' ry='22'/><ellipse cx='50' cy='15' rx='8' ry='22' transform='rotate(45 50 50)'/><ellipse cx='50' cy='15' rx='8' ry='22' transform='rotate(90 50 50)'/><ellipse cx='50' cy='15' rx='8' ry='22' transform='rotate(135 50 50)'/><ellipse cx='50' cy='15' rx='8' ry='22' transform='rotate(180 50 50)'/><ellipse cx='50' cy='15' rx='8' ry='22' transform='rotate(225 50 50)'/><ellipse cx='50' cy='15' rx='8' ry='22' transform='rotate(270 50 50)'/><ellipse cx='50' cy='15' rx='8' ry='22' transform='rotate(315 50 50)'/></g><circle cx='50' cy='50' r='10' fill='%23F3E03B'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* utilities */
.no-anim *, .no-anim *::before, .no-anim *::after {
  animation: none !important;
  transition: none !important;
}
