﻿:root {
  --primary: #0a5cc9;
  --primary-dark: #083f8d;
  --accent: #ffb547;
  --bg: #f5f8fb;
  --card: #ffffff;
  --text: #0a1b2c;
  --muted: #5b6b7a;
  --border: #e2e8f0;
  --shadow: 0 20px 60px -25px rgba(10, 91, 201, 0.35);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: radial-gradient(60% 40% at 20% 10%, rgba(10, 92, 201, 0.12), transparent),
              radial-gradient(40% 25% at 80% 0%, rgba(255, 181, 71, 0.2), transparent),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.page-shell { max-width: 1200px; margin: 0 auto; padding: 28px 24px 64px; }

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 8px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo { height: 60px; width: auto; }
.logo.small { height: 44px; }
.brand-sub { font-size: 14px; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 18px; }
.nav a { padding: 10px 12px; border-radius: 10px; font-weight: 500; color: var(--text); }
.nav a:hover { background: rgba(10, 92, 201, 0.08); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 12px; font-weight: 600; border: 1px solid transparent; transition: transform 120ms ease, box-shadow 120ms ease, background 160ms ease; }
.btn.primary { background: var(--primary); color: #fff; box-shadow: 0 14px 34px -18px rgba(10, 92, 201, 0.8); }
.btn.primary:hover { transform: translateY(-1px); }
.btn.ghost { border-color: var(--border); background: #fff; color: var(--text); }
.btn.link { color: var(--primary); padding: 12px 10px; }

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.hero { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; align-items: center; }
.hero__text h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.1; margin: 10px 0 12px; }
.hero__text .lede { color: var(--muted); font-size: 18px; margin-bottom: 18px; max-width: 560px; }
.eyebrow { color: var(--primary); font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; font-size: 13px; margin: 0 0 4px; }
.lede { margin: 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; }
.hero__points { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: rgba(10, 92, 201, 0.12); color: var(--primary-dark); padding: 8px 12px; border-radius: 999px; font-weight: 600; font-size: 14px; }
.hero__points--areas { margin-top: 22px; gap: 12px; }
.pill--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(10, 92, 201, 0.14);
  box-shadow: 0 16px 34px -26px rgba(8, 63, 141, 0.35);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.pill--link:hover {
  transform: translateY(-1px);
  background: rgba(10, 92, 201, 0.08);
  box-shadow: 0 20px 40px -26px rgba(8, 63, 141, 0.42);
}

.hero__card { background: linear-gradient(145deg, #0b4da4, #0a5cc9); color: #fff; border-radius: 22px; padding: 18px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero__card::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; pointer-events: none; }
.card-header { display: flex; gap: 8px; padding: 6px 0 12px 4px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.green { background: #4ade80; }
.dot.amber { background: #facc15; }
.dot.red { background: #f87171; }
.card-body { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.card-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.label { margin: 0; text-transform: uppercase; letter-spacing: 0.6px; font-size: 12px; color: rgba(255,255,255,0.8); }
.status { background: rgba(255,255,255,0.12); padding: 6px 10px; border-radius: 10px; font-weight: 600; }
.metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.value { margin: 4px 0 0; font-size: 22px; font-weight: 700; }
.progress { background: rgba(255,255,255,0.15); height: 10px; border-radius: 20px; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(90deg, #ffda6a, #fff); border-radius: 20px; }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.mini { margin: 4px 0 0; color: rgba(255,255,255,0.85); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { background: rgba(255,255,255,0.12); padding: 6px 10px; border-radius: 12px; font-size: 13px; }
.hero__image { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: #fff; }
.hero__image img { display: block; width: 100%; height: 100%; object-fit: cover; }

.highlight { margin: 40px 0 16px; padding: 18px 20px; border-radius: 18px; background: linear-gradient(120deg, rgba(10, 92, 201, 0.08), rgba(255, 181, 71, 0.14)); border: 1px solid var(--border); box-shadow: 0 18px 40px -32px rgba(10, 92, 201, 0.35); }
.highlight h2 { margin: 6px 0 10px; font-size: clamp(24px, 3.4vw, 32px); }
.highlight p { margin: 0; color: var(--text); max-width: 720px; }

.section-head { text-align: left; margin-bottom: 18px; max-width: 640px; }
.section-head h2 { margin: 6px 0 10px; font-size: clamp(26px, 4vw, 36px); }
.section-head .sub { color: var(--muted); margin: 0; }

.grid { margin: 72px 0; }
.dashboard { margin: 72px 0; }
.experience { margin: 72px 0; }
.areas-overview { margin: 72px 0; }
.area-switch { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.area-teaser {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 22px;
  min-height: 240px;
  color: #fff;
  box-shadow: 0 28px 60px -34px rgba(8, 63, 141, 0.5);
}
.area-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  pointer-events: none;
}
.area-teaser > * { position: relative; z-index: 1; }
.area-teaser h3 { margin: 12px 0 10px; font-size: 26px; line-height: 1.1; }
.area-teaser p { margin: 0 0 18px; color: rgba(255,255,255,0.9); }
.area-teaser a { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.22); font-weight: 600; }
.area-teaser--food { background: linear-gradient(145deg, #072a57, #0a5cc9); }
.area-teaser--beach { background: linear-gradient(145deg, #006e8a, #24a6b8); }
.area-teaser--stay { background: linear-gradient(145deg, #57411f, #a46a1e); }
.area-tag {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(255,255,255,0.16);
  color: #fff;
}
.gallery-duo { margin: 64px 0 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.gallery-frame { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px -30px rgba(8, 63, 141, 0.45); background: #fff; border: 1px solid var(--border); }
.gallery-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.wide-image { margin: 40px 0 60px; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 70px -40px rgba(8,63,141,0.45); border: 1px solid var(--border); }
.wide-image img { display: block; width: 100%; height: auto; }
.beach { margin: 72px 0; }
.sector-showcase { margin: 82px 0; }
.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 22px;
}
.showcase-layout--reverse { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.showcase-summary {
  background: linear-gradient(145deg, #ffffff, #f7faff);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 52px -34px rgba(10, 92, 201, 0.42);
}
.showcase-summary h3 { margin: 0 0 12px; font-size: 28px; line-height: 1.15; }
.showcase-summary p { margin: 0; color: var(--muted); }
.showcase-visual {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -38px rgba(8, 63, 141, 0.45);
  background: #fff;
}
.showcase-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.showcase-visual--beach img { object-fit: contain; background: linear-gradient(180deg, #dff5fb, #ffffff); }
.showcase-visual--stay {
  background:
    radial-gradient(circle at top right, rgba(255, 181, 71, 0.3), transparent 35%),
    linear-gradient(160deg, #0b213d 0%, #143d68 55%, #f0f5fb 55%, #ffffff 100%);
  padding: 28px;
}
.stay-scene {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  height: 100%;
}
.stay-card {
  max-width: 320px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 60px -38px rgba(7, 20, 38, 0.5);
}
.stay-card h3 { margin: 8px 0; font-size: 28px; line-height: 1.05; color: var(--text); }
.stay-card p { margin: 0; color: var(--muted); }
.stay-label {
  display: inline-block;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 92, 201, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.stay-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  color: var(--text);
  font-weight: 600;
}
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: 0 12px 30px -24px rgba(8, 63, 141, 0.4); }
.card h3 { margin: 8px 0 6px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }
.icon { width: 44px; height: 44px; display: grid; place-items: center; background: rgba(10, 92, 201, 0.1); border-radius: 12px; font-size: 22px; }

.experience__layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.panel { background: linear-gradient(145deg, #ffffff, #f7faff); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: 0 18px 40px -32px rgba(10, 92, 201, 0.45); }
.panel h3 { margin: 6px 0 10px; }
.list-check { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 10px; }
.list-check li { position: relative; padding-left: 22px; color: var(--muted); }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: 2px; color: var(--primary); font-weight: 700; }

.segments { margin: 72px 0; }
.segment-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.segment-cards article { padding: 18px; border-radius: 16px; border: 1px solid var(--border); background: linear-gradient(145deg, #ffffff, #f6f9ff); box-shadow: 0 18px 40px -30px rgba(10, 92, 201, 0.45); }
.segment-cards h3 { margin: 6px 0 6px; }
.segment-cards p { margin: 0; color: var(--muted); }

.flow { margin: 72px 0; }
.flow-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; position: relative; overflow: hidden; }
.step-num { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(10, 92, 201, 0.12); color: var(--primary-dark); display: grid; place-items: center; font-weight: 700; }
.step h3 { margin: 6px 0 6px; }
.step p { margin: 0; color: var(--muted); }

.cta { margin: 90px 0 60px; }
.cta-inner { background: linear-gradient(120deg, #0a5cc9, #0b4da4); color: #fff; border-radius: 22px; padding: 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; align-items: center; box-shadow: var(--shadow); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn.ghost { color: #fff; border-color: rgba(255,255,255,0.3); background: transparent; }

.footer { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; align-items: center; }
.footer p { margin: 6px 0; color: var(--muted); }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--text); font-weight: 600; }
.footnote { text-align: center; color: var(--muted); font-size: 14px; margin: 16px 0 0; }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 72px; right: 24px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 12px; flex-direction: column; min-width: 220px; box-shadow: 0 16px 40px -28px rgba(0,0,0,0.25); }
  .nav.show { display: flex; }
  .nav-toggle { display: inline-flex; }
  .topbar { position: relative; }
  .showcase-layout,
  .showcase-layout--reverse { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .page-shell { padding: 20px 18px 48px; }
  .hero__card { order: -1; }
  .hero__text h1 { font-size: 32px; }
  .area-teaser h3 { font-size: 24px; }
  .showcase-summary { padding: 20px; }
  .showcase-summary h3 { font-size: 24px; }
  .showcase-visual { min-height: 280px; }
  .showcase-visual--stay { padding: 18px; }
  .stay-card h3 { font-size: 24px; }
}
