/* ==========================================================================
   Kwalitet — Modern homepage layer (pralnia-first redesign)
   Loaded after the Webflow shared stylesheet. Uses the existing brand
   custom properties (--blue-clean, --blue, --new-t, --mint-cream, ...)
   defined globally by kwalitet.webflow.shared css, and namespaces every
   new rule under .kw- to avoid colliding with Webflow-generated classes
   that still carry functional JS behaviour (nav, tabs, dropdown, form).
   ========================================================================== */

/* ---------- Navbar polish (structure/classes unchanged — Webflow nav JS intact) ---------- */

.navbar-kwalitet-clean {
  box-shadow: 0 1px 0 #eceff6, 0 12px 30px -20px rgba(8, 17, 88, 0.25) !important;
  height: 88px !important;
}
/* nav-menu-2's margin-top only matters once Webflow switches it to position:fixed
   for the mobile dropdown (≤991px) — at desktop it must stay inline with no offset,
   or its margin box inflates the whole navbar row's height. */
.nav-menu-2 { margin-top: 0 !important; }
@media screen and (max-width: 991px) {
  .navbar-kwalitet-clean { height: 76px !important; }
  .nav-menu-2 { margin-top: 76px !important; }
}
@media screen and (max-width: 767px) {
  .navbar-kwalitet-clean { height: 64px !important; }
  .nav-menu-2 { margin-top: 64px !important; }
}

.brand-logo { width: 130px !important; }

.nav-menu-2 { grid-column-gap: 30px !important; }
.nav-link-2 { padding-top: 8px !important; padding-bottom: 8px !important; }

/* ---------- Mobile menu panel (Webflow toggle classes unchanged; desktop nav untouched) ---------- */

