/* ═══════════════════════════════════════════════
   DERMOLIFE COMPLEX — premium landing
   Palette: #00396c (navy) · #00744b (green) · #000 · #fff
   ═══════════════════════════════════════════════ */

:root {
  --navy: #00396c;
  --navy-deep: #001d3a;
  --navy-bright: #0a5c9e;
  --green: #00744b;
  --green-deep: #00402a;
  --green-bright: #0ba36c;
  --ink: #04080f;
  --canvas: #071019;
  --white: #ffffff;
  --mist: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.45);
  --line: rgba(255, 255, 255, 0.09);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', -apple-system, sans-serif;
  --header-h: 84px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  background: var(--canvas);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section { position: relative; padding: clamp(80px, 12vh, 140px) 0; }

/* ═══ custom scrollbar ═══ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--navy), var(--green));
  border-radius: 8px;
}
::selection { background: var(--green); color: var(--white); }

/* ═══════════════ PRELOADER ═══════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease-out);
}
.preloader.is-done { transform: translateY(-101%); }
.preloader__lines {
  position: absolute; height: min(90vh, 700px); width: auto;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.pl-line {
  fill: none; stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: plDraw 1.35s var(--ease-out) forwards;
}
.pl-line--blue   { stroke: var(--navy-bright); animation-delay: 0.05s; }
.pl-line--green  { stroke: var(--green-bright); animation-delay: 0.15s; }
.pl-line--blue2  { stroke: var(--green-bright); animation-delay: 0.1s; }
.pl-line--green2 { stroke: var(--navy-bright); animation-delay: 0.2s; }
@keyframes plDraw { to { stroke-dashoffset: 0; } }

.preloader__logo {
  position: relative; z-index: 2;
  width: min(340px, 70vw);
  opacity: 0; transform: scale(0.92);
  animation: plLogo 0.9s var(--ease-out) 0.45s forwards;
  filter: drop-shadow(0 0 34px rgba(11, 163, 108, 0.35));
}
@keyframes plLogo { to { opacity: 1; transform: scale(1); } }

/* ═══════════════ VINE CURSOR ═══════════════ */
.vine-cursor {
  position: fixed; inset: 0; z-index: 999;
  width: 100%; height: 100%;
  pointer-events: none;
}
@media (hover: none), (pointer: coarse) { .vine-cursor { display: none; } }

/* ═══════════════ ROOT LINES (scroll-drawn) ═══════════════ */
.root-lines {
  position: absolute; top: 0; left: 0; width: 100%;
  z-index: 1; pointer-events: none;
}
.root-lines svg { display: block; width: 100%; height: 100%; }
.root-lines path {
  fill: none; stroke-width: 2; stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* ═══════════════ GRAIN ═══════════════ */
.grain {
  position: fixed; inset: -50%; z-index: 998; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 7s steps(9) infinite;
}
@keyframes grainShift {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-2%); } 60% { transform: translate(-2%,-4%); }
  80% { transform: translate(4%,2%); }
}

/* ═══════════════ AURORA ═══════════════ */
.aurora { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.aurora__blob {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: 0.5; will-change: transform;
}
.aurora__blob--green {
  width: 55vw; height: 55vw; background: rgba(0, 116, 75, 0.35);
  top: -15%; left: -12%; animation: drift1 26s ease-in-out infinite alternate;
}
.aurora__blob--blue {
  width: 60vw; height: 60vw; background: rgba(0, 57, 108, 0.42);
  bottom: -25%; right: -15%; animation: drift2 32s ease-in-out infinite alternate;
}
.aurora__blob--teal {
  width: 34vw; height: 34vw; background: rgba(8, 92, 92, 0.3);
  top: 42%; left: 38%; animation: drift3 22s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(16vw, 14vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-14vw, -12vh) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-10vw, 10vh) scale(1.25); } }

