@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --background: #f7f8fb;
  --foreground: #0c1a2e;
  --navy: #0a1628;
  --navy-light: #152238;
  --navy-muted: #1e3354;
  --accent: #0a1628;
  --accent-light: #152238;
  --accent-dark: #0a1628;
  --muted: #eef1f6;
  --muted-dark: #e2e7ef;
  --border: #d8dee8;
  --surface: #ffffff;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --green-50: #f0fdf4;
  --green-200: #bbf7d0;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --red-50: #fef2f2;
  --red-700: #b91c1c;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

/* Layout */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

main { min-height: 60vh; }

/* Flex / Grid utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden { display: none !important; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.overflow-hidden { overflow: hidden; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:hidden { display: none !important; }
  .sm\:block { display: block !important; }
  .sm\:flex { display: flex !important; }
  .sm\:text-left { text-align: left; }
  .sm\:text-right { text-align: right; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .sm\:pt-12 { padding-top: 3rem; }
  .sm\:pb-12 { padding-bottom: 3rem; }
  .sm\:gap-5 { gap: 1.25rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:p-5 { padding: 1.25rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-7 { padding: 1.75rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
  .sm\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .sm\:mt-6 { margin-top: 1.5rem; }
  .sm\:mb-6 { margin-bottom: 1.5rem; }
  .sm\:mt-8 { margin-top: 2rem; }
  .sm\:mt-12 { margin-top: 3rem; }
  .sm\:mb-12 { margin-bottom: 3rem; }
  .sm\:col-span-1 { grid-column: span 1 / span 1; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:grid { display: grid !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:mt-8 { margin-top: 2rem; }
  .md\:w-fit { width: fit-content; }
  .md\:gap-x-10 { column-gap: 2.5rem; }
  .md\:hidden { display: none !important; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-x-20 { column-gap: 5rem; }
  .lg\:mt-10 { margin-top: 2.5rem; }
  .lg\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.text-navy { color: var(--navy); }
.text-navy-80 { color: rgb(10 22 40 / 0.8); }
.text-white { color: #fff; }
.text-white-70 { color: rgb(255 255 255 / 0.7); }
.text-white-60 { color: rgb(255 255 255 / 0.6); }
.text-white-55 { color: rgb(255 255 255 / 0.55); }
.text-white-50 { color: rgb(255 255 255 / 0.5); }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-accent-dark { color: var(--accent-dark); }
.text-green-700 { color: var(--green-700); }
.text-green-800 { color: var(--green-800); }
.text-red-700 { color: var(--red-700); }

/* Spacing */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.ml-2 { margin-left: 0.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-14 { padding-top: 3.5rem; }
.pb-10 { padding-bottom: 2.5rem; }

/* Backgrounds */
.bg-background { background: var(--background); }
.bg-white { background: #fff; }
.bg-white-90 { background: rgb(255 255 255 / 0.9); }
.bg-white-95 { background: rgb(255 255 255 / 0.95); }
.bg-navy { background: var(--navy); }
.bg-muted { background: var(--muted); }
.bg-muted-40 { background: rgb(238 241 246 / 0.4); }
.bg-green-50 { background: var(--green-50); }
.bg-green-500 { background: var(--green-500); }
.bg-red-50 { background: var(--red-50); }
.bg-gradient-accent {
  background: linear-gradient(to right, var(--accent), var(--accent-light));
}

/* Borders & Radius */
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-border-60 { border-color: rgb(216 222 232 / 0.6); }
.border-white-10 { border-color: rgb(255 255 255 / 0.1); }
.border-white-15 { border-color: rgb(255 255 255 / 0.15); }
.border-accent-dark { border-color: var(--accent-dark); }
.border-green-200 { border-color: var(--green-200); }
.border-green-400-30 { border-color: rgb(74 222 128 / 0.3); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows & Effects */
.shadow-sm { box-shadow: 0 1px 2px rgb(10 22 40 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(10 22 40 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(10 22 40 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(10 22 40 / 0.25); }
.shadow-navy-5 { box-shadow: 0 1px 2px rgb(10 22 40 / 0.05); }
.shadow-navy-10 { box-shadow: 0 20px 25px -5px rgb(10 22 40 / 0.1); }
.shadow-navy-25 { box-shadow: 0 4px 6px rgb(10 22 40 / 0.25); }
.shadow-navy-30 { box-shadow: 0 10px 15px rgb(10 22 40 / 0.3); }
.shadow-green-500-30 { box-shadow: 0 10px 15px rgb(34 197 94 / 0.3); }
.backdrop-blur { backdrop-filter: blur(12px); }
.ring-1 { box-shadow: 0 0 0 1px rgb(255 255 255 / 0.1); }
.ring-2 { box-shadow: 0 0 0 2px var(--accent-dark); }
.ring-offset-2 { outline-offset: 2px; }

/* Components */
.premium-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgb(10 22 40 / 0.04), 0 8px 24px rgb(10 22 40 / 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.premium-card:hover {
  transform: translateY(-2px);
  border-color: rgb(10 22 40 / 0.25);
  box-shadow: 0 4px 8px rgb(10 22 40 / 0.06), 0 16px 40px rgb(10 22 40 / 0.1);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 50%, var(--navy-muted) 100%);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.btn-gold:hover { filter: brightness(1.08); }
.btn-gold:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-gold.w-full { width: 100%; }

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.375rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-navy:hover { background: var(--navy-light); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.375rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
  background: var(--muted);
  border-color: var(--navy);
}

.form-input {
  width: 100%;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgb(10 22 40 / 0.12);
}

.form-input-readonly {
  background: rgb(238 241 246 / 0.4);
  color: var(--navy);
}

.form-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group { margin-bottom: 1rem; }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.form-checkbox-label input { margin-top: 0.25rem; }

.form-error {
  border-radius: 0.5rem;
  background: var(--red-50);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--red-700);
}

.form-field-error {
  margin: 0.375rem 0 0;
  font-size: 0.8125rem;
  color: var(--red-700);
}

.form-input.is-invalid {
  border-color: var(--red-700);
  box-shadow: 0 0 0 1px var(--red-700);
}

.form-success {
  border-radius: 1rem;
  border: 1px solid var(--green-200);
  background: var(--green-50);
  padding: 1.5rem;
  text-align: center;
}

.section-pattern {
  background-image: radial-gradient(rgb(10 22 40 / 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading { text-align: center; margin-bottom: 2.5rem; }

.section-heading h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
}

@media (min-width: 640px) {
  .section-heading { margin-bottom: 3rem; }
  .section-heading h2 { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .section-heading h2 { font-size: 2.25rem; }
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.section-divider-line {
  height: 1px;
  width: 2rem;
  background: rgb(10 22 40 / 0.25);
}

.section-divider-diamond {
  height: 0.375rem;
  width: 0.375rem;
  transform: rotate(45deg);
  background: var(--navy);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(216 222 232 / 0.6);
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 1px 2px rgb(10 22 40 / 0.05);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

@media (min-width: 640px) {
  .header-inner { height: 4rem; }
}

.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }

.logo-img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 640px) {
  .logo-img { height: 4rem; }
}

.logo-img.logo-invert {
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}

.nav-link {
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgb(10 22 40 / 0.8);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  background: var(--muted);
  color: var(--navy);
}

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 50;
  min-width: 220px;
  border-radius: 1rem;
  border: 1px solid rgb(216 222 232 / 0.8);
  background: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 20px 25px -5px rgb(10 22 40 / 0.1);
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: rgb(10 22 40 / 0.8);
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
  background: var(--muted);
  color: var(--navy);
}

.nav-dropdown-menu.products { min-width: 260px; }
.nav-dropdown-menu.info { min-width: 240px; }

.mobile-menu-btn {
  display: flex;
  border-radius: 0.5rem;
  padding: 0.375rem;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-nav {
  border-top: 1px solid rgb(216 222 232 / 0.6);
  background: #fff;
  padding: 1rem;
}

.mobile-nav-link {
  display: block;
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  color: rgb(10 22 40 / 0.8);
}

.mobile-nav-link.main {
  font-weight: 600;
  color: var(--navy);
}

.mobile-nav-label {
  padding: 0.75rem 0.75rem 0;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, rgb(255 255 255 / 0.2), transparent);
}

.footer-inner {
  padding-top: 2rem;
  padding-bottom: 0;
}

@media (min-width: 640px) {
  .footer-inner { padding-top: 2.25rem; }
}

.site-footer .logo-img {
  height: 2.75rem;
}

@media (min-width: 640px) {
  .site-footer .logo-img { height: 3.25rem; }
}

.footer-lead {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 0.7);
}

.footer-blur-1,
.footer-blur-2 {
  position: absolute;
  height: 10rem;
  width: 10rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.05);
  filter: blur(40px);
  pointer-events: none;
}

.footer-blur-1 { right: -5rem; top: -5rem; }
.footer-blur-2 { left: -5rem; bottom: -5rem; }

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 2rem;
  }
}

.footer-col-title {
  margin: 0 0 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgb(255 255 255 / 0.55);
}

.footer-links { list-style: none; margin: 0; padding: 0; }

.footer-links li { margin-bottom: 0.375rem; }

.footer-links a {
  font-size: 0.875rem;
  line-height: 1.35;
  color: rgb(255 255 255 / 0.7);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-contact {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgb(255 255 255 / 0.7);
}

.footer-contact p { margin: 0 0 0.35rem; }
.footer-contact p:last-child { margin-bottom: 0; }

.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }

.footer-copyright {
  margin-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding: 0.875rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgb(255 255 255 / 0.5);
}

.footer-copyright p { margin: 0; }

.footer-cookie-prefs {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.footer-cookie-prefs:hover,
.footer-cookie-prefs:focus-visible {
  color: #fff;
}

/* Floating contact */
.floating-contact {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .floating-contact { bottom: 1.75rem; right: 1.75rem; }
}

.floating-btn {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: #fff;
  transition: transform 0.2s ease;
}

.floating-btn:hover { transform: scale(1.05); }

.floating-btn.whatsapp {
  background: var(--green-500);
  box-shadow: 0 10px 15px rgb(34 197 94 / 0.3);
}

.floating-btn.whatsapp:hover { background: var(--green-600); }

.floating-btn.phone {
  background: var(--navy);
  box-shadow: 0 10px 15px rgb(10 22 40 / 0.3);
}

.floating-btn.phone:hover { background: var(--navy-light); }

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-top: 1px solid rgb(216 222 232 / 0.6);
  background: rgb(255 255 255 / 0.95);
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgb(10 22 40 / 0.25);
  backdrop-filter: blur(12px);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-consent-actions .btn-navy,
.cookie-consent-actions .btn-outline {
  flex: 1 1 8rem;
  min-height: 2.5rem;
}

.cookie-consent:focus {
  outline: none;
}

.cookie-consent:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .cookie-consent {
    bottom: 1.25rem;
    left: 1.25rem;
    right: auto;
    max-width: 28rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
  }
}

/* Home contact banner */
.contact-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  /* Equal top/bottom air around title ↔ phone pills */
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .contact-banner { padding: 3rem 0; }
}

@media (min-width: 1024px) {
  .contact-banner { padding: 3.5rem 0; }
}

.contact-banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.contact-banner-blur {
  position: absolute;
  right: -5rem;
  top: 0;
  height: 18rem;
  width: 18rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.1);
  filter: blur(48px);
  pointer-events: none;
}

.contact-banner h1 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}

.contact-banner-label {
  margin: 0;
  font-size: 1.125rem; /* original +1 step */
  font-weight: 600;
  color: #fff;
}

@media (min-width: 640px) {
  .contact-banner-label { font-size: 1.25rem; }
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1.25rem; /* original +1 step */
  font-weight: 700;
  color: #fff;
  transition: transform 0.15s ease, background 0.2s, border-color 0.2s;
}

@media (min-width: 640px) {
  .contact-pill {
    margin-top: 0.75rem;
    padding: 0.875rem 1.125rem;
    font-size: 1.5rem;
  }
}

.contact-pill:hover { transform: scale(0.99); }

.contact-pill.phone {
  border: 1px solid rgb(255 255 255 / 0.15);
  background: rgb(255 255 255 / 0.1);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.1);
}

