@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* ---------- Core Design System ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #0ea9c7;
  --brand-dark: #0b8fa9;
  --brand-light: #ecfdf5;
  --brand-faint: #f0fdfa;
  --slate: #1e293b;
  --slate-dark: #0f172a;
  --slate-light: #64748b;
  --slate-faint: #cbd5e1;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-card: #ffffff;
  --border: rgba(30, 41, 59, 0.08);
  --border-strong: rgba(30, 41, 59, 0.15);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(14, 169, 199, 0.08), 0 4px 6px -4px rgba(14, 169, 199, 0.04);
  --shadow-premium: 0 20px 40px -15px rgba(14, 169, 199, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Sans', Georgia, serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 96px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

/* ---------- Layout helpers ---------- */
.jl-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.jl-grid { display: grid; gap: 32px; }

.jl-section { padding: 80px 0; }
.jl-section-alt { padding: 80px 0; background: var(--bg-soft); }

.jl-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.jl-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--brand);
}

.jl-section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.15;
  color: var(--slate-dark);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.jl-section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}

.jl-section-sub {
  font-size: 18px;
  color: var(--slate-light);
  line-height: 1.6;
  max-width: 600px;
  margin-top: 16px;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
button.jl-btn,
input[type="submit"].jl-btn,
.jl-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 14px 28px !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

button.jl-btn-primary,
input[type="submit"].jl-btn-primary,
.jl-btn-primary {
  background-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-md) !important;
}
button.jl-btn-primary:hover,
input[type="submit"].jl-btn-primary:hover,
.jl-btn-primary:hover {
  background-color: var(--brand-dark) !important;
  background: var(--brand-dark) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}

button.jl-btn-secondary,
.jl-btn-secondary {
  background-color: var(--slate-dark) !important;
  background: var(--slate-dark) !important;
  color: #ffffff !important;
}
button.jl-btn-secondary:hover,
.jl-btn-secondary:hover {
  background-color: #000000 !important;
  background: #000000 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

button.jl-btn-outline,
.jl-btn-outline {
  background-color: transparent !important;
  background: transparent !important;
  color: var(--slate-dark) !important;
  border: 1px solid var(--border-strong) !important;
}
button.jl-btn-outline:hover,
.jl-btn-outline:hover {
  background-color: var(--slate-dark) !important;
  background: var(--slate-dark) !important;
  color: #ffffff !important;
  border-color: var(--slate-dark) !important;
}

button.jl-btn-whatsapp,
.jl-btn-whatsapp {
  background-color: #25d366 !important;
  background: #25d366 !important;
  color: #ffffff !important;
}
button.jl-btn-whatsapp:hover,
.jl-btn-whatsapp:hover {
  background-color: #20ba5a !important;
  background: #20ba5a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.4) !important;
}

.jl-btn-arrow::after {
  content: '→';
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.jl-btn:hover.jl-btn-arrow::after {
  transform: translateX(4px);
}

/* ---------- Global Layout (Topbar & Header) ---------- */
.jl-topbar {
  background: var(--slate-dark);
  color: #e2e8f0;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.jl-topbar .jl-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.jl-topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.jl-topbar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}
.jl-topbar-right a:hover {
  color: var(--brand);
}
.jl-topbar-phone {
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.jl-site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14,169,199,0.12);
  box-shadow: 0 2px 20px rgba(14,169,199,0.08);
  transition: box-shadow 0.3s;
}

.jl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 24px;
}

.jl-nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.jl-nav-logo-svg {
  height: 68px;
  width: auto;
  display: block;
  overflow: visible;
}
.jl-nav-logo:hover .jl-nav-logo-svg {
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.jl-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.jl-nav-links > li {
  position: relative;
}
.jl-nav-links > li > a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-dark);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: block;
}
.jl-nav-links > li > a:hover {
  background: var(--bg-soft);
  color: var(--brand);
}
.jl-nav-links > li > a.jl-active {
  color: var(--brand);
  background: var(--brand-faint);
}

/* Dropdown */
.jl-has-dropdown {
  padding-right: 12px;
}
.jl-drop-trigger::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.jl-has-dropdown:hover .jl-drop-trigger::after {
  transform: translateY(-30%) rotate(225deg);
}

.jl-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  width: 320px;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
}
.jl-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 14px;
}
.jl-has-dropdown:hover .jl-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.jl-dropdown a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-dark);
}
.jl-dropdown a small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--slate-light);
  margin-top: 3px;
}
.jl-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--brand);
}

