/* ================= HEADER / NAV ================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; }
@media (min-width: 1024px) { .site-header__inner { padding-block: 1.25rem; } }
.site-header__logo img { height: 48px; width: auto; transition: opacity 0.2s; }
.site-header__logo:hover img { opacity: 0.8; }
@media (min-width: 768px) { .site-header__logo img { height: 56px; } }

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { color: hsl(var(--foreground)); background: hsl(var(--muted)); }
.nav-link.is-active { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.nav-more { position: relative; }
.nav-more__btn { cursor: pointer; }
.nav-more__chevron { transition: transform 0.2s; }
.nav-more[aria-expanded="true"] .nav-more__chevron,
.nav-more__btn[aria-expanded="true"] .nav-more__chevron { transform: rotate(180deg); }
.nav-more__panel {
  position: absolute; right: 0; top: calc(100% + 0.5rem);
  width: 12rem; padding-block: 0.5rem;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  z-index: 50;
}
.nav-more__link {
  display: block; padding: 0.625rem 1rem;
  font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: background 0.15s, color 0.15s;
}
.nav-more__link:hover { color: hsl(var(--foreground)); background: hsl(var(--muted)); }
.nav-more__link.is-active { background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); }

.nav-mobile-controls { display: flex; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-mobile-controls { display: none; } }

.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  transition: background 0.15s;
}
.theme-toggle:hover { background: hsl(var(--muted)); }
.theme-toggle__moon { display: none; }
[data-theme="dark"] .theme-toggle__sun { display: none; }
[data-theme="dark"] .theme-toggle__moon { display: block; }

.hamburger {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  color: hsl(var(--foreground));
}
.hamburger:hover { background: hsl(var(--muted)); }
.hamburger__close { display: none; }
.hamburger[aria-expanded="true"] .hamburger__open { display: none; }
.hamburger[aria-expanded="true"] .hamburger__close { display: block; }

.nav-mobile {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1rem;
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  max-height: 70vh; overflow-y: auto;
}
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }
.nav-mobile__link {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 1rem; font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: background 0.15s, color 0.15s;
}
.nav-mobile__link:hover { color: hsl(var(--foreground)); background: hsl(var(--muted)); }
.nav-mobile__link.is-active { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

/* Page top spacing to clear the fixed header */
main { padding-top: var(--header-height); }
@media (min-width: 1024px) { main { padding-top: var(--header-height-lg); } }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 600; font-size: 0.875rem;
  line-height: 1; white-space: nowrap;
  transition: opacity 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn:focus-visible { outline: 2px solid hsl(var(--ring)); outline-offset: 2px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn--lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

.btn--primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn--primary:hover { opacity: 0.9; }

.btn--orange { background: hsl(var(--orange)); color: white; }
.btn--orange:hover { opacity: 0.9; }

.btn--outline { background: hsl(var(--card)); border-color: hsl(var(--border)); color: hsl(var(--foreground)); }
.btn--outline:hover { border-color: hsl(var(--primary)); }

.btn--block { width: 100%; }

/* ================= HERO ================= */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  padding-top: 5rem; overflow: hidden;
}
.hero__blob {
  position: absolute; border-radius: 9999px;
  filter: blur(80px); pointer-events: none;
}
.hero__blob--1 { top: 5rem; right: 25%; width: 24rem; height: 24rem; background: hsl(var(--primary) / 0.1); }
.hero__blob--2 { bottom: 5rem; left: 25%; width: 20rem; height: 20rem; background: hsl(var(--teal) / 0.1); }
.hero__blob--3 { top: 50%; right: 2.5rem; width: 16rem; height: 16rem; background: hsl(var(--orange) / 0.1); }

.hero__inner { position: relative; z-index: 10; max-width: 64rem; margin: 0 auto; text-align: center; }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.25rem);
  color: hsl(var(--muted-foreground));
  max-width: 36rem; margin: 0 auto 3rem;
}

.service-pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .service-pricing-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .service-pricing-grid { grid-template-columns: repeat(5, 1fr); } }

