:root {
  --navy: #07111f;
  --navy-soft: #0d1a2b;
  --blue: #185adb;
  --cyan: #33c3ff;
  --yellow: #ffbf2f;
  --yellow-soft: #ffdf84;
  --paper: #f7f9fc;
  --white: #ffffff;
  --text: #122033;
  --muted: #607086;
  --line: rgba(18, 32, 51, 0.12);
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  color: #d8e9ff;
  background: #050b14;
  font-size: 13px;
  border-bottom: 1px solid rgba(51, 195, 255, 0.16);
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 750;
}

.topbar a {
  color: var(--yellow-soft);
}

.topbar span {
  color: var(--yellow-soft);
}

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

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 50%;
  overflow: hidden;
  color: var(--navy);
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand strong {
  display: block;
  color: white;
  font-size: 23px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--yellow-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.button,
.nav-cta,
.mobile-actions a,
.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 7px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-cta,
.button.primary,
.map-button {
  color: #09111c;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
  box-shadow: 0 16px 34px rgba(255, 191, 47, 0.26);
}

.button.secondary,
.button.outline {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  color: var(--blue);
  border-color: rgba(24, 90, 219, 0.25);
  background: white;
}

.button.dark {
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.button:hover,
.nav-cta:hover,
.map-button:hover {
  transform: translateY(-2px);
}

.mobile-actions {
  display: none;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.97) 0%, rgba(7, 17, 31, 0.86) 43%, rgba(7, 17, 31, 0.34) 100%),
    radial-gradient(circle at 74% 35%, rgba(51, 195, 255, 0.28), transparent 30%),
    url("assets/hero-electric-klima.png") center right / cover no-repeat,
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) 0.75fr;
  align-items: center;
  gap: 44px;
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.2vw, 84px);
  line-height: 0.98;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  font-weight: 650;
}

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

.hero-panel {
  display: grid;
  gap: 16px;
}

.rating-card,
.quick-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.rating-card span {
  color: var(--yellow);
  font-weight: 950;
  letter-spacing: 1px;
}

.rating-card strong,
.rating-card small,
.quick-card strong {
  display: block;
}

.rating-card strong,
.quick-card strong {
  margin-top: 6px;
  font-size: 25px;
}

.rating-card small,
.quick-card p {
  color: rgba(255, 255, 255, 0.72);
}

.quick-card p {
  margin: 10px 0 0;
}

.trust-strip {
  color: white;
  background: #08111e;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  min-height: 128px;
  padding: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.trust-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid span {
  display: block;
  color: var(--yellow);
  font-weight: 950;
}

.trust-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section h2,
.cta-band h2 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.02;
}

.section-head p,
.split-copy p,
.reviews-grid p,
.contact-card li {
  color: var(--muted);
  font-size: 17px;
}

.services {
  background: var(--paper);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.08);
}

.service-image {
  height: 170px;
  background-position: center;
  background-size: cover;
}

.service-image.electrical {
  background-image: url("assets/hero-electric-klima.png");
}

.service-image.panel {
  background-image: url("assets/electrical-panel.png");
}

.service-image.troubleshoot {
  background-image: url("assets/troubleshooting.png");
}

.service-image.ac {
  background-image: url("assets/ac-service.png");
}

.service-image.gate {
  background-image: url("assets/gate-automation.png");
}

.service-body {
  padding: 20px;
}

.service-body svg {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.7vw, 25px);
  line-height: 1.04;
}

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

.split {
  background: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-image {
  min-height: 470px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0), rgba(7, 17, 31, 0.08)),
    url("assets/ac-clean-wall.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 850;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 191, 47, 0.16);
}

.reviews {
  background: linear-gradient(135deg, #07111f, #10233b);
  color: white;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.reviews-header p,
.review-note {
  color: rgba(255, 255, 255, 0.72);
}

.rating-pill {
  min-width: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.rating-pill .stars {
  display: block;
  color: var(--yellow);
  font-size: 22px;
  letter-spacing: 2px;
}

.rating-pill strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 28px;
}

.rating-pill small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

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

.review-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.review-card::before {
  content: "Google";
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #07111f;
  background: var(--yellow-soft);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.review-top {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.review-top strong {
  font-size: 20px;
}

.review-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 750;
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.65;
}

.review-note {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 15px;
}

.cta-band {
  color: white;
  background:
    radial-gradient(circle at 12% 70%, rgba(255, 191, 47, 0.45), transparent 22%),
    linear-gradient(135deg, #185adb, #07111f);
}

.cta-inner {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-inner > div {
  max-width: 780px;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card,
.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.1);
}

.contact-card {
  padding: 34px;
}

.contact-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

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

.opening-hours {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  column-gap: 16px;
  align-items: start;
}

.opening-hours strong {
  grid-row: 1 / span 7;
}

.opening-hours span {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-emblem {
  max-width: 270px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 17, 31, 0.1);
}

.contact-emblem img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.1);
}

.map-card {
  position: relative;
  min-height: 430px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.map-button {
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #050b14;
}

.footer-inner {
  min-height: 185px;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr;
  gap: 34px;
  align-items: center;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-contact a {
  color: var(--yellow-soft);
  font-weight: 850;
}

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

@media (max-width: 900px) {
  .topbar,
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav {
    min-height: auto;
    padding: 15px 0 12px;
    justify-content: center;
  }

  .brand strong {
    font-size: 23px;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: min(640px, calc(100% - 28px));
    margin: 0 auto 12px;
  }

  .mobile-actions a {
    min-height: 42px;
    padding: 9px 6px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0;
    background-position: center right;
  }

  .hero-grid,
  .split-grid,
  .reviews-grid,
  .reviews-header,
  .review-list,
  .contact-grid,
  .footer-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

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

  .trust-grid div {
    min-height: auto;
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-grid div:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .split-image {
    min-height: 340px;
  }

  .cta-inner {
    min-height: 280px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer-inner {
    padding: 38px 0;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    background-position: 62% center;
  }

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

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

  .contact-card {
    padding: 24px;
  }

  .contact-emblem {
    max-width: 240px;
    margin-right: auto;
    margin-left: auto;
  }

  .opening-hours {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .opening-hours strong {
    grid-row: auto;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
  }

  .map-button {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .rating-pill {
    min-width: 0;
  }

  .review-card {
    min-height: auto;
    padding: 24px;
  }
}