.jl-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.jl-nav-phone-btn {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.jl-nav-phone-btn:hover {
  color: var(--brand);
}

/* Mobile nav controls */
.jl-nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.jl-nav-burger span {
  width: 20px;
  height: 2px;
  background: var(--slate-dark);
  border-radius: 2px;
}

/* ---------- Mobile navigation Drawer ---------- */
.jl-mobile-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
}
.jl-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.jl-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.jl-mobile-close {
  font-size: 32px;
  background: transparent;
  border: none;
  color: var(--slate-dark);
  cursor: pointer;
}
.jl-mobile-links {
  list-style: none;
  margin-top: 32px;
}
.jl-mobile-links > li {
  margin-bottom: 16px;
}
.jl-mobile-links > li > a,
.jl-mobile-submenu-trigger > span {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-dark);
  display: block;
}
.jl-mobile-submenu-trigger > span {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.jl-mobile-submenu-trigger > span::after {
  content: '+'; font-size: 18px; color: var(--slate-light);
}
.jl-mobile-submenu-trigger.jl-active > span::after {
  content: '-';
}
.jl-mobile-submenu {
  list-style: none;
  padding-left: 16px;
  display: none;
  margin-top: 10px;
}
.jl-mobile-submenu-trigger.jl-active .jl-mobile-submenu {
  display: block;
}
.jl-mobile-submenu a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  color: var(--slate-light);
}
.jl-mobile-actions {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.jl-mobile-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.jl-menu-open {
  overflow: hidden;
}
body.jl-menu-open .jl-mobile-menu {
  right: 0;
}
body.jl-menu-open .jl-mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Global Footer ---------- */
.jl-site-footer {
  background: var(--slate-dark);
  color: #cbd5e1;
  padding: 80px 0 0 0;
}
.jl-footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.jl-footer-col h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
}
.jl-footer-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 16px;
  color: #94a3b8;
  max-width: 300px;
}
.jl-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.jl-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(14, 169, 199, 0.15);
  color: var(--brand);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(14, 169, 199, 0.25);
}
.jl-footer-col ul {
  list-style: none;
}
.jl-footer-col ul li {
  margin-bottom: 12px;
}
.jl-footer-col ul li a:hover {
  color: var(--brand);
}
.jl-footer-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jl-schedule-row {
  display: flex;
  flex-direction: column;
}
.jl-schedule-row .day {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}
.jl-schedule-row .time {
  font-size: 15px;
  color: #e2e8f0;
  font-weight: 600;
}
.jl-footer-contact-item {
  font-size: 15px;
  margin-bottom: 14px;
}
.jl-footer-contact-item a:hover {
  color: var(--brand);
}

.jl-footer-bottom {
  background: #090d16;
  padding: 24px 0;
  font-size: 13px;
  color: #64748b;
}
.jl-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.jl-footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}
.jl-footer-bottom .legal-links a:hover {
  color: var(--brand);
}

/* ---------- JL_HERO WIDGET ---------- */
.jl-hero {
  position: relative;
  padding: 100px 0 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 96px);
}
.jl-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.45) 100%);
  z-index: 1;
}
.jl-hero-grid {
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.jl-hero .jl-eyebrow {
  color: var(--brand);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.jl-hero .jl-eyebrow::before {
  background: var(--brand);
}
.jl-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.jl-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}
.jl-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 24px 0 36px 0;
  max-width: 580px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.jl-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.jl-btn-hero-outline {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.jl-btn-hero-outline:hover {
  background: #ffffff;
  color: var(--slate-dark) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.jl-hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}
.jl-hero-rating {
  display: flex;
  flex-direction: column;
}
.jl-stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.jl-rating-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.jl-hero-trust-divider {
  width: 1px; height: 32px; background: rgba(255, 255, 255, 0.2);
}
.jl-trust-badge {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.jl-hero .jl-check-circle {
  width: 20px; height: 20px;
  background: var(--brand);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px; font-weight: bold;
}

/* Hero visual & overlapping micro-cards */
.jl-hero-visual-container {
  position: relative;
  width: 100%;
}
.jl-hero-visual {
  width: 100%;
  aspect-ratio: unset;
  min-height: 460px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: transparent;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.85);
}
.jl-hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 3;
}
.jl-hero-card-1 {
  bottom: 24px; left: -24px;
  max-width: 260px;
}
.jl-hero-card-2 {
  top: 40px; right: -20px;
  max-width: 240px;
}
.jl-hero-card-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.jl-hero-card-text .title {
  font-size: 14px; font-weight: 700; color: var(--slate-dark);
}
.jl-hero-card-text .subtitle {
  font-size: 12px; color: var(--slate-light); margin-top: 2px;
}

/* ---------- JL_TRUST WIDGET ---------- */
.jl-trust {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.jl-trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.jl-trust-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.jl-trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.jl-trust-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-faint);
  letter-spacing: 1px;
}

