@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

:root {
  /* Exact two-tone page palette sampled from the supplied reference. */
  --bg: #151515;
  --surface: #1b1b1c;
  --surface-raised: #151515;
  --text: #f5f5f7;
  --muted: #9b9ba2;
  --border: rgba(255, 255, 255, 0.13);
  --soft: rgba(255, 255, 255, 0.055);
  /* Form fields use the exact supplied reference fill. */
  --form-field-bg: #ced4da;
  --form-field-text: #151515;
  --form-field-placeholder: #343a40;
  --form-field-border: #ced4da;
  --orange: #fa6900;
  --coral: #f0443c;
  --highlight: #f0443c;
  --magenta: #c72baa;
  --purple: #793ce9;
  --first-accent: #fa6900;
  --second-accent: #f0443c;
  --third-accent: #ffffff;
  --point: var(--second-accent);
  --accent-gradient: linear-gradient(90deg, #793ce9 0%, #c72baa 34%, #f0443c 68%, #fa6900 100%);
  --heading-gradient: var(--accent-gradient);
--font: "Inter", -apple-system, sans-serif;
--heading-font: "Poppins", -apple-system, sans-serif;
  --container: 1320px;
  --header-height: 66px;
  --radius-lg: 32px;
  --radius-md: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-weight: 400; -webkit-font-smoothing: antialiased; transition: background .25s ease, color .25s ease; }
h1, h2, h3 { font-family: var(--heading-font); font-weight: 300; }
/* Approved title treatment: Poppins Light only, with no bold fallback. */
h1, h2, h3 { font-family: "Poppins", -apple-system, sans-serif !important; font-weight: 300 !important; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.container { width: min(calc(100% - 60px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; padding: 12px 16px; border-radius: 99px; background: #fff; color: #000; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--highlight); outline-offset: 4px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; width: 100%; height: var(--header-height); background: #000; border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: saturate(180%) blur(22px); transform: translateY(0); transition: transform .28s ease, background .25s ease, border-color .25s ease; }
.site-header.is-hidden { transform: translateY(calc(-100% - 2px)); }
.site-header.is-scrolled, .site-header.mobile-open { background: #000; border-color: rgba(255,255,255,.1); backdrop-filter: none; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-logo { flex: 0 0 auto; width: 104px; height: 52px; margin-left: -2px; display: flex; align-items: center; overflow: visible; }
.site-logo img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; font-size: 13px; font-weight: 520; letter-spacing: -.01em; }
.desktop-nav > a, .dropdown-toggle { color: #fff; transition: color .2s ease; }
.desktop-nav > a:hover, .desktop-nav > a:focus-visible, .dropdown-toggle:hover, .dropdown-toggle:focus-visible { color: #fff; }
.desktop-nav .nav-cta { padding: 10px 16px; border-radius: 99px; background: var(--accent-gradient); color: #fff !important; font-weight: 680; }
.dropdown-toggle { display: flex; align-items: center; gap: 6px; padding: 14px 0; border: 0; background: none; cursor: pointer; }
.dropdown-chevron { width: 7px; height: 7px; margin: -3px 2px 0 1px; border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor; transform: rotate(45deg); transition: transform .2s ease; }
.dropdown-toggle[aria-expanded="true"] .dropdown-chevron { margin-top: 3px; transform: rotate(225deg); }
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 2px); left: 50%; width: 224px; padding: 10px; border: 1px solid var(--border); border-radius: 18px; background: color-mix(in srgb, var(--surface) 94%, transparent); box-shadow: 0 20px 60px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transform: translate(-50%, -8px); transition: .2s ease; backdrop-filter: blur(20px); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu, .dropdown-menu.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-menu a { display: block; padding: 12px 13px; border-radius: 11px; color: var(--muted); }
.dropdown-menu a:hover, .dropdown-menu a:focus-visible { background: var(--soft); color: var(--text); }
.header-tools { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(0,0,0,.18); cursor: pointer; }
.menu-toggle span { width: 17px; height: 1px; display: block; margin: 5px auto; background: #fff; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: var(--header-height) 0 0; padding: 24px 30px 48px; overflow: auto; background: var(--bg); }
.mobile-nav > a, .mobile-services-heading { display: flex; justify-content: space-between; width: 100%; padding: 17px 0; border-bottom: 1px solid var(--border); }
.mobile-nav > a, .mobile-services-title { font-size: clamp(24px, 7vw, 34px); font-weight: 650; letter-spacing: -.035em; text-align: left; }
.mobile-services-title { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 7px; }
.mobile-services-toggle { width: 42px; margin: -17px 0; padding: 0; border: 0; background: none; color: inherit; font-size: 30px; font-weight: 650; cursor: pointer; }
.mobile-services { padding: 8px 0 16px 18px; border-bottom: 1px solid var(--border); }
.mobile-services a { display: block; padding: 12px 0; color: var(--muted); font-size: 17px; }
.mobile-services .mobile-services-overview { color: var(--text); font-weight: 650; }

.section { padding: 126px 0; }
.section-label { margin: 0 0 18px; color: var(--first-accent); font-size: 13px; font-weight: 760; letter-spacing: .17em; text-transform: uppercase; }
.button { min-height: 48px; padding: 0 21px; border: 1px solid transparent; border-radius: 99px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; font-size: 14px; font-weight: 680; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.field-title { display: inline-block; }
.field-requirement { color: rgba(255,255,255,.62); font-size: .88em; font-weight: 400; }
.field-requirement.is-required { color: var(--second-accent); font-weight: 700; }
.button:hover { transform: translateY(-2px); }
.inactive-cta { pointer-events: none; cursor: default; }
.button > [aria-hidden="true"]:last-child,
.book-ghost-button > [aria-hidden="true"]:last-child,
.quote-whatsapp-button > [aria-hidden="true"]:last-child,
.book-consultation-grid b > [aria-hidden="true"]:last-child,
.quote-main-service-grid b > [aria-hidden="true"]:last-child { color: var(--orange); }
.button-primary { overflow: hidden; color: #fff; border: 0; background: var(--accent-gradient); background-repeat: no-repeat; background-size: 100% 100%; box-shadow: 0 14px 36px rgba(199,43,170,.2); }
.button-primary > [aria-hidden="true"]:last-child { color: #fff; }
.button-glass, .button-light, .button-outline-light { overflow: hidden; color: #fff; border: 0; background: var(--accent-gradient); background-repeat: no-repeat; background-size: 100% 100%; box-shadow: 0 14px 36px rgba(199,43,170,.2); }

.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 44px; height: 44px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; box-shadow: none; transition: transform .2s ease; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { transform: translateY(-2px); box-shadow: none; }
.whatsapp-float img { width: 100%; height: 100%; padding: 0; object-fit: contain; }

.site-footer { padding: 80px 0 24px; border-top: 1px solid rgba(255,255,255,.1); background: #000; color: #909098; }
.cookie-notice { position: fixed; z-index: 50; left: 20px; right: 20px; bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); color: var(--text); box-shadow: 0 12px 40px rgba(0,0,0,.2); font-size: 13px; }
.cf-turnstile { margin: 12px 0 16px; }
.cookie-notice p { margin: 0; line-height: 1.5; }.cookie-notice a { color: var(--accent); }.cookie-notice button { flex: 0 0 auto; border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; background: transparent; color: inherit; cursor: pointer; }
@media (max-width: 600px) { .cookie-notice { left: 10px; right: 10px; bottom: 10px; align-items: center; gap: 8px; padding: 10px 12px; font-size: 11px; } .cookie-notice p { line-height: 1.35; } .cookie-notice button { padding: 6px 10px; font-size: 11px; } }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 50px; }
.footer-brand img { width: 145px; height: 70px; margin: 0 0 12px 0; object-fit: contain; object-position: left center; }
.social-links a svg { width: 16px; height: 16px; display: block; }
.quote-whatsapp-float { display: none !important; }
.footer-brand p { max-width: 260px; margin: 0 0 24px; font-size: 14px; line-height: 1.6; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: #ddd; font-size: 11px; }
.footer-column h2 { margin: 0 0 20px; color: #fff; font-size: 13px; }
.footer-column a, .footer-column p { display: block; margin: 0 0 12px; color: #909098; font-size: 13px; line-height: 1.45; }
.footer-column a:hover { color: #fff; }
.footer-bottom { margin-top: 58px; padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 17px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 42px), var(--container)); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .site-header.mobile-open { height: 100svh; }
  .site-header.mobile-open .header-inner { height: var(--header-height); }
  .site-header.mobile-open .mobile-nav { position: absolute; height: calc(100svh - var(--header-height)); }
  .section { padding: 100px 0; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --header-height: 62px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-logo { width: 88px; height: 44px; margin-left: 0; }
  .site-logo img { width: 100%; height: 100%; }
  .mobile-nav { padding-inline: 18px; }
  .section { padding: 72px 0; }
  .button { width: 100%; }
  .whatsapp-float { right: 10px; bottom: 10px; width: 30px; height: 30px; }
  .site-footer { padding-top: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
