:root {
  --bg: #071827;
  --bg-2: #0B2135;
  --card: rgba(255,255,255,0.055);
  --card-strong: rgba(255,255,255,0.085);
  --line: rgba(255,255,255,0.105);
  --text: #F6FAFF;
  --muted: #A8B5C4;
  --blue: #3EA0FF;
  --blue-2: #1E88E5;
  --white: #FFFFFF;
  --light: #F4F8FC;
  --ice: #EAF2FA;
  --ink: #102033;
  --ink-muted: #607083;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0,0,0,0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #071827;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}

.menu a:hover {
  color: var(--white);
}

.nav-contact {
  display: flex;
  gap: 20px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  padding: 96px 0 96px;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 25%, rgba(62,160,255,0.20), transparent 34%),
    linear-gradient(145deg, #071827 0%, #082034 58%, #0B2742 100%);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,0.7) 62%, transparent 100%);
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.5;
  pointer-events: none;
}

.glow-one {
  width: 280px;
  height: 280px;
  right: 7%;
  top: 8%;
  background: rgba(30,136,229,0.20);
}

.glow-two {
  width: 300px;
  height: 300px;
  left: 35%;
  bottom: -130px;
  background: rgba(62,160,255,0.12);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px;
  margin-bottom: 36px;
  color: var(--blue);
  background: rgba(62,160,255,0.10);
  border: 1px solid rgba(62,160,255,0.35);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.085em;
  font-size: 12px;
  font-weight: 900;
}

.badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(62,160,255,0.9);
}

h1 {
  margin: 0 0 28px;
  max-width: 820px;
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(46px, 6.5vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

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

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--white);
  background: var(--blue-2);
  border: 1px solid var(--blue-2);
}

.primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.secondary {
  color: var(--ink);
  border: 1px solid rgba(16,32,51,0.22);
  background: transparent;
}

.secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero .secondary,
.audit-hero .secondary {
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

.hero .secondary:hover,
.audit-hero .secondary:hover {
  border-color: rgba(62,160,255,0.55);
  color: var(--text);
}

.hero-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 18px;
}

.hero-panel p {
  color: var(--muted);
  margin-bottom: 26px;
}

.card-kicker,
.section-label {
  margin: 0 0 16px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 18px;
  font-weight: 900;
}

.panel-list {
  display: grid;
  gap: 12px;
}

.panel-list div {
  padding: 14px 16px;
  border-radius: 12px;
  color: #D8E5F2;
  background: rgba(6,20,34,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.copy p,
.section-head p,
.contact-layout p {
  color: var(--ink-muted);
  font-size: 18px;
}

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

.offer {
  background: #FFFFFF;
}

.section-head {
  max-width: 840px;
  margin-bottom: 42px;
}

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

.offer-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid #DDE7F1;
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(16,32,51,0.06);
}

.offer-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  color: var(--blue-2);
  background: #E9F4FF;
  border-radius: 14px;
  font-weight: 900;
}

.offer-card h3,
.principles h3,
.audience-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.offer-card p,
.audience-grid p {
  margin: 0;
  color: var(--ink-muted);
}

.services {
  background: #FFFFFF;
}

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

.service-price-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid #DDE7F1;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFD 100%);
  box-shadow: 0 18px 45px rgba(16,32,51,0.055);
}

.service-price-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.service-price-head span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue-2);
  background: #E9F4FF;
  border-radius: 14px;
  font-weight: 900;
}

.service-price-head strong {
  color: var(--blue-2);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.service-price-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-price-card p {
  margin: 0;
  color: var(--ink-muted);
}

.service-inline-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue-2);
  font-weight: 900;
}

.service-inline-link:hover {
  color: var(--blue);
}

.service-wide {
  grid-column: span 2;
}

.service-highlight {
  border-color: rgba(30, 136, 229, 0.45);
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF7FF 100%);
}