/* ---------- JL_SERVICES WIDGET ---------- */
.jl-services-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 48px;
}
.jl-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.jl-service-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-premium);
  transform: translateY(-6px);
}
.jl-service-icon {
  width: 60px; height: 60px;
  background: var(--brand-faint);
  color: var(--brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}
.jl-service-card:hover .jl-service-icon {
  background: var(--brand);
  color: #ffffff;
  transform: scale(1.05);
}
.jl-service-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 12px;
}
.jl-service-card p {
  font-size: 15px;
  color: var(--slate-light);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.jl-service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.jl-service-link::after {
  content: '→';
  transition: transform 0.2s;
}
.jl-service-card:hover .jl-service-link::after {
  transform: translateX(4px);
}

/* ---------- JL_ABOUT_TEASER WIDGET ---------- */
.jl-about-teaser-grid {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}
.jl-about-teaser-visual {
  position: relative;
}
.jl-about-teaser-img {
  width: 100%;
  aspect-ratio: unset;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: transparent;
  box-shadow: var(--shadow-lg);
}
.jl-about-badge {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--brand);
  color: #ffffff;
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.jl-about-badge .num {
  font-size: 24px; font-weight: 700; line-height: 1;
}
.jl-about-badge .txt {
  font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px;
}
.jl-about-teaser h2 {
  margin-bottom: 20px;
}
.jl-about-p {
  font-size: 16px;
  color: var(--slate-light);
  margin-bottom: 20px;
}

/* ---------- JL_TECHNOLOGY WIDGET ---------- */
.jl-tech-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.jl-tech-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all 0.25s ease;
}
.jl-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.jl-tech-icon {
  width: 50px; height: 50px;
  background: var(--brand-faint);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px auto;
}
.jl-tech-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 8px;
}
.jl-tech-card p {
  font-size: 14px;
  color: var(--slate-light);
}

/* ---------- JL_FEATURES WIDGET ---------- */
.jl-features-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.jl-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.jl-feature-item {
  display: flex;
  gap: 16px;
}
.jl-feature-item-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px; font-weight: bold;
}
.jl-feature-item-text h4 {
  font-size: 16px; font-weight: 600; color: var(--slate-dark);
}
.jl-feature-item-text p {
  font-size: 14px; color: var(--slate-light); margin-top: 4px;
}
.jl-features-visual {
  width: 100%;
  aspect-ratio: unset;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: transparent;
}

/* ---------- JL_FAQ WIDGET ---------- */
.jl-faq-grid {
  grid-template-columns: 1fr 1.5fr;
}
.jl-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.jl-faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}
.jl-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent !important;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-dark) !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  outline: none;
}
.jl-faq-question:hover {
  background-color: rgba(14, 169, 199, 0.04) !important;
  color: var(--brand) !important;
}
.jl-faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--slate-light);
  transition: transform 0.2s ease;
}
.jl-faq-item.jl-active {
  border-color: var(--brand) !important;
  box-shadow: var(--shadow-sm);
}
.jl-faq-item.jl-active .jl-faq-question {
  background-color: rgba(14, 169, 199, 0.08) !important;
  color: var(--brand-dark) !important;
}
.jl-faq-item.jl-active .jl-faq-question::after {
  content: '-';
  color: var(--brand-dark);
}
.jl-faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
  display: none;
}
.jl-faq-item.jl-active .jl-faq-answer {
  display: block;
}

/* ---------- JL_CONTACT WIDGET ---------- */
.jl-contact-grid {
  grid-template-columns: 1fr 1.2fr;
}
.jl-contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.jl-contact-info-block h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--slate-dark);
  margin-bottom: 12px;
}
.jl-contact-info-block p {
  font-size: 15px;
  color: var(--slate-light);
}
.jl-contact-info-block a:hover {
  color: var(--brand);
}
.jl-contact-form-container {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.jl-contact-form-container h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--slate-dark);
  margin-bottom: 24px;
}
.jl-form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jl-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-dark);
}
.jl-form-control {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-soft);
  color: var(--slate-dark);
  width: 100%;
  transition: all 0.2s ease;
}
.jl-form-control:focus {
  outline: none;
  border-color: var(--brand);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(14, 169, 199, 0.15);
}

.jl-map-container {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.jl-map-iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}

