:root {
  --blue-950: #061a46;
  --blue-900: #08245d;
  --blue-800: #0c3584;
  --blue-700: #0f56cf;
  --blue-100: #eaf3ff;
  --orange-600: #f05a1a;
  --orange-500: #ff7a1a;
  --teal-700: #057065;
  --green-700: #148044;
  --ink: #101828;
  --muted: #5b6475;
  --line: #dbe4f0;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --shadow: 0 18px 48px rgba(6, 26, 70, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(219, 228, 240, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand img,
.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.05rem;
  line-height: 1.2;
}

.brand small,
.footer-brand small {
  display: block;
  color: var(--orange-600);
  font-size: 0.78rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav > a,
.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-950);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
}

.site-nav > a:hover,
.site-nav > a:focus,
.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  background: var(--blue-100);
  color: var(--blue-700);
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-item-mega {
  position: relative;
}

.nav-item-mega::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 15;
  width: min(960px, calc(100vw - 48px));
  height: 20px;
  transform: translateX(-50%);
}

.nav-item-mega .nav-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  width: min(960px, calc(100vw - 48px));
  padding: 18px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item-mega:hover .nav-link,
.nav-item-mega:focus-within .nav-link {
  background: var(--blue-100);
  color: var(--blue-700);
}

.nav-item-mega:hover .mega-menu,
.nav-item-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.mega-lead {
  position: relative;
  padding: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(8, 36, 93, 0.98), rgba(15, 86, 207, 0.92));
  border-radius: 8px;
  overflow: hidden;
}

.mega-lead::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  background: url("../images/webdunia-logo.png") no-repeat center / contain;
  opacity: 0.12;
  pointer-events: none;
}

.mega-lead > * {
  position: relative;
  z-index: 1;
}

.mega-lead p {
  margin: 0 0 10px;
  color: #ffd34f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-lead h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.12;
}

.mega-lead span {
  display: block;
  margin-top: 12px;
  color: #e5efff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.mega-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 20px;
  padding: 10px 13px;
  color: #ffffff;
  background: var(--orange-600);
  border-radius: 8px;
  font-weight: 900;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mega-group {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.mega-group h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1rem;
  line-height: 1.25;
}

.mega-group p {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.mega-group a {
  display: block;
  padding: 10px 11px;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
}

.mega-group a:hover,
.mega-group a:focus {
  border-color: #cfe1f8;
  background: var(--blue-100);
}

.mega-group strong,
.mega-group small {
  display: block;
}

.mega-group strong {
  color: var(--blue-900);
  font-size: 0.9rem;
  line-height: 1.25;
}

.mega-group small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--blue-900);
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-900);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  height: calc(100svh - 104px);
  max-height: 760px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(15, 86, 207, 0.12), transparent 20%),
    radial-gradient(circle at 84% 74%, rgba(240, 90, 26, 0.12), transparent 16%),
    linear-gradient(135deg, #f9fbff 0%, #eef5ff 54%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue-900), var(--orange-600), var(--teal-700));
}

