/* Lash Master Training Kit — Design System */
/* LashPlus Corporation Limited */

:root {
  --bg: #fafafa;
  --text: #1a1a1a;
  --text-secondary: #555;
  --subtle: #767676;
  --accent: #c44536;
  --accent-hover: #a8372b;
  --accent-light: rgba(196,69,54,.08);
  --card: #fff;
  --border: #e8e8e8;
  --gold: #b8860b;
  --surface: #f5f0eb;
  --surface-2: #faf7f2;
  --dark: #1a1a1a;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.3px;
  color: var(--text);
  text-decoration: none;
}
.logo span {
  color: var(--accent);
  font-weight: 400;
  font-size: 13px;
  margin-left: 6px;
  letter-spacing: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: all .2s ease;
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 28px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,69,54,.3);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn-wa {
  background: #25D366;
  color: #fff;
  font-size: 16px;
  padding: 14px 36px;
}
.btn-wa:hover {
  background: #1fb855;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,.3);
}
.btn-wa svg {
  width: 20px;
  height: 20px;
}
.btn-sm {
  font-size: 14px;
  padding: 8px 20px;
}

/* ── Hero ── */
.hero {
  padding: 100px 0 72px;
  text-align: center;
  background: linear-gradient(170deg, #faf7f2 0%, #f5f0eb 40%, #fafafa 100%);
}
.hero .badge {
  display: inline-block;
  background: #fff;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: 1px solid rgba(184,134,11,.15);
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0 8px;
  border-radius: 4px;
}
.hero .subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Showcase ── */
.showcase {
  padding: 64px 0 80px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.showcase-visual {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #f5f0eb 0%, #e8dcd0 50%, #f0e5d8 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.showcase-visual .icon-large {
  font-size: 140px;
  opacity: .55;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
}
.showcase-visual .tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(26,26,26,.82);
  color: #fff;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.showcase-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.5px;
}
.showcase-text .price-range {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 22px;
}
.showcase-text .price-range small {
  font-size: 15px;
  font-weight: 400;
  color: var(--subtle);
}
.showcase-text .desc {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.75;
  font-size: 15px;
}
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-secondary);
}
.checklist li .check {
  width: 20px;
  height: 20px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

/* ── Features ── */
.features {
  padding: 80px 0;
  background: var(--surface);
  border-radius: 20px;
  margin-bottom: 72px;
}
.features .container {
  text-align: center;
}
.features h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.section-sub {
  color: var(--subtle);
  margin-bottom: 48px;
  font-size: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.feature-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-card .f-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card .f-icon.l1 { background: #fef2f2; }
.feature-card .f-icon.l2 { background: #fff7ed; }
.feature-card .f-icon.l3 { background: #f0f9ff; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Kit Contents ── */
.kit-contents {
  padding: 80px 0;
}
.kit-contents h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.kit-contents .section-sub {
  text-align: center;
}
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.kit-item {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.kit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(196,69,54,.3) 100%);
  opacity: 0;
  transition: opacity .25s ease;
  border-radius: var(--radius) var(--radius) 0 0;
}
.kit-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.kit-item:hover::before {
  opacity: 1;
}
.kit-item .item-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
}
.kit-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.35;
}
.kit-item .qty {
  font-size: 12.5px;
  color: var(--subtle);
}

/* ── Why Us ── */
.why-us {
  padding: 72px 0;
  background: var(--surface);
  border-radius: 20px;
  margin-bottom: 72px;
}
.why-us h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.why-us .section-sub {
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.why-card:hover {
  transform: translateY(-2px);
}
.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-card h3 .w-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Specs ── */
.specs {
  padding: 72px 0;
}
.specs h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -.5px;
}
.specs-table {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.specs-table .row {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.specs-table .row:last-child {
  border-bottom: none;
}
.specs-table .row > div {
  padding: 15px 24px;
  flex: 1;
  font-size: 14px;
}
.specs-table .row > div:first-child {
  font-weight: 600;
  background: var(--surface-2);
  max-width: 240px;
  color: var(--text);
}

/* ── CTA Section ── */
.cta-section {
  padding: 88px 0;
  text-align: center;
  background: linear-gradient(165deg, var(--dark) 0%, #2d2d2d 100%);
  border-radius: 20px;
  margin-bottom: 48px;
}
.cta-section h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.cta-section p {
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}
.contact-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.contact-card {
  background: rgba(255,255,255,.08);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14px;
  transition: background .2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-card:hover {
  background: rgba(255,255,255,.15);
}

/* ── FAQ ── */
.faq {
  padding: 64px 0 96px;
}
.faq h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -.5px;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--subtle);
  transition: transform .25s ease, color .25s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--accent);
}
.faq-item .answer {
  font-size: 14.5px;
  color: var(--text-secondary);
  padding-top: 14px;
  line-height: 1.75;
  max-width: 620px;
}

/* ── Footer ── */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .company {
  font-size: 13px;
  color: var(--subtle);
}
footer .links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
footer .links a {
  color: var(--subtle);
  text-decoration: none;
  transition: color .15s ease;
}
footer .links a:hover {
  color: var(--text);
}

/* ── Mobile Sticky CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  padding: 12px 20px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.1);
  border-top: 1px solid var(--border);
}
.mobile-cta .btn-wa {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

/* ── Scroll Animations ── */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .hero {
    padding: 60px 0 48px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero .subtitle {
    font-size: 16px;
  }
  .mobile-cta {
    display: block;
  }
  footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .kit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kit-item {
    padding: 20px 16px;
  }
  .specs-table .row > div:first-child {
    max-width: 140px;
    font-size: 13px;
  }
  .specs-table .row > div:last-child {
    font-size: 13px;
  }
}