.pricing-card {
  display: block;
  padding: 1.25rem;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius-2xl);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { border-color: hsl(var(--primary)); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--orange { border-color: hsl(var(--orange) / 0.2); }
.pricing-card--orange:hover { border-color: hsl(var(--orange)); }
.pricing-card--teal { border-color: hsl(var(--teal) / 0.2); }
.pricing-card--teal:hover { border-color: hsl(var(--teal)); }
.pricing-card--span-2 { grid-column: span 2; }
@media (min-width: 1024px) { .pricing-card--span-2 { grid-column: span 1; } }
@media (min-width: 768px) { .pricing-card { padding: 1.5rem; } }

.pricing-card__icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-lg);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.2s;
}
.pricing-card:hover .pricing-card__icon { transform: scale(1.1); }
.pricing-card--orange .pricing-card__icon { background: hsl(var(--orange) / 0.1); color: hsl(var(--orange)); }
.pricing-card--teal .pricing-card__icon { background: hsl(var(--teal) / 0.1); color: hsl(var(--teal)); }

.pricing-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-card__desc { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }
.pricing-card__price-row { padding-top: 0.75rem; border-top: 1px solid hsl(var(--border)); }
.pricing-card__price { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: hsl(var(--primary)); }
.pricing-card__price small { font-size: 0.875rem; font-weight: 400; color: hsl(var(--muted-foreground)); }
.pricing-card__sub { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.pricing-card--orange .pricing-card__price { color: hsl(var(--orange)); }
.pricing-card--teal .pricing-card__price { color: hsl(var(--teal)); }

.hero__cta-row {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero__cta-row { flex-direction: row; justify-content: center; } }

.hero__trust { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ================= SECTION HEADER ================= */
.section-eyebrow {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 600;
  margin-bottom: 1rem;
}
.section-eyebrow--orange { background: hsl(var(--orange) / 0.1); color: hsl(var(--orange)); }
.section-eyebrow--teal { background: hsl(var(--teal) / 0.1); color: hsl(var(--teal)); }

.section-title {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  font-weight: 700; margin-bottom: 1rem;
}
.section-lede {
  color: hsl(var(--muted-foreground));
  max-width: 42rem; margin: 0 auto;
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.125rem);
}

/* ================= SERVICES GRID ================= */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .services-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  display: block; height: 100%;
  padding: 1rem;
  background: hsl(var(--card));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
@media (min-width: 768px) { .service-card { padding: 1.5rem; } }

.service-card__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
  transition: transform 0.2s;
}
.service-card:hover .service-card__icon { transform: scale(1.1); }
@media (min-width: 768px) { .service-card__icon { width: 3.5rem; height: 3.5rem; border-radius: var(--radius-lg); margin-bottom: 1rem; } }
.service-card__title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 0.875rem; margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .service-card__title { font-size: 1.125rem; margin-bottom: 0.5rem; } }
.service-card__desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 768px) { .service-card__desc { font-size: 0.875rem; } }

/* ================= ABOUT ================= */
.about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about-portrait {
  position: relative;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--orange) / 0.1));
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
  display: none;
}
@media (min-width: 768px) { .about-portrait { display: block; } }
.about-portrait__avatar {
  width: 8rem; height: 8rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 4rem;
}
.about-portrait__name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.about-portrait__role { color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.about-portrait__pills { display: flex; justify-content: center; gap: 1rem; }
.about-pill {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 500;
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
}
.about-pill--orange { background: hsl(var(--orange) / 0.1); color: hsl(var(--orange)); }

.about-pricing-strip {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem;
  background: hsl(var(--orange) / 0.1);
  border: 1px solid hsl(var(--orange) / 0.2);
  border-radius: var(--radius-xl);
  margin-block: 1.5rem;
}
.about-pricing-strip__icon {
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  background: hsl(var(--orange) / 0.2);
  color: hsl(var(--orange));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.about-features {
  display: grid; grid-template-columns: 1fr;
  gap: 0.75rem; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .about-features { grid-template-columns: repeat(2, 1fr); } }
.about-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.about-feature svg { color: hsl(var(--primary)); flex-shrink: 0; }

.brand-family {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem; margin-bottom: 1.5rem;
}
.brand-pill {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: hsl(var(--primary) / 0.05);
  border: 1px solid hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
}
.brand-pill__name { font-size: 0.75rem; font-weight: 500; }
.brand-pill__year { font-size: 0.625rem; color: hsl(var(--muted-foreground)); }

/* ================= FORMS ================= */
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field > label { font-size: 0.875rem; font-weight: 500; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2);
}
.form-field textarea { resize: vertical; min-height: 6rem; }
.form-status { font-size: 0.875rem; text-align: center; font-weight: 500; }
.form-status--success { color: hsl(142 71% 35%); }
.form-status--error { color: hsl(var(--destructive)); }

/* ================= CONTACT INFO CARDS ================= */
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem;
  background: hsl(var(--card));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border-left: 4px solid hsl(var(--primary));
  transition: box-shadow 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow-card-hover); }
