:root {
  --bg: #0e0b16;
  --bg-alt: #16121f;
  --pink: #ff2d95;
  --purple: #7b2ff7;
  --cyan: #2de2e6;
  --text: #f4f1fb;
  --text-muted: #b8b0c9;
  --card: #1b1626;
  --radius: 16px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 8px 24px rgba(123, 47, 247, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 45, 149, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(244, 241, 251, 0.35);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-full { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 11, 22, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244, 241, 251, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}
.logo span { color: var(--pink); }
.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--text); }
.nav-cta { display: inline-flex; }
.nav-cta-mobile { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 45, 149, 0.28), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(45, 226, 230, 0.22), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(123, 47, 247, 0.35), transparent 55%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.eyebrow, .section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--text); }
.hero-stats span { color: var(--text-muted); font-size: 0.85rem; }

/* Sections generic */
section { padding: 90px 0; }
.services { background: var(--bg-alt); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 44px; max-width: 640px; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(244, 241, 251, 0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255, 45, 149, 0.4); }
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text p { color: var(--text-muted); margin-bottom: 24px; max-width: 560px; }
.about-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about-points li {
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
}
.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}
.about-card {
  background: linear-gradient(160deg, rgba(255,45,149,0.15), rgba(123,47,247,0.15));
  border: 1px solid rgba(255, 45, 149, 0.25);
  border-radius: var(--radius);
  padding: 32px;
}
.about-card h3 { margin-bottom: 8px; }
.about-card p { color: var(--text-muted); margin-bottom: 20px; }
.link-arrow { color: var(--cyan); font-weight: 600; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  background-size: cover;
}
.tile-1 { background: linear-gradient(135deg, #ff2d95, #7b2ff7); }
.tile-2 { background: linear-gradient(135deg, #2de2e6, #7b2ff7); }
.tile-3 { background: linear-gradient(135deg, #ff8a2d, #ff2d95); }
.tile-4 { background: linear-gradient(135deg, #7b2ff7, #2de2e6); }
.tile-5 { background: linear-gradient(135deg, #ff2d95, #2de2e6); }
.tile-6 { background: linear-gradient(135deg, #7b2ff7, #ff8a2d); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  padding: 60px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { margin: 0; max-width: 500px; color: #fff; }
.cta-band .btn-primary { background: #fff; color: var(--purple); box-shadow: none; }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info p { color: var(--text-muted); margin-bottom: 28px; max-width: 480px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.contact-detail strong { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--cyan); margin-bottom: 4px; }
.contact-detail a { color: var(--text); }
.contact-detail a:hover { color: var(--pink); }
.map-embed { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(244,241,251,0.08); }

.contact-form {
  background: var(--card);
  border: 1px solid rgba(244, 241, 251, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid rgba(244, 241, 251, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.form-note { text-align: center; font-size: 0.85rem; color: var(--text-muted); }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(244, 241, 251, 0.08);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--pink); }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(244,241,251,0.08);
  }
  .nav.open .nav-cta-mobile { display: inline-flex; margin-top: 8px; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
