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

:root {
  --dark:        #4c245c;
  --accent:      #a068ab;
  --accent-dark: #7a4280;
  --mid:         #2c3e50;
  --light:       #f7f3f9;
  --gray:        #6b7280;
  --white:       #ffffff;
  --gold:        #C5A059;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --shadow-soft: 0 10px 30px rgba(76, 36, 92, 0.08);
  --shadow-med: 0 15px 45px rgba(76, 36, 92, 0.12);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: #333;
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(76,36,92,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(160,104,171,0.2);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-decoration: none;
  flex-shrink: 0;
}

.logo span { color: var(--accent); }

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: rgba(247, 243, 249, 0.9);
  padding: 4px;
  backdrop-filter: blur(4px);
}

.hero-logo-img {
  width: 130px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  border-radius: 14px;
  box-shadow: var(--shadow-med);
  background: rgba(247, 243, 249, 0.95);
  padding: 8px;
  backdrop-filter: blur(4px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-phone:hover { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.social-icon svg { width: 17px; height: 17px; fill: currentColor; display: block; }

.social-icon:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  transform: scale(1.12);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(76,36,92,0.85) 0%, rgba(44,62,80,0.7) 100%),
              url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-content { max-width: 850px; }

.hero-badge {
  display: inline-block;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: #d6b4dc; }

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(160, 104, 171, 0.3);
}

.btn-primary:hover { 
  background: var(--accent-dark); 
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(160, 104, 171, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item span.icon { color: #c9a2d4; font-size: 1rem; font-weight: 700; }

/* ===== SECTIONS ===== */
section { padding: 7rem 2rem; }

.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products { background: var(--light); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-med);
}

.product-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.product-card-body { padding: 1.5rem; }
.product-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.product-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card { text-align: center; }

.why-icon {
  width: 68px;
  height: 68px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  border: 2px solid rgba(160,104,171,0.2);
}

.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--light); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step { text-align: center; }

.step-num {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(160,104,171,0.35);
}

.step h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.step p { font-size: 0.84rem; color: var(--gray); line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--accent);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-med);
}

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-card p { font-size: 0.95rem; color: #444; line-height: 1.8; margin-bottom: 1rem; }
.reviewer { font-size: 0.85rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== FOOTER ===== */
footer { background: #2a1136; font-size: 0.84rem; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2.5rem;
}

.footer-logo {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-logo span { color: var(--accent); }

.footer-brand p {
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  font-size: 0.84rem;
  max-width: 230px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  transition: color 0.2s;
}

.footer-phone:hover { color: #c9a2d4; }

.footer-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  transition: color 0.2s;
}

.footer-email:hover { color: rgba(255,255,255,0.85); }

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.87rem;
  line-height: 1.65;
  transition: color 0.2s;
}

.footer-address:hover { color: rgba(255,255,255,0.8); }

.footer-address-icon { margin-top: 2px; flex-shrink: 0; }

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-social-icon svg { width: 20px; height: 20px; fill: currentColor; display: block; }

.footer-social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 1.25rem 2rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* ===== ORDER FORM ===== */
.order-section {
  background: linear-gradient(150deg, #3a1549 0%, #4c245c 55%, #2c3e50 100%);
  padding: 8rem 2rem;
}

.order-intro { text-align: center; margin-bottom: 3.5rem; }

.order-intro h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.order-intro h2 span { color: #d6b4dc; }

.order-intro p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

.order-card {
  max-width: 720px;
  margin: 0 auto 3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(160,104,171,0.25);
  border-radius: 24px;
  padding: 3.5rem 2.8rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.form-progress { display: flex; align-items: flex-start; margin-bottom: 2.5rem; }

.prog-step { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }

.prog-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.3);
  transition: all 0.35s ease;
  margin-bottom: 0.45rem;
}

.prog-label {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  transition: color 0.3s;
}

.prog-step.active .prog-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(160,104,171,0.25);
}

.prog-step.active .prog-label { color: #c9a2d4; }

.prog-step.done .prog-dot {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.prog-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 19px 0.6rem 0;
  transition: background 0.4s ease;
}

.prog-line.done { background: var(--accent-dark); }

.form-step { display: none; }

.form-step.active {
  display: block;
  animation: stepIn 0.3s ease forwards;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-heading { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.step-sub { font-size: 0.86rem; color: rgba(255,255,255,0.5); margin-bottom: 1.8rem; line-height: 1.6; }

.prod-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.prod-opt {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem 0.5rem 0.9rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.prod-opt:hover { border-color: rgba(160,104,171,0.5); background: rgba(160,104,171,0.08); }
.prod-opt.selected { border-color: var(--accent); background: rgba(160,104,171,0.18); }

.p-icon { font-size: 1.5rem; line-height: 1; }
.p-name { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.65); line-height: 1.3; }
.prod-opt.selected .p-name { color: #c9a2d4; }

.field-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.window-counter {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 0.65rem 1.3rem;
  margin-bottom: 0.5rem;
}

.cnt-btn {
  background: none;
  border: none;
  color: #c9a2d4;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.15s;
  padding: 0;
  line-height: 1;
}

.cnt-btn:hover { background: rgba(160,104,171,0.2); }
.cnt-display { font-size: 1.3rem; font-weight: 700; color: var(--white); min-width: 2rem; text-align: center; }
.cnt-label { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-group { margin-bottom: 1rem; }

.field-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.field-group input,
.field-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}

.field-group input::placeholder,
.field-group textarea::placeholder { color: rgba(255,255,255,0.22); }

.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.09);
}

.field-group input.error { border-color: #e05c6a; }

.field-error { color: #f08090; font-size: 0.76rem; margin-top: 0.3rem; display: none; }
.field-error.visible { display: block; }

.consent-question { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.55; margin-bottom: 0.8rem; }
.consent-question strong { color: rgba(255,255,255,0.85); }

.consent-opts { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }

.consent-opt { flex: 1; position: relative; cursor: pointer; }

.consent-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.consent-opt-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 2px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  user-select: none;
}

.opt-letter {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}

.consent-opt input:checked + .consent-opt-label { border-color: var(--accent); background: rgba(160,104,171,0.18); color: #c9a2d4; }
.consent-opt input:checked + .consent-opt-label .opt-letter { border-color: var(--accent); background: var(--accent); color: var(--white); }
.consent-opt-label:hover { border-color: rgba(160,104,171,0.45); color: rgba(255,255,255,0.85); }

.form-nav-btns { display: flex; gap: 0.75rem; margin-top: 0.5rem; }

.btn-prev {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.btn-prev:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }

.btn-next-step,
.btn-submit-order {
  flex: 1;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn-next-step:hover,
.btn-submit-order:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-submit-order:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.form-trust .trust-item { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.form-trust .trust-item span.icon { color: #c9a2d4; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-phone { display: none; }
  .nav-right .social-icons { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem 2rem; }
}

@media (max-width: 640px) {
  nav { padding: 0.8rem 1rem; }
  .trust-bar { gap: 1.2rem; }
  .order-card { padding: 1.5rem 1.1rem; border-radius: 14px; }
  .prod-picker { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .prog-label { font-size: 0.6rem; }
  .prog-dot { width: 34px; height: 34px; font-size: 0.8rem; }
}
