:root {
  --primary: #E84D8A;
  --secondary: #3F74B5;
  --accent: #F6C24A;
  --ink: #2F2F3A;
  --muted: #6B6470;
  --bg-light: #FFFFFF;
  --bg-soft: #FFF4F8;
  --bg-blue-soft: #EAF3FF;
  --bg-yellow-soft: #FFF7D8;
  --bg-dark: #241827;
  --text-dark: #F8EAF0;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(47, 47, 58, 0.14);
  --shadow-soft: 0 10px 28px rgba(232, 77, 138, 0.12);
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg-light);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(246, 194, 74, 0.8); outline-offset: 3px; }

.theme-dark body, .theme-dark {
  --ink: #F8EAF0;
  --muted: #D9C9D2;
  --bg-light: #241827;
  --bg-soft: #342139;
  --bg-blue-soft: #192E48;
  --bg-yellow-soft: #3E3321;
  color: var(--ink);
  background: var(--bg-light);
}

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 82px 0; }
.section-soft { padding: 82px 0; background: linear-gradient(135deg, var(--bg-soft), var(--bg-blue-soft)); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading h2, h1, h2, h3 { font-family: "Baloo 2", "Nunito", Arial, sans-serif; line-height: 1.08; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); margin: 12px 0 18px; letter-spacing: 0; }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin: 0 0 16px; letter-spacing: 0; }
h3 { font-size: 1.35rem; margin: 22px 0 8px; letter-spacing: 0; }
p { margin: 0 0 16px; }
.lead { font-size: 1.2rem; color: var(--muted); }
.small { font-size: 0.94rem; color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.eyebrow::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 16px -4px 0 var(--secondary); }