/* ---------- JL_SERVICE_DETAIL WIDGET (Inner Hero) ---------- */
.jl-service-detail-hero {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.jl-service-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
}
.jl-service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.jl-service-detail-hero-inner {
  color: #ffffff;
}
.jl-service-detail-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.8vw, 56px);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.jl-service-detail-hero p.subtitle {
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 24px;
}
.jl-service-detail-hero .desc {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.jl-service-detail-form {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
@media (max-width: 1024px) {
  .jl-service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- JL_EDITORIAL WIDGET ---------- */
.jl-editorial-content {
  max-width: 800px;
  margin: 0 auto;
}
.jl-editorial-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--slate-light);
  line-height: 1.7;
}
.jl-editorial-content h2, .jl-editorial-content h3 {
  font-family: var(--font-serif);
  color: var(--slate-dark);
  margin: 40px 0 16px 0;
}
.jl-editorial-content h2 { font-size: 28px; }
.jl-editorial-content h3 { font-size: 22px; }

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 1024px) {
  .jl-hero-grid,
  .jl-about-teaser-grid,
  .jl-features-grid,
  .jl-faq-grid,
  .jl-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .jl-hero-visual-container {
    max-width: 500px;
    margin: 0 auto;
  }
  .jl-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .jl-topbar {
    display: none;
  }
  .jl-nav-links,
  .jl-nav-actions {
    display: none;
  }
  .jl-nav-burger {
    display: flex;
  }
  .jl-section {
    padding: 60px 0;
  }
  .jl-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .jl-hero-ctas {
    flex-direction: column;
  }
  .jl-hero-ctas .jl-btn {
    width: 100%;
  }
  .jl-hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .jl-hero-trust-divider {
    display: none;
  }
}

/* ---------- JL_CASES WIDGET ---------- */
.jl-cases-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.jl-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.jl-case-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: var(--shadow-premium);
}
.jl-case-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-strong);
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.jl-case-photo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.jl-case-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.jl-case-card:hover .jl-case-photo {
  transform: scale(1.03);
}
.jl-case-badge {
  position: absolute;
  bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.jl-case-badge.before {
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.jl-case-badge.after {
  right: 12px;
  background: var(--brand);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.jl-case-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.jl-case-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 8px;
}
.jl-case-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.jl-case-desc {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .jl-case-comparison {
    grid-template-columns: 1fr;
    aspect-ratio: unset;
    min-height: 320px;
  }
}

/* ---------- Override Theme Link Colors (Remove Pink/Red) ---------- */
.jl-topbar a {
  color: #e2e8f0 !important;
}
.jl-topbar a:hover {
  color: var(--brand) !important;
}

.jl-site-nav a {
  color: var(--slate-dark);
}
.jl-site-nav a:hover,
.jl-site-nav .jl-active {
  color: var(--brand) !important;
}

.jl-site-footer h3 {
  color: #ffffff !important;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.jl-site-footer a {
  color: #cbd5e1 !important;
  transition: color 0.2s ease;
}

.jl-site-footer a:hover {
  color: var(--brand) !important;
}

.jl-footer-contact-item,
.jl-footer-contact-item strong {
  color: #cbd5e1 !important;
}

.jl-footer-contact-item a {
  color: #ffffff !important;
  font-weight: 500;
}

.jl-footer-contact-item a:hover {
  color: var(--brand) !important;
}

.jl-footer-bottom a {
  color: #94a3b8 !important;
}

.jl-footer-bottom a:hover {
  color: #ffffff !important;
}

/* ---------- Form Success Card & Checkmark Animation ---------- */
.jl-form-success-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 48px 24px !important;
  background: #ffffff !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-premium) !important;
  animation: cardFadeIn 0.4s ease-out forwards;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.jl-success-checkmark {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px auto;
  display: block;
}

.jl-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--brand);
  fill: none;
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.jl-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: var(--brand);
  fill: none;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes strokeCircle {
  100% { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
  100% { stroke-dashoffset: 0; }
}

/* Spinner dentro de los botones */
.jl-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Cookie Consent Banner ---------- */
.jl-cookie-banner {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  right: 24px !important;
  max-width: 600px !important;
  background: rgba(15, 23, 42, 0.96) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--radius-lg) !important;
  padding: 24px !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3) !important;
  z-index: 999999 !important;
  margin: 0 auto !important;
}

@media (min-width: 768px) {
  .jl-cookie-banner {
    left: auto !important;
    right: 24px !important;
    width: 460px !important;
  }
}

.jl-cookie-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.jl-cookie-content p {
  color: #cbd5e1 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-family: var(--font-sans) !important;
  margin: 0 !important;
  text-align: left !important;
}

.jl-cookie-content a {
  color: var(--brand) !important;
  text-decoration: underline !important;
}

.jl-cookie-content a:hover {
  color: #ffffff !important;
}

.jl-cookie-actions {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 12px !important;
}

.jl-cookie-btn {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 18px !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.jl-cookie-btn-primary {
  background-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #ffffff !important;
}

.jl-cookie-btn-primary:hover {
  background-color: var(--brand-dark) !important;
  background: var(--brand-dark) !important;
}

.jl-cookie-btn-secondary {
  background: transparent !important;
  background-color: transparent !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.jl-cookie-btn-secondary:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}