.contact-card--teal { border-left-color: hsl(var(--teal)); }
.contact-card--orange { border-left-color: hsl(var(--orange)); }
.contact-card__icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-lg);
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
}
.contact-card--teal .contact-card__icon { background: hsl(var(--teal) / 0.1); color: hsl(var(--teal)); }
.contact-card--orange .contact-card__icon { background: hsl(var(--orange) / 0.1); color: hsl(var(--orange)); }
.contact-card__label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.contact-card__value { font-weight: 600; }

/* ================= FOOTER ================= */
.site-footer {
  position: relative; overflow: hidden;
  /* Footer is always dark, regardless of light/dark theme */
  color: hsl(0 0% 100%);
  background: hsl(220 25% 8%);
}
.site-footer__inner { position: relative; z-index: 10; padding-block: 4rem 2rem; padding-inline: 1rem; }
@media (min-width: 768px) { .site-footer__inner { padding-inline: 2rem; } }
.site-footer__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer__logo img { height: 64px; width: auto; margin-bottom: 1rem; }
.site-footer__tagline { color: hsl(0 0% 100% / 0.7); margin-bottom: 1.5rem; max-width: 28rem; }
.site-footer__contact { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.875rem; color: hsl(0 0% 100% / 0.7); }
.site-footer__contact-link { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.15s; }
a.site-footer__contact-link:hover { color: hsl(var(--primary)); }
.site-footer__socials { display: flex; gap: 0.75rem; }
.site-footer__socials a {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: hsl(0 0% 100% / 0.1);
  color: hsl(0 0% 100%);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.site-footer__socials a:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.site-footer__col h4 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 1rem; color: hsl(0 0% 100%); }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col a { color: hsl(0 0% 100% / 0.7); transition: color 0.15s; }
.site-footer__col a:hover { color: hsl(var(--primary)); }
.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(0 0% 100% / 0.1);
  display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: 0.875rem; color: hsl(0 0% 100% / 0.5);
}
@media (min-width: 768px) { .site-footer__bottom { flex-direction: row; } }

/* ================= WHATSAPP WIDGET ================= */
.whatsapp-widget {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  width: 56px; height: 56px;
  border-radius: 9999px;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-widget:hover { transform: scale(1.1); box-shadow: 0 16px 40px -8px rgba(0,0,0,0.3); }

/* ================= COOKIE BANNER ================= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem;
  animation: fadeIn 0.5s ease-out;
}
.cookie-banner__inner {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .cookie-banner__inner { flex-direction: row; align-items: center; gap: 1.5rem; } }
.cookie-banner__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cookie-banner__text { flex: 1; }
.cookie-banner__text strong { display: block; font-family: var(--font-heading); font-weight: 600; margin-bottom: 0.25rem; }
.cookie-banner__text p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin: 0; }
.cookie-banner__text a { color: hsl(var(--primary)); font-weight: 500; }
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ================= PILL / BADGE ================= */
.pill-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  color: hsl(var(--foreground));
  border-radius: var(--radius-full);
  font-weight: 500;
}
