/* ================================================================
   LCientific — Stylesheet del rediseño
   ================================================================ */

:root {
  --navy:        #0E2A5C;
  --navy-600:    #1B3A7C;
  --navy-500:    #294A91;
  --teal:        #2EA6A0;
  --teal-500:    #3DC2B5;
  --mint:        #3DD28B;
  --whatsapp:    #25D366;
  --ink:         #0A1628;
  --slate-900:   #111827;
  --slate-700:   #334155;
  --slate-500:   #64748B;
  --slate-300:   #CBD5E1;
  --slate-100:   #F1F5F9;
  --mist:        #F4F6F9;
  --white:       #FFFFFF;
  --border:      #E2E8F0;

  --shadow-sm:   0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow:      0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg:   0 20px 50px rgba(15, 23, 42, 0.18);
  --shadow-xl:   0 30px 80px rgba(27, 58, 124, 0.25);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   30px;

  --font-body:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-heading:'Poppins', 'Inter', system-ui, sans-serif;

  --container:   1180px;
  --ease:        cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal); }

button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* Tipografía */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--slate-700); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section-mist { background: var(--mist); }
.section-ink { background: var(--ink); color: var(--white); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink p { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lead { font-size: 1.15rem; color: var(--slate-700); max-width: 720px; }

/* ================================================================
   NAVBAR
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  background: linear-gradient(120deg, var(--navy-600) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}
.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  box-shadow: 0 0 18px rgba(46, 166, 160, 0.5);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-600); }
.nav-links .highlight {
  background: linear-gradient(120deg, var(--navy-600), var(--teal));
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 211, 102, 0.5); color: var(--white) !important; }
.nav-burger { display: none; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(120deg, var(--navy-600), var(--teal));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(27, 58, 124, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(27, 58, 124, 0.5); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--navy-600);
}
.btn-white:hover { background: var(--slate-100); color: var(--navy-600); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 14px 28px rgba(37, 211, 102, 0.55); }
.btn-lg { padding: 18px 32px; font-size: 1.02rem; }

/* ================================================================
   HERO (tech look)
   ================================================================ */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(100px, 14vw, 160px);
  background: radial-gradient(ellipse at top left, #10306A 0%, #091634 48%, #050D22 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* grid pattern */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(46, 166, 160, 0.35), transparent 70%);
  filter: blur(50px);
  z-index: -1;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); font-size: clamp(2.3rem, 4.4vw, 3.8rem); }
.hero h1 .accent {
  background: linear-gradient(120deg, #3DC2B5 0%, #6EE7B7 60%, #A7F3D0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin: 22px 0 32px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust span {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-trust .badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}

.hero-visual {
  position: relative;
  height: 500px;
}
.hero-card {
  position: absolute;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
}
.hero-card-main {
  inset: 40px 20px 80px 40px;
  padding: 30px;
}
.hero-card-main .hc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-card-main .hc-logo {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  display: grid; place-items: center;
}
.hero-card-main h4 { color: var(--white); margin: 0; font-size: 1.05rem; }
.hero-card-main .hc-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
}
.hero-card-main .hc-row span { color: rgba(255,255,255,0.6); }
.hero-card-main .hc-row strong { color: var(--white); font-weight: 600; }
.hero-card-main .hc-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(61, 210, 139, 0.15);
  color: #6EE7B7;
  font-size: 0.78rem;
  font-weight: 600;
}
.hero-card-main .hc-status::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #3DD28B;
  box-shadow: 0 0 10px #3DD28B;
}

.hero-card-float {
  top: 40px; right: -20px;
  width: 220px;
  padding: 18px;
  animation: floaty 6s ease-in-out infinite;
}
.hero-card-float h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 12px; }
.hero-card-float .bar {
  height: 6px; background: rgba(255,255,255,0.1);
  border-radius: 999px; margin-bottom: 10px; overflow: hidden;
}
.hero-card-float .bar::after {
  content: '';
  display: block; height: 100%;
  width: var(--v, 60%);
  background: linear-gradient(90deg, var(--teal), var(--mint));
  border-radius: 999px;
}

.hero-card-mini {
  bottom: 20px; left: 0;
  width: 200px;
  animation: floaty 5s ease-in-out infinite reverse;
}
.hero-card-mini .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 800;
  line-height: 1;
}
.hero-card-mini .num .up { color: var(--mint); font-size: 1rem; margin-left: 6px; vertical-align: super; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ================================================================
   Feature strip (sub-hero)
   ================================================================ */
.ticker {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 20px 0;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ticker-inner .dot { color: var(--teal); }

/* ================================================================
   Cards grid
   ================================================================ */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 166, 160, 0.4);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27, 58, 124, 0.12), rgba(46, 166, 160, 0.18));
  display: grid; place-items: center;
  color: var(--navy-600);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.card p { color: var(--slate-700); font-size: 0.98rem; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-weight: 600; font-size: 0.9rem;
  color: var(--teal);
}
.card-link:hover { gap: 10px; }

