
:root {
  --bg: #050915;
  --bg-alt: #0b1020;
  --fg: #f5f7ff;
  --muted: #a3adc2;
  --accent: #00a2ff;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --transition-fast: 0.18s ease-out;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body.tk-body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: #050915;

  color: var(--fg);
  min-height: 100vh;
}

/* Container */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.tk-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5, 9, 21, 0.96), rgba(5, 9, 21, 0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.brand-logo {
  height: 28px;
  width: auto;
  display: block;
}


.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav a:hover {
  color: var(--fg);
}

.nav a.nav-active {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-cta {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Theme toggle */

.theme-toggle {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
}

/* Hero */

.hero {
  padding: 72px 0 40px;
  background: radial-gradient(circle at top, #101935 0, #050915 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 40px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-lead {
  color: var(--muted);
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn.primary {
  background: linear-gradient(135deg, #00a2ff, #4f8cff);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-bullets li::before {
  content: "•";
  color: var(--accent);
  margin-right: 6px;
}

/* Hero side card */

.hero-panel {
  display: flex;
  align-items: stretch;
}

.hero-card {
  border-radius: 24px;
  padding: 22px 22px 24px;
  background: radial-gradient(circle at top left, rgba(0, 162, 255, 0.16), rgba(5, 9, 21, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  margin-top: 6px;
  margin-bottom: 8px;
  font-size: 17px;
}

/* Sections */

.section {
  padding: 56px 0;
}

.section-alt {
  background: transparent;
}

.section-lead {
  color: var(--muted);
  max-width: 48rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

/* Checklist */

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  color: var(--muted);
}

.checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4ade80;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.card {
  display: block;
  padding: 18px 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(7, 11, 28, 0.96);
  border: 1px solid var(--border-subtle);
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

.card h3 {
  margin: 2px 0 8px;
  font-size: 15px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card:hover {
  border-color: rgba(0, 162, 255, 0.7);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

/* Solutions links */

.solutions-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: var(--fg);
  font-size: 14px;
  background: rgba(7, 11, 28, 0.96);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.13);
  border-color: rgba(0, 162, 255, 0.3);
}

/* Support grid */

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.support-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-card {
  padding: 14px 16px 16px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: rgba(7, 11, 28, 0.96);
  font-size: 13px;
}

.mini-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

/* CTA */

.cta {
  background: radial-gradient(circle at top left, rgba(0, 162, 255, 0.35), #050915 55%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}


/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
}

/* Form */

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form input,
.form textarea,
.form select {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 10, 25, 0.9);
  color: var(--fg);
  padding: 9px 11px;
  font-family: inherit;
  font-size: 14px;
}

.form textarea {
  resize: vertical;
}

.form-status {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 14px;
  border: 1px solid transparent;
}

.form-status--success {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(22, 163, 74, 0.18);
}

.form-status--error {
  border-color: rgba(248, 113, 113, 0.6);
  background: rgba(185, 28, 28, 0.18);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0 26px;
  background: #050915;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--fg);
}

/* Preloader */

#preloader {
  position: fixed;
  inset: 0;
  background: #050915;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-inner .logo-mark {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: radial-gradient(circle at top, rgba(0, 162, 255, 0.35), rgba(5, 9, 21, 0.95));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.7);
  animation: preloader-logo 1.4s ease-in-out infinite alternate;
}

.preloader-bar {
  width: 170px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00a2ff, #4f8cff);
  animation: preloader-fill 4.4s ease-out forwards;
}

@keyframes preloader-fill {
  0% { width: 0%; }
  8% { width: 15%; }
  45% { width: 60%; }
  75% { width: 82%; }
  100% { width: 100%; }
}
  50% { transform: translateX(40%); }
  100% { transform: translateX(160%); }
}

/* Utility */

.narrow {
  max-width: 720px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .support-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    gap: 10px;
  }
  .nav {
    display: none; /* simple mobile: native browser menu still works via anchor links */
  }
  .hero {
    padding-top: 40px;
  }
}


.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-meta a {
  color: var(--fg);
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

.footer-phone {
  font-weight: 500;
}


.logo-mark-img {
  max-width: 70%;
  max-height: 70%;
}


/* Light theme overrides */
body.tk-body.theme-light {
  --bg: #f3f5fb;
  --bg-alt: #ffffff;
  --fg: #050816;
  --muted: #4b5563;
  --accent: #0077cc;
  --border-subtle: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 16px 30px rgba(15, 23, 42, 0.18);
}

body.tk-body.theme-light {
  background: radial-gradient(circle at top, #ffffff 0, #dbeafe 55%);
}

body.tk-body.theme-light .tk-header {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* Logo variants for dark/light themes */
.brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

.brand-logo-light,
.logo-mark-light {
  display: none;
}

body.theme-light .brand-logo-dark,
body.theme-light .logo-mark-dark {
  display: none;
}

body.theme-light .brand-logo-light,
body.theme-light .logo-mark-light {
  display: block;
}

/* Nav CTA buttons using primary button styling */
.nav a.nav-cta {
  border-bottom: none;
  margin-left: 10px;
}

/* Theme toggle visible styling */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 10px;
  background: rgba(15, 23, 42, 0.7);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

body.theme-light .theme-toggle {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.15);
}

.theme-toggle-icon {
  font-size: 14px;
}

.theme-toggle-label {
  font-weight: 500;
}


.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
}

.footer-logo-light {
  display: none;
}

body.theme-light .footer-logo-dark {
  display: none;
}

body.theme-light .footer-logo-light {
  display: block;
}



/* Nav CTA buttons reuse primary button styling */
.nav a.nav-cta {
  padding: 0;
  border-bottom: none;
}

.nav a.nav-cta.btn.primary {
  background: linear-gradient(135deg, #00a2ff, #4f8cff);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}


.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.hero-card-list li {
  position: relative;
  padding-left: 16px;
}

.hero-card-list li + li {
  margin-top: 4px;
}

.hero-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}


/* Soften section background differences */
.section-alt {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.00), rgba(255, 255, 255, 0.02));
}

body.tk-body .footer {
  background: #050915;
}

/* Light theme section/background tweaks */
body.tk-body.theme-light {
  background: linear-gradient(to bottom, #f4f7ff 0, #e5efff 40%, #dde7f7 100%);
}

body.tk-body.theme-light .section {
  background: transparent;
}

body.tk-body.theme-light .section-alt {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.04));
}

body.tk-body.theme-light .card,
body.tk-body.theme-light .service-card,
body.tk-body.theme-light .hero-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body.tk-body.theme-light .footer {
  background: #050816;
  color: #9ca3af;
}


body.tk-body.theme-light h1,
body.tk-body.theme-light h2,
body.tk-body.theme-light h3,
body.tk-body.theme-light h4 {
  color: #020617;
}

body.tk-body.theme-light .section-lead,
body.tk-body.theme-light .muted,
body.tk-body.theme-light p {
  color: #111827;
}

body.tk-body.theme-light .nav a {
  color: #4b5563;
}

body.tk-body.theme-light .nav a.nav-active {
  color: #111827;
  border-color: rgba(15, 23, 42, 0.3);
}


/* LIGHT THEME REFINEMENTS */

/* Single, gentle gradient for whole page in light mode */
body.tk-body.theme-light {
  background: linear-gradient(to bottom, #f4f7ff 0, #e5efff 40%, #dde7f7 100%);
}

/* Sections sit on the same background */
body.tk-body.theme-light .section,
body.tk-body.theme-light .section-alt {
  background: transparent;
}

/* Cards and pills should be light in light mode */
body.tk-body.theme-light .pill-link,
body.tk-body.theme-light .mini-card {
  background: #ffffff;
  color: #111827;
  border-color: rgba(15, 23, 42, 0.10);
}

/* Footer readability in light mode */
body.theme-light .footer-inner {
  color: #9ca3af;
}

body.theme-light .footer-links a {
  color: #9ca3af;
}

body.theme-light .footer-links a:hover {
  color: #f9fafb;
}

body.theme-light .footer-meta span,
body.theme-light .footer-meta a,
body.theme-light .footer-phone {
  color: #e5e7eb;
}


/* DARK THEME SECTION UNIFICATION */
body.tk-body .section {
  background: transparent;
}

body.tk-body .section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.0), rgba(15, 23, 42, 0.25));
}


/* FINAL UNIFORM BACKGROUNDS */

/* Dark mode (default): single background colour across page */
body.tk-body:not(.theme-light) {
  background: #050915;
}

body.tk-body:not(.theme-light) .tk-header,
body.tk-body:not(.theme-light) .hero,
body.tk-body:not(.theme-light) .section,
body.tk-body:not(.theme-light) .footer {
  background: #050915;
}

/* Remove gradients for header/hero in dark mode */
body.tk-body:not(.theme-light) .tk-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

body.tk-body:not(.theme-light) .hero {
  padding: 72px 0 40px;
}

/* Light mode: single light background across header, content and footer */
body.tk-body.theme-light {
  background: #f4f7ff;
}

body.tk-body.theme-light .tk-header,
body.tk-body.theme-light .hero,
body.tk-body.theme-light .section,
body.tk-body.theme-light .footer {
  background: #f4f7ff;
}

/* Light mode footer text colours for readability on light background */
body.tk-body.theme-light .footer-inner,
body.tk-body.theme-light .footer-meta span,
body.tk-body.theme-light .footer-meta a,
body.tk-body.theme-light .footer-phone,
body.tk-body.theme-light .footer-links a {
  color: #4b5563;
}

body.tk-body.theme-light .footer-links a:hover {
  color: #111827;
}

/* Cards in both themes share consistent 'card' colouring per theme */
body.tk-body.theme-light .hero-card,
body.tk-body.theme-light .card,
body.tk-body.theme-light .service-card,
body.tk-body.theme-light .pill-link,
body.tk-body.theme-light .mini-card {
  background: #ffffff;
}

body.tk-body:not(.theme-light) .hero-card,
body.tk-body:not(.theme-light) .card,
body.tk-body:not(.theme-light) .service-card,
body.tk-body:not(.theme-light) .pill-link,
body.tk-body:not(.theme-light) .mini-card {
  background: #070b1c;
}


/* Light mode: form fields use the same light card colour */
body.tk-body.theme-light input,
body.tk-body.theme-light .form textarea,
body.tk-body.theme-light .form select {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
  color: #111827;
}

/* Force all primary buttons to have white text always */
.btn.primary, a.btn.primary {
  color: #ffffff !important;
}

/* Increase padding for proper sizing */
.btn.primary {
  padding: 10px 22px !important;
  font-weight: 600;
  border-radius: 999px !important;
}

/* Nav CTA fix: ensure anchor buttons behave same */
.nav a.btn.primary {
  padding: 10px 22px !important;
  color: #ffffff !important;
}


@keyframes preloader-logo {
  0% {
    transform: scale(0.94);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
  }
}

/* Light mode variant for preloader */
body.theme-light #preloader {
  background: #f4f7ff;
}

body.theme-light #preloader .logo-mark {
  background: radial-gradient(circle at top, rgba(0, 119, 204, 0.18), #ffffff);
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.20);
}


/* Subtle hover motion for all cards */
.card,
.service-card,
.hero-card,
.mini-card {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.card:hover,
.service-card:hover,
.hero-card:hover,
.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 162, 255, 0.4);
}