.hero::after {
  content: "";
  position: absolute;
  top: 84px;
  right: max(20px, 5vw);
  width: min(34vw, 460px);
  aspect-ratio: 1 / 1;
  background: url("../images/webdunia-logo.png") no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  justify-self: end;
  padding: 30px;
  border: 1px solid rgba(12, 53, 132, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-visual-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.hero-visual-card strong,
.hero-visual-card p {
  display: block;
}

.hero-visual-card strong {
  margin-top: 18px;
  color: var(--blue-950);
  font-size: 1.55rem;
  line-height: 1.12;
}

.hero-visual-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hero-visual-grid span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid #cfe1f8;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange-600);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--blue-950);
  font-size: 4.7rem;
  line-height: 0.95;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  color: #263449;
  font-size: 1.25rem;
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions,
.banner-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.btn-primary {
  color: #ffffff;
  background: var(--orange-600);
  box-shadow: 0 14px 28px rgba(240, 90, 26, 0.22);
}

.btn-secondary {
  color: #ffffff;
  background: var(--green-700);
}

.btn-ghost {
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
}

.btn:hover,
.btn:focus,
.header-call:hover,
.header-call:focus {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin-top: 42px;
  border: 1px solid rgba(12, 53, 132, 0.16);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.quick-contact {
  background: var(--blue-950);
  color: #ffffff;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-contact-grid a {
  display: block;
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-contact-grid a:last-child {
  border-right: 0;
}

.quick-contact-grid span {
  display: block;
  color: #b9cff8;
  font-size: 0.92rem;
  font-weight: 800;
}

.quick-contact-grid strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.25;
}

.section {
  padding: 88px 0;
}

.intro-section,
.products-section,
.local-seo-section {
  background: var(--surface-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.split-grid h2,
.contact-panel h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 2.55rem;
  line-height: 1.08;
}

.section-heading p,
.section-copy,
.intro-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p:first-child,
.section-copy {
  margin-top: 0;
}

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

.service-card,
.product-card,
.cta-card,
.software-stack article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  min-height: 306px;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 5px;
  background: var(--orange-600);
}

.service-mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 54%, var(--orange-600) 55%, var(--orange-600) 100%);
}

.service-card h3,
.product-card h3,
.software-stack h3 {
  margin: 18px 0 10px;
  color: var(--blue-950);
  font-size: 1.24rem;
  line-height: 1.25;
}

.service-card p,
.software-stack p,
.cta-card span {
  margin: 0;
  color: var(--muted);
}

.service-card ul,
.contact-list,
.site-footer ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-card .text-link {
  margin-top: auto;
}

.service-card li,
.contact-list li,
.site-footer li {
  position: relative;
  padding-left: 18px;
  margin-top: 8px;
  color: #29374e;
  font-weight: 700;
}

.service-card li::before,
.contact-list li::before,
.site-footer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-600);
}

.cta-section {
  background: var(--blue-900);
  color: #ffffff;
}

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

.cta-card {
  padding: 28px;
  background: #ffffff;
  color: var(--ink);
}

.cta-card p {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin: 0 0 18px;
  padding: 6px 12px;
  color: #ffffff;
  background: var(--orange-600);
  border-radius: 8px;
  font-weight: 900;
}

.cta-card h2 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: 1.55rem;
  line-height: 1.18;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-700);
  font-weight: 900;
  border-bottom: 2px solid var(--orange-600);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  padding: 24px;
}

.product-card h3 {
  margin-top: 0;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid #cfe1f8;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.brand-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px;
  background: #ffffff;
  color: var(--blue-900);
  font-weight: 900;
}

.brand-strip-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.brand-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 20%, rgba(240, 90, 26, 0.14), transparent 18%),
    radial-gradient(circle at 76% 72%, rgba(15, 86, 207, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(6, 26, 70, 0.98) 0%, rgba(8, 36, 93, 0.95) 54%, rgba(10, 42, 109, 0.94) 100%);
}

.brand-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: max(-18px, 2vw);
  width: min(30vw, 400px);
  aspect-ratio: 1 / 1;
  background: url("../images/webdunia-logo.png") no-repeat center / contain;
  opacity: 0.08;
  transform: translateY(-50%);
  pointer-events: none;
}

.brand-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
}

.brand-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 3.7rem;
  line-height: 1.03;
}

.brand-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #e5efff;
  font-size: 1.12rem;
  font-weight: 600;
}

.brand-hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.brand-hero-panel strong,
.brand-hero-panel span {
  display: block;
}

.brand-hero-panel strong {
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.15;
}

.brand-hero-panel span {
  margin-top: 10px;
  color: #d9e8ff;
  font-weight: 800;
}

.brand-mini-cloud,
.brand-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-mini-cloud {
  margin-top: 20px;
}

.brand-mini-cloud small,
.brand-chip-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.brand-mini-cloud small {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-assurance-grid article,
.brand-category-card,
.brand-use-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.brand-assurance-grid article {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 110px;
  padding: 20px;
  background: var(--surface-soft);
}

.brand-assurance-grid span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 54%, var(--orange-600) 55%, var(--orange-600) 100%);
}

.brand-assurance-grid strong {
  color: var(--blue-950);
  font-size: 1.06rem;
  line-height: 1.3;
}

.brand-category-section {
  background: var(--surface-soft);
}

