:root {
  --ink: #172026;
  --muted: #5d6a72;
  --line: #d9e2e7;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #087f8c;
  --green: #3a8f5a;
  --coral: #d95f43;
  --gold: #d49b2a;
  --shadow: 0 18px 50px rgba(23, 32, 38, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.home-page {
  background:
    linear-gradient(120deg, rgba(4, 18, 30, .96), rgba(8, 55, 70, .9)),
    url("consolenova-services-graph-hero-labeled.jpg") center top / cover no-repeat;
}

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

main {
  width: 100%;
}

.home-page .hero,
.home-page .stats,
.home-page .section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  margin: 0 0 18px;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  top: 24px;
  left: clamp(18px, 4vw, 60px);
  right: clamp(18px, 4vw, 60px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(6, 23, 32, .42);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(5, 18, 28, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: none;
  flex: 0 0 auto;
  padding: 7px 12px 7px 9px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 248, 250, .94));
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(5, 18, 28, .22);
}

.brand img {
  width: 280px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-phone {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 42px;
  padding-left: 10px;
  color: #071f4f;
  border-left: 1px solid rgba(7, 31, 79, .14);
  white-space: nowrap;
}

.brand-phone span {
  color: #348f9d;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-phone strong {
  margin-top: 5px;
  color: #071f4f;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.brand:hover {
  background: rgba(255, 255, 255, .98);
  transform: scale(1.02);
}

.nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(11px, 1vw, 17px);
  padding: 0;
  color: rgba(255, 255, 255, .96);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  font-size: clamp(15px, 1.02vw, 17px);
  font-weight: 900;
  letter-spacing: 0;
}

.nav > a,
.nav-dropdown > a {
  white-space: nowrap;
}

.nav a:hover {
  color: var(--white);
  text-shadow: 0 0 14px rgba(255, 255, 255, .25);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 14px 0;
}

.nav-dropdown > a span {
  color: rgba(255, 255, 255, .9);
  font-weight: 900;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: min(720px, calc(100vw - 48px));
  min-width: 360px;
  max-height: 68vh;
  overflow-y: auto;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(14, 42, 53, .98), rgba(7, 24, 33, .98));
  border: 1px solid rgba(127, 211, 215, .22);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(127, 211, 215, .7) rgba(255, 255, 255, .08);
}

.dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(127, 211, 215, .7);
  border-radius: 999px;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7fd3d7, transparent);
  border-radius: 999px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  margin: 0;
  padding: 12px 13px;
  color: rgba(238, 248, 249, .9);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  border: 1px solid transparent;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.dropdown-menu a:hover {
  color: var(--white);
  background: rgba(127, 211, 215, .12);
  border-color: rgba(127, 211, 215, .18);
  transform: translateX(3px);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.nav-cta,
.btn.primary {
  color: var(--white);
  background: rgba(8, 127, 140, .92);
}

.nav .nav-cta {
  min-height: 52px;
  padding-inline: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 10px 24px rgba(8, 127, 140, .24);
}

.btn.secondary {
  color: var(--ink);
  background: var(--white);
}

.btn.full {
  width: 100%;
  margin-top: 22px;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 6vw, 76px);
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 34, 38, .86), rgba(8, 34, 38, .42), rgba(8, 34, 38, .1));
}

.hero > img,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy,
.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 850px;
  color: var(--white);
}

.hero-copy p,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 850;
}

.hero-copy span,
.page-hero span {
  display: block;
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 6vw, 76px);
  overflow: hidden;
}

.section,
.band {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 70px);
}

.section > h2,
.section .split h2,
.section h2 {
  max-width: 860px;
  margin: 0 0 26px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.content {
  max-width: 880px;
  color: #38464e;
  font-size: 17px;
  line-height: 1.82;
}

.content p {
  margin-bottom: 20px;
}

.content.wide {
  max-width: 1120px;
}

.faq-section {
  background:
    radial-gradient(circle at 82% 0%, rgba(0, 132, 138, .12), transparent 32%),
    linear-gradient(180deg, #f7fbfb, #eef6f5);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.faq-card {
  padding: 24px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(28, 73, 86, .12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 49, 59, .08);
}

.faq-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.faq-card p {
  margin: 0;
  color: #52616a;
  font-size: 15px;
  line-height: 1.68;
}

.feature-panel,
.contact-card,
.form,
.admin-login,
.editor-block,
blockquote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: 28px;
}

.feature-panel.sticky {
  position: sticky;
  top: 96px;
}

.feature-panel h2,
.feature-panel h3 {
  margin-top: 0;
  line-height: 1.22;
  font-weight: 850;
}

.feature-panel ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stats div {
  padding: 34px 22px;
  background: var(--white);
}

.home-page .stats {
  background: rgba(217, 226, 231, .42);
  margin-bottom: 0;
}

.home-page .stats div,
.home-page .service-card,
.home-page blockquote,
.home-page .feature-panel {
  background: rgba(255, 255, 255, .94);
}

.home-page .section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(247, 250, 249, .9), rgba(232, 244, 242, .82));
}

