:root {
  --eg-blue: #1e88ff;
  --eg-blue-dark: #005bd6;
  --eg-cyan: #38d5ff;
  --eg-dark: #07111f;
  --eg-navy: #0b1729;
  --eg-slate: #263244;
  --eg-muted: #667085;
  --eg-light: #f5f8fc;
  --eg-white: #ffffff;
  --eg-border: #dce6f2;
  --eg-soft-blue: #eaf4ff;
  --eg-shadow: 0 18px 45px rgba(7, 17, 31, 0.12);
  --eg-shadow-soft: 0 10px 28px rgba(7, 17, 31, 0.08);
  --eg-radius: 22px;
  --eg-radius-sm: 14px;
  --eg-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--eg-dark);
  background: var(--eg-white);
  line-height: 1.65;
}

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

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

p {
  color: var(--eg-muted);
}

strong {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 31, 0.96);
  color: var(--eg-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: var(--eg-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 12px;
  margin-right: 10px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 30% 25%, var(--eg-cyan), transparent 30%),
    linear-gradient(135deg, var(--eg-blue), var(--eg-blue-dark));
  box-shadow: 0 0 25px rgba(56, 213, 255, 0.35);
}

.logo span {
  color: var(--eg-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a:hover {
  color: var(--eg-white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--eg-blue), var(--eg-blue-dark));
  color: var(--eg-white) !important;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(30, 136, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(30, 136, 255, 0.36);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 24px 96px;
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 213, 255, 0.22), transparent 32%),
    radial-gradient(circle at 80% 22%, rgba(30, 136, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0d2240 55%, #102f58 100%);
  color: var(--eg-white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 360px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 72px
    );
  transform: rotate(-4deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--eg-max);
  margin: 0 auto;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
  margin: 0 0 28px;
}

.hero p {
  font-size: 1.24rem;
  color: #d9ecff;
  max-width: 760px;
  margin-bottom: 28px;
}

.section {
  padding: 78px 24px;
}

.section > h2,
.section > p,
.section > .grid,
.section > .card,
.section > form,
.section > .button {
  max-width: var(--eg-max);
  margin-left: auto;
  margin-right: auto;
}

.section-light {
  background:
    linear-gradient(180deg, var(--eg-light), #ffffff);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.14;
  letter-spacing: -0.045em;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--eg-dark);
}

.section > p {
  font-size: 1.08rem;
  max-width: 880px;
  margin-bottom: 32px;
}

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

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--eg-border);
  border-radius: var(--eg-radius);
  padding: 28px;
  box-shadow: var(--eg-shadow-soft);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--eg-blue), var(--eg-cyan));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--eg-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: var(--eg-dark);
}

.card p {
  margin-bottom: 0;
}

.card a:not(.button) {
  display: inline-block;
  margin-top: 16px;
  font-weight: 900;
  color: var(--eg-blue-dark);
}

.card a:not(.button)::after {
  content: " →";
}

.site-footer {
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 213, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--eg-dark), #020712);
  color: var(--eg-white);
  padding: 44px 24px;
}

