/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #0e0a3b;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

.muted { color: rgba(255,255,255,0.65); }
.accent { color: #ec268f; }

.section-title { text-align: center; }
.section-title.light { text-align: left; color: #fff; }
.section-lead { text-align: center; color: rgba(255,255,255,0.7); margin-bottom: 3rem; font-size: 1.1rem; }
.section-lead.light { text-align: left; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(90deg, #ec268f 0%, #c41a73 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(236, 38, 143, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(236, 38, 143, 0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-block { width: 100%; }

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 10, 59, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; }
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ec268f 0%, #6c1c66 70%, transparent 71%),
              conic-gradient(from 220deg, #ec268f, #7b2cbf, #ec268f);
  box-shadow: 0 0 20px rgba(236, 38, 143, 0.45);
}
.logo-text { font-size: 1.15rem; letter-spacing: 0.2px; }
.main-nav { display: flex; gap: 1.6rem; font-size: 0.95rem; }
.main-nav a { color: rgba(255,255,255,0.78); transition: color .15s; }
.main-nav a:hover { color: #ec268f; }
.header-cta { padding: 0.7rem 1.2rem; font-size: 0.9rem; }

@media (max-width: 900px) {
  .main-nav { display: none; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(236, 38, 143, 0.25), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(123, 44, 191, 0.35), transparent 65%),
    linear-gradient(160deg, #1a0e6b 0%, #0e0a3b 60%, #0a0732 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 { letter-spacing: -0.5px; }
.hero-lead { font-size: 1.4rem; font-weight: 600; margin-top: 1rem; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.hero-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.hero-form-card h3 { margin-bottom: 0.4rem; }
.hero-form-card form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.4rem; }
.hero-form-card label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-form-card input, .contact-form input, .contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
}
.hero-form-card input::placeholder { color: rgba(255,255,255,0.4); }
.hero-form-card input:focus, .contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid #ec268f; outline-offset: 1px; border-color: transparent;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---- TRUST ---- */
.trust { padding: 3rem 0; background: #0a0732; border-top: 1px solid rgba(255,255,255,0.05); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 0.4rem; }
.trust-num { font-size: 2.5rem; font-weight: 900; color: #ec268f; }
.trust-label { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- TESTIMONIAL ---- */
.testimonial { padding: 5rem 0; background: #0e0a3b; }
.testimonial-card {
  background: linear-gradient(145deg, #1a1063 0%, #110a52 100%);
  border-radius: 24px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.testimonial-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.testimonial-head h3 { font-size: 1.6rem; margin: 0; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #ec268f, #7b2cbf);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.stars { color: #ffc83d; font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 1rem; }
.testimonial-quote { font-size: 1.15rem; line-height: 1.6; }
.testimonial-role { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 0.5rem; }

/* ---- PROCESS ---- */
.process { padding: 6rem 0; background: #0a0732; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: transform .2s, border-color .2s;
}
.process-step:hover { transform: translateY(-4px); border-color: rgba(236, 38, 143, 0.4); }
.step-num {
  font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(90deg, #ec268f, #c41a73);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.6rem;
}
.process-step p { color: rgba(255,255,255,0.7); }

@media (max-width: 800px) { .process-grid { grid-template-columns: 1fr; } }

/* ---- CATALOGUE / CARDS ---- */
.catalogue { padding: 6rem 0; background: #0e0a3b; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.cards-grid.three-cols { grid-template-columns: repeat(3, 1fr); }
.card, .card-alt {
  background: linear-gradient(160deg, #1a1063 0%, #110a52 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover, .card-alt:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 38, 143, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card p, .card-alt p { color: rgba(255,255,255,0.7); margin: 0; }

@media (max-width: 900px) { .cards-grid, .cards-grid.three-cols { grid-template-columns: 1fr; } }

/* ---- TRUST ARGS ---- */
.trust-args { padding: 6rem 0; background: #0a0732; }
.args-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.arg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  text-align: center;
}
.arg-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.arg-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0; }

@media (max-width: 900px) { .args-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- EXTRA OFFER ---- */
.extra-offer { padding: 6rem 0; background: #0e0a3b; }

/* ---- FAQ ---- */
.faq { padding: 6rem 0; background: #0a0732; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq details {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after { content: "+"; color: #ec268f; font-size: 1.5rem; font-weight: 800; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 1rem; color: rgba(255,255,255,0.7); }

/* ---- CONTACT ---- */
.contact {
  padding: 6rem 0;
  background:
    radial-gradient(700px 400px at 85% 30%, rgba(236, 38, 143, 0.22), transparent 60%),
    linear-gradient(160deg, #1a0e6b 0%, #0e0a3b 80%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.7rem; }
.contact-info li { color: rgba(255,255,255,0.85); font-size: 1rem; }
.contact-info strong { color: #fff; }
.contact-info a { color: #ec268f; }
.contact-info a:hover { text-decoration: underline; }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.contact-form textarea { font-family: inherit; resize: vertical; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---- FOOTER ---- */
.site-footer { background: #07052a; padding: 4rem 0 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 2.5rem;
}
.footer-brand p { margin-top: 1rem; max-width: 280px; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 0 0 0.5rem; }
.footer-col a:hover { color: #ec268f; }
.footer-bottom {
  width: min(1200px, 92%); margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 0.88rem;
}
.socials { display: flex; gap: 0.8rem; }
.socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  font-size: 0.8rem; font-weight: 700;
  transition: background .2s;
}
.socials a:hover { background: #ec268f; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}
