/* ============================================================
   Luxun — Computer Systems Design and Related Services
   Theme: ROSE-PINK light (#F472B6 accent on #FBF7F8)
   ============================================================ */

:root {
  --bg: #FBF7F8;
  --bg-soft: #FDF1F5;
  --surface: #FFFFFF;
  --ink: #1C1218;
  --ink-soft: #4A3644;
  --ink-mute: #7A6672;
  --accent: #F472B6;
  --accent-deep: #DB2777;
  --accent-soft: #FBCFE8;
  --accent-dark: #31101F;
  --line: #F0DCE6;
  --line-strong: #E6C2D4;
  --success: #0F766E;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 18px rgba(49, 16, 31, 0.06);
  --shadow-md: 0 14px 40px rgba(49, 16, 31, 0.10);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 600;
}

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

.section {
  padding: 96px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 640px;
}

/* ============================================================
   LOTUS NAVIGATION
   ============================================================ */

.lotus-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(49, 16, 31, 0.05);
}

.lotus-nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.lotus-nav__wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.lotus-nav__wordmark span {
  color: var(--accent-deep);
}

/* CSS-drawn lotus flower (open bloom seen from above) */
.lotus {
  width: 40px;
  height: 40px;
  position: relative;
  flex-shrink: 0;
}

.lotus__petal {
  position: absolute;
  width: 18px;
  height: 14px;
  background: var(--accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  left: 11px;
  top: 3px;
  transform-origin: 50% 100%;
}

.lotus__petal:nth-child(1) { transform: rotate(0deg) translateY(-11px); }
.lotus__petal:nth-child(2) { transform: rotate(60deg) translateY(-11px); }
.lotus__petal:nth-child(3) { transform: rotate(120deg) translateY(-11px); }
.lotus__petal:nth-child(4) { transform: rotate(180deg) translateY(-11px); }
.lotus__petal:nth-child(5) { transform: rotate(240deg) translateY(-11px); }
.lotus__petal:nth-child(6) { transform: rotate(300deg) translateY(-11px); }

.lotus__inner {
  position: absolute;
  width: 15px;
  height: 11px;
  background: var(--accent-deep);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  left: 12.5px;
  top: 9px;
  transform-origin: 50% 100%;
}

.lotus__inner:nth-of-type(1) { transform: rotate(30deg) translateY(-7px); }
.lotus__inner:nth-of-type(2) { transform: rotate(90deg) translateY(-7px); }
.lotus__inner:nth-of-type(3) { transform: rotate(150deg) translateY(-7px); }
.lotus__inner:nth-of-type(4) { transform: rotate(210deg) translateY(-7px); }
.lotus__inner:nth-of-type(5) { transform: rotate(270deg) translateY(-7px); }
.lotus__inner:nth-of-type(6) { transform: rotate(330deg) translateY(-7px); }

.lotus__center {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-dark);
  border-radius: 50%;
  left: 16px;
  top: 16px;
}

