/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d12;
  --bg2: #12121a;
  --bg3: #1a1a26;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --blue: #2563eb;
  --cyan: #22d3ee;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --border: rgba(124, 58, 237, 0.2);
  --radius: 12px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

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

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo:hover { text-decoration: none; color: var(--purple-light); }

#nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

#nav ul a {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

#nav ul a:hover {
  color: var(--text);
  background: var(--bg3);
  text-decoration: none;
}

.cta-nav {
  background: var(--purple) !important;
  color: white !important;
  font-weight: 600;
}

.cta-nav:hover {
  background: #6d28d9 !important;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 70%, rgba(34, 211, 238, 0.08) 0%, transparent 60%),
    var(--bg);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 30%, var(--purple-light) 70%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: #6d28d9;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--purple-light);
  background: var(--bg3);
  text-decoration: none;
}

/* ===== SERVICE SECTIONS ===== */
.service-section {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.service-section.alt {
  background: var(--bg2);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-inner.full-width {
  grid-template-columns: 1fr;
}

.badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  color: var(--purple-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-text p {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 24px;
}

.feature-list li {
  padding: 6px 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '—  ';
  color: var(--text-dim);
  font-weight: 400;
}

.price-hint {
  font-size: 0.9rem;
  color: var(--purple-light);
  font-weight: 600;
}

/* ===== FORMS ===== */
.section-form {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.section-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.section-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-form input,
.section-form textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.section-form input:focus,
.section-form textarea:focus {
  border-color: var(--purple);
}

.section-form input::placeholder,
.section-form textarea::placeholder {
  color: #475569;
}

.section-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  font-size: 0.85rem;
  min-height: 1.2em;
  color: var(--cyan);
}

.form-status.error {
  color: #f87171;
}

/* ===== SHOP ===== */
.shop-intro {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 40px;
  margin-top: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.product-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-2px);
}

.product-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 600;
}

.product-tag.digital {
  color: var(--cyan);
}

.product-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  flex: 1;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--purple-light);
}

.product-card button {
  width: 100%;
}

/* ===== PROOF ===== */
.proof-section {
  padding: 80px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.proof-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 48px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.proof-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.proof-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--purple-light);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ===== PHONE CTA ===== */
.nav-phone-link {
  color: var(--cyan) !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.call-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-call, .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-call {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.btn-call:hover {
  background: rgba(34, 211, 238, 0.2);
  text-decoration: none;
}

.btn-text {
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.btn-text:hover {
  background: rgba(124, 58, 237, 0.2);
  text-decoration: none;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.reviews-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  min-height: 32px;
}

.reviews-stars {
  color: #f59e0b;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.reviews-score {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}

.reviews-count {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-light);
}

.review-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.review-author {
  font-size: 0.82rem;
  color: var(--purple-light);
  font-weight: 600;
}

/* ===== SERVICE CARDS (repair-grid) ===== */
.repair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.repair-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.repair-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-2px);
}

.repair-icon {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
}

.repair-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.repair-card .feature-list {
  flex: 1;
  margin-bottom: 0;
}

/* ===== PRICING TABLE ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.price-table th {
  text-align: left;
  padding: 10px 16px;
  color: var(--text-dim);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  color: var(--text);
}

.price-table td:last-child {
  color: var(--purple-light);
  font-weight: 600;
  white-space: nowrap;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: var(--bg3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #nav ul {
    gap: 4px;
  }

  #nav ul li:not(:last-child) {
    display: none;
  }
}
