:root {
  --bg: #0b0d12;
  --card: #121624;
  --text: #f3f4f6;
  --muted: #aab0c0;
  --line: rgba(255,255,255,0.08);
  --accent: #ffffff;

  /* Premium glow accents */
  --glow-1: rgba(110,231,255,0.18);
  --glow-2: rgba(139,92,255,0.16);
}

/* --- Base --- */
* { box-sizing: border-box; }

html, body { height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 20% -10%, var(--glow-1), transparent 60%),
    radial-gradient(800px 600px at 90% 10%, var(--glow-2), transparent 55%),
    linear-gradient(180deg, #070a0e 0%, var(--bg) 55%, #070a0e 100%);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  background: rgba(11,13,18,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 5;
}
.header-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.brand { font-weight: 700; letter-spacing: 0.3px; }
.nav { display: flex; gap: 16px; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); }

/* --- Hero --- */
/* tightened spacing */
.hero { padding: 44px 0 18px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: start; }
.hero h1 { font-size: 42px; line-height: 1.1; margin: 0 0 12px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.hero-card-title { font-weight: 700; margin-bottom: 10px; }
.ticks { padding-left: 18px; margin: 0 0 10px; }

/* --- Sections --- */
.section { padding: 36px 0; }
.section.alt { background: rgba(255,255,255,0.03); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.search input {
  width: 280px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

/* --- Grid / Cards --- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

/* subtle entrance animation */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.42);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  animation: fadeUp 420ms ease both;
}

/* single hover rule (deduped) */
.card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(110,231,255,0.22);
  box-shadow: 0 18px 54px rgba(0,0,0,0.50);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.card-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}
.card-body { padding: 16px; }
.card h3 { margin: 10px 0 6px; }
.card-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; }

.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--accent);
  color: #0b0d12;
  font-weight: 700;
  transition: opacity 140ms ease, transform 140ms ease;
}
.btn:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn-small { padding: 8px 10px; border-radius: 10px; font-size: 13px; }

/* --- Steps --- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 12px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 12px;
}
.step-num {
  width: 32px; height: 32px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  font-weight: 800;
}

/* --- Form --- */
.form {
  max-width: 560px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-top: 14px;
}
.form-row { display: grid; gap: 8px; margin-bottom: 12px; }
input, select, textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
textarea { min-height: 120px; resize: vertical; }


.back { display: inline-block; margin-bottom: 14px; color: var(--muted); }


/*-----------------
CONTACT
--------------------*/

.form-note {
  margin-top: 8px;
  opacity: 0.7;
  font-size: 12px;
}

/*------------------*/

.btn-calendly {
  border: 1px solid rgba(110,231,255,0.4);
}

/*-------------------*/

/* --- Model page --- */
.model-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.model-hero-img {
  min-height: 380px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.42);
}
.model-hero-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.42);
}
.model-hero-body h1 { margin: 10px 0 8px; }
.cta-row { display: flex; gap: 10px; margin: 14px 0; flex-wrap: wrap; }

.note {
  border: 1px solid rgba(110,231,255,0.20);
  background: rgba(110,231,255,0.06);
  border-radius: 14px;
  padding: 12px;
}
.note ul { margin: 10px 0 0; padding-left: 18px; }

.section-inner { margin-top: 22px; }
.table { margin-top: 10px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.tr { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.tr:last-child { border-bottom: none; }
.td { padding: 12px 14px; }
.td.k { color: var(--muted); background: rgba(255,255,255,0.02); }

.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 10px; }
.gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }

/* --- Responsive --- */
@media (max-width: 980px) {
  .hero-grid, .model-hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .search input { width: 100%; }
  .gallery { grid-template-columns: 1fr; }
}