.maintenance-pricing {
  scroll-margin-top: 100px;
  margin-top: 34px;
  padding: 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 10%, rgba(62,160,255,0.14), transparent 30%),
    linear-gradient(145deg, #071827, #0B2135);
  color: var(--white);
  box-shadow: var(--shadow);
}

.maintenance-intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.maintenance-intro h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.maintenance-intro p {
  color: var(--muted);
}

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

.pricing-plan {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.065);
}

.featured-plan {
  border-color: rgba(62,160,255,0.6);
  background: rgba(62,160,255,0.12);
}

.pricing-plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.pricing-plan-head span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(62,160,255,0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-plan-head strong {
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  white-space: nowrap;
}

.pricing-plan h4 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
}

.pricing-plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-plan li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 24px;
  color: #C9D6E3;
}

.pricing-plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.social-section {
  background: #F4F8FC;
}

.social-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.social-layout p {
  color: var(--ink-muted);
  font-size: 18px;
}

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

.social-links a {
  display: block;
  padding: 22px;
  border: 1px solid #DDE7F1;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(16,32,51,0.045);
  transition: transform 0.2s ease, border 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(30,136,229,0.45);
}

.social-links span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

.social-links strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.audience {
  background: var(--light);
}

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

.audience-grid article {
  padding: 30px;
  border: 1px solid #DDE7F1;
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(16,32,51,0.045);
}

.dark-band {
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(62,160,255,0.18), transparent 35%),
    linear-gradient(145deg, #071827, #0B2135);
}

.dark-band h2 {
  color: var(--white);
}

.band-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.principles {
  display: grid;
  gap: 16px;
}

.principles div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.principles h3 {
  color: var(--white);
}

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

.contact-section {
  background: #FFFFFF;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 64px;
  align-items: center;
}

.contact-box {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-box a:not(.button) {
  display: block;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-box span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

.contact-box strong {
  font-size: 22px;
  line-height: 1.25;
  word-break: break-word;
}

.full {
  width: 100%;
}

.footer {
  padding: 34px 0;
  color: #A8B5C4;
  background: #06111D;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer p {
  margin: 0;
}

.footer strong {
  color: var(--white);
}

.footer a {
  display: block;
  color: var(--blue);
  font-weight: 800;
  text-align: right;
}

@media (max-width: 1120px) {
  .pricing-table,
  .social-layout {
    grid-template-columns: 1fr;
  }

  .nav-contact {
    display: none;
  }

  .hero-layout,
  .split,
  .band-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 640px;
  }

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

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

  .service-wide {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .menu {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 84px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #071827;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 14px 12px;
  }

  .hero {
    padding: 68px 0;
  }

  .badge {
    margin-bottom: 30px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1190px);
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    height: 40px;
    max-width: 215px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 26px;
  }

  .hero-panel h2 {
    font-size: 30px;
  }

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

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

    .maintenance-pricing {
    padding: 24px;
  }

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

  .pricing-plan {
    padding: 22px;
  }

  .pricing-plan-head {
    display: block;
  }

  .pricing-plan-head strong {
    display: block;
    margin-top: 10px;
  }

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

  .service-wide {
    grid-column: auto;
  }

  .service-price-card {
    min-height: auto;
  }

  .offer-card {
    min-height: auto;
  }

  .section {
    padding: 72px 0;
  }

  .contact-box {
    padding: 26px;
  }

  .contact-box strong {
    font-size: 19px;
  }

  .footer-layout {
    display: block;
  }

  .footer a {
    text-align: left;
    margin-top: 10px;
  }
}
.service-wide {
  grid-column: span 2;
}

.service-contact-trigger {
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.service-contact-trigger:hover,
.service-contact-trigger:focus {
  transform: translateY(-3px);
  border-color: rgba(30,136,229,0.55);
  box-shadow: 0 22px 55px rgba(16,32,51,0.10);
  outline: none;
}

.service-card-action,
.service-inline-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue-2);
  font-weight: 900;
}

