:root {
    --sunflower-yellow: #EAB308;--dark-construction: #1A1A1A;
    --light-gray: #F8F9FA;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-construction);
    min-height: max(884px, 100dvh);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.2) 100%);
}
.card-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.card-shadow-hover:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
#main-header {transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-floating {
    top: 2rem;
    width: calc(100% - 2rem);
    max-width: 1280px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.header-scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
    background: rgba(247, 247, 247, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
/* FAQ accordion */
.faq-item details summary {
    cursor: pointer;
    list-style: none;
}
.faq-item details summary::-webkit-details-marker {
    display: none;
}
.faq-item details[open] summary .faq-icon-plus {
    display: none;
}
.faq-item details[open] summary .faq-icon-minus {
    display: inline;
}
.faq-item details summary .faq-icon-minus {
    display: none;
}
.faq-item details[open] {
    border-left: 2px solid var(--sunflower-yellow);
}
/* Testimonial star */
.star-rating { color: var(--sunflower-yellow); }
/* Reviews carousel */
.reviews2-outer { display: flex; align-items: center; gap: 16px; }
.reviews2-viewport { flex: 1; overflow: hidden; min-width: 0; }
.reviews2-track { display: flex; gap: 24px; transition: transform 0.4s ease; }
.rc2 { flex: 0 0 calc(50% - 12px); border: 1px solid #e5e5e5; padding: 28px; background: #fff; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.rc2__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.rc2__header-left { flex: 1; min-width: 0; }
.rc2__date { font-size: 0.8em; color: #999; margin-bottom: 6px; }
.rc2__name { font-size: 1.25em; font-weight: 600; color: #1c1c1c; line-height: 1.2; }
.rc2__stars { color: var(--sunflower-yellow); font-size: 1.05em; letter-spacing: 2px; margin-top: 6px; }
.rc2__avatar { width: 48px; height: 48px; border-radius: 50%; background: #ebebeb; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #bbb; }
.rc2__service { font-size: 0.8667em; color: #555; line-height: 1.55; }
.rc2__deal { color: #999; }
.rc2__text { color: #666; font-size: 0.9333em; line-height: 1.7; flex: 1; }
.reviews2-nav { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 30px; color: #555; line-height: 1; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; }
.reviews2-nav:hover { border-color: var(--sunflower-yellow); color: var(--sunflower-yellow); }
@media (max-width: 860px) { .rc2 { flex: 0 0 100%; } }
@media (max-width: 600px) { .reviews2-outer { gap: 8px; } .reviews2-nav { width: 32px; height: 32px; font-size: 22px; } }

/* Mobile navigation */
#mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e5e7eb;
}
#mobile-nav.open {
  display: flex;
}

/* GDPR page */
.prose-gdpr { color: #3f3f46; font-size: 0.9375rem; line-height: 1.75; }
.gdpr-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid #f4f4f5; }
.gdpr-section:last-child { border-bottom: none; }
.gdpr-section h2 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: #18181b; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.gdpr-section p { margin-bottom: 0.85rem; }
.gdpr-section ul { padding-left: 1.25rem; margin-bottom: 0.85rem; }
.gdpr-section ul li { margin-bottom: 0.35rem; list-style: disc; }
.gdpr-section a { color: #18181b; text-decoration: underline; text-underline-offset: 3px; }
.gdpr-section a:hover { color: var(--sunflower-yellow); }
.gdpr-box { background: #f8f9fa; border-left: 3px solid var(--sunflower-yellow); padding: 1rem 1.25rem; margin: 1rem 0; font-size: 0.875rem; line-height: 1.7; }
.gdpr-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.875rem; }
.gdpr-table th { background: #18181b; color: #fff; text-align: left; padding: 0.6rem 0.85rem; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.gdpr-table td { padding: 0.6rem 0.85rem; border-bottom: 1px solid #e4e4e7; vertical-align: top; }
.gdpr-table tr:last-child td { border-bottom: none; }
.gdpr-table tr:nth-child(even) td { background: #fafafa; }
.gdpr-rights { display: flex; flex-direction: column; gap: 1rem; margin: 1rem 0; }
.gdpr-right { display: flex; gap: 0.85rem; align-items: flex-start; padding: 1rem; border: 1px solid #e4e4e7; }
.gdpr-right__icon { color: var(--sunflower-yellow); font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.gdpr-right strong { display: block; font-size: 0.875rem; color: #18181b; margin-bottom: 0.25rem; }
.gdpr-right p { font-size: 0.8125rem; color: #71717a; margin: 0; line-height: 1.6; }

/* Hero section — auto-height so content is never clipped on short/narrow viewports */
#hero {
  height: auto;
  min-height: 63vh;
}

/* Fluid hero title */
.hero-title {
  font-size: clamp(1.75rem, 1vw + 2.1rem, 4.5rem);
  line-height: 1.1;
}
/* ~20% smaller on narrow phones; converges smoothly with the main formula at 640px */
@media (max-width: 639px) {
  .hero-title {
    font-size: clamp(1.4rem, 5vw + 0.5rem, 4.5rem);
  }
}

/* Form placeholder — lighter so it doesn't look like real input */
input::placeholder,
textarea::placeholder {
  color: #adb5bd;
  opacity: 1;
}

/* Disable parallax on mobile */
@media (max-width: 768px) {
  .cta-banner {
    background-attachment: scroll !important;
  }
}

/* Service cards on mobile */
@media (max-width: 640px) {
  .service-card-wrap {
    aspect-ratio: auto;
    min-height: 220px;
  }
}
