/* Fabulozo sub-pages shared styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  background-color: #F6F6F6;
  font-family: "Cabin", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
p { color: #777777; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; color: #111; }
a { font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1100px, 90%); margin: auto; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  height: 64px; gap: 16px;
}
.logo {
  font-weight: 700; text-decoration: none; color: #111;
  display: flex; align-items: center; gap: 10px;
}
.logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { text-decoration: none; color: #111; }
.nav-links a:hover { color: #FF2776; }
.nav-button {
  background: #FF2776; border: none; color: #fff;
  padding: 10px 20px; border-radius: 20px; white-space: nowrap;
  text-decoration: none; font-family: inherit; cursor: pointer;
}
.nav-button:hover { background: #e0205f; transform: translateY(-1px); }
.burger {
  display: none; background: transparent; border: none;
  font-size: 22px; line-height: 1; padding: 8px 10px; border-radius: 10px;
  cursor: pointer;
}

/* Page Content */
.page-content { padding: 80px 0; }
.page-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 8px;
}
.page-subtitle {
  color: #868686;
  font-size: clamp(14px, 1.6vw, 16px);
  margin-bottom: 48px;
}
.page-content h2 {
  font-size: clamp(20px, 2.8vw, 28px);
  margin-top: 40px;
  margin-bottom: 12px;
  color: #111;
  text-align: left;
}
.page-content p {
  margin: 12px 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
}
.page-content ul { padding-left: 24px; margin: 12px 0; }
.page-content li {
  margin: 8px 0; color: #777;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
}
.page-content strong { color: #333; }
.page-content a { color: #FF2776; }
.page-content a:hover { color: #111; }

/* FAQ cards (support page) */
.qa {
  background: #fff;
  padding: 24px 32px;
  border-radius: 16px;
  margin: 16px 0;
}
.qa strong { color: #111; }
.qa p { margin: 8px 0; }

/* Contact card (support page) */
.contact-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  margin-top: 24px;
}
.contact-card p { margin: 8px 0; }
.contact-card strong { color: #333; }

/* Product page specifics */
.highlight { color: #FF2776; }
.light { color: #868686; }
.num { font-size: 25px; color: #FF2776; font-weight: 700; }

.hero { padding: 80px 0 0; }
.hero h1 {
  font-size: clamp(32px, 4.6vw, 55px);
  line-height: 1.05;
}
.hero p {
  margin: 24px 0; color: #555;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.btn-primary {
  background: #FF2776; color: #F9F9F9;
  padding: 12px 24px; border-radius: 24px;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #e0205f; transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid #FF2776; outline-offset: 2px; }

.btn-secondary {
  background: #FF2776; border: none; color: #fff;
  padding: 12px 24px; border-radius: 24px;
  text-decoration: none; display: inline-block;
  font-family: inherit; cursor: pointer;
}
.btn-secondary:hover { background: #e0205f; transform: translateY(-1px); }
.btn-secondary:focus-visible { outline: 2px solid #FF2776; outline-offset: 2px; }

.features { background: #ffffff; padding: 80px 0; }
.features h2 {
  font-size: clamp(28px, 4vw, 48px);
  text-align: center; line-height: 1.15;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 40px;
}
.feature {
  background-color: #F9F9F9; padding: 32px; border-radius: 16px;
  display: flex; flex-direction: column; gap: 16px;
}

.why-section { padding: 80px 0; }
.why-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  text-align: center; line-height: 1.15;
  margin-bottom: 40px;
}
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.why-card {
  background: #fff; padding: 32px; border-radius: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.why-card strong { color: #111; font-size: 18px; }

.cta-box {
  display: flex; gap: 24px; flex-direction: column;
  justify-content: center; align-items: center;
  background: #F2EEF0; padding: 56px 32px; border-radius: 16px;
  margin: 80px auto; max-width: 700px;
}
.cta-title {
  font-size: clamp(22px, 3vw, 35px); text-align: center;
}
.cta-text {
  font-size: clamp(16px, 2vw, 20px); text-align: center;
  max-width: 600px; line-height: 1.55;
}

.about-section { padding: 0 0 80px; }
.about-section p {
  font-size: clamp(16px, 2vw, 20px); line-height: 1.55;
  text-align: center; max-width: 700px; margin: 0 auto;
}
.about-section a { color: #FF2776; text-decoration: none; }
.about-section a:hover { color: #111; }
.page-links {
  text-align: center; margin-top: 24px;
  font-size: clamp(16px, 2vw, 18px);
}
.page-links a { color: #FF2776; text-decoration: none; }
.page-links a:hover { color: #111; }

/* Footer */
.site-footer {
  position: relative; background: #fff;
  padding: 44px 0 64px; overflow: hidden;
}
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; position: relative; z-index: 2;
}
.footer-social { margin-top: 14px; display: flex; gap: 14px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center;
  background: #111; text-decoration: none;
}
.social-btn:hover { background: #333; }
.social-btn svg { width: 20px; height: 20px; fill: #fff; display: block; }
.footer-links {
  display: flex; gap: clamp(18px, 3vw, 44px);
  align-items: center; flex-wrap: wrap; margin-top: 10px;
}
.footer-links a {
  text-decoration: none; color: #8a8a8a;
  font-size: 22px; font-weight: 400;
}
.footer-links a:hover { color: #111; }
.footer-watermark {
  position: absolute; left: 50%; bottom: -8px;
  transform: translateX(-50%);
  font-size: clamp(76px, 12vw, 220px);
  font-weight: 700; letter-spacing: -2px;
  color: rgba(0,0,0,0.04);
  white-space: nowrap; z-index: 1;
  pointer-events: none; user-select: none;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-links a { font-size: 18px; }
  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-button { display: none; }
  .burger { display: block; }
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px 0;
    opacity: 0; transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav-links a { width: 100%; padding: 14px 20px; display: block; }
  .nav-links.is-open {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .page-content { padding: 52px 0; }
  .hero { padding-top: 52px; }
  .features, .why-section { padding: 52px 0; }
  .cta-box { padding: 36px 18px; margin: 52px auto; }
  .qa { padding: 18px 22px; }
}
@media (max-width: 480px) {
  .container { width: min(1100px, 92%); }
  .feature { padding: 22px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .footer-links a { font-size: 16px; }
}
