/* Devkanti Enterprises v3.1 — Premium Corporate IT */

:root {
  --navy: #07111f;
  --navy-deep: #0b1b33;
  --gold: #c8a25d;
  --gold-soft: #e4c985;
  --white: #ffffff;
  --grey-50: #f8fafc;
  --grey-100: #f5f7fa;
  --grey-200: #e2e8f0;
  --grey-600: #64748b;
  --text: #111827;
  --font: Inter, Poppins, Arial, sans-serif;
  --container: 76rem;
  --header-h: 78px;
  --header-bg: #ffffff;
  --header-border: rgba(15, 23, 42, 0.06);
  --header-nav: #07152b;
  --nav-active-bg: rgba(200, 162, 93, 0.24);
  --nav-hover-bg: rgba(200, 162, 93, 0.14);
  --shadow-sm: 0 1px 3px rgba(7, 17, 31, 0.06);
  --shadow-md: 0 8px 30px rgba(7, 17, 31, 0.08);
  --shadow-lg: 0 20px 50px rgba(7, 17, 31, 0.12);
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: #a88642; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover { color: var(--navy); background: var(--gold-soft); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  border-color: var(--gold-soft);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Header — clean corporate bar (Team Computers–style) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--header-h);
  min-height: 96px;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible !important;
  transition: box-shadow 0.28s ease;
}

body.is-front-page .site-header,
body.is-front-page .site-header.is-scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.1);
}

.site-header .header-inner {
  width: 100%;
  max-width: 1500px;
  height: var(--header-h);
  min-height: var(--header-h);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

@media (min-width: 992px) {
  :root {
    --header-h: 96px;
  }

  .site-header {
    height: 96px;
    min-height: 96px;
  }

  .site-header .header-inner {
    height: 96px;
    min-height: 96px;
    padding-inline: 56px;
    align-items: center;
    overflow: visible;
  }
}

.site-header,
.site-header .header-inner {
  overflow: visible;
}

/* Header brand — full logo, no box crop (scaled by max-height only) */
.site-header .header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  height: auto;
  max-width: min(420px, 72vw);
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  overflow: visible !important;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  line-height: normal;
}

.site-header .header-brand:hover {
  background: none;
}

.site-header .dk-header-logo {
  width: auto !important;
  height: auto !important;
  max-height: 52px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .site-header .header-brand {
    max-width: 480px;
    gap: 14px;
  }

  .site-header .dk-header-logo {
    max-height: 76px !important;
  }
}

.site-header .header-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.site-header .header-brand-text strong {
  display: block;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #07111f;
}

.site-header .header-brand-text strong::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.35rem;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(200, 162, 93, 0.15) 100%);
}

.site-header .header-brand-text > span {
  display: block;
  margin-top: 0.4rem;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #5a6a7d;
}

@media (min-width: 768px) {
  .site-header .header-brand-text strong {
    font-size: 1.25rem;
    letter-spacing: 0.14em;
  }

  .site-header .header-brand-text > span {
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
  }
}

@media (min-width: 992px) {
  .site-header .header-brand-text strong {
    font-size: 1.375rem;
    letter-spacing: 0.12em;
  }

  .site-header .header-brand-text strong::after {
    width: 2.35rem;
    margin-top: 0.4rem;
  }

  .site-header .header-brand-text > span {
    font-size: 0.75rem;
    letter-spacing: 0.32em;
  }
}

.site-logo-img:not(.site-logo-img--header) {
  max-height: 48px;
  width: auto;
  max-width: 178px;
  object-fit: contain;
}

.primary-nav {
  display: none;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .primary-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .primary-nav__menu {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
  }

  .primary-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }
}

@media (min-width: 992px) and (max-width: 1280px) {
  .nav-menu {
    gap: 1.75rem;
  }

  .nav-menu a {
    font-size: 0.9375rem;
  }

  .header-cta.btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 992px) and (max-width: 1140px) {
  .header-phone__number {
    display: none;
  }

  .header-phone {
    padding: 0.3rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 0.45rem 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--header-nav);
  text-decoration: none;
  background: transparent;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, text-decoration-color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--header-nav);
  background: var(--nav-hover-bg);
  text-decoration: underline;
  text-decoration-color: rgba(200, 162, 93, 0.65);
  text-underline-offset: 0.2em;
}

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--header-nav);
  background: var(--nav-active-bg);
  text-decoration: none;
}

.header-cta {
  white-space: nowrap;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem 0.3rem 0.3rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: var(--header-nav);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: var(--header-nav);
  color: var(--gold-soft);
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: none;
}