.service-card-action::after,
.service-inline-link::after {
  content: "→";
  margin-left: 8px;
}

.service-inline-link:hover {
  color: var(--blue);
}

.maintenance-pricing {
  scroll-margin-top: 100px;
}

.service-form-panel {
  scroll-margin-top: 100px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  padding: 34px;
  border: 1px solid #DDE7F1;
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(16,32,51,0.065);
}

.service-form-copy h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.service-form-copy p {
  color: var(--ink-muted);
  font-size: 18px;
}

.selected-service-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #E9F4FF;
}

.selected-service-note strong {
  color: var(--blue-2);
}

.service-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #DDE7F1;
  border-radius: 12px;
  background: #F7FAFD;
  color: var(--ink);
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--blue-2);
  outline: none;
  background: #FFFFFF;
}

.form-hidden-field {
  display: none;
}

.form-legal {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  color: var(--blue-2);
  font-weight: 800;
}

.form-status.error {
  color: #B00020;
}

@media (max-width: 1120px) {
  .service-form-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-wide {
    grid-column: auto;
  }

  .service-form-panel {
    padding: 24px;
  }
}

.pricing-contact-trigger {
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.pricing-contact-trigger:hover,
.pricing-contact-trigger:focus {
  transform: translateY(-3px);
  border-color: rgba(62,160,255,0.72);
  outline: none;
}

.pricing-plan-action {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
}

.pricing-plan-action::after {
  content: "→";
  margin-left: 8px;
}

.footer-layout {
  align-items: flex-start;
}

.footer-company {
  display: grid;
  gap: 18px;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a {
  color: var(--blue);
  font-weight: 800;
}

.footer-social {
  max-width: 560px;
  margin-left: auto;
  text-align: right;
}

.footer-social-title {
  margin: 0 0 8px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-social-text {
  margin: 0 0 18px;
  color: #A8B5C4;
  font-size: 15px;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #D8E5F2;
  background: rgba(255,255,255,0.045);
  font-weight: 900;
  transition: transform 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.footer-social-links a:hover {
  transform: translateY(-2px);
  color: var(--white);
  border-color: rgba(62,160,255,0.55);
}

@media (max-width: 820px) {
  .footer-social {
    max-width: none;
    margin-left: 0;
    margin-top: 28px;
    text-align: left;
  }

  .footer-social-links {
    justify-content: flex-start;
  }
}

.top-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-social-link {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: #D8E5F2;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.top-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.top-social-link:hover {
  color: var(--blue);
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .top-social {
    display: none;
  }
}

.nav {
  gap: 22px;
}

.menu {
  gap: 18px;
  font-size: 14px;
}

.menu a {
  white-space: nowrap;
}

.brand img {
  max-width: 230px;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.top-social-link {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: #D8E5F2;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.top-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.top-social-link:hover {
  color: var(--blue);
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 1460px) {
  .nav-contact {
    display: none;
  }
}

@media (max-width: 1120px) {
  .menu {
    gap: 14px;
    font-size: 13px;
  }

  .brand img {
    max-width: 205px;
  }
}

@media (max-width: 920px) {
  .top-social {
    display: none;
  }
}

.brand img {
  height: 64px;
  max-width: 90px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .brand img {
    height: 56px;
    max-width: 78px;
  }
}

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

.footer-brand-block {
  display: grid;
  gap: 18px;
}

.footer-logo {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
}

.footer-contact-block {
  display: grid;
  gap: 8px;
  text-align: right;
}

.footer-contact-block a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 820px) {
  .footer-contact-block {
    margin-top: 24px;
    text-align: left;
  }

  .footer-logo {
    width: 230px;
  }
}

.brand {
  order: 1;
  margin-right: 0;
  flex-shrink: 0;
}

.top-social {
  order: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.menu-button {
  order: 3;
}

.menu {
  order: 4;
  margin-left: auto;
}

.nav-contact {
  order: 5;
}

.brand img {
  height: 64px;
  max-width: 92px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .menu {
    margin-left: auto;
  }

  .brand img {
    height: 56px;
    max-width: 82px;
  }
}

@media (max-width: 920px) {
  .top-social {
    display: none;
  }

  .brand {
    margin-right: auto;
  }
}

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


/* ============================================
   FIX: CTA w kafelkach usług na stronie głównej
   Dopisane bez przebudowy istniejącego stylu.
   ============================================ */
.services .offer-grid {
  align-items: stretch;
}

.services .offer-card {
  display: flex;
  flex-direction: column;
}

.services .offer-card p {
  margin-bottom: 0;
}

.services .offer-card .service-inline-link,
.services .offer-card .service-card-action {
  width: auto;
  height: auto;
  min-height: 0;
  margin-top: auto;
  padding-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  color: var(--blue-2);
  background: transparent;
  border-radius: 0;
  font-weight: 900;
  line-height: 1.25;
  white-space: normal;
}

.services .offer-card .service-card-action {
  place-items: initial;
}

.services .offer-card .service-inline-link::after,
.services .offer-card .service-card-action::after {
  content: "→";
  margin-left: 8px;
  flex-shrink: 0;
}

.services .offer-card .service-inline-link:hover,
.services .offer-card .service-card-action:hover {
  color: var(--blue);
}

/* ============================================
   FIX: hero podstron, FAQ, konsultacje, audyt, przeglad
   Bez ruszania reszty arkusza.
   ============================================ */
.faq-page-hero,
.audit-hero,
.consultation-hero,
.maintenance-hero {
  color: var(--text);
  background:
    radial-gradient(circle at 78% 22%, rgba(62,160,255,0.20), transparent 36%),
    linear-gradient(145deg, #071827 0%, #082034 58%, #0B2742 100%);
}

.faq-page-hero h1,
.audit-hero h1,
.consultation-hero h1,
.maintenance-hero h1,
.audit-hero-copy h1 {
  color: var(--white);
}

.audit-hero-copy p,
.faq-page-hero p,
.consultation-hero p,
.maintenance-hero p {
  color: var(--muted);
}

.audit-hero .breadcrumbs,
.faq-page-hero .breadcrumbs,
.consultation-hero .breadcrumbs,
.maintenance-hero .breadcrumbs {
  color: var(--muted);
}

.audit-hero .breadcrumbs span:last-child,
.faq-page-hero .breadcrumbs span:last-child,
.consultation-hero .breadcrumbs span:last-child,
.maintenance-hero .breadcrumbs span:last-child {
  color: var(--text);
}

@media (max-width: 640px) {
  .services .offer-card .service-inline-link,
  .services .offer-card .service-card-action {
    padding-top: 20px;
  }
}

/* ============================================================
   PODSTRONY — KOMPLETNE STYLE
   (audyt, konsultacje, przegląd, faq-page, wspólne elementy)
   ============================================================ */

/* --- Breadcrumbs --- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.breadcrumbs a { color: var(--blue); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span:last-child { color: var(--text); }

/* --- Audit / Konsultacje / Przegląd — Hero --- */
.audit-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 30%, rgba(62,160,255,0.18), transparent 38%),
    linear-gradient(145deg, #071827 0%, #082034 58%, #0B2742 100%);
}
.audit-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}
.audit-hero-copy { max-width: 700px; }
.audit-hero-copy h1 {
  margin: 16px 0 20px;
  font-size: clamp(36px, 5vw, 62px);
  color: var(--white);
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.audit-hero-copy > p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  margin: 0 0 36px;
}

/* --- FAQ Hero --- */
.faq-page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 30%, rgba(62,160,255,0.18), transparent 38%),
    linear-gradient(145deg, #071827 0%, #082034 58%, #0B2742 100%);
}
.faq-page-copy { position: relative; max-width: 760px; }
.faq-page-hero h1 {
  margin: 16px 0 20px;
  font-size: clamp(36px, 5vw, 62px);
  color: var(--white);
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.faq-page-hero p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  margin: 0;
}
.faq-page-hero .section-label { color: var(--blue); }

/* --- Audit Summary Card (hero boczny) --- */
.audit-summary-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.audit-summary-card h2 {
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 10px 0 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.audit-summary-card ul {
  margin: 0; padding: 0; list-style: none; display: grid; gap: 10px;
}
.audit-summary-card li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border-radius: 12px;
  color: #D8E5F2;
  background: rgba(6,20,34,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  font-weight: 600;
  font-size: 15px;
}
.audit-summary-card li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--blue);
  font-weight: 900;
}

/* --- Intro (split 2col) --- */
.audit-intro-section { background: #FFFFFF; }

/* --- Audit Grid (karty zakresu) --- */
.audit-cards-section { background: var(--light); }
.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audit-card {
  padding: 30px;
  border: 1px solid #DDE7F1;
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(16,32,51,0.06);
}
.audit-card span {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 22px;
  color: var(--blue-2);
  background: #E9F4FF;
  border-radius: 14px;
  font-weight: 900;
  font-size: 14px;
}
.audit-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.audit-card p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.65; }

/* --- Signals (kiedy warto) --- */
.audit-signals-section { background: #F4F8FC; }
.audit-signals-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.audit-signals-layout > div:first-child h2 { margin-bottom: 16px; }
.audit-signals-layout > div:first-child p { color: var(--ink-muted); font-size: 17px; line-height: 1.7; margin: 0; }
.audit-signal-list { display: grid; gap: 12px; }
.audit-signal-list div {
  padding: 16px 20px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid #DDE7F1;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(16,32,51,0.05);
}

/* --- Process (kroki) --- */
.audit-process-section { background: #FFFFFF; }
.audit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.audit-steps article {
  padding: 30px;
  border: 1px solid #DDE7F1;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFD 100%);
  box-shadow: 0 18px 45px rgba(16,32,51,0.055);
}
.audit-steps strong {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue-2);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}
.audit-steps h3 { margin: 0 0 10px; color: var(--ink); font-size: 20px; letter-spacing: -0.02em; }
.audit-steps p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.65; }

/* --- Cena (audit-price) --- */
.audit-price-section { background: var(--light); }
.audit-price-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}
.audit-price-layout h2 { margin-bottom: 20px; }
.audit-price-layout p { color: var(--ink-muted); font-size: 17px; line-height: 1.7; margin: 0 0 16px; }
.audit-price-card {
  padding: 36px;
  border: 1px solid rgba(30,136,229,0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #EEF7FF 0%, #FFFFFF 100%);
  box-shadow: 0 18px 45px rgba(16,32,51,0.07);
  text-align: center;
}
.audit-price-card span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-2);
  margin-bottom: 6px;
}
.audit-price-card strong {
  display: block;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.audit-price-card p { color: var(--ink-muted); font-size: 15px; margin: 0 0 28px; line-height: 1.65; }

/* --- FAQ Section (wspólna) --- */
.faq-list-section { background: var(--light); }
.audit-faq-section { background: #F4F8FC; }
.faq-list-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

/* --- FAQ Boczna karta --- */
.faq-side-card {
  position: sticky;
  top: 96px;
  padding: 32px;
  border: 1px solid #DDE7F1;
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(16,32,51,0.07);
}
.faq-side-card h2 { font-size: clamp(22px, 2.5vw, 28px); margin: 8px 0 16px; line-height: 1.15; }
.faq-side-card p { color: var(--ink-muted); font-size: 15px; margin: 0 0 28px; line-height: 1.65; }
.faq-side-card .button.full { display: flex; width: 100%; }

/* --- FAQ Akordeony --- */
.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid #DDE7F1; background: transparent; }
.faq-item:first-child { border-top: 1px solid #DDE7F1; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  line-height: 1.35;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #E9F4FF;
  color: var(--blue-2);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s, transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: var(--blue-2);
  color: #fff;
}
.faq-item[open] summary { color: var(--blue-2); }
.faq-item > p { margin: 0; padding: 0 4px 28px; color: var(--ink-muted); font-size: 16px; line-height: 1.75; }

/* --- CTA pod FAQ --- */
.faq-cta { background: #FFFFFF; border-top: 1px solid #DDE7F1; }
.faq-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.faq-cta h2 { margin-bottom: 20px; }
.faq-cta > div > p { color: var(--ink-muted); font-size: 18px; line-height: 1.7; margin: 0; }
.faq-cta-card {
  padding: 34px;
  border: 1px solid rgba(30,136,229,0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #EEF7FF 0%, #FFFFFF 100%);
  box-shadow: 0 18px 45px rgba(16,32,51,0.07);
}
.faq-cta-card p { color: var(--ink-muted); font-size: 16px; margin: 0 0 24px; line-height: 1.65; }

/* --- Kafelki bloku "Dla kogo" (index) --- */
.audit-compact-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 26px;
  border: 1px solid rgba(30,136,229,0.3);
  border-radius: 16px;
  background: linear-gradient(135deg, #EEF7FF 0%, #FFFFFF 100%);
}
.audit-compact-note > div strong { display: block; color: var(--ink); font-size: 16px; margin-bottom: 4px; }
.audit-compact-note > div p { margin: 0; color: var(--ink-muted); font-size: 14px; }
.button.compact {
  min-height: 44px;
  padding: 0 22px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSYWNOŚĆ — WSZYSTKIE PODSTRONY
   ============================================================ */

@media (max-width: 1060px) {
  .audit-hero-layout { grid-template-columns: 1fr; }
  .audit-summary-card { max-width: 560px; }
  .audit-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-steps { grid-template-columns: repeat(2, 1fr); }
  .audit-price-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-list-layout { grid-template-columns: 260px 1fr; gap: 36px; }
}

@media (max-width: 820px) {
  .audit-signals-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-list-layout { grid-template-columns: 1fr; }
  .faq-side-card { position: static; }
  .faq-cta-layout { grid-template-columns: 1fr; gap: 36px; }
  .audit-hero { padding: 60px 0 52px; }
  .faq-page-hero { padding: 60px 0 52px; }
  .audit-compact-note { flex-direction: column; align-items: flex-start; }
  .button.compact { width: 100%; }
}

@media (max-width: 640px) {
  .audit-grid { grid-template-columns: 1fr; }
  .audit-steps { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 15px; padding: 20px 4px; }
  .faq-item > p { font-size: 15px; padding-bottom: 22px; }
  .faq-cta-card { padding: 24px; }
}

/* ============================================
   SEKCJA OPINII
   ============================================ */

.reviews-section {
  background: #F4F8FC;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.review-card {
  padding: 28px;
  border: 1px solid #DDE7F1;
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: 0 8px 28px rgba(16,32,51,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: #F9A825;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 0;
  padding: 0;
  flex: 1;
}

.review-card blockquote p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

.review-author {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.reviews-cta {
  text-align: center;
  margin-top: 8px;
}

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

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.article-spotlight {
  background: #F6FAFD;
}

.article-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.article-spotlight-grid a {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px 20px;
  border: 1px solid #DDE7F1;
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.article-spotlight-grid a:hover {
  border-color: rgba(31, 111, 235, 0.45);
  color: var(--blue);
  transform: translateY(-1px);
}

.article-spotlight-more {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
}

.article-spotlight-more::after {
  content: "→";
  margin-left: 8px;
}

@media (max-width: 760px) {
  .article-spotlight-grid {
    grid-template-columns: 1fr;
  }
}