.brand-category-grid,
.brand-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.brand-logo-grid-small {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 116px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-logo-card:hover,
.brand-logo-card:focus {
  transform: translateY(-2px);
  border-color: #cfe1f8;
  box-shadow: var(--shadow);
}

.brand-logo-card img {
  width: 100%;
  max-width: 112px;
  height: 46px;
  object-fit: contain;
}

.brand-logo-card small {
  display: block;
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.brand-logo-card-small {
  min-height: 100px;
  padding: 14px 10px;
}

.brand-logo-card-small img {
  max-width: 92px;
  height: 38px;
}

.brand-showcase-section {
  background: #ffffff;
}

.brand-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-category-card,
.brand-use-grid article {
  padding: 24px;
}

.brand-showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(6, 26, 70, 0.06);
}

.brand-showcase-media {
  border-bottom: 1px solid var(--line);
  background: #f7f9fd;
}

.brand-showcase-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.showcase-image--antivirus {
  object-position: center 78%;
}

.showcase-image--laptop {
  object-position: 84% 16%;
}

.showcase-image--printer {
  object-position: 56% 41%;
}

.showcase-image--desktop-parts {
  object-position: 82% 18%;
}

.showcase-image--cctv {
  object-position: 82% 22%;
}

.showcase-image--hard-disk {
  object-position: 50% 47%;
}

.showcase-image--ram {
  object-position: 28% 42%;
}

.showcase-image--cabinet-smps {
  object-position: 68% 46%;
}

.brand-showcase-content {
  padding: 24px;
}

.brand-showcase-content > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--orange-600);
  background: rgba(240, 90, 26, 0.08);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--orange-600);
  background: rgba(240, 90, 26, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn-whatsapp {
  color: #ffffff;
  background: var(--green-700);
  box-shadow: 0 14px 28px rgba(20, 128, 68, 0.18);
}

.btn-accent {
  color: #ffffff;
  background: var(--orange-600);
  box-shadow: 0 14px 28px rgba(240, 90, 26, 0.22);
}

.brand-clean-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
  background:
    radial-gradient(circle at 84% 18%, rgba(15, 86, 207, 0.12), transparent 22%),
    radial-gradient(circle at 14% 18%, rgba(240, 90, 26, 0.08), transparent 20%),
    linear-gradient(180deg, #f9fbff 0%, #eef4ff 54%, #ffffff 100%);
}

.brand-clean-hero::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -30px;
  width: min(30vw, 320px);
  aspect-ratio: 1 / 1;
  background: url("../images/webdunia-logo.png") no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
}

.brand-clean-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: center;
}

.brand-clean-copy h1 {
  margin: 16px 0 0;
  color: var(--blue-950);
  font-size: 3.4rem;
  line-height: 1.04;
}

.brand-clean-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.brand-clean-actions,
.brand-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-clean-actions {
  margin-top: 28px;
}

.brand-clean-sidecard {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.brand-sidecard-top span,
.brand-sidecard-top strong {
  display: block;
}

.brand-sidecard-top span {
  color: var(--orange-600);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-sidecard-top strong {
  margin-top: 8px;
  color: var(--blue-950);
  font-size: 1.3rem;
  line-height: 1.25;
}

.brand-sidecard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.brand-sidecard-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cfe0f8;
  border-radius: 8px;
  background: #edf4ff;
  color: var(--blue-900);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.brand-clean-section {
  padding: 26px 0 90px;
  background: var(--surface-soft);
}

.brand-clean-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.brand-clean-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(6, 26, 70, 0.06);
}

.brand-clean-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.brand-clean-visual h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.55rem;
  line-height: 1.18;
}

.brand-clean-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--orange-600) 100%);
  box-shadow: 0 16px 32px rgba(12, 53, 132, 0.18);
}

.brand-clean-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 128px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-mark:hover,
.brand-mark:focus {
  transform: translateY(-2px);
  border-color: #cfe1f8;
  box-shadow: var(--shadow);
}

.brand-mark-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 12px;
  border-radius: 8px;
  background: #f8fbff;
  border: 1px solid #e4edf8;
}

.brand-mark img {
  width: 100%;
  max-width: 126px;
  height: 42px;
  object-fit: contain;
}

.brand-mark-label {
  display: block;
  margin-top: 10px;
  color: var(--blue-900);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.brand-section-actions {
  margin-top: 22px;
}

.brand-clean-cta {
  padding: 0 0 90px;
  background: var(--surface-soft);
}

.brand-clean-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 26, 70, 0.06);
}

.brand-clean-cta-wrap h2 {
  margin: 14px 0 0;
  color: var(--blue-950);
  font-size: 2.2rem;
  line-height: 1.12;
}

.brand-clean-cta-wrap p {
  margin: 14px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-weight: 600;
}

.brand-showcase-content h3 {
  margin: 14px 0 10px;
  color: var(--blue-950);
  font-size: 1.35rem;
  line-height: 1.22;
}