.contact-pill.phone:hover {
  border-color: rgb(255 255 255 / 0.4);
  background: rgb(255 255 255 / 0.15);
}

.contact-pill.whatsapp {
  border: 1px solid rgb(74 222 128 / 0.3);
  background: rgb(34 197 94 / 0.2);
  box-shadow: 0 0 0 1px rgb(74 222 128 / 0.2);
}

.contact-pill.whatsapp:hover {
  border-color: rgb(74 222 128 / 0.5);
  background: rgb(34 197 94 / 0.3);
}

.contact-banner-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .contact-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    column-gap: 2.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .contact-banner-grid { column-gap: 5rem; margin-top: 2.5rem; }
}

/* Sit inside bottom padding so space below numbers ≈ space above title */
.contact-scroll-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.55rem;
  margin: 0;
  padding: 0 0.75rem;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.375;
  color: rgb(255 255 255 / 0.6);
}

@media (min-width: 1024px) {
  .contact-scroll-hint { display: none; }
}

/* Product cards */
.products-section {
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .products-section { padding: 3rem 0; }
}

.products-grid-wrap { max-width: 64rem; margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  width: 100%;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  background: none;
  font: inherit;
  color: inherit;
}

@media (min-width: 640px) {
  .product-card { min-height: 240px; padding: 1.25rem; }
}