.header-phone:hover {
  color: var(--header-nav);
  background: #ffffff;
  border-color: #d1d5db;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.header-phone:hover .header-phone__icon {
  background: var(--header-nav);
  color: var(--gold-soft);
}

.header-cta.btn {
  border-radius: 14px;
  padding: 0.62rem 1.05rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--header-nav);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(200, 162, 93, 0.28);
}

.header-cta.btn:hover {
  color: var(--header-nav);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 162, 93, 0.38);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--header-nav);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 1.25rem 1.5rem 2rem;
  background: #ffffff;
  border-top: 1px solid var(--header-border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  overflow-y: auto;
}

.mobile-nav-panel.is-open {
  display: block;
}

.mobile-nav-panel .nav-menu {
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
}

.mobile-nav-panel .nav-menu li {
  width: 100%;
}

.mobile-nav-panel .nav-menu a {
  display: block;
  padding: 0.85rem 0.5rem;
  font-size: 1rem;
  color: var(--header-nav);
  border-radius: 8px;
}

.mobile-nav-panel .nav-menu a:hover {
  color: var(--gold);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.mobile-nav-panel .btn {
  width: 100%;
  margin-top: 1.25rem;
  font-weight: 700;
  border-radius: 14px;
}

.mobile-phone-cta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: var(--header-nav);
  text-decoration: none;
  font-weight: 600;
}

.mobile-phone-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: var(--header-nav);
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.mobile-phone-cta:hover {
  border-color: #d1d5db;
  color: var(--header-nav);
}

.mobile-nav-panel .nav-menu .current-menu-item > a,
.mobile-nav-panel .nav-menu .current_page_item > a {
  background: var(--nav-active-bg);
  color: var(--header-nav);
  text-decoration: none;
}

/* Hero */
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: calc(-1 * var(--header-h));
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-hero--fallback {
  background-image:
    linear-gradient(135deg, rgba(7, 17, 31, 0.92) 0%, rgba(11, 27, 51, 0.88) 45%, rgba(7, 17, 31, 0.94) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 162, 93, 0.15) 0%, transparent 55%),
    linear-gradient(160deg, #0b1b33 0%, #07111f 50%, #0d2240 100%);
}

.home-hero--has-image {
  background-size: cover;
  background-position: center;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 17, 31, 0.88) 0%, rgba(11, 27, 51, 0.75) 50%, rgba(7, 17, 31, 0.82) 100%);
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.home-hero__eyebrow {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(228, 201, 133, 0.35);
  border-radius: 999px;
  background: rgba(200, 162, 93, 0.1);
}

.home-hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.home-hero__lead {
  margin: 0 0 2rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
.section { padding: 5rem 0; }

@media (min-width: 768px) { .section { padding: 6rem 0; } }

.section-white { background: var(--white); }
.section-grey { background: var(--grey-100); }
.section-bordered { border-top: 1px solid var(--grey-200); }

.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}

.section-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #0d2240 100%);
  color: var(--white);
  text-align: center;
}

.section-intro { margin-bottom: 3rem; }
.section-intro--center { text-align: center; max-width: 42rem; margin-inline: auto; margin-bottom: 3rem; }
.section-intro--light .section-label { color: var(--gold-soft); }
.section-intro--light .section-heading { color: var(--white); }
.section-intro--light .section-lead { color: rgba(255, 255, 255, 0.78); }

.section-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-heading--light { color: var(--white); }

.section-lead {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--grey-600);
}

.section-lead--light { color: rgba(255, 255, 255, 0.82); }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 52rem;
  margin-inline: auto;
}

@media (max-width: 600px) { .stats-row { grid-template-columns: 1fr; } }

.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--grey-100);
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.9375rem;
  color: var(--grey-600);
}

/* Featured services (3 large) */
.featured-services {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .featured-services { grid-template-columns: repeat(3, 1fr); }
}

.featured-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.featured-card__media {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.featured-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }

.featured-card__body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.featured-card__body p {
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.65;
}

.card-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold);
}

