/* ===== TOKENS ===== */
:root {
  --bg: #0a0e17;
  --bg-alt: #0e1420;
  --surface: #131b2b;
  --surface-2: #182233;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef2f9;
  --muted: #9aa7bd;
  --accent: #f5a191;
  --accent-2: #ef8a76;
  --accent-grad: linear-gradient(120deg, #f8b3a3, #ef8f7d 55%, #e5745d);
  --radius: 16px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ===== RESET / BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand { font-family: "Sora", sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 13px 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  font-family: inherit;
}
.btn--primary {
  background: var(--accent-grad); color: #0a0e17; font-weight: 700;
  box-shadow: 0 8px 30px -8px rgba(245, 161, 145, .6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(239, 138, 118, .7); }
.btn--ghost { background: rgba(255,255,255,.04); border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 14, 23, .8);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 13px; font-weight: 800; font-size: 20px; }
.brand__logo { height: 54px; width: auto; }
.brand__name {
  font-family: "Sora"; font-weight: 700; font-size: 20px; line-height: 1.1;
  letter-spacing: .01em; color: var(--text);
}
.brand__name b { display: block; font-weight: 500; font-size: 12px; letter-spacing: .28em; color: var(--accent); text-transform: uppercase; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ===== HERO ===== */
.hero { position: relative; padding: 170px 0 110px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -25%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(245,161,145,.22), rgba(239,138,118,.12) 40%, transparent 68%);
  filter: blur(20px);
  animation: floatGlow 9s ease-in-out infinite alternate;
}
@keyframes floatGlow { from { transform: translate(-52%, 0) scale(1); } to { transform: translate(-48%, 24px) scale(1.08); } }
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.hero__inner { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.hero__logo { height: 150px; width: auto; margin: 0 auto 26px; filter: drop-shadow(0 10px 34px rgba(245,113,79,.28)); }
.hero__eyebrow {
  display: inline-block; color: var(--accent); font-weight: 600; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px;
  background: rgba(245,161,145,.06);
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4.3rem); font-weight: 800; line-height: 1.05; margin: 26px 0 22px; }
.grad { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { color: var(--muted); font-size: clamp(1rem, 2vw, 1.18rem); max-width: 640px; margin: 0 auto; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero__stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.stat { display: flex; flex-direction: column; }
.stat b { font-family: "Sora"; font-size: 1.9rem; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 14px; }

/* ===== TAGLINE STRIP ===== */
.strip { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.strip__inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px;
  font-family: "Sora"; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; font-size: clamp(.85rem, 2.4vw, 1.35rem);
}
.strip__inner span { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.strip__inner i { color: var(--accent); font-style: normal; opacity: .7; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section__head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 16px 0 14px; }
.section__head p { color: var(--muted); }
.tag {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); background: rgba(245,161,145,.08); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
}

/* ===== SERVICE CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .35s var(--ease), border-color .35s, background .35s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%), rgba(245,161,145,.12), transparent 70%);
}
.card:hover { transform: translateY(-6px); border-color: rgba(245,161,145,.35); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 13px;
  background: linear-gradient(135deg, rgba(245,161,145,.18), rgba(239,138,118,.14));
  border: 1px solid var(--line); color: var(--accent); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; position: relative; }
.card p { color: var(--muted); font-size: 14.5px; position: relative; }

/* ===== WHY ===== */
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why__text h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 16px 0 14px; }
.why__text p { color: var(--muted); margin-bottom: 24px; }
.ticks { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.ticks li { position: relative; padding-left: 32px; color: var(--text); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px;
  display: grid; place-items: center; border-radius: 50%; font-size: 12px; font-weight: 700;
  background: var(--accent-grad); color: #0a0e17;
}
.why__panel {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px; overflow: hidden;
}
.panel__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px; border-radius: 12px; margin: 6px; background: var(--surface-2);
  border: 1px solid var(--line); font-size: 15px;
}
.panel__row span { color: var(--muted); }
.panel__row b { font-family: "Sora"; color: var(--accent); font-weight: 600; }
.panel__pulse {
  position: absolute; top: 0; left: -60%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,161,145,.08), transparent);
  animation: sweep 4s linear infinite;
}
@keyframes sweep { to { left: 130%; } }

/* ===== PARTNERS ===== */
.partners { padding: 70px 0; text-align: center; }
.partners__label { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 26px; }
.partners__logos { display: flex; justify-content: center; gap: clamp(30px, 6vw, 80px); flex-wrap: wrap; }
.partners__logos span {
  font-family: "Sora"; font-weight: 700; font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--muted); opacity: .65; transition: color .3s, opacity .3s, transform .3s;
}
.partners__logos span:hover { color: var(--text); opacity: 1; transform: translateY(-3px); }

/* ===== CONTACT ===== */
.contact__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact__info h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 16px 0 12px; }
.contact__info > p { color: var(--muted); margin-bottom: 30px; }
.contact__list { list-style: none; display: grid; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 14px; }
.contact__list svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.contact__list a:hover { color: var(--accent); }

.qr {
  display: flex; align-items: center; gap: 18px; margin-top: 30px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 20px 16px 16px; transition: border-color .3s, transform .3s var(--ease);
}
.qr:hover { border-color: rgba(245,161,145,.4); transform: translateY(-3px); }
.qr img { width: 128px; height: 128px; border-radius: 12px; flex-shrink: 0; }
.qr__text b { display: block; font-family: "Sora"; font-size: 1rem; margin-bottom: 3px; }
.qr__text span { color: var(--muted); font-size: 14px; }

.form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: grid; gap: 18px;
}
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 500; color: var(--muted); }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 11px;
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: 15px;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #56617a; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,161,145,.15);
}
.form__note { font-size: 14px; text-align: center; min-height: 20px; }
.form__note.ok { color: #4ade80; }
.form__note.err { color: #f87171; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--line); padding: 34px 0; background: var(--bg-alt); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__copy { color: var(--muted); font-size: 14px; }
.footer__contact { display: flex; gap: 20px; }
.footer__contact a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer__contact a:hover { color: var(--accent); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .why__inner, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(10,14,23,.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); padding: 10px 24px 20px;
    transform: translateY(-140%); transition: transform .35s var(--ease); z-index: 40;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
}
@media (max-width: 560px) {
  .brand__logo { height: 42px; }
  .brand__name { font-size: 17px; }
  .brand__name b { font-size: 10.5px; }
  .hero__logo { height: 108px; margin-bottom: 20px; }
  .hero { padding: 140px 0 80px; }
  .hero__stats { gap: 28px; }
  .section { padding: 72px 0; }
  .form { padding: 24px; }
  .footer__inner { flex-direction: column; text-align: center; }
}
