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

:root {
  --bg: #08090B;
  --surface: #0F1114;
  --border: #1E2128;
  --border-light: #2A2E38;
  --fg: #F5F4F1;
  --fg-muted: #C0C3C9;
  --fg-dim: #9598A0;
  --silver: #D0CDC6;
  --silver-light: #E2DFD8;
  --max-w: 1080px;
  --px: 48px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ---- NAV ---- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px var(--px);
  max-width: calc(var(--max-w) + var(--px) * 2);
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 9;
}
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  background: rgba(8,9,11,0.95);
  backdrop-filter: blur(12px);
  z-index: -1;
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100vw; height: 1px;
  background: var(--border);
}
.nav-logo { height: 36px; width: auto; transition: opacity 0.15s; cursor: pointer; }
.nav-logo:hover { opacity: 0.8; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--silver);
  color: var(--bg);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--silver-light); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px var(--px) 32px;
  max-width: calc(var(--max-w) + var(--px) * 2);
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 100%; max-width: 700px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(180,175,165,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo {
  width: 420px;
  max-width: 85vw;
  height: auto;
  position: relative;
  margin-bottom: 16px;
}

/* ---- BOOKING (reduced) ---- */
.booking-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px var(--px) 48px;
}
.form-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: box-shadow 0.2s;
}
.form-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* ---- CORPORATE ---- */
.corporate { background: var(--surface); }
.corporate-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--px);
}
.corporate-header {
  max-width: 680px;
  margin-bottom: 48px;
}
.corporate-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.corporate-intro {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--fg-muted);
}

.corporate-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.corporate-benefits h3,
.corporate-services h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  color: var(--fg);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefit {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.15s;
}
.benefit:last-child { border-bottom: none; padding-bottom: 0; }
.benefit:hover { padding-left: 6px; }
.benefit h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 2px;
}
.benefit p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.45;
}

.corporate-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.corporate-cta > p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.corporate-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 16px 40px;
  background: var(--silver);
  color: var(--bg);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { background: var(--silver-light); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(208,205,198,0.15); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 16px 40px;
  border: 1px solid var(--border-light);
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.15s;
}
.btn-outline:hover { border-color: var(--fg-muted); color: var(--fg); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }

/* ---- SECTION HELPERS ---- */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 3px;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- ABOUT ---- */
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.3px;
  line-height: 1.15;
  color: var(--fg);
}
.about p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fg-muted);
}

/* ---- FEATURES ---- */
.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--px);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}
.feature-card {
  background: var(--surface);
  padding: 28px 24px;
  transition: background 0.15s;
}
.feature-card:hover { background: #141720; }
.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--fg);
  margin-bottom: 4px;
}
.feature-card p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- COMPARE ---- */
.compare { background: var(--surface); }
.compare-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px var(--px);
}
.compare-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 28px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
}
.compare-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.15s;
}
.compare-item:hover { padding-left: 8px; }
.compare-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 3px;
}
.compare-item p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- SERVICE AREA ---- */
.service-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.service-area h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--fg);
}
.area-stats {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-shrink: 0;
}
.area-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  transition: transform 0.15s;
}
.area-stat:hover { transform: translateY(-2px); }
.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--fg);
}
.stat-label { font-size: 0.85rem; color: var(--fg-dim); }
.area-divider { width: 1px; height: 40px; background: var(--border-light); }

/* ---- CONTACT ---- */
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px var(--px);
  text-align: center;
}
.contact p { font-size: 0.95rem; color: var(--fg-dim); }
.contact a {
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s;
}
.contact a:hover { color: var(--fg); border-bottom-color: var(--fg-muted); }

/* ---- FOOTER ---- */
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--px);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  :root { --px: 24px; }
  .nav-phone { display: none; }
  .nav-logo { max-width: 150px; object-fit: contain; }
  .hero { padding: 48px var(--px) 24px; }
  .hero-logo { width: 100%; margin-bottom: 12px; }
  .hero-tagline { font-size: 0.9rem; letter-spacing: 1.5px; }
  .booking-inner { padding: 16px var(--px) 32px; }
  .corporate-inner { padding: 56px var(--px); }
  .corporate-header { margin-bottom: 32px; }
  .corporate-header h2 { font-size: 1.5rem; }
  .corporate-columns { grid-template-columns: 1fr; gap: 32px; }
  .corporate-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; max-width: 300px; }
  .about-inner { grid-template-columns: 1fr; gap: 20px; padding: 48px var(--px); }
  .about h2 { font-size: 1.4rem; }
  .features-inner { padding: 48px 0; }
  .features-inner .section-label { padding-left: var(--px); }
  .features-inner .section-cta { padding: 0 var(--px); }
  .features-grid { grid-template-columns: 1fr; border-radius: 0; }
  .compare-inner { padding: 48px var(--px); }
  .compare-grid { grid-template-columns: 1fr; }
  .service-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 36px var(--px); }
  .footer-inner { flex-direction: column; gap: 4px; text-align: center; }
}