:root {
  --bg: #fff6f7;
  --panel: #ffe6e9;
  --card: #ffffff;
  --muted: #a86b7a;
  --text: #2b1117;
  --accent: #ff5c7a;
  --accent-2: #ff9fb3;
  --outline: rgba(255, 153, 178, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-1: 0 20px 80px rgba(5, 8, 20, 0.45);
  --shadow-2: 0 10px 40px rgba(0, 0, 0, 0.45);
  --max-width: 1200px;
}

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

body {
  margin: 0;
  font-family: "Inter", "Manrope", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 192, 203, 0.55), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(255, 166, 179, 0.45), transparent 55%),
    linear-gradient(160deg, #fff6f7 0%, #ffeef1 40%, #ffdce4 100%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

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

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

main {
  display: block;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 246, 247, 0.92);
  border-bottom: 1px solid rgba(255, 153, 178, 0.6);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #ffb3c6);
  display: grid;
  place-items: center;
  color: #3b101b;
  font-weight: 800;
  box-shadow: var(--shadow-2);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text span:first-child {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-text span:last-child {
  font-size: 1.05rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  border: 1px solid var(--outline);
}

.nav-link {
  padding: 9px 14px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #3b101b;
  background: linear-gradient(135deg, var(--accent), #ffb3c6);
  box-shadow: 0 10px 28px rgba(255, 92, 122, 0.45);
}

.contact-inline {
  color: var(--muted);
  font-weight: 600;
  display: none;
}

.button,
button {
  appearance: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #ffb3c6);
  color: #3b101b;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(255, 92, 122, 0.35);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(199, 76, 104, 0.45);
}

.button.ghost {
  border: 1px solid var(--outline);
  color: var(--text);
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 153, 178, 0.7);
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero {
  padding: 56px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 247, 0.98) 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.9rem);
  margin: 12px 0 12px;
  line-height: 1.15;
}

.lead {
  color: #7a3b4c;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullet-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--outline);
  padding: 10px 12px;
  border-radius: 12px;
}

.bullet-list li::before {
  content: "•";
  color: var(--accent-2);
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 210, 221, 0.9), transparent 55%),
    linear-gradient(155deg, rgba(255, 182, 193, 0.95), rgba(255, 228, 232, 0.98));
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.hero-visual img {
  width: 80%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(157, 44, 76, 0.38));
}

.section {
  padding: 30px 0;
}

.panel {
  background: radial-gradient(circle at 0% 0%, rgba(255, 210, 221, 0.55), transparent 60%),
    var(--panel);
  border: 1px solid rgba(255, 153, 178, 0.7);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.section-title {
  font-size: clamp(1.4rem, 2vw + 0.6rem, 2rem);
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 900px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #ffeef2 100%);
  border: 1px solid rgba(255, 153, 178, 0.7);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-2);
}

.feature-card h3,
.card h3 {
  margin: 8px 0;
}

.muted {
  color: var(--muted);
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 210, 221, 0.7), rgba(255, 233, 238, 0.96));
  border: 1px solid rgba(255, 153, 178, 0.8);
}

.info-block {
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.95), rgba(255, 224, 230, 0.98));
  border: 1px solid rgba(255, 153, 178, 0.85);
}

.image-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--outline);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--outline);
  border-radius: 16px;
}

.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ffb3c6);
  display: grid;
  place-items: center;
  color: #3b101b;
  font-weight: 800;
  box-shadow: var(--shadow-2);
}

.callout {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  padding: 18px;
}

.order-section {
  background: radial-gradient(circle at 80% 0%, rgba(255, 210, 221, 0.7), transparent 55%),
    linear-gradient(140deg, rgba(255, 189, 202, 0.98), rgba(255, 228, 234, 0.98));
  border: 1px solid rgba(255, 153, 178, 0.8);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: center;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 600;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 153, 178, 0.8);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 1rem;
}

.input:focus {
  outline: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 92, 122, 0.24);
}

.footer {
  margin-top: 40px;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 153, 178, 0.7);
  background: linear-gradient(180deg, rgba(255, 236, 241, 0.98), rgba(255, 222, 232, 0.98));
}

.footer-grid {
  display: grid;
  gap: 12px;
}

.footer a {
  color: var(--text);
  font-weight: 600;
}

.footer small {
  color: var(--muted);
}

.content-page {
  padding: 42px 0 24px;
}

.content-card {
  background: linear-gradient(180deg, rgba(255, 210, 221, 0.4) 0%, rgba(255, 243, 246, 0.98) 100%);
  border: 1px solid rgba(255, 153, 178, 0.7);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-1);
}

.content-card h1,
.content-card h2 {
  margin-top: 0;
}

.content-card p {
  margin: 0 0 16px;
}

.list-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 153, 178, 0.8);
  background: rgba(255, 248, 250, 0.96);
  font-weight: 600;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  gap: 10px;
}

.blog-card img {
  border-radius: 16px;
  height: 200px;
  object-fit: cover;
  border: 1px solid rgba(255, 153, 178, 0.8);
}

.blog-card h3 {
  margin: 0;
}

.blog-meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.post-hero {
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--outline);
}

.post-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.legal-text p {
  color: #7a3b4c;
}

.legal-text p strong {
  color: var(--accent);
}

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

  .site-header .inner {
    flex-wrap: wrap;
  }

  .contact-inline {
    display: block;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-lg: 22px;
    --radius-md: 14px;
  }

  body {
    background: linear-gradient(170deg, #fff6f7 0%, #ffe5ec 100%);
  }

  .hero {
    padding-top: 40px;
  }

  .panel,
  .hero-card,
  .hero-visual,
  .content-card {
    padding: 18px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }
}