.product-card-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375;
  color: var(--navy);
  transition: color 0.2s;
}

@media (min-width: 640px) {
  .product-card-name { font-size: 1.125rem; }
}

.product-card:hover .product-card-name { color: var(--accent-dark); }

.product-card-icon-wrap {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 0.5rem;
  overflow: hidden;
  min-height: 0;
}

.product-card-icon {
  max-height: 7rem;
  width: 100%;
  color: rgb(10 22 40 / 0.35);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .product-card-icon { max-height: 8rem; }
}

.product-card:hover .product-card-icon { color: rgb(10 22 40 / 0.5); }

/* DASK composite icon — match SVG card icon box, never overflow */
.product-icon-dask.product-card-icon {
  position: relative;
  width: min(100%, 7rem);
  height: 7rem;
  max-width: 100%;
  max-height: 7rem;
  margin-inline: auto;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 1;
}

@media (min-width: 640px) {
  .product-icon-dask.product-card-icon {
    width: min(100%, 8rem);
    height: 8rem;
    max-height: 8rem;
  }
}

.product-icon-dask.quote-panel-icon {
  position: relative;
  overflow: hidden;
}

.product-icon-dask > svg:first-child {
  display: block;
  width: 100%;
  height: 100%;
}

.product-icon-dask .product-icon-overlay {
  position: absolute;
  inset-inline: 8%;
  bottom: 6%;
  height: 38%;
  width: 84%;
  opacity: 0.9;
}