.footer-grid {
  max-width: var(--eg-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong {
  font-size: 1.2rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid var(--eg-border);
  border-radius: 14px;
  font: inherit;
  color: var(--eg-dark);
  background: var(--eg-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--eg-blue);
  box-shadow: 0 0 0 4px rgba(30, 136, 255, 0.12);
}

textarea {
  resize: vertical;
}

label {
  display: inline-block;
  margin-bottom: 4px;
}

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

.estimate-form {
  max-width: 980px;
}

.form-note {
  color: var(--eg-muted);
  font-size: 0.95rem;
}

button.button {
  border: 0;
}

.hero .button + .button {
  margin-left: 10px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

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

  .hero {
    padding: 82px 24px 76px;
  }

  .hero h1 {
    letter-spacing: -0.055em;
  }

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

@media (max-width: 560px) {
  .nav-links {
    gap: 12px;
    font-size: 0.88rem;
  }

  .nav-links .button {
    width: 100%;
  }

  .hero {
    padding: 70px 20px;
  }

  .section {
    padding: 58px 20px;
  }

  .card {
    padding: 22px;
  }
}

.eyebrow {
  color: var(--eg-cyan);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-strip {
  max-width: var(--eg-max);
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 24px;
}

.trust-strip div {
  background: var(--eg-white);
  border: 1px solid var(--eg-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--eg-shadow-soft);
}

.trust-strip strong {
  display: block;
  font-size: 1rem;
  color: var(--eg-dark);
}

.trust-strip span {
  display: block;
  color: var(--eg-muted);
  font-size: 0.88rem;
  margin-top: 4px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--eg-soft-blue);
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.split-section {
  max-width: var(--eg-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.split-section > * {
  max-width: none;
}

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

.mini-feature {
  background: var(--eg-white);
  border: 1px solid var(--eg-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--eg-shadow-soft);
}

.mini-feature strong {
  display: block;
  color: var(--eg-dark);
  font-size: 1.05rem;
}

.mini-feature span {
  display: block;
  color: var(--eg-muted);
  margin-top: 4px;
}

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

.review-callout {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 213, 255, 0.16), transparent 35%),
    linear-gradient(135deg, #07111f, #102f58);
  color: var(--eg-white);
}

.review-callout h2,
.review-callout p {
  color: var(--eg-white);
}

.review-callout p {
  max-width: 850px;
}

.area-tags {
  max-width: var(--eg-max);
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  background: var(--eg-white);
  border: 1px solid var(--eg-border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--eg-slate);
  box-shadow: var(--eg-shadow-soft);
}


@media (max-width: 900px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 20px;
  }
}

.policy-card {
  max-width: 920px !important;
}

.policy-card h2 {
  font-size: 1.45rem;
  margin-top: 34px;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.policy-card h2:first-of-type {
  margin-top: 18px;
}

.policy-card ul {
  color: var(--eg-muted);
  padding-left: 22px;
}

.policy-card li {
  margin-bottom: 8px;
}

.policy-card a {
  color: var(--eg-blue-dark);
  font-weight: 800;
}

.policy-card h2 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.policy-card h3 {
  font-size: 1.05rem;
  margin-top: 26px;
  margin-bottom: 8px;
  color: var(--eg-dark);
}

.policy-card p,
.policy-card li {
  font-size: 1rem;
}

.area-tags a {
  background: var(--eg-white);
  border: 1px solid var(--eg-border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--eg-slate);
  box-shadow: var(--eg-shadow-soft);
}
.site-footer {
  padding: 56px 22px 26px;
}

.footer-grid {
  max-width: var(--eg-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: var(--eg-max);
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-links .button {
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav-links .button {
    grid-column: 1 / -1;
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}
.form-note {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 18px 0;
}

.form-note p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--eg-muted);
  margin: 0 0 8px;
}

.form-note p:last-child {
  margin-bottom: 0;
}

.form-note a {
  font-weight: 800;
  color: var(--eg-blue-dark);
}
.trust-card .card-icon {
  margin-bottom: 14px;
}

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

.trust-card p {
  margin-bottom: 0;
}

.final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2,
.final-cta p {
  text-align: center;
}

.final-cta .button,
.final-cta a.button {
  display: inline-flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  margin: 18px auto 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.logo::before {
  display: none;
}

.hero-media {
  max-width: var(--eg-max);
  margin: 34px auto 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--eg-shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-media img {
  width: 100%;
  height: min(460px, 52vw);
  object-fit: cover;
  display: block;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.image-card-content {
  padding: 24px;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.brand-logo-card {
  background: var(--eg-white);
  border: 1px solid var(--eg-border);
  border-radius: 20px;
  padding: 20px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--eg-shadow-soft);
}

.brand-logo-card img {
  max-width: 160px;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
}

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

.service-image-strip img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  box-shadow: var(--eg-shadow-soft);
  border: 1px solid var(--eg-border);
}

@media (max-width: 980px) {
  .brand-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-image-strip {
    grid-template-columns: 1fr;
  }
}

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

  .hero-media img {
    height: 300px;
  }

  /* ElectroGizmo logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.logo::before {
  display: none !important;
  content: none !important;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 560px) {
  .logo-img {
    height: 44px;
  }
}

/* Service page featured image and gallery */
.service-feature-image {
  max-width: var(--eg-max);
  margin: 32px auto 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--eg-shadow);
  border: 1px solid var(--eg-border);
  background: var(--eg-white);
}

.service-feature-image img {
  width: 100%;
  height: min(520px, 54vw);
  object-fit: cover;
  display: block;
}

.project-gallery {
  max-width: var(--eg-max);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-gallery figure {
  margin: 0;
  background: var(--eg-white);
  border: 1px solid var(--eg-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--eg-shadow-soft);
}

.project-gallery img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  display: block;
}

.project-gallery figcaption {
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--eg-slate);
}

@media (max-width: 900px) {
  .project-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .service-feature-image img {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .service-feature-image img {
    height: 280px;
  }
}

/* Horizontal scrolling service galleries */
.scroll-gallery {
  max-width: var(--eg-max);
  margin: 34px auto 0;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-gallery figure {
  flex: 0 0 340px;
  margin: 0;
  background: var(--eg-white);
  border: 1px solid var(--eg-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--eg-shadow-soft);
  scroll-snap-align: start;
}

.scroll-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.scroll-gallery figcaption {
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--eg-slate);
}

.scroll-gallery::-webkit-scrollbar {
  height: 10px;
}

.scroll-gallery::-webkit-scrollbar-track {
  background: #eaf4ff;
  border-radius: 999px;
}

.scroll-gallery::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--eg-blue), var(--eg-blue-dark));
  border-radius: 999px;
}

@media (max-width: 560px) {
  .scroll-gallery {
    padding-bottom: 14px;
  }

  .scroll-gallery figure {
    flex-basis: 82vw;
  }

  .scroll-gallery img {
    height: 220px;
  }
}

.grid .image-card {
  height: 100%;
}

.image-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.image-card-content a {
  margin-top: auto;
}

/* Click-to-expand gallery lightbox */
.scroll-gallery img {
  cursor: zoom-in;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 17, 31, 0.92);
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox-inner {
  max-width: min(1100px, 94vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  background: #ffffff;
}

.gallery-lightbox-caption {
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  font-size: 1rem;
}

.gallery-lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* Commercial Technology offer block */
.commercial-offer-card {
  max-width: var(--eg-max);
  background:
    radial-gradient(circle at 12% 15%, rgba(56, 213, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f5f8fc);
}

.commercial-offer-card h2 {
  margin-bottom: 16px;
}

.commercial-offer-card > p {
  max-width: 860px;
}

.commercial-offer-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
}

.commercial-offer-grid div {
  background: #ffffff;
  border: 1px solid var(--eg-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--eg-shadow-soft);
}

.commercial-offer-grid strong {
  display: block;
  color: var(--eg-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.commercial-offer-grid p {
  margin: 0;
}

@media (max-width: 900px) {
  .commercial-offer-grid {
    grid-template-columns: 1fr;
  }
}

.headline-line {
  display: block;
}

/* Commercial Technology headline layout */
.commercial-headline {
  max-width: 1180px;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  letter-spacing: -0.045em;
}

.commercial-headline .headline-line {
  display: block;

}

.commercial-headline .no-break {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .commercial-headline .headline-line {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }
  .commercial-headline .no-break {  
    white-space: normal;
  }
}

/* Make linked cards fully clickable */
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link .card {
  height: 100%;
}

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

.card-link .learn-more {
  display: inline-block;
  margin-top: 16px;
  font-weight: 900;
  color: var(--eg-blue-dark);
}

.card-link .learn-more::after {
  content: " →";
}

/* BAM preferred landing page */
.bam-hero {
  background:
    radial-gradient(circle at 15% 18%, rgba(56, 213, 255, 0.24), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(30, 136, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #102f58 60%, #0b4f8f 100%);
}

/* BAM partner logo */
.bam-partner-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #07111f;
  border-radius: 22px;
  padding: 14px 18px;
  margin-bottom: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.bam-partner-logo {
  width: min(420px, 82vw);
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 560px) {
  .bam-partner-logo-wrap {
    padding: 10px 12px;
    border-radius: 18px;
  }

  .bam-partner-logo {
    width: min(320px, 86vw);
  }
}

.bam-partner-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 22px;
  padding: 14px 18px;
  margin-bottom: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.bam-partner-logo {
  width: min(420px, 82vw);
  height: auto;
  display: block;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
}

/* Final headline letter spacing adjustment */
.hero h1,
.hero .commercial-headline {
  letter-spacing: -0.025em !important;
}

.section h2 {
  letter-spacing: -0.025em !important;
}

.reviews-widget-card {
  max-width: var(--eg-max);
  margin: 0 auto;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--eg-border);
  border-radius: 28px;
  box-shadow: var(--eg-shadow-soft);
}

@media (max-width: 700px) {
  .reviews-widget-card {
    padding: 18px;
    border-radius: 22px;
  }
}

.center-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.reviews-widget-card {
  max-width: var(--eg-max);
  margin: 0 auto;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--eg-border);
  border-radius: 28px;
  box-shadow: var(--eg-shadow-soft);
}

.reviews-widget-center {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.reviews-widget-center > div {
  width: 100%;
}