@font-face { font-family:'Poppins'; font-weight:400; font-style:normal; font-display:swap; src:url('../fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-weight:600; font-style:normal; font-display:swap; src:url('../fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-weight:700; font-style:normal; font-display:swap; src:url('../fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-weight:800; font-style:normal; font-display:swap; src:url('../fonts/poppins-800.woff2') format('woff2'); }

  :root {
    --primary: #C2185B;
    --primary-dark: #9c1049;
    --primary-light: #E91E63;
    --pink-bg: #FCE4EC;
    --pink-soft: #FFF5F8;
    --text: #333333;
    --text-soft: #6b6b6b;
    --white: #ffffff;
    --dark: #2b2230;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
  h1, h2, h3 { line-height: 1.25; }
  a { color: var(--primary); text-decoration: none; }
  .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
  section { padding: 72px 0; }
  .section-title { text-align: center; font-size: 34px; color: var(--primary-dark); margin-bottom: 12px; }
  .section-sub { text-align: center; color: var(--text-soft); max-width: 640px; margin: 0 auto 48px; }

  .btn {
    display: inline-block; padding: 14px 30px; border-radius: 40px;
    font-weight: 600; font-size: 15px; cursor: pointer; border: none;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 8px 24px rgba(194,24,91,.35); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(194,24,91,.45); }
  .btn-ghost { background: transparent; color: var(--text-soft); border: 2px solid #ddd; }

  /* ===== Header ===== */
  header {
    position: sticky; top: 0; z-index: 50;
    background: var(--white); box-shadow: 0 2px 14px rgba(0,0,0,.07);
  }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .logo { font-size: 24px; font-weight: 700; color: var(--primary); }
  .logo span { color: var(--text); font-weight: 400; }
  nav ul, nav li { list-style: none !important; margin: 0; padding: 0; }
  nav ul { display: flex; gap: 6px; }
  nav a {
    display: inline-block; color: var(--text); font-weight: 500; font-size: 15px;
    padding: 8px 14px; border-radius: 30px; transition: background .15s ease, color .15s ease;
  }
  nav a:hover { color: var(--primary); background: var(--pink-bg); }
  nav a.cta { background: var(--primary); color: #fff; font-weight: 600; }
  nav a.cta:hover { background: var(--primary-dark); color: #fff; }
  .burger {
    display: none; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 8px;
  }
  .burger span { width: 26px; height: 3px; background: var(--primary); border-radius: 2px; }

  /* ===== Hero ===== */
  .hero {
    background: linear-gradient(140deg, var(--pink-bg) 0%, var(--pink-soft) 55%, var(--white) 100%);
    padding: 88px 0;
  }
  .hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
  .hero h1 { font-size: 42px; color: var(--primary-dark); margin-bottom: 18px; }
  .hero h1 em { color: var(--primary); font-style: normal; }
  .hero p { color: var(--text-soft); font-size: 17px; margin-bottom: 30px; }
  .hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
  .badge {
    background: var(--white); border: 1px solid #f3c9d8; color: var(--primary-dark);
    padding: 7px 16px; border-radius: 30px; font-size: 13px; font-weight: 600;
  }
  .hero-visual {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 24px; height: 360px; position: relative; overflow: hidden;
    box-shadow: 0 24px 60px rgba(194,24,91,.35);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-visual::before {
    content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,.14); top: -80px; right: -80px;
  }
  .hero-visual::after {
    content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,.10); bottom: -60px; left: -40px;
  }
  .hero-visual .photo-note { color: rgba(255,255,255,.85); font-size: 14px; text-align: center; padding: 0 40px; }

  /* ===== Value props ===== */
  .props { background: var(--white); padding-top: 56px; padding-bottom: 56px; }
  .props-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .prop {
    background: var(--pink-soft); border-radius: 16px; padding: 28px 22px; text-align: center;
    border: 1px solid #fbe0ea;
  }
  .prop .ico {
    width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
    background: var(--primary); color: #fff; font-size: 24px;
    display: flex; align-items: center; justify-content: center; font-weight: 700;
  }
  .prop h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 6px; }
  .prop p { font-size: 14px; color: var(--text-soft); }

  /* ===== Why direct ===== */
  .why { background: var(--pink-bg); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .why-card { background: var(--white); border-radius: 16px; padding: 32px 26px; box-shadow: 0 10px 30px rgba(194,24,91,.08); }
  .why-card h3 { color: var(--primary); font-size: 19px; margin-bottom: 10px; }
  .why-card p { font-size: 14.5px; color: var(--text-soft); }

  /* ===== About ===== */
  .about-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
  .about-photo {
    background: linear-gradient(160deg, var(--pink-bg), #f8bbd0);
    border-radius: 50% 50% 46% 54% / 55% 48% 52% 45%;
    height: 320px; display: flex; align-items: center; justify-content: center;
    color: var(--primary-dark); font-size: 14px; text-align: center; padding: 20px;
    border: 3px solid var(--white); box-shadow: 0 16px 44px rgba(194,24,91,.18);
  }
  .about h2 { font-size: 32px; color: var(--primary-dark); margin-bottom: 16px; }
  .about p { color: var(--text-soft); margin-bottom: 14px; font-size: 15.5px; }

  /* ===== Products ===== */
  .products { background: var(--pink-soft); }
  .prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .prod-card {
    background: var(--white); border-radius: 18px; overflow: hidden;
    box-shadow: 0 12px 34px rgba(194,24,91,.10);
    transition: transform .18s ease;
  }
  .prod-card:hover { transform: translateY(-6px); }
  .prod-img {
    height: 210px; background: linear-gradient(150deg, #f8bbd0, var(--pink-bg));
    display: flex; align-items: center; justify-content: center; color: var(--primary-dark);
    font-size: 13px;
  }
  .prod-body { padding: 22px; }
  .prod-body h3 { color: var(--primary-dark); font-size: 18px; margin-bottom: 6px; }
  .prod-meta { font-size: 13px; color: var(--text-soft); margin-bottom: 12px; }
  .prod-price { display: flex; align-items: center; justify-content: space-between; }
  .price { color: var(--primary); font-size: 22px; font-weight: 700; }
  .prod-price .btn { padding: 10px 20px; font-size: 13.5px; }

  /* ===== Steps ===== */
  .steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
  .step { text-align: center; padding: 0 6px; }
  .step .num {
    width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 12px;
    background: var(--primary); color: #fff; font-weight: 700; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(194,24,91,.3);
  }
  .step h3 { font-size: 15.5px; color: var(--primary-dark); margin-bottom: 4px; }
  .step p { font-size: 13px; color: var(--text-soft); }

  /* ===== Contact ===== */
  .contact { background: var(--pink-bg); }
  .contact-card { background: var(--white); border-radius: 20px; padding: 44px; max-width: 660px; margin: 0 auto; box-shadow: 0 16px 44px rgba(194,24,91,.12); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { margin-bottom: 16px; }
  label { font-size: 13.5px; font-weight: 600; color: var(--primary-dark); display: block; margin-bottom: 6px; }
  input, select, textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid #eecfdc; border-radius: 10px;
    font-family: inherit; font-size: 14px; color: var(--text); background: var(--pink-soft);
  }
  input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
  .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--text-soft); margin-bottom: 20px; }
  .consent input { width: auto; margin-top: 3px; }

  /* ===== FAQ ===== */
  .faq-list { max-width: 760px; margin: 0 auto; }
  details {
    background: var(--pink-soft); border: 1px solid #fbe0ea; border-radius: 12px;
    padding: 18px 22px; margin-bottom: 12px;
  }
  summary { font-weight: 600; color: var(--primary-dark); cursor: pointer; font-size: 15.5px; }
  details p { margin-top: 10px; font-size: 14px; color: var(--text-soft); }

  /* ===== Footer ===== */
  footer { background: var(--dark); color: #cbb8c2; padding: 48px 0 28px; }
  .footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 36px; margin-bottom: 30px; }
  footer h4 { color: #fff; font-size: 16px; margin-bottom: 12px; }
  footer ul { list-style: none; }
  footer li { margin-bottom: 8px; }
  footer a { color: #cbb8c2; font-size: 14px; }
  footer a:hover { color: #fff; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; font-size: 12.5px; text-align: center; color: #9d8794; }

  @media (max-width: 900px) {
    .burger { display: flex; }
    nav ul {
      display: none; position: absolute; top: 72px; left: 0; right: 0;
      flex-direction: column; gap: 0; background: var(--white);
      box-shadow: 0 14px 30px rgba(0,0,0,.12); padding: 10px 0;
    }
    nav ul.open { display: flex; }
    nav li { text-align: center; }
    nav a { display: block; padding: 14px; border-radius: 0; }
    nav a.cta { margin: 10px 24px 6px; border-radius: 30px; }
    .hero-inner, .about-inner { grid-template-columns: 1fr; }
    .props-grid, .why-grid, .prod-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }

/* ===== Mobile refresh: more air + swipe sliders ===== */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  section { padding: 58px 0; }
  .hero { padding: 54px 0 62px; }
  .hero-inner { gap: 30px; }
  .hero h1 { font-size: 33px; }
  .hero p { font-size: 16px; }
  .hero-visual { height: 300px; }
  .section-title { font-size: 28px; }
  .section-sub { margin-bottom: 34px; }

  /* --- swipe sliders (value props, why-cards, products) --- */
  .props-grid, .why-grid, .prod-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 6px 20px 22px;
    scrollbar-width: none;
  }
  .props-grid::-webkit-scrollbar,
  .why-grid::-webkit-scrollbar,
  .prod-grid::-webkit-scrollbar { display: none; }

  .prop      { flex: 0 0 72%; scroll-snap-align: center; }
  .why-card  { flex: 0 0 80%; scroll-snap-align: center; }
  .prod-card { flex: 0 0 78%; scroll-snap-align: center; }

  /* swipe hint */
  .props, .products { position: relative; }
  .swipe-hint {
    display: block; text-align: center; font-size: 12.5px;
    color: var(--primary); font-weight: 600; letter-spacing: 1px;
    margin-top: -6px; opacity: .75;
  }

  /* steps: airier 2-col layout */
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 30px 14px; }

  /* about + parcel sections breathing room */
  .about-inner { gap: 30px; }
  .about-photo { height: 280px; }
}
@media (min-width: 901px) { .swipe-hint { display: none; } }


/* ===== Hero restructured (title / image / text / badges / cta) ===== */
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-areas:
    "title  visual"
    "text   visual"
    "badges visual"
    "cta    visual";
  column-gap: 48px;
  align-content: center;
}
.hero-title  { grid-area: title; }
.hero-visual { grid-area: visual; align-self: center; }
.hero-text   { grid-area: text; }
.hero-badges { grid-area: badges; }
.hero-cta    { grid-area: cta; justify-self: start; }

@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-title  { order: 1; font-size: 30px; margin-bottom: 16px; }
  .hero-visual { order: 2; height: 235px; margin-bottom: 18px; }
  .hero-cta    { order: 3; text-align: center; margin-bottom: 20px; }
  .hero-text   { order: 4; margin-bottom: 18px; }
  .hero-badges { order: 5; margin-bottom: 0; justify-content: center; }
}