.brand-showcase-content p {
  margin: 0;
  color: var(--muted);
}

.brand-category-card h3,
.brand-use-grid h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.25rem;
  line-height: 1.25;
}

.brand-category-card p,
.brand-use-grid p {
  color: var(--muted);
}

.brand-chip-cloud {
  margin-top: 18px;
}

.brand-chip-cloud span {
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid #cfe1f8;
}

.software-section {
  background: #ffffff;
}

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

.feature-list span {
  display: block;
  min-height: 54px;
  padding: 13px 14px;
  border-left: 4px solid var(--orange-600);
  background: var(--surface-soft);
  color: var(--blue-950);
  font-weight: 800;
  border-radius: 8px;
}

.software-stack {
  display: grid;
  gap: 14px;
}

.software-stack article {
  padding: 24px;
}

.software-stack h3 {
  margin-top: 0;
}

.banner-section {
  background: #ffffff;
}

.banner-carousel {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

.banner-frame {
  position: relative;
  aspect-ratio: 1942 / 809;
  background: var(--blue-950);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(6, 26, 70, 0.9);
  border-radius: 8px;
}

.banner-caption span {
  color: #ffd34f;
  font-weight: 900;
}

.banner-caption strong {
  line-height: 1.2;
}

.banner-controls {
  justify-content: space-between;
  padding: 14px;
  background: var(--blue-950);
}

.banner-controls button {
  min-height: 40px;
  padding: 9px 12px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  font-weight: 800;
}

.banner-dots {
  display: flex;
  gap: 8px;
}

.banner-dots button {
  width: 36px;
  min-height: 12px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
}

.banner-dots button.is-active {
  background: var(--orange-600);
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.contact-panel {
  min-width: 0;
}

.contact-list a {
  color: var(--blue-700);
  font-weight: 900;
}

.contact-panel iframe {
  width: 100%;
  height: 330px;
  margin-top: 26px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-950);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(15, 86, 207, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-alert {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.form-alert-success {
  color: #0b5d36;
  background: #dff8e9;
  border: 1px solid #9be1b7;
}

.form-alert-error {
  color: #8a1b1b;
  background: #ffe8e8;
  border: 1px solid #f5adad;
}

.site-footer {
  color: #d8e7ff;
  background: var(--blue-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
  padding: 56px 0 36px;
}

.footer-brand strong {
  color: #ffffff;
}

.footer-brand small {
  color: #ffb15c;
}

.site-footer p,
.site-footer li {
  color: #d8e7ff;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1.2rem;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-height: 0;
  padding: 0;
  color: #ffffff;
  background: var(--green-700);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(20, 128, 68, 0.3);
}

.floating-whatsapp .whatsapp-icon {
  width: 28px;
  height: 28px;
}

.floating-whatsapp .whatsapp-icon svg {
  width: 28px;
  height: 28px;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.split-grid > .action-buttons,
.cta-grid > .action-buttons {
  grid-column: 1 / -1;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 15px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  border: 1px solid transparent;
}

.action-call {
  color: #ffffff;
  background: var(--blue-900);
}

.action-whatsapp {
  color: #ffffff;
  background: var(--green-700);
}

.action-quote {
  color: #ffffff;
  background: var(--orange-600);
}

.whatsapp-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.whatsapp-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.service-hero-page {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 24%, rgba(240, 90, 26, 0.18), transparent 18%),
    radial-gradient(circle at 70% 68%, rgba(15, 86, 207, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(6, 26, 70, 0.98) 0%, rgba(8, 36, 93, 0.95) 56%, rgba(10, 42, 109, 0.94) 100%);
}

.service-hero-page::after {
  content: "";
  position: absolute;
  top: 50%;
  right: max(-20px, 2vw);
  width: min(32vw, 420px);
  aspect-ratio: 1 / 1;
  background: url("../images/webdunia-logo.png") no-repeat center / contain;
  opacity: 0.08;
  transform: translateY(-50%);
  pointer-events: none;
}

.service-link-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.service-link-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
}

.service-link-bar > span {
  color: var(--orange-600);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-link-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid #cfe1f8;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.service-link-bar a.is-active {
  color: #ffffff;
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.service-directory-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 20%, rgba(240, 90, 26, 0.14), transparent 18%),
    radial-gradient(circle at 76% 68%, rgba(15, 86, 207, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(6, 26, 70, 0.98) 0%, rgba(8, 36, 93, 0.95) 52%, rgba(10, 42, 109, 0.94) 100%);
}

.service-directory-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: max(-20px, 2vw);
  width: min(30vw, 400px);
  aspect-ratio: 1 / 1;
  background: url("../images/webdunia-logo.png") no-repeat center / contain;
  opacity: 0.08;
  transform: translateY(-50%);
  pointer-events: none;
}

.service-directory-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
}

.service-directory-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: 3.7rem;
  line-height: 1.03;
}

.service-directory-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #e5efff;
  font-size: 1.12rem;
  font-weight: 600;
}

.service-directory-summary {
  display: grid;
  gap: 14px;
}

.service-directory-summary article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.service-directory-summary strong,
.service-directory-summary span {
  display: block;
}

.service-directory-summary strong {
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.15;
}

.service-directory-summary span {
  margin-top: 6px;
  color: #d9e8ff;
  font-weight: 800;
}

.service-category-block + .service-category-block {
  margin-top: 62px;
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-directory-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(6, 26, 70, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-directory-card:hover,
.service-directory-card:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.service-directory-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.service-directory-card span,
.service-directory-card strong,
.service-directory-card small {
  display: block;
}

.service-directory-card span {
  color: var(--orange-600);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-directory-card strong {
  margin-top: 8px;
  color: var(--blue-950);
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-directory-card small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 40px;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #d9e8ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: #ffffff;
}

.breadcrumbs strong {
  color: #ffd34f;
}

.service-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: 3.7rem;
  line-height: 1.02;
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #e8f1ff;
  font-size: 1.15rem;
  font-weight: 600;
}

.service-hero-card {
  padding: 28px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-hero-card img {
  width: 108px;
  height: 108px;
  margin-bottom: 20px;
  object-fit: contain;
}

.service-hero-card strong,
.service-hero-card span {
  display: block;
}

.service-hero-card strong {
  color: var(--blue-900);
  font-size: 1.45rem;
  line-height: 1.18;
}

.service-hero-card span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.service-page-actions .action-call,
.service-page-actions .action-whatsapp,
.service-page-actions .action-quote,
.final-actions .action-call,
.final-actions .action-whatsapp,
.final-actions .action-quote {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.service-content-section,
.service-faq-section {
  background: #ffffff;
}

.service-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.service-two-column h2 {
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: 2.45rem;
  line-height: 1.08;
}

.service-two-column p {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-highlight-grid article,
.service-solution-grid article,
.process-list article,
.faq-list article,
.related-service-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-highlight-grid article {
  min-height: 150px;
  padding: 22px;
  background: var(--surface-soft);
}

.service-highlight-grid span {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 54%, var(--orange-600) 55%, var(--orange-600) 100%);
}

.service-highlight-grid h3 {
  margin: 18px 0 0;
  color: var(--blue-950);
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-solutions-section,
.related-service-section,
.not-found-section {
  background: var(--surface-soft);
}

.service-solution-grid,
.related-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-solution-grid article {
  min-height: 210px;
  padding: 24px;
}

.service-solution-grid h3,
.faq-list h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 1.16rem;
  line-height: 1.25;
}

.service-solution-grid p,
.faq-list p,
.related-service-grid small {
  margin: 0;
  color: var(--muted);
}

.service-process-section {
  background: var(--blue-950);
  color: #ffffff;
}

.service-process-section .section-kicker {
  color: #ffd34f;
}

.service-process-section h2,
.service-process-section p {
  color: #ffffff;
}

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

.process-list article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: var(--orange-600);
  border-radius: 8px;
  font-weight: 900;
}

.process-list strong {
  color: #ffffff;
  font-size: 1.08rem;
}

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

.faq-list article {
  padding: 22px;
}

.related-service-grid a {
  display: block;
  min-height: 185px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-service-grid a:hover,
.related-service-grid a:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.related-service-grid span,
.related-service-grid strong,
.related-service-grid small {
  display: block;
}

.related-service-grid span {
  color: var(--orange-600);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-service-grid strong {
  margin-top: 8px;
  color: var(--blue-950);
  font-size: 1.2rem;
  line-height: 1.25;
}

.related-service-grid small {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-final-cta {
  padding: 72px 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.service-final-cta h2 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1.1;
}

.service-final-cta p:not(.section-kicker) {
  max-width: 720px;
  color: #e5efff;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.quote-modal.is-open {
  display: flex;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 70, 0.72);
  backdrop-filter: blur(6px);
}

.quote-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(6, 26, 70, 0.32);
}

.quote-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--blue-950);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.8rem;
  line-height: 1;
}

.quote-dialog-heading {
  padding-right: 46px;
  margin-bottom: 20px;
}

.quote-dialog-heading h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 2rem;
  line-height: 1.1;
}

.quote-dialog-heading span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-950);
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(15, 86, 207, 0.12);
}