/* ═══════════════ HEADER ═══════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: transform 0.45s var(--ease-out), background 0.4s, box-shadow 0.4s;
  background: transparent;
}
.header__inner {
  width: min(1320px, 94vw); margin-inline: auto;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: height 0.4s var(--ease-out);
}
.header.is-scrolled {
  background: rgba(7, 16, 25, 0.62);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px rgba(0, 0, 0, 0.35);
}
.header.is-scrolled .header__inner { height: 64px; }
.header__logo img { height: 30px; width: auto; transition: height 0.4s var(--ease-out); }
.header.is-scrolled .header__logo img { height: 24px; }

.header__nav { display: flex; gap: 36px; }
.header__nav .nav-link {
  position: relative; font-size: 15px; font-weight: 500;
  color: var(--mist); letter-spacing: 0.02em;
  transition: color 0.3s; padding: 6px 0;
}
.header__nav .nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--navy-bright), var(--green-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.header__nav .nav-link:hover { color: var(--white); }
.header__nav .nav-link.is-active { color: var(--white); }
.header__nav .nav-link.is-active::after { transform: scaleX(1); }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 100px; border: none;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; overflow: hidden; white-space: nowrap;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.btn span { position: relative; z-index: 2; }
.btn--primary {
  color: var(--white);
  background: linear-gradient(120deg, var(--navy) 0%, var(--green) 100%);
  box-shadow: 0 8px 28px rgba(0, 116, 75, 0.35);
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
}
.btn--primary:hover::before { transform: translateX(110%); }
.btn--primary:hover { box-shadow: 0 12px 38px rgba(0, 116, 75, 0.5); transform: translateY(-2px); }
.btn--ghost {
  color: var(--white); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--green-bright); background: rgba(0,116,75,0.12); transform: translateY(-2px); }
.btn--lg { padding: 18px 38px; font-size: 16px; }
.btn--full { width: 100%; }
.btn.is-loading { pointer-events: none; opacity: 0.7; }
.btn.is-loading .btn-label::after { content: '…'; }

/* ═══════════════ BURGER + MOBILE MENU ═══════════════ */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 950; }
.burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.35s var(--ease-out); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 890;
  background: rgba(4, 8, 15, 0.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-menu nav a { font-family: var(--serif); font-size: 30px; color: var(--white); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 30px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,8,15,0.55) 0%, rgba(4,8,15,0.25) 40%, rgba(7,16,25,0.92) 100%),
    radial-gradient(ellipse at 25% 55%, rgba(4,8,15,0.55) 0%, transparent 60%);
}
.hero__content { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 28px;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 12px var(--green-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: 1.06; letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.hero__title em {
  background: linear-gradient(100deg, var(--green-bright), #6fd8ae);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; transform: translateY(110%); }

.hero__sub {
  max-width: 560px; font-size: clamp(16px, 1.5vw, 19px);
  color: var(--mist); margin-bottom: 38px; font-weight: 400;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: clamp(48px, 7vh, 80px); }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: clamp(28px, 5vw, 70px); width: fit-content;
  padding-top: 34px; border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); font-weight: 600;
  background: linear-gradient(100deg, #7fb4e0, var(--green-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-size: 13.5px; color: var(--faint); letter-spacing: 0.04em; margin-top: 2px; }

.hero__scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 20px;
}
.hero__scroll-hint span {
  position: absolute; top: 8px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 4px;
  background: var(--green-bright);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint { 55% { transform: translateY(14px); opacity: 0; } 56% { transform: translateY(0); opacity: 0; } 100% { opacity: 1; } }

/* ═══════════════ SECTION HEADS ═══════════════ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 7vh, 80px); }
.section-head__eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: 16px;
}
.section-head__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4.6vw, 58px); line-height: 1.12; letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.section-head__title .w { display: inline-block; }
.section-head__sub { color: var(--mist); font-size: clamp(15px, 1.4vw, 18px); }

/* ═══════════════ SHOWCASE ═══════════════ */
.showcase { position: relative; }
.showcase__panel {
  position: relative; min-height: 92svh;
  display: flex; align-items: center;
  padding: 40px 0;
}
.showcase__numeral {
  position: absolute; top: 50%; right: 2vw; transform: translateY(-50%);
  font-family: var(--serif); font-size: clamp(140px, 26vw, 380px); font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  user-select: none; line-height: 1;
}
.showcase__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px); align-items: center;
  position: relative; z-index: 2;
}
.showcase__media {
  position: relative; border-radius: 28px; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
  border: 1px solid var(--line);
}
.showcase__media img { width: 100%; height: auto; transform: scale(1.02); }
.showcase__glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  mix-blend-mode: screen; opacity: 0.55;
}
.showcase__glow--green { background: radial-gradient(ellipse at 70% 20%, rgba(11,163,108,0.4), transparent 55%); }
.showcase__glow--amber { background: radial-gradient(ellipse at 70% 20%, rgba(200,140,40,0.35), transparent 55%); }
.showcase__glow--blue  { background: radial-gradient(ellipse at 70% 20%, rgba(10,92,158,0.45), transparent 55%); }

.showcase__tag {
  display: inline-block; padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(11,163,108,0.4); color: var(--green-bright);
  background: rgba(0,116,75,0.1);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 22px;
}
.showcase__name {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.08; margin-bottom: 18px;
}
.showcase__name em {
  background: linear-gradient(100deg, #7fb4e0, var(--green-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.showcase__desc { color: var(--mist); font-size: clamp(15px, 1.4vw, 17.5px); margin-bottom: 26px; max-width: 480px; }
.showcase__list { display: grid; gap: 13px; margin-bottom: 34px; }
.showcase__list li {
  position: relative; padding-left: 32px; color: var(--mist); font-size: 15.5px;
}
.showcase__list li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E") center/10px no-repeat,
    linear-gradient(120deg, var(--navy), var(--green));
}

/* ═══════════════ SYSTEM ═══════════════ */
.system__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.system__card {
  position: relative; padding: 44px 34px; border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
  overflow: hidden;
}
.system__card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(11,163,108,0.14), transparent 60%);
  opacity: 0; transition: opacity 0.45s;
}
.system__card:hover { transform: translateY(-8px); border-color: rgba(11,163,108,0.35); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.system__card:hover::before { opacity: 1; }
.system__icon { font-size: 36px; margin-bottom: 18px; }
.system__step {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: 10px;
}
.system__card h3 { font-family: var(--serif); font-size: 25px; font-weight: 600; margin-bottom: 12px; }
.system__card p { color: var(--mist); font-size: 15px; }

/* ═══════════════ REVIEWS ═══════════════ */
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.tg-card {
  position: relative; padding: 26px;
  border-radius: 20px 20px 20px 6px;
  background: linear-gradient(160deg, rgba(0,57,108,0.28), rgba(7,16,25,0.7));
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.tg-card:hover { transform: translateY(-6px); border-color: rgba(127,180,224,0.3); }
.tg-card__head { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; }
.tg-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--av, var(--green)), rgba(255,255,255,0.15));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.tg-card__name { font-weight: 700; font-size: 15.5px; }
.tg-card__meta { font-size: 13px; color: var(--faint); }
.tg-card__stars { margin-left: auto; color: #f5c542; font-size: 13px; letter-spacing: 2px; }
.tg-card__text { font-size: 15px; color: var(--mist); margin-bottom: 14px; }
.tg-card__time { text-align: right; font-size: 12.5px; color: var(--faint); }
.tg-card__check { color: var(--green-bright); }
.tg-card--cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 20px;
  background: linear-gradient(160deg, rgba(0,116,75,0.24), rgba(7,16,25,0.7));
  border-radius: 20px;
}
.tg-card__big { font-family: var(--serif); font-size: 23px; line-height: 1.3; }

