:root {
  --bg: #0e1116;
  --panel: #151922;
  --text: #141821;
  --muted: #687180;
  --line: #e7e9ee;
  --brand: #e31c24;
  --brand-dark: #b51017;
  --soft: #f7f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,24,40,.08);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-main {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.brand-sub {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .14em;
  margin-top: 5px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-size: .96rem;
  font-weight: 700;
  color: #2c3443;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.btn-small { padding: 11px 18px; }
.btn-outline {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-image: url('assets/17082721-A999-4B0E-B5E2-60910DCB1D3C.jpeg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,11,.82) 0%, rgba(5,7,11,.56) 44%, rgba(5,7,11,.28) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0 72px;
}
.hero-copy {
  max-width: 700px;
}
.badge {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
  letter-spacing: .05em;
  font-size: .84rem;
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.02;
}
.hero p {
  margin: 0;
  color: rgba(255,255,255,.9);
  max-width: 640px;
  line-height: 1.78;
  font-size: 1.06rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.hero-stats div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}
.hero-stats strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}
.hero-stats span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.5;
}

.section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-dark {
  background: linear-gradient(180deg, #10141c 0%, #181f2a 100%);
  color: #fff;
}

.section-head {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 34px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head span {
  display: inline-block;
  color: var(--brand);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-head.light span { color: #fff; opacity: .8; }
.section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.1;
}
.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.section-dark .section-head p,
.section-dark .lead { color: rgba(255,255,255,.76); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; margin-bottom: 12px; font-size: 1.16rem; }
.card p { margin: 0; color: #4f5b6d; line-height: 1.75; }

.two-col {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px;
  align-items: center;
}
.features-list {
  display: grid;
  gap: 18px;
}
.feature-item {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.feature-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.feature-item p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.72;
}
.feature-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-large img { aspect-ratio: 16 / 10; }
.gallery-wide { grid-column: span 2; }
.gallery-wide img { aspect-ratio: 16 / 8.5; }

.insta-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.social-card,
.qr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.social-card {
  padding: 28px;
  margin-top: 22px;
}
.social-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.social-card p {
  color: #4f5b6d;
  line-height: 1.7;
  margin-bottom: 18px;
}
.qr-card {
  padding: 20px;
}
.qr-card img {
  width: min(100%, 440px);
  margin: 0 auto;
  border-radius: 18px;
}

.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f55 100%);
  color: #fff;
}
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-wrap span {
  display: inline-block;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cta-wrap h2 {
  margin: 10px 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.cta-wrap p {
  margin: 0;
  line-height: 1.72;
  color: rgba(255,255,255,.92);
}
.cta-band .btn {
  background: #fff;
  color: var(--brand-dark);
}

.footer {
  background: #0e1116;
  color: #fff;
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
}
.footer h3,
.footer h4 { margin-top: 0; }
.footer p,
.footer a {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 24px;
  padding: 18px 0 22px;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #22c55e;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(34,197,94,.35);
}

@media (max-width: 1080px) {
  nav { display: none; }
  .cards,
  .gallery-grid,
  .footer-grid,
  .hero-stats,
  .two-col,
  .insta-wrap {
    grid-template-columns: 1fr;
  }
  .gallery-large,
  .gallery-wide { grid-column: auto; grid-row: auto; }
  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    background-position: 62% center;
  }
  .hero-content { padding: 72px 0 56px; }
  .section { padding: 68px 0; }
  .btn,
  .btn-small { width: 100%; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .brand-main { font-size: 1.45rem; }
}