body.quote-open {
  overflow: hidden;
}

@media (max-width: 1040px) {
  .header-inner {
    min-height: 76px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .site-nav .nav-link {
    padding: 12px;
  }

  .nav-item,
  .nav-item-mega {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .nav-item-mega::after {
    display: none;
  }

  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

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

  .nav-item-mega:hover .mega-menu,
  .nav-item-mega:focus-within .mega-menu {
    transform: none;
  }

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

  .header-call {
    display: none;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .services-grid,
  .cta-grid,
  .quick-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-contact-grid a:last-child {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .brand-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-grid,
  .split-grid,
  .hero-grid,
  .brand-clean-hero-grid,
  .brand-clean-grid,
  .brand-hero-grid,
  .service-directory-hero-grid,
  .service-hero-grid,
  .service-two-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual-card,
  .brand-clean-sidecard,
  .service-directory-summary,
  .service-hero-card {
    max-width: 380px;
  }

  .service-hero-card {
    max-width: 360px;
  }

  .hero-visual-card {
    justify-self: start;
  }

  .service-solution-grid,
  .related-service-grid,
  .service-directory-grid,
  .brand-assurance-grid,
  .brand-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-clean-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 680px;
    height: auto;
    align-items: flex-end;
    padding: 120px 0 58px;
    background:
      radial-gradient(circle at 82% 18%, rgba(15, 86, 207, 0.12), transparent 20%),
      radial-gradient(circle at 74% 74%, rgba(240, 90, 26, 0.12), transparent 18%),
      linear-gradient(180deg, #f9fbff 0%, #eef5ff 56%, #ffffff 100%);
  }

  .hero::after {
    top: 120px;
    right: -12px;
    width: min(54vw, 280px);
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-stats,
  .services-grid,
  .cta-grid,
  .quick-contact-grid,
  .product-grid,
  .feature-list,
  .footer-grid,
  .hero-visual-grid,
  .service-highlight-grid,
  .service-solution-grid,
  .related-service-grid,
  .service-directory-grid,
  .brand-assurance-grid,
  .brand-clean-grid,
  .brand-category-grid,
  .brand-use-grid,
  .brand-showcase-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .brand-logo-grid,
  .brand-logo-grid-small,
  .brand-logo-wall,
  .brand-sidecard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats div,
  .quick-contact-grid a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-contact-grid a:last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .section-heading h2,
  .split-grid h2,
  .contact-panel h2,
  .service-two-column h2,
  .service-final-cta h2 {
    font-size: 2rem;
  }

  .service-hero-page {
    padding: 70px 0;
  }

  .service-directory-hero {
    padding: 70px 0;
  }

  .brand-hero {
    padding: 70px 0;
  }

  .brand-clean-hero {
    padding: 72px 0 52px;
  }

  .service-hero-copy h1 {
    font-size: 2.45rem;
  }

  .service-directory-hero h1 {
    font-size: 2.5rem;
  }

  .brand-hero h1 {
    font-size: 2.5rem;
  }

  .brand-clean-copy h1 {
    font-size: 2.5rem;
  }

  .service-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .action-buttons {
    align-items: stretch;
  }

  .action-btn,
  .brand-clean-actions .btn,
  .brand-section-actions .btn {
    flex: 1 1 100%;
  }

  .quote-dialog {
    padding: 22px;
  }

  .quote-dialog-heading {
    padding-right: 34px;
  }

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

  .brand-strip-footer {
    justify-content: flex-start;
  }

  .banner-frame {
    aspect-ratio: 16 / 9;
  }

  .banner-slide img {
    object-fit: contain;
    background: #ffffff;
  }

  .banner-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    font-size: 0.92rem;
  }

  .banner-controls {
    gap: 12px;
  }

  .banner-dots {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .banner-controls button {
    flex: 1;
  }

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

  .contact-form {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .brand-clean-cta-wrap {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-stats strong,
  .quick-contact-grid strong {
    font-size: 1.1rem;
  }
}