.home-page .home-capability {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(63, 216, 223, .22), transparent 34%),
    linear-gradient(120deg, rgba(4, 18, 30, .96) 0%, rgba(5, 32, 44, .92) 48%, rgba(7, 55, 70, .82) 100%),
    url("consolenova-service-flow-bg.gif") center / cover no-repeat;
  color: var(--white);
}

.home-page .home-capability::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .85), rgba(0, 0, 0, .25));
  pointer-events: none;
}

.home-page .home-capability > * {
  position: relative;
  z-index: 1;
}

.home-page .home-capability h2 {
  color: var(--white);
  max-width: 860px;
}

.home-page .home-capability .content {
  color: rgba(235, 246, 248, .9);
}

.home-page .home-capability .eyebrow {
  color: #79e0e7;
}

.home-page .home-capability .feature-panel {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(255, 255, 255, .64);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.home-page .home-capability .feature-panel h3 {
  color: #12202a;
}

.home-page .home-capability .feature-panel li {
  margin-bottom: 10px;
}

.home-capability-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 22px;
}

.service-quick-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(127, 211, 215, .24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(86, 228, 238, .24), transparent 34%),
    linear-gradient(rgba(127, 211, 215, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 211, 215, .055) 1px, transparent 1px),
    linear-gradient(155deg, rgba(7, 28, 42, .96), rgba(3, 13, 24, .98));
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.service-quick-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  top: -96px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(86, 228, 238, .05), rgba(86, 228, 238, .28), rgba(216, 168, 63, .18), rgba(86, 228, 238, .05));
  animation: serviceSpin 16s linear infinite;
}

.quick-panel-head,
.quick-service-grid {
  position: relative;
  z-index: 1;
}

.quick-panel-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.quick-panel-head span {
  color: #79e0e7;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quick-panel-head strong {
  max-width: 360px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.18;
  font-weight: 900;
}

.quick-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.quick-service-grid a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  row-gap: 4px;
  min-height: 74px;
  padding: 15px 16px;
  color: rgba(242, 252, 253, .98);
  text-decoration: none;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(127, 211, 215, .16);
  border-radius: 8px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.quick-service-grid a::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 15px;
  color: rgba(121, 224, 231, .9);
  font-size: 18px;
  font-weight: 900;
}

.quick-service-grid a:hover {
  transform: translateY(-2px);
  background: rgba(127, 211, 215, .13);
  border-color: rgba(127, 211, 215, .38);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
}

.quick-service-grid a span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #081f31;
  background: linear-gradient(135deg, #79e0e7, #d8a83f);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
}