.product-card-arrow {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 9999px;
  border: 2px solid var(--accent-dark);
  color: var(--accent-dark);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.product-card:hover .product-card-arrow {
  transform: scale(1.05);
  background: var(--accent-dark);
  color: #fff;
}

.product-card-last {
  grid-column: span 2;
  width: calc(50% - 0.5rem);
  justify-self: center;
}

@media (min-width: 640px) {
  .product-card-last {
    grid-column: span 1;
    width: auto;
    justify-self: stretch;
  }
}

/* Expanded quote panel */
.quote-panel {
  overflow: hidden;
  scroll-margin-top: 6rem;
}

.quote-panel-header {
  border-bottom: 1px solid rgb(216 222 232 / 0.6);
  background: linear-gradient(to bottom right, rgb(10 22 40 / 0.03), rgb(10 22 40 / 0.06));
  padding: 1.25rem 1.25rem;
}

@media (min-width: 640px) {
  .quote-panel-header { padding: 1.5rem 1.75rem; }
}

.quote-panel-body { padding: 1.25rem; }

@media (min-width: 640px) {
  .quote-panel-body { padding: 1.5rem 1.75rem; }
}

.quote-panel-close {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: #6b7280;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.quote-panel-close:hover {
  border-color: rgb(10 22 40 / 0.2);
  background: var(--muted);
  color: var(--navy);
}

.quote-panel-icon {
  height: 4rem;
  width: 4rem;
  flex-shrink: 0;
  color: rgb(10 22 40 / 0.4);
}

@media (min-width: 640px) {
  .quote-panel-icon { height: 5rem; width: 5rem; }
}

/* Partner carousel */
.partners-section {
  border-top: 1px solid rgb(216 222 232 / 0.6);
  border-bottom: 1px solid rgb(216 222 232 / 0.6);
  background: #fff;
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .partners-section { padding: 3rem 0; }
}

.partners-carousel-wrap {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .partners-carousel-wrap { margin-top: 3rem; }
}

.partners-carousel-fade-left,
.partners-carousel-fade-right {
  position: absolute;
  inset-block: 0;
  z-index: 10;
  width: 4rem;
  pointer-events: none;
}

.partners-carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.partners-carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

@keyframes scroll-partners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-scroll-partners {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding: 0 1rem;
  animation: scroll-partners 35s linear infinite;
}

.animate-scroll-partners:hover { animation-play-state: paused; }

.partner-logo-card {
  display: flex;
  height: 5rem;
  width: 11rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid rgb(216 222 232 / 0.6);
  background: #fff;
  padding: 0 1.25rem;
  box-shadow: 0 1px 2px rgb(10 22 40 / 0.05);
}

.partner-logo-card img {
  max-height: 3rem;
  max-width: 100%;
  object-fit: contain;
}

/* Trust section */
.trust-icon-wrap {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgb(10 22 40 / 0.05), rgb(10 22 40 / 0.1));
  color: rgb(10 22 40 / 0.45);
}

/* Content links */
.content-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  color: inherit;
}

@media (min-width: 640px) {
  .content-link-card { padding: 1.5rem; }
}