.lotus-nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.lotus-nav__links a {
  display: block;
  padding: 9px 15px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 10px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.lotus-nav__links a:hover {
  color: var(--accent-deep);
  background-color: var(--bg-soft);
}

.lotus-nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 12px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

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

.lotus-nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 46px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.lotus-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.bloom-hero {
  position: relative;
  padding: 168px 0 120px;
  background:
    radial-gradient(circle at 88% 24%, var(--accent-soft) 0, transparent 42%),
    radial-gradient(circle at 6% 88%, #FDE4EF 0, transparent 40%),
    var(--bg);
  overflow: hidden;
}

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

.bloom-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.bloom-hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.bloom-hero h1 {
  font-size: clamp(40px, 5.6vw, 66px);
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.bloom-hero h1 em {
  font-style: italic;
  color: var(--accent-deep);
}

.bloom-hero__copy {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}

.bloom-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 13px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn--primary {
  background-color: var(--accent-deep);
  color: #FFFFFF;
  box-shadow: 0 10px 26px rgba(219, 39, 119, 0.28);
}

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

.btn--ghost {
  background-color: var(--surface);
  color: var(--accent-deep);
  border: 1.5px solid var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* CSS-drawn blooming flower */
.bloom {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 24px 40px rgba(219, 39, 119, 0.16));
}

.bloom__petal {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
}

.bloom__petal:nth-child(1) { transform: rotate(0deg) translate(-6px, -6px); background: #F9A8D4; }
.bloom__petal:nth-child(2) { transform: rotate(45deg) translate(-6px, -6px); background: #F472B6; }
.bloom__petal:nth-child(3) { transform: rotate(90deg) translate(-6px, -6px); background: #F9A8D4; }
.bloom__petal:nth-child(4) { transform: rotate(135deg) translate(-6px, -6px); background: #F472B6; }
.bloom__petal:nth-child(5) { transform: rotate(180deg) translate(-6px, -6px); background: #F9A8D4; }
.bloom__petal:nth-child(6) { transform: rotate(225deg) translate(-6px, -6px); background: #F472B6; }
.bloom__petal:nth-child(7) { transform: rotate(270deg) translate(-6px, -6px); background: #F9A8D4; }
.bloom__petal:nth-child(8) { transform: rotate(315deg) translate(-6px, -6px); background: #F472B6; }

.bloom__center {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 38%, #FBCFE8 0, #F472B6 55%, #DB2777 100%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.bloom__dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
  left: 46%;
  top: 43%;
  z-index: 3;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.bloom__stem {
  position: absolute;
  width: 10px;
  height: 120px;
  background: linear-gradient(#DB2777, #9D174D);
  border-radius: 6px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.bloom__leaf {
  position: absolute;
  width: 52px;
  height: 30px;
  background: #BE185D;
  border-radius: 50% 50% 50% 0;
  z-index: 1;
}

.bloom__leaf--left {
  left: 42%;
  top: 72%;
  transform: rotate(28deg);
  transform-origin: right bottom;
}

.bloom__leaf--right {
  right: 42%;
  top: 72%;
  transform: rotate(-28deg) scaleX(-1);
  transform-origin: left bottom;
}

.bloom__dew {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: inset -2px -3px 4px rgba(219, 39, 119, 0.35);
  z-index: 4;
}

.bloom__dew--1 {
  left: 27%;
  top: 30%;
}

.bloom__dew--2 {
  left: 30%;
  top: 36%;
  width: 7px;
  height: 7px;
}

/* ============================================================
   STATEMENT ROW
   ============================================================ */

.statement {
  background-color: var(--accent-dark);
  color: #FDF1F5;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 114, 182, 0.28) 0, transparent 46%),
    radial-gradient(circle at 90% 80%, rgba(219, 39, 119, 0.22) 0, transparent 44%);
  pointer-events: none;
}

.statement__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  text-align: center;
}

.statement__mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.statement h2 {
  color: #FFFFFF;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 22px;
}

.statement p {
  color: #F6D7E6;
  font-size: 19px;
  max-width: 760px;
  margin: 0 auto 26px;
}

.statement p strong {
  color: var(--accent-soft);
}

/* ============================================================
   BIG NUMERAL STATS
   ============================================================ */

.stats {
  background-color: var(--bg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
  color: var(--accent-deep);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card__num span {
  font-size: 30px;
}

.stat-card__label {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.stat-card__note {
  font-size: 15px;
  color: var(--ink-mute);
}

/* ============================================================
   NUMBERED PROCESS (supply chain)
   ============================================================ */

.process {
  background-color: var(--bg-soft);
}

.process__list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  position: relative;
  padding-bottom: 40px;
}

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

.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 43px;
  top: 88px;
  bottom: 0;
  width: 2px;
  background: var(--line-strong);
}

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

.process-step__body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}

.process-step__body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-step__body p {
  color: var(--ink-soft);
  font-size: 16px;
}

.process-step__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.compare {
  background-color: var(--bg);
}

.compare__table-wrap {
  margin-top: 56px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: var(--surface);
}

.compare__table th,
.compare__table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare__table thead th {
  background-color: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 700;
}

.compare__table thead th:first-child {
  color: var(--ink-mute);
  font-weight: 600;
}

.compare__table tbody th {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.compare__table tbody td {
  color: var(--ink-soft);
  font-size: 15px;
}

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

.compare__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  margin-right: 8px;
}

.compare__dim {
  color: var(--ink-mute);
}

/* ============================================================
   PRODUCT CARDS (horizontal scroll)
   ============================================================ */

.products {
  background-color: var(--bg-soft);
}

.products__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 34px;
}

.products__tab {
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.products__tab:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.products__tab.is-active {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #FFFFFF;
}

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

.products__scroll::-webkit-scrollbar {
  height: 8px;
}

.products__scroll::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 999px;
}

.products__scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.product-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.product-card__icon::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-deep);
}

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

.product-card p {
  font-size: 15px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-mute);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-card__meta strong {
  color: var(--accent-deep);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  background-color: var(--bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.contact__item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact__item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

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

.contact__form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-field {
  margin-bottom: 20px;
}

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

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s ease;
}

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

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 12px;
}

.form-status {
  display: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status--ok {
  background: #DCFCE7;
  color: #166534;
}

.form-status--err {
  background: #FEE2E2;
  color: #991B1B;
}

/* ============================================================
   SPLIT CTA BAND
   ============================================================ */

.cta-band {
  background: var(--accent-dark);
  position: relative;
  overflow: hidden;
}

.cta-band__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  min-height: 260px;
}

.cta-band__text h2 {
  color: #FFFFFF;
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 16px;
}

.cta-band__text p {
  color: #F6D7E6;
  font-size: 17px;
  max-width: 560px;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.cta-band__actions .btn--primary {
  background: var(--accent);
  justify-content: center;
}

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

.cta-band__actions .btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(251, 207, 232, 0.6);
  color: #FBCFE8;
  justify-content: center;
}

.cta-band__actions .btn--ghost:hover {
  border-color: #FBCFE8;
  color: #FFFFFF;
}

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

.site-footer {
  background-color: var(--surface);
  border-top: 4px solid var(--accent);
}

.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__brand p {
  color: var(--ink-mute);
  font-size: 15px;
  margin-top: 16px;
  max-width: 300px;
}

.site-footer__brand .lotus {
  margin-bottom: 14px;
}

.site-footer h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

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

.site-footer ul a {
  color: var(--ink-soft);
  font-size: 15px;
}

.site-footer ul a:hover {
  color: var(--accent-deep);
}

.site-footer__contact li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.site-footer__bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-mute);
}

.site-footer__bottom a {
  color: var(--ink-soft);
  font-weight: 600;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

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

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .bloom-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bloom-hero__copy {
    margin-left: auto;
    margin-right: auto;
  }
  .bloom-hero__actions {
    justify-content: center;
  }
  .bloom {
    max-width: 300px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
  }
  .cta-band__text p {
    margin: 0 auto;
  }
  .cta-band__actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .lotus-nav__toggle {
    display: flex;
  }
  .lotus-nav__links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(49, 16, 31, 0.10);
    padding: 12px 16px 20px;
    display: none;
  }
  .lotus-nav__links.is-open {
    display: flex;
  }
  .lotus-nav__links a {
    padding: 14px 16px;
    border-radius: 10px;
  }
  .lotus-nav__cta {
    display: none;
  }
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    grid-template-columns: 64px 1fr;
    gap: 20px;
  }
  .process-step__num {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }
  .process-step:not(:last-child)::before {
    left: 31px;
    top: 64px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 68px 0;
  }
  .bloom-hero {
    padding: 136px 0 80px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bloom__petal {
    width: 92px;
    height: 92px;
  }
  .bloom__center {
    width: 60px;
    height: 60px;
  }
  .stat-card__num {
    font-size: 46px;
  }
}