.quick-service-grid a strong {
  padding-right: 30px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.quick-service-grid a small {
  max-width: 330px;
  color: rgba(222, 241, 244, .76);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

@keyframes serviceSpin {
  to { transform: rotate(360deg); }
}

.home-page .home-services {
  background:
    linear-gradient(180deg, rgba(244, 250, 249, .95), rgba(231, 243, 241, .9)),
    url("consolenova-hero-bg-optimized.jpg") center / cover no-repeat;
}

.home-page .section.muted {
  background:
    linear-gradient(180deg, rgba(10, 35, 45, .9), rgba(13, 55, 66, .86)),
    url("consolenova-hero-bg-optimized.jpg") center / cover no-repeat;
}

.home-page .section.muted h2 {
  color: var(--white);
}

.home-page .section.muted .eyebrow {
  color: #79e0e7;
}

.stats strong {
  display: block;
  color: var(--teal);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 850;
}

.stats span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.card-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card-grid.spacious {
  margin-top: 36px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card h2,
.service-card h3 {
  margin: 0 0 10px;
  line-height: 1.22;
  font-weight: 850;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-card a {
  color: var(--teal);
  font-size: 15px;
  font-weight: 800;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tags.vertical {
  display: grid;
}

.tags span {
  padding: 7px 10px;
  border-radius: 8px;
  color: #0b5961;
  background: #e6f4f1;
  font-size: 13px;
  font-weight: 750;
}

.muted {
  background: #eef5f3;
}

blockquote {
  margin: 0;
  padding: 26px;
}

blockquote p {
  margin-top: 0;
  color: #334149;
  font-size: 16px;
  line-height: 1.7;
}

blockquote cite {
  color: var(--coral);
  font-style: normal;
  font-weight: 800;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.industry-grid div {
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.form {
  padding: 28px;
}

.contact-card {
  margin-top: 26px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-color: rgba(8, 127, 140, .22);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold));
}

.contact-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-card-head span {
  color: var(--coral);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
}

.contact-card h2,
.contact-card p {
  margin-top: 0;
}

.contact-card h2 {
  margin-bottom: 0;
  font-size: 27px;
  line-height: 1.16;
  font-weight: 850;
}

.contact-info-list {
  display: grid;
  gap: 14px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: #f8fbfa;
  border: 1px solid #e2eeeb;
  border-radius: 8px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 850;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.contact-info-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 15px;
}

.contact-info-item a {
  color: var(--teal);
  font-weight: 750;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  line-height: 1.45;
}

textarea {
  resize: vertical;
}

.success {
  padding: 12px 14px;
  color: #155c35;
  background: #dcf7e7;
  border-radius: 8px;
  font-weight: 800;
}

.error {
  padding: 12px 14px;
  color: #9f2f22;
  background: #ffe5df;
  border-radius: 8px;
  font-weight: 800;
}

.footer {
  padding: clamp(46px, 6vw, 72px) clamp(18px, 5vw, 70px) 30px;
  color: var(--white);
  background: #0f191d;
}

.footer h2,
.footer h3 {
  margin-top: 0;
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
  transition: transform .2s ease, background .2s ease;
}

.footer-logo img {
  width: 330px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-logo:hover {
  background: rgba(255, 255, 255, .98);
  transform: translateY(-2px);
}

.footer-brand p {
  max-width: 560px;
  margin: 0;
  color: #c8d6dc;
  font-size: 15px;
  line-height: 1.65;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .75fr 1.25fr;
  gap: clamp(26px, 5vw, 80px);
  margin-top: 34px;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: #c8d6dc;
  font-size: 15px;
  line-height: 1.45;
}

.footer-column h3 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 11px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
  color: var(--white);
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--teal);
  border-radius: 999px;
}

.footer-column a {
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact p {
  margin: 0 0 16px;
  color: #d8e3e7;
  font-size: 15px;
  line-height: 1.62;
}

.footer-contact span {
  display: block;
  margin-bottom: 3px;
  color: #7fd3d7;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.footer-contact a {
  display: inline;
  margin: 0;
  color: #d8e3e7;
}

.copyright {
  margin-top: 34px;
  color: #9badb5;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 20px;
  padding-left: 68px;
  font-size: 14px;
  line-height: 1.5;
}

.copyright-company {
  text-decoration: none;
  -webkit-text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(18, 61, 37, .34);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .16);
  z-index: -1;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 61, 37, .34);
}

.admin-body {
  min-height: 100vh;
  background: #edf3f1;
}

.admin-login {
  width: min(440px, calc(100% - 32px));
  margin: 9vh auto;
  padding: 30px;
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  padding: 26px;
  color: var(--white);
  background: #10191d;
}

.admin-sidebar h1 {
  color: var(--white);
}

.admin-sidebar a {
  display: block;
  margin: 8px 0;
  padding: 11px 12px;
  border-radius: 8px;
  color: #dce8ec;
  font-size: 15px;
  font-weight: 700;
}

.admin-sidebar a:hover {
  background: rgba(255, 255, 255, .1);
}

.admin-main {
  padding: clamp(22px, 4vw, 48px);
  overflow-x: auto;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.admin-cards div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-cards strong {
  display: block;
  color: var(--teal);
  font-size: 36px;
  font-weight: 850;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}

th {
  color: var(--ink);
  font-weight: 800;
}

td {
  color: #44525a;
}

.editor-block {
  margin-bottom: 22px;
  padding: 24px;
}

@media (max-width: 980px) {
  .site-header {
    top: 14px;
    left: 14px;
    right: 14px;
    padding: 9px 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    color: rgba(238, 248, 249, .92);
    background: linear-gradient(180deg, rgba(14, 42, 53, .98), rgba(7, 24, 33, .98));
    border: 1px solid rgba(127, 211, 215, .2);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
  }

  .nav.open {
    display: flex;
  }

  .nav-dropdown > a {
    padding: 0;
    color: rgba(238, 248, 249, .92);
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    max-height: none;
    padding: 8px 0 0 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    white-space: normal;
  }

  .split,
  .contact-layout,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .home-capability-side {
    position: static;
  }

  .service-quick-panel {
    padding: 20px;
  }

  .card-grid,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-sidebar {
    position: static;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .brand img {
    width: 220px;
  }

  .brand {
    gap: 8px;
    padding-right: 9px;
  }

  .brand-phone {
    min-height: 38px;
    padding-left: 8px;
  }

  .brand-phone strong {
    font-size: 13px;
  }

  .brand-phone span {
    font-size: 8px;
  }

  .nav {
    gap: 8px;
    font-size: 14px;
  }

  .nav .nav-cta {
    padding-inline: 12px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 210px;
    height: auto;
  }

  .brand-phone {
    display: none;
  }

  .brand {
    transform: translateY(4px);
    padding: 4px 7px;
  }

  .hero,
  .page-hero {
    min-height: 560px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .card-grid,
  .quote-grid,
  .industry-grid,
  .stats,
  .admin-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    display: grid;
  }

  .footer-logo {
    justify-self: start;
    padding: 5px 8px;
  }

  .footer-logo img {
    width: 220px;
  }

  .footer-brand p {
    text-align: left;
  }

  .copyright {
    padding-left: 0;
    padding-bottom: 68px;
  }

  .whatsapp-float {
    left: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}