.service-card {
  border-radius: 20px;
  padding: 18px 18px 20px;
  background: rgba(7, 11, 28, 0.96);
  border: 1px solid var(--border-subtle);
}


.nav a {
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.nav a.btn.primary {
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}


/* Page fade transitions */
body.tk-body {
  opacity: 0;
  transition: opacity 0.35s ease;
}

body.tk-body.page-transition-in {
  opacity: 1;
}

body.tk-body.page-transition-out {
  opacity: 0;
}

/* Unified logo sizing */
.brand-logo,
.footer-logo,
.footer-logo-dark,
.footer-logo-light,
.brand-logo-dark,
.brand-logo-light {
  height: 28px !important;
  width: auto !important;
}


.nav a {
  line-height: 1.1;
}

/* Ensure header brand group aligns nicely with nav */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* Logo fade-in tied to page transition */
@keyframes logo-fade-in {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header logo + wordmark */
body.tk-body.page-transition-in .brand-logo,
body.tk-body.page-transition-in .brand-text {
  animation: logo-fade-in 0.55s ease-out 0.08s both;
}

/* Footer logo */
body.tk-body.page-transition-in .footer-logo,
body.tk-body.page-transition-in .footer-brand .brand-text {
  animation: logo-fade-in 0.55s ease-out 0.20s both;
}

/* Subtle luxury hover for cards */
.card,
.service-card,
.hero-card,
.mini-card,
.solution-card,
.highlight-card,
.contact-card,
.feature-card {
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              border-color var(--transition-fast),
              background-color var(--transition-fast);
}

.card:hover,
.service-card:hover,
.hero-card:hover,
.mini-card:hover,
.solution-card:hover,
.highlight-card:hover,
.contact-card:hover,
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.13);
  border-color: rgba(0, 162, 255, 0.3);
}