.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 77, 138, 0.12);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.theme-dark .site-header { background: rgba(36, 24, 39, 0.88); }
.site-header.scrolled { box-shadow: 0 12px 30px rgba(47, 47, 58, 0.12); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img { width: 118px; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: rgba(232, 77, 138, 0.1); }
.menu-toggle, .theme-toggle, .to-top {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  background: var(--bg-soft);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 44px) 0 74px;
  color: #fff;
  overflow: hidden;
  background-image: var(--hero-image, linear-gradient(115deg, var(--primary), var(--secondary)));
  background-size: cover;
  background-position: center;
}
.hero-compact { min-height: 430px; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(36, 24, 39, 0.82), rgba(232, 77, 138, 0.66), rgba(63, 116, 181, 0.68));
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border-radius: 46% 54% 50% 50%;
  background: radial-gradient(circle at 35% 35%, rgba(246, 194, 74, 0.85), rgba(232, 77, 138, 0.16) 65%, transparent 66%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-content p { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 650px; }
.hero .eyebrow { color: #fff; }
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-primary { color: #fff; background: var(--primary); }
.btn-secondary { color: #1E2A36; background: var(--accent); }
.btn-outline { color: var(--secondary); background: transparent; border-color: currentColor; }
.btn-small { min-height: 40px; padding: 8px 14px; font-size: 0.92rem; }

.trust-strip { background: var(--accent); color: #2a2630; padding: 18px 0; font-weight: 900; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-grid span { display: flex; align-items: center; gap: 8px; justify-content: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.split-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr); gap: 42px; align-items: center; }
.card, .feature-card, .proof-card, .mini-card, .location-card, .contact-card, .post-card, .sidebar-box, .detail-panel, .note-box, .party-alert {
  background: var(--bg-light);
  border: 1px solid rgba(232, 77, 138, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card { overflow: hidden; }
.card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.card-content { padding: 22px; }
.card-content h2 { font-size: 1.55rem; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-yellow-soft);
  color: #6B4A00;
  font-weight: 900;
  font-size: 0.78rem;
}
.badge-blue { background: var(--bg-blue-soft); color: var(--secondary); }
.price {
  display: block;
  color: var(--primary);
  font-size: 1.45rem;
  font-weight: 1000;
  margin: 8px 0 14px;
}
.price-large { font-size: 2.2rem; }
details summary { cursor: pointer; font-weight: 900; color: var(--secondary); }
ul { padding-left: 20px; margin: 10px 0 16px; }
li::marker { color: var(--primary); }
.rounded-media { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; width: 100%; background: var(--bg-soft); }

.feature-card, .proof-card, .mini-card, .location-card, .contact-card, .post-card, .sidebar-box, .detail-panel, .note-box, .party-alert { padding: 24px; }
.feature-card i, .service-card i, .value-card i { color: var(--primary); font-size: 2rem; margin-bottom: 12px; }
.proof-card { display: flex; gap: 14px; align-items: flex-start; }
.proof-card i { color: var(--secondary); margin-top: 5px; }
.segment-grid { display: grid; gap: 14px; }
.mini-card { display: grid; grid-template-columns: 46px 1fr; gap: 8px 14px; align-items: center; }
.mini-card i { grid-row: span 2; color: var(--primary); font-size: 1.4rem; }
.mini-card span { color: var(--muted); }
.process-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.step { padding: 20px; border-radius: var(--radius); background: var(--bg-light); box-shadow: var(--shadow-soft); }
.step span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 1000; margin-bottom: 12px; }

.kit-toolbar { display: grid; grid-template-columns: 1fr minmax(240px, 320px); gap: 18px; align-items: end; margin-bottom: 28px; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn {
  border: 2px solid rgba(63, 116, 181, 0.22);
  background: var(--bg-light);
  color: var(--secondary);
  border-radius: 999px;
  min-height: 42px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 900;
}
.filter-btn.active { background: var(--secondary); color: #fff; }
.search-field { display: grid; gap: 6px; font-weight: 900; color: var(--muted); }
input, select, textarea {
  width: 100%;
  border: 2px solid rgba(63, 116, 181, 0.18);
  border-radius: 12px;
  min-height: 48px;
  padding: 10px 12px;
  background: var(--bg-light);
  color: var(--ink);
}
textarea { resize: vertical; }
.table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--bg-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.comparison-table th, .comparison-table td { padding: 14px; border-bottom: 1px solid rgba(232, 77, 138, 0.12); text-align: left; vertical-align: top; }
.comparison-table th { background: var(--secondary); color: #fff; }
.comparison-table a, .text-link { color: var(--primary); font-weight: 900; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid rgba(232, 77, 138, 0.16);
  border-radius: var(--radius);
  padding: 16px 20px;
  background: var(--bg-light);
  box-shadow: var(--shadow-soft);
}
.faq-item summary { font-size: 1.05rem; }
.faq-tools { margin-bottom: 24px; max-width: 620px; }

.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.post-list { display: grid; gap: 18px; }
.post-card h2 { font-size: 1.55rem; }
.sidebar { display: grid; gap: 18px; position: sticky; top: calc(var(--header-height) + 18px); }
.sidebar-box { display: grid; gap: 10px; }
.article-body { max-width: 830px; }
.article-body h2 { margin-top: 34px; }
.article-meta {
  color: var(--muted);
  font-weight: 900;
  margin-bottom: 10px;
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--muted); margin-bottom: 28px; font-weight: 800; }
.breadcrumbs a { color: var(--secondary); }

.theme-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.theme-card { display: grid; grid-template-columns: 220px 1fr; gap: 18px; align-items: center; background: var(--bg-light); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid rgba(232, 77, 138, 0.14); }
.theme-card img { height: 100%; object-fit: cover; }
.theme-card div { padding: 22px; }

.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.quote-form { background: var(--bg-light); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; border: 1px solid rgba(232, 77, 138, 0.14); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
label.full { grid-column: 1 / -1; }
label { font-weight: 900; color: var(--muted); }
.map-frame iframe { border: 0; width: 100%; min-height: 240px; border-radius: var(--radius); margin-top: 16px; }
.form-feedback {
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: var(--bg-yellow-soft);
  color: #5b4200;
  padding: 12px 14px;
  font-weight: 800;
}

.kit-detail { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr); gap: 32px; align-items: start; }
.detail-panel { position: sticky; top: calc(var(--header-height) + 20px); }

.cta-band {
  padding: 74px 0;
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  text-align: center;
}
.cta-band .container { max-width: 820px; }
.cta-band .eyebrow { color: #fff; }

.site-footer { background: #201722; color: #F8EAF0; padding-top: 62px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr; gap: 28px; }
.footer-logo { width: 140px; height: auto; margin-bottom: 14px; }
.site-footer h2 { font-size: 1.25rem; color: #fff; }
.site-footer a { display: block; color: #FAD6E5; margin-bottom: 8px; }
.social-links a { display: inline-flex; gap: 8px; align-items: center; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 40px; padding: 18px 0; font-size: 0.92rem; color: #E8D8DF; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.floating-whatsapp {
  position: fixed;
  z-index: 55;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25D366;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
  font-size: 1.7rem;
}
.to-top {
  position: fixed;
  z-index: 54;
  right: 22px;
  bottom: 88px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 18px);
  width: min(760px, calc(100% - 28px));
  background: var(--bg-light);
  color: var(--ink);
  border: 1px solid rgba(232, 77, 138, 0.18);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px;
  display: none;
  gap: 16px;
  align-items: center;
}
.cookie-banner.visible { display: grid; grid-template-columns: 1fr auto; }
.cookie-banner p { margin: 0; }
.cookie-banner div { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: flex-end; }
.cookie-banner a { color: var(--secondary); font-weight: 900; }

[hidden] { display: none !important; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; }
  .theme-toggle { order: 3; }
  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--bg-light);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .grid-3, .trust-grid, .process-steps, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section, .contact-layout, .kit-detail, .blog-layout { grid-template-columns: 1fr; }
  .sidebar, .detail-panel { position: static; }
  .kit-toolbar { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --header-height: 76px; }
  .container { width: min(100% - 24px, 1120px); }
  .brand img { width: 108px; }
  .hero { min-height: 560px; padding-top: calc(var(--header-height) + 28px); }
  .hero-compact { min-height: 360px; }
  .section, .section-soft { padding: 58px 0; }
  .grid-3, .trust-grid, .process-steps, .footer-grid, .theme-gallery, .form-grid { grid-template-columns: 1fr; }
  .trust-grid span { justify-content: flex-start; }
  .theme-card { grid-template-columns: 1fr; }
  .theme-card img { width: 100%; height: auto; }
  .hero-actions, .card-actions { align-items: stretch; }
  .btn { width: 100%; }
  .cookie-banner.visible { grid-template-columns: 1fr; }
  .floating-whatsapp { width: 54px; height: 54px; }
}

