/* ===========================================================
   PsoCream+ landing page — clean rebuild
   All assets local. Fonts loaded from Google Fonts (allowed).
   =========================================================== */

:root {
  --bg: #f3f9ff;
  --green: #358055;
  --coral: #f2745c;
  --orange: #ff6b00;
  --ink: #141414;
  --muted: #666666;
  --card: #ffffff;
  --ing-bg: #eef6e1;
  --result-card: #f5f8fa;
  --gold: #f5a623;
  --maxw: 1140px;
  --font-head: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --font-alt: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.green { color: var(--green); }
.coral { color: var(--coral); }

/* ---------------- Header ---------------- */
.site-header {
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}
.site-header .logo img { height: 56px; width: auto; }
.header-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  text-align: right;
}
.header-rating .stars { color: var(--gold); letter-spacing: 1px; }

/* ---------------- Buttons ---------------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 26px 28px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 32px);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 8px 22px rgba(242,116,92,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(242,116,92,.45); }
.btn-cta .cart { font-size: .9em; }

.cta-row { padding: 10px 0 30px; text-align: center; }

/* ---------------- Sections ---------------- */
section { padding: 64px 0; }
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  text-align: center;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 28px;
  color: var(--ink);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* ---------------- Hero ---------------- */
.hero { padding-top: 56px; }
.pill {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 24px;
  background: #111;
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 40px;
}
.hero h1 {
  font-family: var(--font-head);
  text-align: center;
  font-size: clamp(38px, 6.5vw, 65px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 26px;
}
.hero-sub {
  font-family: var(--font-alt);
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 6px;
}
.hero-sub strong { color: var(--ink); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin: 48px 0;
}
.split .media { text-align: center; }
.split .media img { margin: 0 auto; max-width: 320px; }

/* ---------------- Benefit list ---------------- */
.benefits { list-style: none; margin: 0; padding: 0; }
.benefits li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  font-size: 19px;
  color: #2b2b2b;
}
.benefits li::before {
  content: "";
  width: 26px;
  height: 26px;
  margin-top: 3px;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23358055' d='M9.5 17.2 4.3 12l1.6-1.6 3.6 3.6L18 5.5 19.6 7z'/></svg>");
}
.benefits.compact li { font-size: 16px; padding: 8px 0; }

/* ---------------- Guarantee box ---------------- */
.guarantee {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  border: 2px dashed #9cc7a8;
  border-radius: 14px;
  padding: 28px 34px;
  margin: 30px auto 0;
  max-width: 1000px;
  background: rgba(255,255,255,.4);
}
.guarantee img { width: 110px; }
.guarantee h3 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0 0 8px;
}
.guarantee p { margin: 0; color: var(--muted); font-size: 16px; }

/* ---------------- "A jeni lodhur" ---------------- */
.lead-copy p { color: var(--muted); font-size: 17px; max-width: 880px; margin: 0 auto 18px; }
.lead-copy strong { color: #2b2b2b; }
.farewell {
  font-family: var(--font-head);
  text-align: center;
  font-weight: 700;
  font-size: clamp(30px, 5vw, 46px);
  margin: 30px 0;
}

/* ---------------- Ingredients ---------------- */
.ingredients { background: var(--ing-bg); }
.ingredient {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 0;
}
.ingredient + .ingredient { border-top: 1px solid rgba(0,0,0,.1); }
.ingredient img { width: 200px; margin: 0 auto; }
.ingredient h3 {
  font-family: var(--font-head);
  color: var(--green);
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 14px;
}
.ingredient p { margin: 0; color: var(--muted); font-size: 18px; }

/* ---------------- Results ---------------- */
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 44px;
}
.result-card {
  background: var(--result-card);
  border-radius: 14px;
  padding: 44px 34px;
  text-align: center;
}
.result-card img { width: 110px; height: 110px; margin: 0 auto 22px; }
.result-card h3 {
  font-family: var(--font-head);
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 14px;
}
.result-card p { margin: 0; color: var(--muted); font-size: 16px; }

/* ---------------- Order section ---------------- */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}
.order-grid .media img { max-width: 340px; margin: 0 auto; }
.order-card {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  padding: 36px 34px;
}
.price-label {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
  margin: 8px 0 16px;
}
.price-old {
  text-align: center;
  color: #9aa0a6;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 10px;
}
.price-new {
  display: block;
  width: max-content;
  margin: 0 auto 18px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  padding: 10px 26px;
}
.form-title {
  text-align: center;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 22px;
  margin: 6px 0 18px;
}
.order-form input {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 16px;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  background: #fff;
}
.order-form input:focus { outline: 2px solid var(--green); border-color: var(--green); }
.btn-order {
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--green);
  color: #fff;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 20px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(53,128,85,.3);
  transition: transform .15s ease;
}
.btn-order:hover { transform: translateY(-2px); }
.trust {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  text-align: center;
}
.trust li {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .4px;
  color: #2b2b2b;
  padding: 4px 0;
}
.trust li::before { content: "\2714"; color: var(--green); margin-right: 8px; }
.form-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #e8f5ec;
  color: var(--green);
  font-weight: 600;
  text-align: center;
}
.form-msg.show { display: block; }

/* ---------------- Testimonials ---------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}
.testi {
  text-align: center;
  padding: 8px 14px;
}
.testi img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
}
.testi .stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.testi .score { color: var(--muted); font-size: 14px; margin: 2px 0 14px; }
.testi blockquote { margin: 0 0 14px; color: #3a3a3a; font-size: 16px; }
.testi cite { font-style: italic; font-weight: 700; color: #555; font-size: 14px; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  color: #c8d8e8;
  padding: 56px 0 40px;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 38px;
  font-family: var(--font-alt);
}
.footer-nav a { color: #dfe8f2; font-weight: 500; }
.footer-nav a:hover { color: #fff; }
.site-footer .logo img { height: 52px; width: auto; margin: 0 auto 22px; }
.site-footer h2 {
  font-family: var(--font-alt);
  letter-spacing: 1px;
  font-size: 26px;
  margin: 0 0 16px;
  color: #fff;
}
.site-footer p {
  font-family: var(--font-alt);
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  color: #c8d8e8;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 880px) {
  .split, .order-grid { grid-template-columns: 1fr; gap: 30px; }
  .split .media { order: -1; }
  .result-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .ingredient { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .ingredient p { font-size: 16px; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .header-rating { font-size: 13px; }
  section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .site-header .logo img { height: 44px; }
  .header-rating .score { display: none; }
}