/* Gradient card (used in Dexter hero row) */
.card-dark {
  background: linear-gradient(135deg, #0E2A5C 0%, #163B86 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.card-dark::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 166, 160, 0.4), transparent 70%);
  top: -40px; right: -40px;
  filter: blur(20px);
}
.card-dark h3, .card-dark p { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.75); }
.card-dark .card-icon { background: rgba(255,255,255,0.12); color: #6EE7B7; }

/* ================================================================
   Split / feature row
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}
.bullet-list li {
  position: relative;
  padding: 12px 0 12px 36px;
  color: var(--slate-700);
  border-bottom: 1px dashed var(--border);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  box-shadow: 0 6px 14px rgba(46, 166, 160, 0.35);
}
.bullet-list li::after {
  content: '';
  position: absolute;
  left: 7px; top: 21px;
  width: 8px; height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

/* ================================================================
   Compliance / badges
   ================================================================ */
.compliance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.compliance-badge {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), transparent);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.compliance-badge:hover { border-color: var(--teal); transform: translateY(-4px); }
.compliance-badge .cb-code {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #6EE7B7;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.compliance-badge .cb-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-top: 8px;
  display: block;
}

/* ================================================================
   Modules grid (Dexter LIS)
   ================================================================ */
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.module {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .25s var(--ease);
  cursor: default;
}
.module:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(27, 58, 124, 0.1);
}
.module .m-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(27, 58, 124, 0.1), rgba(46, 166, 160, 0.15));
  color: var(--navy-600);
  margin-bottom: 14px;
}
.module h4 { font-size: 1rem; margin-bottom: 6px; }
.module p { font-size: 0.86rem; color: var(--slate-500); }

/* ================================================================
   Contact section
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 24px; }
.contact-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(27, 58, 124, 0.1), rgba(46, 166, 160, 0.15));
  display: grid; place-items: center;
  color: var(--navy-600);
  flex-shrink: 0;
}
.contact-row .info small { color: var(--slate-500); font-size: 0.82rem; display: block; }
.contact-row .info strong { font-size: 1.05rem; color: var(--slate-900); font-weight: 600; }

.form {
  display: grid; gap: 16px;
}
.form label { font-weight: 500; font-size: 0.9rem; color: var(--slate-700); }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--slate-900);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 166, 160, 0.15);
}

/* ================================================================
   CTA banner
   ================================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-600) 0%, var(--navy) 60%, #052049 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 166, 160, 0.3), transparent 70%);
  filter: blur(40px);
}
.cta-banner-wrap {
  display: flex; gap: 30px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h5 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: var(--font-heading);
}
.footer ul { list-style: none; }
.footer li { padding: 6px 0; }
.footer a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer a:hover { color: var(--teal-500); }
.footer-brand p { color: rgba(255,255,255,0.55); max-width: 320px; font-size: 0.92rem; margin-top: 16px; }
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
}

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.5);
  z-index: 40;
  transition: transform .25s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.08); color: white; }
.fab-whatsapp::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid var(--whatsapp);
  opacity: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { opacity: .7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ================================================================
   Page header (non-home)
   ================================================================ */
.page-header {
  background: radial-gradient(ellipse at top, #10306A, #061433 70%);
  color: white;
  padding: clamp(90px, 12vw, 140px) 0 clamp(60px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.page-header h1 { color: white; }
.page-header p { color: rgba(255,255,255,0.75); margin-top: 16px; font-size: 1.1rem; max-width: 680px; }
.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.breadcrumbs a { color: rgba(255,255,255,0.8); }

/* ================================================================
   Tabs for Dexter profiles
   ================================================================ */
.profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.profile-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.profile-card .p-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-600), var(--teal));
  display: grid; place-items: center;
  color: white;
  margin-bottom: 20px;
}
.profile-card h3 { margin-bottom: 10px; }
.profile-card ul { list-style: none; padding: 0; margin-top: 20px; }
.profile-card ul li {
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--slate-700);
}
.profile-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 960px) {
  .grid-3, .grid-4, .modules, .compliance { grid-template-columns: repeat(2, 1fr); }
  .hero-wrap, .split, .contact-grid, .footer-grid, .profiles { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-grid; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .modules, .compliance { grid-template-columns: 1fr; }
  .hero-card-float, .hero-card-mini { display: none; }
  .hero-card-main { inset: 20px; }
  h1 { font-size: 2.1rem; }
  .btn-lg { padding: 14px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
