:root {
  --bg: #FBF7FA;
  --bg-soft: #FDF2F8;
  --surface: #FFFFFF;
  --ink: #231B22;
  --ink-soft: #5B4A56;
  --accent: #F472B6;
  --accent-strong: #DB2777;
  --accent-deep: #BE185D;
  --pale: #FCE7F3;
  --line: #F1CFE3;
  --line-strong: #E7B9D6;
  --shadow: 0 18px 40px rgba(190, 24, 93, 0.10);
  --shadow-soft: 0 8px 22px rgba(190, 24, 93, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  color: var(--accent-deep);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 14px;
}

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ---------- Card navigation ---------- */
.card-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(231, 185, 214, 0.4);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.wordmark {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.card-icon {
  position: relative;
  width: 30px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(219, 39, 119, 0.28);
  flex-shrink: 0;
}

.card-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 5px;
  height: 5px;
  background: #FFFFFF;
  transform: rotate(45deg);
  border-radius: 1px;
}

.card-icon::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 5px;
  width: 5px;
  height: 5px;
  background: #FFFFFF;
  transform: rotate(45deg);
  border-radius: 1px;
}

.card-pip-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 2px;
}

.card-icon-sm {
  width: 24px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
  padding: 6px 0;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-deep);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  background: var(--accent-strong);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent-deep);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.deck-hero {
  position: relative;
  padding: 96px 0 110px;
  background: radial-gradient(1200px 600px at 85% -10%, var(--pale), var(--bg) 60%);
  overflow: hidden;
}

.deck-hero-glow {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #FBCFE8 0%, rgba(251, 207, 232, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 52px;
  line-height: 1.06;
  margin: 0 0 22px;
}

.hero-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 9px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--accent-strong);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--accent-deep);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn-ghost:hover {
  background: var(--pale);
  color: var(--accent-deep);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.hero-notes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.hero-notes li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--accent);
  transform: translateY(-50%) rotate(45deg);
  border-radius: 1px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.deck-fan {
  position: relative;
  width: 360px;
  height: 330px;
}

.deck-fan::before {
  content: "";
  position: absolute;
  inset: 40px 20px 30px;
  background: radial-gradient(circle, #FBCFE8 0%, rgba(251, 207, 232, 0) 68%);
  border-radius: 50%;
}

.fan-card {
  position: absolute;
  width: 96px;
  height: 134px;
  border-radius: 12px;
  bottom: 26px;
  box-shadow: 0 14px 28px rgba(190, 24, 93, 0.18);
}

.fan-card::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 9px;
  height: 9px;
  background: var(--accent-deep);
  transform: rotate(45deg);
  border-radius: 1px;
}