.content-link-card .product-card-arrow {
  height: 2.5rem;
  width: 2.5rem;
}

/* Product detail */
.product-detail-grid {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .product-detail-grid { padding: 3.5rem 0; }
}

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}

.product-detail-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
}

@media (min-width: 640px) {
  .product-detail-title { font-size: 2.25rem; }
}

.product-detail-bar {
  margin-top: 1rem;
  height: 0.25rem;
  width: 4rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
}

.product-detail-desc {
  margin-top: 1.25rem;
}

.product-detail-desc p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--gray-600);
}

.product-faq-link {
  margin: 1.25rem 0 0;
}

.product-faq-link a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.product-faq-link a:hover {
  color: var(--accent-dark);
}

.quote-form-header {
  border-bottom: 1px solid rgb(216 222 232 / 0.6);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.quote-form-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.quote-form-header p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.quote-form-card { padding: 1.5rem; }

@media (min-width: 640px) {
  .quote-form-card { padding: 1.75rem; }
}

/* Product icon relative wrapper for DASK (sizing: see .product-icon-dask.product-card-icon) */

/* Contact page */
.page-title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
}

.contact-page-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-info-card {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--border);
  background: var(--muted, #eef1f6);
  border-radius: 1rem;
  padding: 1.5rem;
}

.contact-info-label {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-form .form-group { margin-bottom: 0; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Rich content (markdown parity) */
.rich-content h2 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.rich-content h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.rich-content p {
  margin: 0.75rem 0;
  line-height: 1.7;
  color: #374151;
}

.rich-content ul,
.rich-content ol {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
  color: #374151;
}

.rich-content li { margin: 0.35rem 0; line-height: 1.6; }

.rich-content .table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.rich-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.rich-content th,
.rich-content td {
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.rich-content th {
  background: var(--muted, #eef1f6);
  color: var(--navy);
  font-weight: 700;
}

.google-reviews-section {
  background: var(--muted, #eef1f6);
  padding: 3.5rem 0;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark, #b8860b);
}

.section-subtitle {
  margin: 0.5rem auto 0;
  max-width: 36rem;
  color: #4b5563;
  font-size: 0.95rem;
}

.border-border { border-color: var(--border); }
.border-t { border-top-width: 1px; border-top-style: solid; }
.pt-4 { padding-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.text-accent { color: var(--accent, #d4a017); }
.gap-0\.5 { gap: 0.125rem; }

/* ── Content page utilities ── */
.block { display: block; }
.inline-block { display: inline-block; }
.mt-8 { margin-top: 2rem; }
.gap-8 { gap: 2rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.link-list { list-style: none; margin: 0; padding: 0; }
.hover\:text-accent:hover { color: var(--accent); }
.hover\:text-accent-dark:hover { color: var(--accent-dark); }

@media (min-width: 640px) {
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:space-y-12 > * + * { margin-top: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Headings that follow a date or eyebrow line */
.page-title.mt-2 { margin-top: 0.5rem; }

/* ── Article / legal page shell ── */
.prose-page {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.page-section { padding: 2.5rem 0; }

@media (min-width: 640px) {
  .page-section { padding: 3.5rem 0; }
}

/* ── Accordion (FAQ) ── */
.accordion > * + * { margin-top: 0.75rem; }

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion-item.is-open {
  border-color: rgb(10 22 40 / 0.2);
  box-shadow: 0 4px 6px -1px rgb(10 22 40 / 0.05);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.accordion-plus {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--muted);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.accordion-item.is-open .accordion-plus {
  transform: rotate(45deg);
  background: var(--navy);
  color: #fff;
}

.accordion-panel {
  border-top: 1px solid rgb(216 222 232 / 0.6);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--gray-600);
}

@media (min-width: 640px) {
  .accordion-trigger { padding-left: 1.5rem; padding-right: 1.5rem; }
  .accordion-panel { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ── Contact banner heading scale ── */
@media (min-width: 640px) {
  .contact-banner h1 { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .contact-banner h1 { font-size: 2.25rem; }
}

/* ── Partner grid ── */
.partner-grid .partner-card {
  display: flex;
  height: 7rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.partner-grid .partner-card img {
  width: auto;
  max-width: 100%;
  max-height: 2.5rem;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 640px) {
  .partner-grid .partner-card img { max-height: 2.75rem; }
}

/* ── 404 ── */
.not-found { padding: 4rem 0; }

.not-found-inner {
  display: flex;
  min-height: 50vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found-code {
  margin: 0;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
  color: var(--navy);
}

.not-found-text {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  color: var(--gray-600);
}

.not-found-action { margin-top: 2rem; }