/* ── YouTube video reviews ── */
.video-card {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 20px; overflow: hidden;
  background: #0a1420;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11,163,108,0.45);
  box-shadow: 0 34px 70px rgba(0,0,0,0.55);
}
.video-card__thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  padding: 0; border: none; background: none; cursor: pointer;
}
.video-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78);
  transition: filter 0.4s, transform 0.6s var(--ease-out);
}
.video-card:hover .video-card__thumb img { filter: brightness(0.95); transform: scale(1.05); }
.video-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--green));
  box-shadow: 0 12px 34px rgba(0,0,0,0.5), 0 0 0 0 rgba(11,163,108,0.5);
  transition: transform 0.35s var(--ease-out);
  animation: playPulse 2.4s ease-out infinite;
}
@keyframes playPulse {
  0% { box-shadow: 0 12px 34px rgba(0,0,0,0.5), 0 0 0 0 rgba(11,163,108,0.45); }
  70% { box-shadow: 0 12px 34px rgba(0,0,0,0.5), 0 0 0 22px rgba(11,163,108,0); }
  100% { box-shadow: 0 12px 34px rgba(0,0,0,0.5), 0 0 0 0 rgba(11,163,108,0); }
}
.video-card:hover .video-card__play { transform: translate(-50%, -50%) scale(1.12); }
.video-card__play svg { width: 26px; height: 26px; color: #fff; margin-left: 3px; }
.video-card iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ═══════════════ ARIZA ═══════════════ */
.ariza__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px);
  padding: clamp(36px, 5vw, 70px);
  border-radius: 32px;
  background: linear-gradient(150deg, rgba(0,57,108,0.35), rgba(0,64,42,0.3));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 50px 110px rgba(0,0,0,0.5);
  position: relative; overflow: hidden;
}
.ariza__card::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 70%; height: 120%;
  background: radial-gradient(ellipse, rgba(11,163,108,0.16), transparent 65%);
  pointer-events: none;
}
.ariza__card .section-head__title { text-align: left; margin-bottom: 18px; }
.ariza__left .section-head__eyebrow { margin-bottom: 12px; }
.ariza__text { color: var(--mist); margin-bottom: 26px; max-width: 440px; }
.ariza__points { display: grid; gap: 12px; margin-bottom: 32px; }
.ariza__points li { position: relative; padding-left: 30px; color: var(--mist); font-size: 15px; }
.ariza__points li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--green-bright); font-weight: 800;
}
.ariza__phone { font-size: 15px; color: var(--faint); }
.ariza__phone a {
  display: block; font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px);
  color: var(--white); margin-top: 6px; transition: color 0.3s;
}
.ariza__phone a:hover { color: var(--green-bright); }

