:root {
  --pink: #d52f86;
  --pink-dark: #b71468;
  --pink-soft: #f8ddea;
  --pink-pale: #fff6fa;
  --ink: #211410;
  --ink-2: #3a2c28;
  --muted: #776d69;
  --line: #eadfdb;
  --white: #ffffff;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 18px 60px rgba(33, 20, 16, .10);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.section { padding: 105px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .14em;
}
h1, h2, h3 { margin-top: 0; line-height: 1.06; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6.4vw, 5.9rem); max-width: 850px; margin-bottom: 28px; }
h1 span { color: var(--pink); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4rem); margin-bottom: 24px; }
h3 { font-size: 1.7rem; margin-bottom: 16px; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234,223,219,.7);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.95rem; letter-spacing: -.06em; font-weight: 850; }
.brand-text small { margin-top: 5px; font-size: .68rem; font-weight: 750; letter-spacing: -.02em; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { text-decoration: none; font-size: .94rem; font-weight: 700; }
.main-nav a:not(.nav-cta):hover { color: var(--pink); }
.nav-cta { background: var(--ink); color: var(--white); padding: 12px 18px; border-radius: 999px; }
.nav-cta:hover { background: var(--pink); }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 8px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at 82% 20%, rgba(213,47,134,.14), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff9fc 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(213,47,134,.10);
  border-radius: 50%;
  right: -230px;
  bottom: -260px;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-lead { font-size: 1.16rem; max-width: 700px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 800; cursor: pointer; transition: .2s ease; }
.btn-primary { color: #fff; background: var(--pink); box-shadow: 0 9px 30px rgba(213,47,134,.20); }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btn-secondary { background: #fff; border-color: var(--line); }
.btn-secondary:hover { border-color: var(--pink); color: var(--pink); }
.microcopy { font-size: .82rem; margin: 16px 0 0; }

.hero-panel { position: relative; z-index: 1; background: var(--ink); color: #fff; padding: 28px; border-radius: 34px; box-shadow: var(--shadow); transform: rotate(1deg); }
.panel-top { display: flex; align-items: center; gap: 9px; color: #e7dedb; font-size: .83rem; margin-bottom: 28px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #6be29e; box-shadow: 0 0 0 5px rgba(107,226,158,.10); }
.energy-card { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; padding: 25px; background: #fff; color: var(--ink); border-radius: 22px; }
.energy-card > div { display: flex; flex-direction: column; gap: 5px; }
.card-label { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.energy-card strong { font-size: 1.55rem; }
.card-badge { color: var(--pink); background: var(--pink-soft); padding: 7px 10px; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.metric { min-height: 135px; padding: 16px; border: 1px solid rgba(255,255,255,.10); border-radius: 18px; }
.metric span { color: #f37db7; font-size: .76rem; font-weight: 900; }
.metric p { color: #fff; font-size: .82rem; line-height: 1.4; margin: 18px 0 0; }
.panel-note { margin-top: 12px; padding: 14px 16px; border-radius: 16px; background: rgba(213,47,134,.18); color: #f8d9e8; font-size: .78rem; }

.intro-section { padding-bottom: 55px; }
.intro-section p:last-child { font-size: 1.06rem; }

.services-section { padding-top: 35px; }
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card { position: relative; overflow: hidden; padding: 46px; min-height: 560px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; display: flex; flex-direction: column; }
.service-card::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -120px; top: -120px; background: var(--pink-pale); }
.service-number { color: #cfc3bf; font-size: .78rem; font-weight: 850; margin-bottom: 66px; }
.service-card h3 { font-size: clamp(2.15rem, 3.5vw, 3.5rem); max-width: 430px; }
.service-card > p:not(.eyebrow) { max-width: 500px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; color: var(--ink-2); font-size: .95rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--pink); font-weight: 900; }
.text-link { margin-top: auto; color: var(--pink); text-decoration: none; font-weight: 850; }
.text-link span { display: inline-block; margin-left: 4px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.dark-card { background: var(--ink); border-color: var(--ink); color: #fff; }
.dark-card::after { background: rgba(213,47,134,.18); }
.dark-card .eyebrow { color: #f08bbd; }
.dark-card p, .dark-card .check-list li { color: #d6cfcc; }
.dark-card .check-list li::before, .dark-card .text-link { color: #f08bbd; }

.process-section { background: #faf7f6; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin: 0 0 8px; font-size: 1.04rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { padding: 34px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--line); }
.step-card > span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: var(--pink-soft); color: var(--pink); font-weight: 850; font-size: .76rem; margin-bottom: 48px; }
.step-card h3 { font-size: 1.55rem; }
.step-card p { margin-bottom: 0; }

.values-section { background: var(--pink); color: #fff; }
.values-section .eyebrow { color: #ffd2e8; }
.values-section h2 { max-width: 620px; }
.values-section p { color: #ffeaf4; max-width: 550px; }
.values-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.value-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.25); border-left: 1px solid rgba(255,255,255,.25); }
.value-list > div { min-height: 150px; padding: 26px; border-right: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); display: flex; flex-direction: column; gap: 10px; }
.value-list strong { font-size: 1.2rem; }
.value-list span { color: #ffeaf4; font-size: .9rem; }

.contact-section { background: #fff9fc; text-align: center; }
.contact-simple { max-width: 850px; }
.contact-simple h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.contact-simple > p:not(.eyebrow):not(.contact-note) { max-width: 720px; margin: 0 auto 28px; font-size: 1.05rem; }
.contact-mail-btn { margin-top: 4px; }
.contact-note { margin: 20px auto 0; color: var(--muted); font-size: .82rem; }

.site-footer { padding: 62px 0 28px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 180px 1fr 1fr; gap: 55px; align-items: start; padding-bottom: 42px; }
.footer-brand img { width: 132px; filter: brightness(0) invert(1); opacity: .98; }
.footer-grid p { color: #bdb3af; max-width: 470px; margin-bottom: 0; }
.footer-links { display: grid; gap: 12px; justify-items: start; }
.footer-links a { color: #d8cfcc; text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px; color: #a99f9b; font-size: .78rem; }
.footer-bottom a { color: #d8cfcc; }

.legal-page { min-height: 100vh; background: #fffafc; }
.legal-header { padding: 26px 0; background: #fff; border-bottom: 1px solid var(--line); }
.legal-header .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.back-link { color: var(--pink); font-weight: 800; text-decoration: none; }
.legal-content { max-width: 880px; margin: 0 auto; padding: 80px 20px 110px; }
.legal-content h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); margin-bottom: 18px; }
.legal-content .legal-updated { font-size: .8rem; margin-bottom: 45px; }
.legal-content h2 { font-size: 1.6rem; margin: 42px 0 14px; letter-spacing: -.02em; }
.legal-content h3 { font-size: 1.05rem; margin: 28px 0 10px; }
.legal-content p, .legal-content li { color: #5f5652; }
.legal-content ul { padding-left: 20px; }
.legal-box { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; margin: 28px 0; }
.legal-box p { margin: 4px 0; }

.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at top right, rgba(213,47,134,.15), transparent 35%), #fff9fc; }
.thanks-card { max-width: 650px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 60px 40px; box-shadow: var(--shadow); }
.thanks-card img { width: 86px; margin-bottom: 20px; }
.thanks-card h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); margin-bottom: 18px; }

@media (max-width: 980px) {
  .hero-grid, .values-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 660px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 150px 1fr; }
  .footer-links { grid-column: 2; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 72px; left: 14px; right: 14px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 6px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 8px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .brand-text strong { font-size: 1.65rem; }
  .brand-text small { font-size: .59rem; }
  .brand img { width: 42px; height: 42px; }
  .hero { padding: 72px 0 76px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-grid { gap: 48px; }
  .metric-row { grid-template-columns: 1fr; }
  .metric { min-height: 0; }
  .metric p { margin-top: 8px; }
  .cards-grid, .steps-grid, .value-list { grid-template-columns: 1fr; }
  .service-card { padding: 32px; min-height: 0; }
  .service-number { margin-bottom: 46px; }
  .step-card > span { margin-bottom: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
