@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;1,9..40,400&display=swap');

/* ─── Global ─── */
*, *::before, *::after { box-sizing: border-box; }
::selection { background: #c4f041; color: #0a2e3d; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { }

/* ─── Fluid type ─── */
.text-hero   { font-size: clamp(56px,  9vw,   132px); line-height: 0.92; letter-spacing: -0.04em; }
.text-section { font-size: clamp(44px, 6.5vw,  96px); line-height: 0.95; letter-spacing: -0.04em; }
.text-contact-head { font-size: clamp(40px, 5vw, 72px); line-height: 0.95; letter-spacing: -0.03em; }
.text-foot-big { font-size: clamp(80px, 16vw, 240px); line-height: 0.85; letter-spacing: -0.05em; }

/* ─── Logo mark dot ─── */
.logo-mark { position: relative; }
.logo-mark::after {
  content: "";
  position: absolute; right: -4px; top: -4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #00b8d9;
}

/* ─── Hero blob animation ─── */
@keyframes blob {
  0%, 100% { border-radius: 48% 52% 38% 62% / 45% 50% 50% 55%; }
  50%       { border-radius: 62% 38% 56% 44% / 55% 45% 55% 45%; }
}
.hero-blob {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, #00b8d9 0%, #0091b8 70%);
  border-radius: 48% 52% 38% 62% / 45% 50% 50% 55%;
  animation: blob 8s ease-in-out infinite;
}

/* ─── Bubble ─── */
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.3) 60%, transparent);
  border: 2px solid rgba(255,255,255,0.5);
}

/* ─── Marquee ─── */
.marquee-outer {
  overflow: hidden;
  margin: -20px -60px 0;
}

/* ─── Brutalist box shadows ─── */
.shadow-brutal    { box-shadow: 8px 8px 0 0 #0a2e3d; }
.shadow-brutal-lg { box-shadow: 10px 10px 0 0 #0a2e3d; }
.shadow-brutal-sm { box-shadow: 6px 6px 0 0 #0a2e3d; }
.shadow-brutal-lime { box-shadow: 10px 10px 0 0 #c4f041; }
.shadow-sticker   { box-shadow: 0 8px 0 0 #0a2e3d; }

.step-hover { transition: transform 0.25s, box-shadow 0.25s; }
.step-hover:hover { transform: translate(-2px, -2px); box-shadow: 12px 12px 0 0 #0a2e3d; }

/* ─── Testimonial rotations + hover ─── */
.testi   { transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease; cursor: default; }
.testi:hover   { transform: rotate(2deg) scale(1.03) !important; box-shadow: 10px 10px 0 0 #0a2e3d; z-index: 2; position: relative; }
.testi-2 { transform: rotate(-1deg); }
.testi-2:hover { transform: rotate(-3deg) scale(1.03) !important; }
.testi-3 { transform: rotate(0.5deg); }
.testi-3:hover { transform: rotate(2.5deg) scale(1.03) !important; }

/* ─── FAQ accordion ─── */
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.25s ease;
  font-size: 15px; line-height: 1.6; opacity: 0.85;
}
.faq-item.open .faq-answer { max-height: 220px; margin-top: 12px; }
.faq-toggle { transition: transform 0.25s ease, background-color 0.25s ease; }
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background-color: #00b8d9 !important;
  color: white !important;
}
.faq-item.open { background-color: #c4f041 !important; }

/* ─── Contact info block hover ─── */
.contact-block { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.contact-block:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }

/* ─── Nav link hover ─── */
.nav-link { transition: opacity 0.2s, color 0.2s; }
.nav-link:hover { opacity: 1 !important; color: #c4f041; }

/* ─── Benefit card hover ─── */
.benefit { transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), brightness 0.2s; cursor: default; }
.benefit:hover { transform: translateY(-6px) scale(1.02); filter: brightness(1.08); }

/* ─── Pricing card hover ─── */
.price-card-hover {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.price-card-hover:hover { transform: translate(-3px, -3px); box-shadow: 14px 14px 0 0 #0a2e3d; }

/* ─── FAQ item hover ─── */
.faq-item { transition: background-color 0.25s ease, transform 0.2s ease; }
.faq-item:not(.open):hover { transform: translateX(4px); }

/* ─── Pill hover in hero ─── */
.hero-pill { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hero-pill:hover { transform: scale(1.05); box-shadow: 4px 4px 0 0 #0a2e3d; }

/* ─── Mobile menu ─── */
#mobile-menu { display: none; }
#mobile-menu.open { display: block; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .testi-2, .testi-3 { transform: none; }
  .marquee-outer { margin: -20px -24px 0; }
  .price-amount-text { font-size: clamp(72px, 22vw, 120px) !important; }
  .contact-phone { font-size: clamp(20px, 6vw, 30px) !important; }
}