.lead-form { display: grid; gap: 18px; align-content: start; position: relative; z-index: 2; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--mist); }
.field input, .field textarea {
  width: 100%; padding: 16px 20px;
  background: rgba(4, 8, 15, 0.5);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 14px;
  color: var(--white); font-family: var(--sans); font-size: 15.5px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  resize: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(11,163,108,0.15);
  background: rgba(4, 8, 15, 0.75);
}
.field input.is-error { border-color: #e05252; box-shadow: 0 0 0 4px rgba(224,82,82,0.15); }
.lead-form__note { font-size: 12.5px; color: var(--faint); text-align: center; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(4, 8, 15, 0.6);
  backdrop-filter: blur(10px);
}
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding: 70px 0 50px;
}
.footer__logo { height: 30px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--faint); font-size: 14.5px; max-width: 260px; }
.footer__col { display: grid; gap: 12px; align-content: start; }
.footer__col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 6px;
}
.footer__col a { color: var(--mist); font-size: 15px; transition: color 0.3s; width: fit-content; }
.footer__col a:hover { color: var(--green-bright); }
.footer__col span { color: var(--faint); font-size: 14px; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0; font-size: 13.5px; color: var(--faint);
}

/* ═══════════════ POPUP ═══════════════ */
.popup {
  position: fixed; inset: 0; z-index: 960;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s;
  padding: 20px;
}
.popup.is-open { opacity: 1; pointer-events: auto; }
.popup__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 8, 15, 0.75);
  backdrop-filter: blur(10px);
}
.popup__card {
  position: relative; width: min(460px, 100%);
  padding: 44px 38px 38px;
  border-radius: 28px;
  background: linear-gradient(160deg, #0b1c2e, #08251c);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 60px 130px rgba(0,0,0,0.65);
  transform: translateY(26px) scale(0.96);
  transition: transform 0.5s var(--ease-out);
  text-align: center;
}
.popup.is-open .popup__card { transform: translateY(0) scale(1); }
.popup__close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid var(--line);
  color: var(--mist); font-size: 15px; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.popup__close:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg); }