.fan-card-a { left: 22px; transform: rotate(-26deg); background: #F9A8D4; }
.fan-card-b { left: 90px; transform: rotate(-9deg); background: #FCE7F3; }
.fan-card-c { left: 158px; transform: rotate(9deg); background: #FFFFFF; }
.fan-card-d { left: 226px; transform: rotate(26deg); background: #FCE7F3; }

.fan-card-float {
  left: 134px;
  top: 6px;
  transform: rotate(4deg);
  background: var(--accent-strong);
  box-shadow: 0 18px 34px rgba(219, 39, 119, 0.30);
}

.fan-card-float::before {
  background: #FFFFFF;
}

.sparkle {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 12px;
  height: 12px;
  background: var(--accent-strong);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(244, 114, 182, 0.20);
}

/* ---------- Stats ---------- */
.stat-section {
  background: var(--ink);
  padding: 56px 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-size: 46px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E9D6E2;
}

/* ---------- Statement row ---------- */
.statement-row {
  padding: 90px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-row .container {
  max-width: 900px;
  text-align: center;
}

.statement-lede {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}

.statement-mark {
  display: block;
  width: 42px;
  height: 4px;
  background: var(--accent);
  margin: 34px auto 0;
  border-radius: 2px;
}

/* ---------- Section heading ---------- */
.section-heading {
  max-width: 660px;
  margin-bottom: 46px;
}

.section-heading h2 {
  font-size: 38px;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- Process ---------- */
.process-section {
  padding: 96px 0;
  background: var(--bg-soft);
}

.process-list {
  list-style: none;
  counter-reset: step;
  max-width: 820px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  position: relative;
  padding: 0 0 46px;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 43px;
  top: 56px;
  bottom: 6px;
  width: 2px;
  background: var(--line-strong);
}

.process-step:last-child::before {
  display: none;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  color: var(--accent-deep);
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-body {
  padding-top: 8px;
}

.step-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.step-body p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 560px;
}

/* ---------- Compare table ---------- */
.compare-section {
  padding: 96px 0;
  background: var(--surface);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--surface);
}

.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th {
  background: var(--accent-strong);
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.compare-table thead th:first-child {
  background: var(--accent-deep);
}

.compare-table tbody th {
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-soft);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td {
  color: var(--ink-soft);
}

/* ---------- Categories horizontal scroll ---------- */
.categories-section {
  padding: 96px 0;
  background: var(--bg-soft);
}

.category-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.category-track::-webkit-scrollbar {
  height: 8px;
}

.category-track::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 4px;
}

.category-card {
  flex: 0 0 268px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-pip {
  display: block;
  width: 34px;
  height: 34px;
  background: var(--pale);
  border: 2px solid var(--accent);
  border-radius: 8px;
  margin-bottom: 18px;
  position: relative;
}

.category-pip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--accent-strong);
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 1px;
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.category-card p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- About ---------- */
.about-section {
  padding: 96px 0;
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-copy h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 16px;
}

.about-card-stack {
  position: relative;
  height: 340px;
}

.stack-card {
  position: absolute;
  width: 190px;
  height: 266px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stack-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 14px;
  height: 14px;
  background: var(--accent-deep);
  transform: rotate(45deg);
  border-radius: 2px;
}

.stack-card-one { left: 40px; top: 20px; transform: rotate(-12deg); background: #F9A8D4; }
.stack-card-two { left: 120px; top: 8px; transform: rotate(4deg); background: var(--accent-strong); }
.stack-card-three { left: 80px; top: 44px; transform: rotate(14deg); background: var(--pale); }

.stack-card-two::before { background: #FFFFFF; }

/* ---------- Services ---------- */
.services-section {
  padding: 96px 0;
  background: var(--bg-soft);
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-index {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-strong);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 72px 0;
  background: linear-gradient(120deg, var(--accent-strong), var(--accent-deep));
}

.cta-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}

.cta-copy h2 {
  color: #FFFFFF;
  font-size: 34px;
  margin-bottom: 12px;
}

.cta-copy p {
  color: #FCE7F3;
  font-size: 17px;
}

.cta-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cta-band .btn-primary {
  background: #FFFFFF;
  color: var(--accent-deep);
}

.cta-band .btn-primary:hover {
  background: var(--pale);
  color: var(--accent-deep);
}

.cta-band .btn-ghost {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 96px 0;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 30px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.contact-list a,
.contact-list span {
  color: var(--ink);
  font-size: 16px;
}

.contact-list a:hover {
  color: var(--accent-deep);
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent-strong);
}

.form-field textarea {
  resize: vertical;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-deep);
  min-height: 20px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #E9D6E2;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 44px;
}

.site-footer .brand .wordmark {
  color: #FFFFFF;
}

.footer-about p {
  font-size: 15px;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: #E9D6E2;
  font-size: 15px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col span {
  font-size: 15px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #46343F;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: #BFA6B6;
}

/* ---------- Reveal animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-inner {
    height: 64px;
    gap: 16px;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: 8px 24px 16px;
    display: none;
  }

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

  .nav-links a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .deck-hero {
    padding: 64px 0 80px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .deck-fan {
    transform: scale(0.82);
    margin: 0 auto;
  }

  .statement-lede {
    font-size: 24px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-info h2 {
    font-size: 30px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step::before {
    display: none;
  }

  .step-num {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stat-value {
    font-size: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