/* Centered homepage hero layout */
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-actions {
  justify-content: center;
  gap: 1rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 16px auto 0;
  max-width: 32rem;
  text-align: left;
}

/* One-partner hero card centered beneath hero copy */
.hero-panel {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-card {
  max-width: 560px;
  width: 100%;
}

/* Center What we do content */
#what-we-do .container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

#what-we-do .checklist {
  max-width: 32rem;
  margin: 16px auto 0;
  text-align: left;
}

/* Nav: make Helpdesk Portal look like other items */
.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

/* Center nav group a bit more visually by spacing */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}


#what-we-do .section-lead {
  text-align: center;
}


.hero-bullets-wrap {
  text-align: center;
  margin-top: 16px;
}

.hero-bullets {
  display: inline-block;
  text-align: left;
  margin: 0;
  padding: 0;
}

/* Center checklist block in What we do */
#what-we-do .checklist-wrap {
  text-align: center;
  margin-top: 16px;
}

#what-we-do .checklist {
  display: inline-block;
  text-align: left;
  margin: 0;
  padding: 0;
}


/* Tighten and center What we do section */
#what-we-do .container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

#what-we-do .eyebrow,
#what-we-do h2,
#what-we-do .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#what-we-do .checklist-wrap {
  margin-top: 24px;
}


/* Header layout: centered brand, burger left, theme toggle right */

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 68px;
}

.brand {
  justify-self: center;
}

/* Burger menu button */

.nav-toggle {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 6px 9px;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--muted);
}

/* Dropdown nav panel anchored under burger */

.nav-container {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding-top: 8px;
}

body.nav-open .nav-container {
  display: block;
}

.nav-container-inner {
  min-width: 210px;
  max-width: 260px;
  border-radius: 18px;
  padding: 14px 18px 16px;
  background: linear-gradient(to bottom, rgba(5, 9, 21, 0.98), rgba(5, 9, 21, 0.96));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Vertical nav items inside dropdown */

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

/* Avoid horizontal scroll on mobile */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


/* Light-mode styling for burger dropdown */
body.theme-light .nav-container-inner {
  background: #f5f7ff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  color: #050915;
}

body.theme-light .nav-container-inner a {
  color: #050915;
}

body.theme-light .nav-container-inner a:hover {
  color: #111827;
}

/* Light-mode styling for burger button */
body.theme-light .nav-toggle {
  border-color: rgba(15, 23, 42, 0.18);
}

body.theme-light .nav-toggle span {
  background: #111827;
}