.popup__leaf { font-size: 34px; margin-bottom: 10px; }
.popup__card h3 { font-family: var(--serif); font-size: 27px; font-weight: 600; margin-bottom: 10px; }
.popup__card h3 em { color: var(--green-bright); }
.popup__card > p { color: var(--mist); font-size: 14.5px; margin-bottom: 24px; }

/* ═══════════════ FLOATING TG + MOBILE CTA ═══════════════ */
.tg-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 940;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-bright), var(--green));
  box-shadow: 0 12px 32px rgba(0, 57, 108, 0.5);
  transition: transform 0.35s var(--ease-out);
}
.tg-float:hover { transform: scale(1.1) rotate(8deg); }
.tg-float svg { width: 26px; height: 26px; color: #fff; }

.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 930;
  display: none; text-align: center;
  padding: 16px; border-radius: 100px;
  background: linear-gradient(120deg, var(--navy), var(--green));
  font-weight: 700; font-size: 15px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.5);
  transform: translateY(140%);
  transition: transform 0.45s var(--ease-out);
}
.mobile-cta.is-visible { transform: translateY(0); }

/* ═══════════════ REVEALS ═══════════════ */
.reveal-up { opacity: 0; transform: translateY(36px); }
.split-words .w { opacity: 0; transform: translateY(24px); filter: blur(8px); display: inline-block; }

/* ═══════════════ RAHMAT PAGE ═══════════════ */
.rahmat-body { min-height: 100svh; display: flex; flex-direction: column; }
.rahmat {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 40px 20px; position: relative; z-index: 2;
}
.rahmat__card {
  text-align: center; max-width: 560px;
  animation: rahmatIn 0.9s var(--ease-out) both;
}
@keyframes rahmatIn { from { opacity: 0; transform: translateY(30px); } }
.rahmat__mark { width: 130px; height: 130px; margin: 0 auto 28px; }
.rahmat__circle {
  fill: none; stroke-width: 2;
  stroke-dasharray: 340; stroke-dashoffset: 340;
  animation: drawCircle 1.2s var(--ease-out) 0.2s forwards;
}
.rahmat__circle--blue { stroke: var(--navy-bright); }
.rahmat__circle--green { stroke: var(--green-bright); stroke-dasharray: 290; stroke-dashoffset: 290; animation-delay: 0.35s; }
.rahmat__check {
  fill: none; stroke: var(--white); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 80; stroke-dashoffset: 80;
  animation: drawCircle 0.6s var(--ease-out) 0.9s forwards;
  filter: drop-shadow(0 0 14px rgba(11,163,108,0.6));
}
.rahmat__leaf {
  fill: none; stroke: var(--green-bright); stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 60; stroke-dashoffset: 60;
  animation: drawCircle 0.5s var(--ease-out) 1.4s forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
.rahmat h1 { font-family: var(--serif); font-size: clamp(46px, 8vw, 72px); font-weight: 600; margin-bottom: 12px; }
.rahmat__lead { font-size: 19px; color: var(--white); margin-bottom: 8px; }
.rahmat__sub { color: var(--mist); font-size: 15.5px; margin-bottom: 34px; }
.rahmat__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.rahmat__logo { height: 26px; width: auto; margin: 0 auto; opacity: 0.5; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .showcase__numeral { right: -4vw; opacity: 0.7; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .header__nav, .header__cta { display: none; }
  .burger { display: flex; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px 40px; }
  .showcase__panel { min-height: unset; padding: 60px 0; }
  .showcase__grid { grid-template-columns: 1fr; gap: 36px; }
  .showcase__media { max-width: 420px; margin-inline: auto; }
  .showcase__numeral { top: 40px; transform: none; font-size: 120px; }
  .system__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .ariza__card { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; padding: 50px 0 40px; }
  .mobile-cta { display: block; }
  .tg-float { bottom: 84px; }
  .hero__scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .popup__card { padding: 36px 24px 28px; }
}

/* ═══════════════ REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal-up, .split-words .w, .line-mask > span { opacity: 1 !important; transform: none !important; filter: none !important; }
}
