/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:      #09090b;
  --dark:       #111418;
  --card-dark:  #161c24;
  --blue:       #1a7fd4;
  --blue-light: #3fa0f0;
  --blue-glow:  rgba(26,127,212,0.35);
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --silver:     #b0bec8;
  --text-dark:  #111;
  --border:     #e2e8ef;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  background: var(--black);
  border-bottom: 2px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-logo-text span { color: var(--blue-light); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue-light); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue-light) !important; color: var(--white) !important; }

/* ── SHARED SECTION STYLES ── */
.section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.section-heading.light { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-light); }
.btn-outline {
  border: 2px solid var(--blue-light);
  color: var(--blue-light);
  background: transparent;
}
.btn-outline:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 2px solid var(--blue);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
}
.footer-logo-text span { color: var(--blue-light); }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--silver);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue-light); }
.footer-copy {
  font-size: 12px;
  color: #445566;
  text-align: right;
}

/* ── TABLE STYLES (shared) ── */
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead th {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #607080;
  padding: 8px 12px;
  text-align: left;
  background: var(--off-white);
  border-bottom: 2px solid var(--blue);
}
.price-table thead th.r { text-align: right; }
.price-table tbody tr { border-bottom: 1px solid var(--border); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #f0f6fc; }
.price-table td { padding: 10px 12px; vertical-align: middle; }
td.svc-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.3;
}
td.svc-name small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #607080;
  line-height: 1.3;
}
td.price-std, td.price-hp {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--text-dark);
  text-align: right;
  white-space: nowrap;
  letter-spacing: 1px;
  width: 80px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  footer { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}
