:root {
  --primary: #0a3d62;
  --teal: #0d9488;
  --gold: #b8860b;
  --text: #1e293b;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #fff;
  --hero-from: #3b82f6;
  --hero-to: #8b5cf6;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --header-h: 72px;
  --font: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--primary); color: #fff; padding: 0.5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }
.logo img { height: 40px; width: auto; }
.site-nav ul { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--text); font-weight: 600; }
.site-nav a[aria-current="page"] { color: var(--teal); }
.header-cta { margin-left: auto; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; }
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 6px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.25rem; border-radius: 999px; font-weight: 600; border: 0; cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-light { background: #fff; color: var(--primary); }
.hero-home { position: relative; color: #fff; min-height: 70vh; background: linear-gradient(135deg, var(--hero-from), var(--hero-to)); }
.home-swiper, .swiper-slide { min-height: 70vh; }
.slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: linear-gradient(120deg, rgba(10,61,98,0.82), rgba(13,148,136,0.55));
  padding: 4rem 0;
}
.hero-fallback { min-height: 70vh; display: flex; align-items: center; padding: 4rem 0; }
.hero-home h1, .page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; margin: 0 0 1rem; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff; padding: 6rem 0 4rem; text-align: center;
}
.page-hero p { max-width: 48rem; margin: 0 auto; opacity: 0.95; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--teal); font-size: 0.85rem; }
.eyebrow.light { color: #fff; background: rgba(255,255,255,0.18); padding: 0.35rem 0.9rem; border-radius: 999px; display: inline-block; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--light); }
.section-head { text-align: center; max-width: 44rem; margin: 0 auto 2.5rem; }
.section-head h2 { margin: 0.3rem 0 0.6rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.cols-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow); color: inherit; display: block;
}
.card:hover { border-color: var(--teal); }
.card h3, .card h2 { margin-top: 0; color: var(--primary); }
.muted { color: var(--muted); }
.stat-row { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.stat-row strong { display: block; font-size: 2rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 0.75rem; }
.faq-item summary { font-weight: 700; cursor: pointer; }
.cta-band { background: linear-gradient(135deg, var(--primary), var(--teal)); color: #fff; text-align: center; padding: 4rem 1rem; }
.site-footer { background: #0b1724; color: #cbd5e1; padding: 3rem 0 1.5rem; }
.site-footer h2 { color: #fff; font-size: 1rem; }
.site-footer a { color: #e2e8f0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-bottom { border-top: 1px solid #1e293b; margin-top: 2rem; padding-top: 1rem; }
.form { display: grid; gap: 0.9rem; }
.form label { display: grid; gap: 0.35rem; font-weight: 600; }
.form input, .form textarea, .form select {
  font: inherit; padding: 0.7rem 0.8rem; border: 1px solid #cbd5e1; border-radius: 10px;
}
.form .check { display: flex; gap: 0.5rem; align-items: flex-start; font-weight: 500; }
.hp { position: absolute; left: -9999px; }
.alert { padding: 0.8rem 1rem; border-radius: 10px; }
.alert-ok { background: #d1fae5; color: #065f46; }
.alert-err { background: #fee2e2; color: #991b1b; }
.prose { max-width: 48rem; }
.prose h1, .prose h2, .prose h3 { color: var(--primary); }
.breadcrumb { padding: 1rem 0 0; color: var(--muted); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 720px; margin: auto;
  background: #0b1724; color: #fff; padding: 1rem 1.2rem; border-radius: 12px;
  display: flex; gap: 1rem; align-items: center; justify-content: space-between; z-index: 80;
}
.center { text-align: center; }
.testimonial footer { display: flex; flex-direction: column; margin-top: 1rem; color: var(--muted); }

.admin-body { background: #f1f5f9; }
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--primary); color: #fff; padding: 1.2rem; }
.admin-sidebar a { color: #fff; }
.admin-sidebar ul { list-style: none; padding: 0; }
.admin-sidebar li { margin: 0.4rem 0; }
.admin-brand { font-weight: 800; display: block; margin-bottom: 1.2rem; }
.admin-top { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; background: #fff; border-bottom: 1px solid #e2e8f0; }
.admin-content { padding: 1.5rem; }
.data-table { width: 100%; border-collapse: collapse; background: #fff; }
.data-table th, .data-table td { border-bottom: 1px solid #e2e8f0; padding: 0.7rem; text-align: left; }
.row-actions { display: flex; gap: 0.75rem; align-items: center; }
.linkish { background: none; border: 0; color: #b91c1c; cursor: pointer; font: inherit; }
.admin-form { max-width: 720px; background: #fff; padding: 1.5rem; border-radius: 12px; }
.admin-login-page { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--teal)); }
.login-card { background: #fff; padding: 2rem; border-radius: 16px; width: min(420px, 92vw); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.admin-stats .card { text-align: center; }

@media (max-width: 900px) {
  .split, .footer-grid, .admin-shell { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: var(--header-h); background: #fff; padding: 1rem; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; }
  .header-cta { display: none; }
}