.card-link:hover { color: #a88642; }

/* Image placeholder backgrounds */
.card-img-consulting {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #0b1b33 100%);
}

.card-img-managed {
  background: linear-gradient(135deg, #0f2d4a 0%, #1a4d6e 40%, #c8a25d33 100%);
}

.card-img-software {
  background: linear-gradient(135deg, #152238 0%, #2a4060 60%, #1e3050 100%);
}

.card-img-project-auto {
  background: linear-gradient(145deg, #1a3352, #2d4a6e);
}

.card-img-project-cloud {
  background: linear-gradient(145deg, #0d2840, #1e5078);
}

.card-img-project-security {
  background: linear-gradient(145deg, #1c2d42, #3d2e1a);
}

.card-img-project-portal {
  background: linear-gradient(145deg, #1e3348, #4a3d28);
}

.card-img-project-crm {
  background: linear-gradient(145deg, #152a40, #2e4a62);
}

.card-img-project-support {
  background: linear-gradient(145deg, #122438, #2a4560);
}

/* Core services (8) */
.core-services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) { .core-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .core-services-grid { grid-template-columns: repeat(4, 1fr); } }

.core-service-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.core-service-card:hover {
  border-color: rgba(200, 162, 93, 0.45);
  box-shadow: var(--shadow-md);
}

.core-service-card__num {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.core-service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
}

.core-service-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* Projects */
.projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.project-card__media { height: 160px; }

.project-card__body { padding: 1.5rem; }

.project-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.project-card__body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  margin: 0;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}

.testimonial-card__quote {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  font-style: normal;
}

.testimonial-card footer cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}

.testimonial-card footer span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--grey-600);
}

/* Industries */
.industries-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }

.industry-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.industry-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 162, 93, 0.4);
}

.industry-pill__icon {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.industry-pill h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

/* CTA */
.section-cta__inner { max-width: 40rem; margin-inline: auto; }

.section-cta__contact {
  margin: 1.5rem 0 2rem;
  font-size: 1.0625rem;
}

.section-cta__contact a { color: var(--gold-soft); }
.section-cta__contact a:hover { color: var(--white); }
.section-cta__contact span { margin: 0 0.5rem; color: rgba(255, 255, 255, 0.4); }

.section-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer — premium enterprise */
.site-footer--enterprise,
.site-footer {
  position: relative;
  padding: 2.4rem 0 0.85rem;
  background: linear-gradient(180deg, #03142f 0%, #071d45 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-shell {
  position: relative;
  overflow: hidden;
  max-width: 76rem;
  border-radius: 28px;
  border: 1px solid rgba(200, 162, 93, 0.6);
  background: linear-gradient(160deg, rgba(9, 27, 58, 0.94) 0%, rgba(6, 20, 45, 0.98) 100%);
  box-shadow: 0 24px 64px rgba(3, 10, 24, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 1.35rem 1rem 1rem;
}

@media (min-width: 768px) {
  .footer-shell {
    padding: 2rem 1.6rem 1.15rem;
  }
}

@media (min-width: 1100px) {
  .footer-shell {
    padding: 2.25rem 2rem 1.25rem;
  }
}

.footer-shell__glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.footer-shell__glow--left {
  left: -18%;
  bottom: -30%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(56, 120, 200, 0.32) 0%, transparent 72%);
}

.footer-shell__glow--right {
  right: -10%;
  top: -18%;
  width: 48%;
  height: 64%;
  background: radial-gradient(circle, rgba(200, 162, 93, 0.3) 0%, transparent 70%);
}

.footer-shell__network {
  position: absolute;
  left: -8%;
  bottom: -12%;
  width: 42%;
  height: 38%;
  background:
    radial-gradient(circle at 20% 82%, rgba(200, 162, 93, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 62%, rgba(200, 162, 93, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 56% 75%, rgba(200, 162, 93, 0.12) 0 2px, transparent 3px),
    linear-gradient(140deg, transparent 0%, rgba(200, 162, 93, 0.14) 35%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.1rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 1fr 1fr 1.05fr;
    gap: 1rem;
  }
}

.footer-brand,
.footer-col,
.footer-cta-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem;
}

.footer-brand__logo-wrap {
  position: relative;
  display: inline-flex;
}

.footer-brand__logo-glow {
  position: absolute;
  inset: -18% -15%;
  background: radial-gradient(ellipse at center, rgba(200, 162, 93, 0.35) 0%, transparent 72%);
}

.footer-logo {
  position: relative;
  z-index: 1;
  max-width: 230px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-brand__name {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.footer-brand__tagline {
  margin: 0.3rem 0 0.65rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #e4c985;
  letter-spacing: 0.07em;
}

.footer-brand__desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.footer-social {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 162, 93, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #f2d899;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 93, 0.75);
  box-shadow: 0 0 18px rgba(200, 162, 93, 0.35);
}

.footer-col__title {
  margin: 0 0 0.95rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.footer-col__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 0.45rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #e4c985, transparent);
}

.footer-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col__list li {
  margin-bottom: 0.45rem;
}

.footer-col__list a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col__list--arrow a::before {
  content: "›";
  margin-right: 0.45rem;
  color: #e4c985;
}

.footer-col__list a:hover {
  color: #f4e2b4;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-list__icon {
  color: #e4c985;
  width: 1rem;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #f4e2b4;
}

.footer-cta-card {
  border-color: rgba(200, 162, 93, 0.5);
  background: linear-gradient(150deg, rgba(9, 27, 58, 0.7), rgba(7, 20, 42, 0.95));
}

.footer-cta-card__icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(200, 162, 93, 0.18);
  border: 1px solid rgba(200, 162, 93, 0.55);
}

.footer-cta-card h4 {
  margin: 0.8rem 0 0.5rem;
  font-size: 1rem;
  color: #fff;
  line-height: 1.3;
}

.footer-cta-card h4::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 0.45rem;
  background: linear-gradient(90deg, #e4c985, transparent);
}

.footer-cta-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.footer-cta-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 162, 93, 0.7);
  color: #f4e2b4;
  text-decoration: none;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-cta-card__btn:hover {
  transform: translateY(-2px);
  background: rgba(200, 162, 93, 0.14);
  box-shadow: 0 0 20px rgba(200, 162, 93, 0.35);
}

.footer-value-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.8rem;
  margin-bottom: 0.95rem;
}

@media (min-width: 760px) {
  .footer-value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .footer-value-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }
}

.footer-value-item {
  padding: 0.6rem 0.7rem;
  position: relative;
}

@media (min-width: 1200px) {
  .footer-value-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(200, 162, 93, 0.48), transparent);
  }
}