@media screen and (max-width: 991px) {
  .nav-menu-2 {
    background: #ffffff !important;
    border: none !important;
    border-radius: 22px !important;
    box-shadow: 0 24px 60px -20px rgba(8, 17, 88, 0.35);
    padding: 12px !important;
    width: 92% !important;
    align-items: stretch !important;
  }

  .nav-menu-2 .nav-link-2 {
    border-radius: 14px;
    padding: 16px 18px !important;
    border-bottom: 1px solid #eef0f4;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .nav-menu-2 .nav-link-2:last-of-type { border-bottom: none; }
  .nav-menu-2 .nav-link-2::before {
    content: "";
    width: 8px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue-clean, #3679bc);
    opacity: 0;
    transition: opacity .2s ease, width .2s ease;
  }
  .nav-menu-2 .nav-link-2:hover { background: #f4f8fe; }
  .nav-menu-2 .nav-link-2:hover::before { opacity: 1; width: 16px; }
  .nav-menu-2 .nav-link-2::after { display: none; }

  .nav-menu-2 .button-2.small { margin-top: 12px; width: 100%; text-align: center; }
}

.kw-mobile-menu-footer {
  display: none;
}
@media screen and (max-width: 991px) {
  .kw-mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eef0f4;
  }
}
.kw-mobile-call { width: 100%; }
.kw-mobile-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kw-mobile-socials a {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: linear-gradient(135deg, #3679bc, #081158);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kw-mobile-socials img { width: 18px; height: 18px; }

.nav-link-2 {
  position: relative;
  font-weight: 600 !important;
  transition: color .2s ease;
}
.nav-link-2::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-clean, #3679bc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-link-2:hover { color: #081158 !important; }
.nav-link-2:hover::after { transform: scaleX(1); }

.navbarlinks-mobile {
  border-radius: 100px !important;
  background: linear-gradient(135deg, #3679bc, #081158) !important;
}

.button-2.small {
  border-radius: 100px !important;
  border: none !important;
  background-color: #081158 !important;
  background-image: none !important;
  padding: 13px 26px !important;
  min-width: 0 !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
  box-shadow: 0 10px 20px -8px rgba(8, 17, 88, 0.45);
}
.button-2.small:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -8px rgba(8, 17, 88, 0.55); }

.about-hero { padding-top: 116px !important; }
@media screen and (max-width: 991px) { .about-hero { padding-top: 100px !important; } }
@media screen and (max-width: 767px) { .about-hero { padding-top: 84px !important; } }

/* ---------- Unified page container — single 1200px guide-rail for the whole page ---------- */

.container,
.container-hero,
.container-3,
.w-container,
.kw-container {
  width: 100% !important;
  max-width: 1200px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

.kw-container {
  position: relative;
}

@media screen and (max-width: 479px) {
  .container,
  .container-hero,
  .container-3,
  .w-container,
  .kw-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* ---------- Section shells ---------- */

.kw-section {
  padding: 112px 0;
}

.kw-section-tight {
  padding: 72px 0;
}

.kw-bg-white { background: #ffffff; }
.kw-bg-mint { background: linear-gradient(180deg, #eaf1fb 0%, #ffffff 100%); }
.kw-bg-muted { background: var(--white-smoke, #eef0f4); }
.kw-bg-dark {
  background: linear-gradient(135deg, #081158 0%, #14245e 55%, #1c2f6b 100%);
  color: #ffffff;
}

.kw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-clean, #3679bc);
  margin-bottom: 16px;
}

.kw-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-clean, #3679bc);
  display: inline-block;
}

.kw-bg-dark .kw-eyebrow,
.kw-bg-dark .kw-eyebrow::before {
  color: #8fc1f0;
  background: #8fc1f0;
}

.kw-heading {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  color: #0e0f14;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.kw-bg-dark .kw-heading { color: #ffffff; }

.kw-heading .accent {
  background: linear-gradient(90deg, #3679bc, #081158);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kw-lede {
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  color: #4e4e4e;
  max-width: 640px;
  margin: 0 0 8px;
}

.kw-bg-dark .kw-lede { color: #cfd7ef; }

.kw-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.kw-head-row .kw-heading,
.kw-head-row .kw-lede { margin-bottom: 0; }

.kw-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}
.kw-center .kw-lede { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.kw-btn {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  border-radius: 100px;
  padding: 17px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.kw-btn-primary {
  background-color: #081158 !important;
  background-image: none !important;
  border: none !important;
  color: #ffffff;
  box-shadow: 0 12px 24px -8px rgba(8, 17, 88, 0.45);
}
.kw-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(8, 17, 88, 0.55); }

.kw-btn-outline {
  background: transparent;
  border-color: #081158;
  color: #081158;
}
.kw-btn-outline:hover { background: #081158; color: #ffffff; transform: translateY(-2px); }

.kw-bg-dark .kw-btn-outline { border-color: #ffffff; color: #ffffff; }
.kw-bg-dark .kw-btn-outline:hover { background: #ffffff; color: #081158; }

.kw-btn-sm { padding: 12px 22px; font-size: 13px; }

/* ---------- Hero ---------- */

.about-hero .column.white {
  padding: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  margin-bottom: 0 !important;
}

.kw-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  padding: 8px 0 40px;
}

.kw-hero-text { padding-top: 12px; }

.kw-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(54, 121, 188, 0.1);
  color: #1c4a78;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.kw-hero h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #0b1440;
  margin: 0 0 22px;
}

.kw-hero h1 .accent {
  background: linear-gradient(90deg, #3679bc, #081158 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kw-hero-sub {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #45506e;
  max-width: 520px;
  margin-bottom: 32px;
}

.kw-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.kw-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kw-badge {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1c2f6b;
  background: #ffffff;
  border: 1px solid #dfe6f5;
  padding: 9px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 10px -6px rgba(8, 17, 88, 0.18);
}

.kw-hero-visual {
  position: relative;
  max-width: 480px;
  margin-left: auto;
}

.kw-hero-visual-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(8, 17, 88, 0.35);
  aspect-ratio: 4 / 3.4;
  position: relative;
}

.kw-hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kw-hero-float {
  position: absolute;
  left: -28px;
  bottom: -22px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px -16px rgba(8, 17, 88, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
}

.kw-hero-float img { width: 34px; height: 34px; flex-shrink: 0; }
.kw-hero-float strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0b1440;
  line-height: 1.3;
}
.kw-hero-float span {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  color: #6b7593;
}

/* ---------- Cities strip under hero ---------- */

.kw-cities-strip {
  border-top: 1px solid #e7ebf5;
  border-bottom: 1px solid #e7ebf5;
  padding: 26px 0;
}

.kw-cities-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 40px;
}

.kw-cities-row .label {
  font-family: Montserrat, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9aa2bd;
}

.kw-cities-row .city {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1c2f6b;
}

/* ---------- Service grid (pralnia primary) ---------- */

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

.kw-service-card {
  background: #ffffff;
  border: 1px solid #eceff6;
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.kw-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -20px rgba(8, 17, 88, 0.28);
  border-color: #cfe0f4;
}

.kw-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eaf3fc, #dce8f7);
  position: relative;
  flex-shrink: 0;
}
.kw-icon-badge img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 55%;
  max-height: 55%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
}

.kw-service-card h3 {
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #0e0f14;
  margin: 0;
}

.kw-service-more {
  margin-top: auto;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-clean, #3679bc);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kw-service-card:hover .kw-service-more { gap: 10px; }

.kw-service-card.featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, #3679bc, #081158);
  border: none;
  color: #ffffff;
}
.kw-service-card.featured .kw-icon-badge { background: rgba(255,255,255,0.16); }
.kw-service-card.featured h3 { color: #ffffff; font-size: 19px; }
.kw-service-card.featured p { color: #cfe0f7; font-size: 14px; margin: 6px 0 0; font-family: Montserrat, sans-serif; }
.kw-service-card.featured .kw-service-more { color: #ffffff; }
.kw-service-card.featured .kw-icon-badge img { filter: brightness(0) invert(1); }

.kw-services-cta {
  margin-top: 44px;
  text-align: center;
}

/* ---------- Secondary section: sprzątanie ---------- */

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

.kw-secondary-copy .kw-heading { font-size: 30px; }

.kw-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.kw-chip {
  font-family: Montserrat, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #33415c;
  background: #ffffff;
  border: 1px solid #dfe3ec;
  padding: 11px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.kw-chip:hover { border-color: #3679bc; color: #1c4a78; transform: translateY(-2px); }

.kw-secondary-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
}
.kw-secondary-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Benefits ---------- */

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

.kw-benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px -18px rgba(8,17,88,0.22);
}

.kw-benefit-card .kw-icon-badge { margin-bottom: 18px; }

.kw-benefit-card h4 {
  font-family: Montserrat, sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #0e0f14;
  margin: 0 0 8px;
}

.kw-benefit-card p {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #5a6178;
  margin: 0;
}

.kw-benefit-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.kw-benefit-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
}

/* ---------- Cities finder ---------- */

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

.kw-city-card {
  background: #ffffff;
  border: 1px solid #eceff6;
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.kw-city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px -18px rgba(8,17,88,0.28);
  border-color: #cfe0f4;
}
.kw-city-card img { width: 32px; height: 32px; margin: 0 auto 14px; display: block; }
.kw-city-card span {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #0e0f14;
  display: block;
}
.kw-city-card small {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  color: #8a90a6;
  display: block;
  margin-top: 4px;
}

/* ---------- Comparison table (Kwalitet vs other laundries) ---------- */

.kw-compare-wrap {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  overflow-x: auto;
  box-shadow: 0 20px 50px -30px rgba(8, 17, 88, 0.3);
}

.kw-compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.kw-compare-table thead th {
  padding: 22px 26px;
  text-align: left;
  font-family: Montserrat, sans-serif;
  vertical-align: bottom;
}

.kw-compare-table th.kw-compare-feature { background: #ffffff; width: 26%; }

.kw-compare-table th.kw-compare-us {
  background: linear-gradient(135deg, #3679bc, #081158);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px 14px 0 0;
}
.kw-compare-table th.kw-compare-them {
  background: #eef0f4;
  color: #5a6178;
  font-size: 15px;
  font-weight: 700;
}

.kw-compare-table th span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.8;
  margin-top: 3px;
}

.kw-compare-table tbody td {
  padding: 20px 26px;
  border-top: 1px solid #eceff6;
  font-family: Montserrat, sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  vertical-align: middle;
}

.kw-compare-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kw-compare-feature strong {
  display: block;
  color: #0e0f14;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.kw-compare-feature span { color: #8a90a6; font-size: 12.5px; }

.kw-compare-table td.kw-compare-us {
  background: #f4f8fe;
  color: #1c2f6b;
  font-weight: 600;
}
.kw-compare-table td.kw-compare-them { color: #8a90a6; }

.kw-check, .kw-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.kw-check { background: #3679bc; color: #ffffff; }
.kw-cross { background: #dfe3ec; color: #6b7280; }

/* ---------- Jak działamy — process steps (rebuilt, static) ---------- */

.kw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 6px;
}

.kw-step {
  background: #ffffff;
  border: 1px solid #eceff6;
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 34px -26px rgba(8, 17, 88, 0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.kw-step:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(8, 17, 88, 0.3); }

.kw-step-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kw-step-media {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.kw-step-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.kw-step-number {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #3679bc, #081158);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kw-step h3 {
  font-family: Montserrat, sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #0e0f14;
  margin: 0;
}
.kw-step p {
  font-family: Montserrat, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: #5a6178;
  margin: 0;
}

.kw-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #c3ccdf;
  padding: 0 2px;
}

/* ---------- About / blog polish ---------- */

.kw-about-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 50px -30px rgba(8,17,88,0.3);
}
.kw-about-wrap img { width: 100%; border-radius: 18px; display: block; }
.kw-about-wrap p {
  font-family: Montserrat, sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: #3c4460;
}

/* ---------- CTA banner ---------- */

.kw-cta-banner {
  border-radius: 28px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.kw-cta-banner .kw-heading { margin-bottom: 10px; }

.kw-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Accordion & process section polish (structure unchanged) ---------- */

.section-white .container-block { border-radius: 22px; overflow: hidden; }
.drp.w-dropdown { background: rgba(255,255,255,0.06); border-radius: 16px; margin-bottom: 14px !important; padding: 4px 6px; }
.accordion { background: linear-gradient(160deg,#0a1352,#123a63); border-radius: 26px; padding: 40px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 991px) {
  .kw-section { padding: 80px 0; }
  .kw-hero { grid-template-columns: 1fr; }
  .kw-hero h1 { font-size: 42px; }
  .kw-hero-sub { max-width: 100%; }
  .kw-grid { grid-template-columns: repeat(2, 1fr); }
  .kw-service-card.featured { grid-column: span 2; }
  .kw-secondary { grid-template-columns: 1fr; }
  .kw-secondary-visual { order: -1; aspect-ratio: 16/9; }
  .kw-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .kw-benefit-photos { grid-template-columns: repeat(2, 1fr); }
  .kw-city-grid { grid-template-columns: repeat(3, 1fr); }
  .kw-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .kw-step-arrow { display: none; }
  .kw-about-wrap { grid-template-columns: 1fr; padding: 32px; }
  .kw-about-wrap img { max-width: 320px; margin: 0 auto; }
  .kw-cta-banner { flex-direction: column; text-align: center; padding: 48px 32px; }
  .kw-cta-banner .kw-lede { margin-left: auto; margin-right: auto; }
}

@media screen and (max-width: 767px) {
  .kw-heading { font-size: 30px; }
  .kw-hero h1 { font-size: 34px; }
  .kw-hero-visual-frame { aspect-ratio: 4/3; }
  .kw-hero-float { position: static; margin-top: 16px; max-width: none; }
  .kw-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .kw-service-card { padding: 22px 18px; }
  .kw-service-card.featured { grid-column: span 2; flex-direction: column; align-items: flex-start; text-align: left; }
  .kw-benefit-grid { grid-template-columns: 1fr; }
  .kw-benefit-photos { grid-template-columns: repeat(3, 1fr); }
  .kw-city-grid { grid-template-columns: repeat(2, 1fr); }
  .kw-steps { grid-template-columns: 1fr; }
  .kw-head-row { flex-direction: column; align-items: flex-start; }
  .kw-compare-table { min-width: 580px; }
  .kw-compare-table thead th, .kw-compare-table tbody td { padding: 16px 18px; }
}

@media screen and (max-width: 479px) {
  .kw-section { padding: 60px 0; }
  .kw-hero h1 { font-size: 28px; }
  .kw-btn { width: 100%; }
  .kw-hero-ctas { flex-direction: column; }
  .kw-grid { grid-template-columns: 1fr; }
  .kw-service-card.featured { grid-column: span 1; }
  .kw-city-grid { grid-template-columns: 1fr 1fr; }
  .kw-benefit-photos { grid-template-columns: 1fr 1fr; }
}
