/* Base styles */
:root {
  --bg: #0b1020;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --primary: #7c3aed;
  --primary-2: #a78bfa;
  --ring: rgba(124, 58, 237, 0.38);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Cairo, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1100px 600px at 30% -10%, rgba(124, 58, 237, 0.42), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(167, 139, 250, 0.20), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  right: 12px;
  padding: 10px 14px;
  background: #111827;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  z-index: 50;
}

.skip-link:focus {
  top: 12px;
}

/* Header + nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11, 16, 32, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), rgba(167, 139, 250, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-tag {
  font-size: 0.88rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  transition: 150ms ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-primary {
  color: #fff;
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(124, 58, 237, 0.35);
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: block;
  width: 20px;
  height: 14px;
  position: relative;
  margin: 0 auto;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
}

.menu-icon::before {
  top: 0;
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.88);
}

.menu-icon::after {
  bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), rgba(167, 139, 250, 0.45));
  border-color: rgba(167, 139, 250, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.btn-sm {
  padding: 10px 12px;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  padding: 24px 0 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}

.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.32);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 14px;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 1.25;
  margin: 0 0 14px;
}

.accent {
  color: var(--primary-2);
}

.lead {
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.stat {
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 900;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-preview {
  display: flex;
  justify-content: center;
}

.preview-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  justify-content: flex-start;
}

.preview-top .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.preview-body {
  padding: 18px 18px 14px;
}

.preview-title {
  font-weight: 900;
  margin-bottom: 12px;
}

.preview-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 7px 0;
}

.preview-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.20);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  white-space: nowrap;
}

.preview-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.preview-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 62%;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.7), rgba(167, 139, 250, 0.25));
}

.preview-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-tile {
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  overflow: hidden;
}

.preview-tile::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.35), transparent 50%);
}

.preview-bottom {
  padding: 0 18px 18px;
  display: flex;
  justify-content: flex-start;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-head {
  margin-bottom: 22px;
}

h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  padding: 18px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.35);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.shot {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.shot-img {
  height: 170px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(167, 139, 250, 0.12)),
    radial-gradient(500px 160px at 10% 0%, rgba(167, 139, 250, 0.22), transparent 55%);
}

.shot-cap {
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 700;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 16px 16px;
  background: transparent;
  color: var(--text);
  border: none;
  text-align: right;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-q::after {
  content: "+";
  color: var(--primary-2);
  font-weight: 900;
}

.faq-a {
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item[open] .faq-q::after {
  content: "–";
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.contact-head {
  padding: 18px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-head h2 {
  margin-top: 0;
}

.contact-form {
  padding: 18px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.field {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  outline: none;
}

.field::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field:focus {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 4px var(--ring);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.contact-hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-brand {
  font-weight: 900;
  margin-bottom: 6px;
}

.footer-copy {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .steps,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

  .cards,
  .steps,
  .gallery {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
  }
}