.footer-value-item__icon {
  color: #e4c985;
  font-size: 0.8rem;
}

.footer-value-item h5 {
  margin: 0.2rem 0 0.22rem;
  font-size: 0.78rem;
  color: #fff;
}

.footer-value-item p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(200, 162, 93, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: center;
}

@media (min-width: 900px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-bottom__copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom__copy span {
  color: #e4c985;
}

.footer-bottom__legal {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
}

.footer-bottom__legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-bottom__legal a:hover {
  color: #f4e2b4;
}

.footer-bottom__sep {
  color: rgba(255, 255, 255, 0.35);
}

/* Inner pages (minimal compatibility) */
.site-main.section { padding-top: calc(var(--header-h) + 2rem); }
.page-content .card { padding: 2rem; border: 1px solid var(--grey-200); border-radius: var(--radius); }

/* Mobile / tablet v2 — overflow, footer, header (max-width 768px & 480px) */
@media (max-width: 768px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

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

  section,
  .container,
  .site-main,
  .site-footer,
  .site-footer .container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }

  .site-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .site-footer > .container {
    padding-inline: 1.375rem !important;
    margin-inline: auto;
  }

  .footer-shell {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    padding: 1.25rem 1rem 1rem !important;
    border-radius: 20px;
    overflow: hidden !important;
  }

  .footer-shell__glow,
  .footer-shell__network {
    max-width: 100% !important;
    pointer-events: none;
  }

  .footer-grid,
  .footer-value-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 1.375rem !important;
    min-width: 0 !important;
  }

  .footer-brand,
  .footer-col,
  .footer-cta-card,
  .footer-value-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-inline: 0 !important;
    padding: 1.25rem !important;
  }

  .footer-value-item::after {
    display: none !important;
  }

  .footer-logo {
    max-width: 100% !important;
    height: auto !important;
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .footer-bottom__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-contact-list a,
  .footer-col__list a {
    overflow-wrap: anywhere;
  }

  /* Header — full width, logo visible, menu toggle right */
  .site-header {
    width: 100% !important;
    max-width: 100% !important;
    min-height: var(--header-h);
    overflow: visible;
  }

  .site-header .header-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 1rem;
    gap: 0.65rem;
  }

  .site-header .header-brand {
    max-width: min(72vw, 280px);
    min-width: 0;
    flex: 1 1 auto;
    overflow: visible;
  }

  .site-header .dk-header-logo {
    max-height: 48px !important;
    max-width: 100% !important;
  }

  .nav-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .site-header .header-brand {
    max-width: min(68vw, 240px);
    gap: 8px;
  }

  .site-header .header-brand-text strong {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }

  .site-header .header-brand-text > span {
    font-size: 0.5625rem;
    letter-spacing: 0.2em;
  }

  .site-header .dk-header-logo {
    max-height: 44px !important;
  }
}
