/* ===== SHE CLEAN SYSTEM ===== */

:root {
  --pink: #e83e7c;
  --pink-dark: #c92f68;
  --pink-soft: #fff3f8;

  --black: #111;
  --text: #3b1230;
  --border: #f3dbe6;
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--pink-soft);
  color: var(--black);
}

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

/* ===== HEADER ===== */

.she-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 86px;
  padding: 0 6%;
  background: #fff;
  border-bottom: 1px solid var(--border);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.she-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.she-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.she-title {
  display: flex;
  flex-direction: column;
}

.she-title strong {
  font-size: 28px;
  color: var(--pink);
}

.she-title span {
  font-size: 11px;
  color: var(--text);
}

.she-nav {
  display: flex;
  gap: 22px;
}

.she-nav a {
  font-weight: 700;
}

.she-cta {
  background: var(--pink);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
}

/* ===== MOBILE MENU ===== */

.menu-btn {
  display: none;
  background: var(--pink);
  color: white;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .she-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    gap: 16px;
  }

  .she-nav.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

/* ===== HERO ===== */

.hero {
  padding: 80px 6%;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 8vw, 60px);
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text);
}

/* ===== CARDS ===== */

.grid {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 6%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;

  box-shadow: 0 12px 40px rgba(0,0,0,0.06);

  transition: 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pink);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}

/* ===== INTERACTIVE ===== */

.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--pink);
  color: white;
}

.hidden {
  display: none;
}

/* ===== FOOTER ===== */

.footer {
  padding: 30px 6%;
  border-top: 1px solid var(--border);
  background: white;

  display: flex;
  justify-content: space-between;
}

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

  .footer {
    flex-direction: column;
    gap: 10px;
  }
}
/* ===== SHE EMERGENCY CLEAN PREMIUM SYSTEM ===== */

:root {
  --she-pink: #e83e7c;
  --she-pink-dark: #c92f68;
  --she-bg: #fff7fb;
  --she-soft: #fff3f8;
  --she-ink: #080014;
  --she-plum: #3b1230;
  --she-muted: #765b6b;
  --she-border: #efd5df;
  --she-shadow: 0 22px 60px rgba(59, 18, 48, 0.10);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--she-bg);
  color: var(--she-ink);
}

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

/* Header */

.she-header {
  width: 100%;
  min-height: 92px;
  padding: 0 7%;
  background: #fff;
  border-bottom: 1px solid var(--she-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.she-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.she-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.she-brand-copy strong {
  display: block;
  font-size: 2.25rem;
  line-height: 0.9;
  color: var(--she-pink);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.she-brand-copy span {
  display: block;
  font-size: 0.76rem;
  line-height: 1.05;
  color: var(--she-plum);
  font-weight: 800;
}

.she-desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.she-desktop-nav a {
  font-size: 0.95rem;
  font-weight: 900;
}

.she-desktop-nav a.active,
.she-desktop-nav a:hover {
  color: var(--she-pink);
}

.she-header-btn,
.she-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--she-pink);
  color: white;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 900;
}

.she-header-btn:hover,
.she-btn:hover {
  background: var(--she-pink-dark);
}

.she-menu-btn {
  display: none;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--she-pink);
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
}

.she-mobile-nav {
  display: none;
}

/* Homepage */

.home-hero {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 80px 0 90px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.home-hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin: 0 0 28px;
}

.home-hero h1 span {
  color: var(--she-pink);
}

.home-hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--she-muted);
  max-width: 620px;
}

.home-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.she-btn.secondary {
  background: white;
  color: var(--she-pink);
  border: 1px solid var(--she-border);
}

.she-btn.light {
  background: white;
  color: var(--she-pink);
}

.home-visual img,
.clarity-image img {
  width: 100%;
  display: block;
  border-radius: 34px;
}

/* Sections */

.clarity-section {
  width: min(1180px, 90%);
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 26px;
  align-items: center;
}

.clarity-card,
.feature-card,
.helps-strip {
  background: white;
  border: 1px solid var(--she-border);
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--she-shadow);
}

.clarity-card h2,
.section-heading h2,
.helps-strip h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 0 0 18px;
}

.clarity-card h2 span,
.section-heading h2 span {
  color: var(--she-pink);
}

.clarity-card p,
.feature-card p,
.helps-strip p {
  color: var(--she-muted);
  line-height: 1.65;
}

.section-block {
  width: min(1180px, 90%);
  margin: 0 auto 90px;
}

.section-heading {
  text-align: center;
  margin-bottom: 38px;
}

.section-heading p,
.eyebrow {
  color: var(--she-pink);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card {
  min-height: 230px;
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--she-pink);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.helps-strip {
  width: min(1180px, 90%);
  margin: 0 auto 90px;
  background: linear-gradient(135deg, var(--she-pink), var(--she-pink-dark));
  color: white;
}

.helps-strip p {
  color: rgba(255,255,255,0.86);
}

.helps-strip .eyebrow {
  color: white;
}

.she-footer {
  background: white;
  border-top: 1px solid var(--she-border);
  padding: 26px 7%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--she-muted);
}

.she-footer span {
  color: var(--she-pink);
}

/* Mobile */

@media (max-width: 900px) {
  .she-header {
    min-height: 86px;
    padding: 0 5%;
  }

  .she-brand-copy strong {
    font-size: 2rem;
  }

  .she-brand-copy span {
    display: none;
  }

  .she-desktop-nav,
  .she-header-btn {
    display: none;
  }

  .she-menu-btn {
    display: grid;
    place-items: center;
  }

  .she-mobile-nav {
    display: none;
    background: white;
    border-bottom: 1px solid var(--she-border);
    padding: 22px 6%;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 22px 50px rgba(59, 18, 48, 0.10);
  }

  .she-mobile-nav.open {
    display: flex;
  }

  .she-mobile-nav a {
    font-weight: 900;
    color: var(--she-plum);
  }

  .home-hero,
  .clarity-section,
  .six-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 54px 0 70px;
    gap: 34px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .home-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .she-btn {
    padding: 13px 16px;
    font-size: 0.9rem;
    text-align: center;
  }

  .clarity-section,
  .section-block,
  .helps-strip {
    margin-bottom: 58px;
  }

  .clarity-card,
  .feature-card,
  .helps-strip {
    padding: 28px;
    border-radius: 28px;
  }

  .section-heading {
    text-align: left;
  }

  .she-footer {
    flex-direction: column;
    font-size: 0.9rem;
  }
}
