/* ============================================================
   MultiGips Gdańsk — Design System
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Palette — Light theme */
  --clr-bg: #ffffff;
  --clr-bg-2: #f4f6f9;
  --clr-bg-3: #edf0f5;
  --clr-surface: #ffffff;
  --clr-border: #dde1e8;

  --clr-gold: #d4920a;
  --clr-gold-light: #f0a500;
  --clr-gold-dark: #a86e00;

  --clr-accent: #1a5fa8;
  --clr-accent-2: #0f4280;

  --clr-text: #1a1f2e;
  --clr-text-muted: #4a5568;
  --clr-text-subtle: #9aa3b2;

  --clr-success: #2d8a45;
  --clr-white: #ffffff;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #d4920a 0%, #f0a500 50%, #d4920a 100%);
  --grad-dark: linear-gradient(180deg, #1a1f2e 0%, #2d3448 100%);
  --grad-hero: linear-gradient(to bottom,
      rgba(10, 14, 26, 0.50) 0%,
      rgba(10, 14, 26, 0.65) 60%,
      rgba(10, 14, 26, 0.88) 100%);

  /* Typography */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;

  /* Border radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 20px rgba(240, 165, 0, 0.35);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.18s;
  --dur-mid: 0.35s;

  /* Layout */
  --container: 1200px;
  --nav-h: 70px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

ul {
  list-style: none;
}

[hidden] {
  display: none !important;
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  overflow-x: clip;
}

.section {
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.section--alt {
  background: var(--clr-bg-2);
}

.section--dark {
  background: var(--clr-bg-3);
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.section-title span {
  color: var(--clr-gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* Gold highlight inline */
.gold {
  color: var(--clr-gold);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--grad-gold);
  color: #0d1117;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(240, 165, 0, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 225, 232, 0.8);
  transition: background var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.navbar__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar__logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--clr-text);
  line-height: 1.1;
}

.navbar__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--dur-fast) var(--ease);
}

.navbar__link:hover {
  color: var(--clr-gold);
}

.navbar__tel {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-gold);
  transition: color var(--dur-fast) var(--ease);
}

.navbar__tel:hover {
  color: var(--clr-gold-light);
}

.navbar__tel svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hamburger */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease),
    opacity var(--dur-mid) var(--ease);
}

.navbar__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-md);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease),
    transform var(--dur-mid) var(--ease);
}

.navbar__mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.navbar__mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  transition: color var(--dur-fast) var(--ease);
}

.navbar__mobile a:hover {
  color: var(--clr-gold);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('img_webp/budowa-scian-dzialowych-bloki-gipsowe.webp');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero__bg.loaded {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240, 165, 0, 0.4);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.2s forwards;
}

.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.4s forwards;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero__h1 em {
  font-style: normal;
  color: var(--clr-gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(230, 237, 243, 0.85);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.6s forwards;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* ── BENEFITS / ZALETY ────────────────────────────────────── */
.benefits {
  background: var(--clr-bg-2);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.benefit-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 165, 0, 0.4);
  box-shadow: var(--shadow-gold);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card__icon {
  font-size: 2.2rem;
  line-height: 1;
}

.benefit-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}

.benefit-card__text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ── PRICING / CENNIK ─────────────────────────────────────── */
.pricing {
  background: var(--clr-bg);
}

.pricing__grid {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.accordion {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion.open {
  border-color: rgba(240, 165, 0, 0.5);
  box-shadow: 0 4px 24px rgba(240, 165, 0, 0.15);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-lg);
  cursor: pointer;
  user-select: none;
  transition: background var(--dur-fast) var(--ease);
}

.accordion__header:hover {
  background: rgba(240, 165, 0, 0.05);
}

.accordion__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.accordion__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-subtle);
}

.accordion__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}

.accordion__price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-gold);
  white-space: nowrap;
}

.accordion__price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-text-muted);
}

.accordion__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur-mid) var(--ease),
    background var(--dur-mid) var(--ease);
  color: var(--clr-gold);
}

.accordion.open .accordion__arrow {
  transform: rotate(180deg);
  background: rgba(240, 165, 0, 0.2);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.accordion.open .accordion__body {
  max-height: 600px;
}

.accordion__content {
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--clr-border);
  margin-top: 0;
}

.accordion__content ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
}

.accordion__content li {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

.accordion__content li::before {
  content: '✓';
  color: var(--clr-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FEATURES GALLERY ─────────────────────────────────────── */
.features {
  background: var(--clr-bg-2);
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.feature-item {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-xl);
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-item.reverse {
  grid-template-columns: 1fr 380px;
}

.feature-item.reverse .feature-item__img {
  order: 2;
}

.feature-item.reverse .feature-item__text {
  order: 1;
}

.feature-item__img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  box-shadow: var(--shadow-lg);
}

.feature-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.feature-item__img:hover img {
  transform: scale(1.04);
}

.feature-item__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(240, 165, 0, 0.2);
  pointer-events: none;
}

.feature-item__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-item__num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(212, 146, 10, 0.12);
  line-height: 1;
  user-select: none;
}

.feature-item__title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.25;
}

.feature-item__title span {
  color: var(--clr-gold);
}

.feature-item__desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

/* ── VIDEO CAROUSEL ───────────────────────────────────────── */
.video-section {
  background: var(--clr-bg);
  overflow: hidden;
}

.video-carousel {
  position: relative;
  margin-top: var(--space-xl);
  overflow: hidden;
}

.video-carousel__overflow {
  width: 100%;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-carousel__overflow::-webkit-scrollbar {
  display: none;
}

.video-carousel__track {
  display: flex;
  gap: var(--space-lg);
  justify-content: flex-start;
  align-items: center;
  min-height: 560px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.video-slide {
  flex-shrink: 0;
  width: 280px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: #1a1f2e;
  border: 1px solid var(--clr-border);
  transition: transform var(--dur-mid) var(--ease),
    opacity var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease);
  opacity: 0.4;
  transform: scale(0.88);
}

.video-slide.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 8px 48px rgba(240, 165, 0, 0.3);
  border-color: rgba(240, 165, 0, 0.5);
}

.video-slide.prev,
.video-slide.next {
  opacity: 0.65;
  transform: scale(0.93);
}

.video-slide video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  max-height: 520px;
}

.video-slide__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 17, 23, 0.35);
  transition: opacity var(--dur-fast) var(--ease);
  cursor: pointer;
}

.video-slide__play svg {
  width: 52px;
  height: 52px;
  fill: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  transition: transform var(--dur-fast) var(--ease);
}

.video-slide__play:hover svg {
  transform: scale(1.12);
}

.video-slide.playing .video-slide__play {
  opacity: 0;
  pointer-events: none;
}

/* Video controls */
.video-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.vc-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vc-btn:hover {
  background: rgba(240, 165, 0, 0.15);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

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

.vc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-text-subtle);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.vc-dot.active {
  background: var(--clr-gold);
  transform: scale(1.4);
}

/* ── SERVICE ZONE ─────────────────────────────────────────── */
.zone {
  background: var(--clr-bg-2);
}

.zone__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-xl);
}

.zone__cities {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.zone__city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.zone__city-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  padding: 0.6rem var(--space-sm);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  min-width: 0;
  overflow: hidden;
  word-break: break-word;
  transition: border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease);
}

.zone__city-item:hover {
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

.zone__city-item::before {
  content: '📍';
  font-size: 0.85rem;
}

.zone__radius {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(240, 165, 0, 0.08);
  border: 1px solid rgba(240, 165, 0, 0.25);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.zone__radius strong {
  color: var(--clr-gold);
}

.zone__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
  height: 420px;
}

.zone__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
  background: var(--clr-bg);
}

.faq__grid {
  max-width: 860px;
  margin: var(--space-xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur-mid) var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item.open {
  border-color: rgba(240, 165, 0, 0.4);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: color var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease);
  user-select: none;
}

.faq-item__q:hover {
  background: rgba(240, 165, 0, 0.04);
  color: var(--clr-gold);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--dur-mid) var(--ease),
    background var(--dur-mid) var(--ease);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(240, 165, 0, 0.2);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-item__a {
  max-height: 500px;
}

.faq-item__a p {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-md);
}

/* ── REVIEWS / OPINIE ─────────────────────────────────────── */
.reviews {
  background: var(--clr-bg-2);
  overflow: hidden;
}

.reviews__track-wrapper {
  margin-top: var(--space-xl);
  overflow: hidden;
  cursor: grab;
}

.reviews__track-wrapper:active {
  cursor: grabbing;
}

.reviews__track {
  display: flex;
  gap: var(--space-lg);
  transition: transform 0.5s var(--ease);
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.review-card:hover {
  border-color: rgba(240, 165, 0, 0.35);
  box-shadow: var(--shadow-gold);
}

.review-card__stars {
  color: var(--clr-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.93rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-card__text::before {
  content: '"';
  font-size: 2rem;
  color: rgba(240, 165, 0, 0.3);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: #0d1117;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.review-card__meta {
  font-size: 0.78rem;
  color: var(--clr-text-subtle);
}

.review-card__keyword {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.72rem;
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.2);
  border-radius: 100px;
  padding: 2px 8px;
  color: var(--clr-gold);
  font-weight: 600;
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact {
  background: var(--clr-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact__info-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-subtle);
  margin-bottom: 4px;
}

.contact__info-value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}

.contact__info-value a {
  color: var(--clr-gold);
  transition: color var(--dur-fast) var(--ease);
}

.contact__info-value a:hover {
  color: var(--clr-gold-light);
}

/* Contact form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--clr-bg-2);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0.85rem var(--space-md);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
  -webkit-appearance: none;

  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23f0a500'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpolyline%20points='6%209%2012%2015%2018%209'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-subtle);
}

.form-group select option {
  background: var(--clr-bg);
  color: var(--clr-text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  margin-top: var(--space-sm);
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.form__note {
  font-size: 0.78rem;
  color: var(--clr-text-subtle);
  text-align: center;
  margin-top: var(--space-xs);
}

/* Form messages (success / error) */
.form-msg {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  line-height: 1.55;
  animation: fadeUp 0.35s var(--ease) both;
}

.form-msg__icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.form-msg--error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #c0392b;
}

.form-msg--success {
  background: rgba(45, 138, 69, 0.1);
  border: 1px solid rgba(45, 138, 69, 0.35);
  color: var(--clr-success);
}

/* Disabled submit button during loading */
#contact-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none !important;
}

/* Contact Map */
.contact__map {
  margin-top: var(--space-xl);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
  height: 380px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.15);
}

/* ── SAVINGS / OSZCZĘDNOŚCI ───────────────────────────────── */
.savings__box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

.savings__details {
  padding: var(--space-lg);
}

.savings__details-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.savings__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.savings-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  transition: transform var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.savings-item:hover {
  transform: translateX(4px);
  border-color: rgba(212, 146, 10, 0.3);
}

.savings-item__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(212, 146, 10, 0.1);
  border: 1px solid rgba(212, 146, 10, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.savings-item__content {
  flex: 1;
  min-width: 0;
}

.savings-item__label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 2px;
}

.savings-item__desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.45;
  overflow-wrap: break-word;
  word-break: break-word;
}

.savings-item__value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-gold);
  white-space: nowrap;
  align-self: center;
}

.savings__summary {
  background: var(--grad-dark);
  padding: var(--space-lg);
  color: var(--clr-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--clr-border);
  min-width: 0;
  overflow: hidden;
}

.savings__summary-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(212, 146, 10, 0.15);
  border: 1px solid rgba(212, 146, 10, 0.35);
  color: var(--clr-gold-light);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.savings__total {
  margin-bottom: var(--space-md);
}

.savings__total-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.savings__total-val {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1.1;
}

.savings__total-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--clr-text-subtle);
  margin-top: 4px;
}

.savings__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--space-md) 0;
}

.savings__calc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.savings__calc-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 4px 8px;
  font-size: 0.85rem;
  min-width: 0;
}

.savings__calc-row span {
  color: rgba(255, 255, 255, 0.65);
  min-width: 0;
  word-break: break-word;
}

.savings__calc-row strong {
  font-weight: 700;
  white-space: nowrap;
}

.savings__conclusion {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-md);
  overflow-wrap: break-word;
  word-break: break-word;
}

.savings__btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.8rem var(--space-md);
}

/* Responsive Savings Section */
@media (min-width: 1200px) {
  .savings__box {
    gap: var(--space-xl);
  }
  .savings__details {
    padding: var(--space-xl);
  }
  .savings__summary {
    padding: var(--space-xl);
  }
  .savings__details-title {
    font-size: 1.5rem;
  }
  .savings-item {
    padding: var(--space-md) var(--space-lg);
  }
  .savings-item__label {
    font-size: 1.05rem;
  }
  .savings-item__desc {
    font-size: 0.88rem;
  }
  .savings-item__value {
    font-size: 1.15rem;
  }
  .savings__total-val {
    font-size: 2.6rem;
  }
}

@media (max-width: 992px) {
  .savings__box {
    grid-template-columns: 1fr;
  }
  .savings__summary {
    border-left: none;
    border-top: 1px solid var(--clr-border);
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  .savings__details,
  .savings__summary {
    padding: var(--space-md);
  }
  .savings-item {
    gap: var(--space-sm);
  }
  .savings-item__value {
    white-space: normal;
    word-break: break-word;
  }
  .savings__total-val {
    font-size: 2rem;
  }
  .savings__calc-row {
    flex-direction: column;
    gap: 2px;
  }
  .savings__calc-row strong {
    white-space: normal;
  }
}

/* Mobile (576px) */
@media (max-width: 576px) {
  .savings__details,
  .savings__summary {
    padding: var(--space-sm) var(--space-md);
  }
  .savings-item {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: var(--space-sm);
  }
  .savings-item__icon {
    align-self: flex-start;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .savings-item__content {
    flex: 1;
    min-width: 0;
  }
  .savings-item__value {
    flex-basis: 100%;
    padding-left: 40px;
    font-size: 0.95rem;
    white-space: normal;
    word-break: break-word;
    align-self: flex-start;
    margin-top: 0;
  }
  .savings__total-val {
    font-size: 1.8rem;
  }
  .savings__total-sub {
    font-size: 0.78rem;
  }
  .savings__details-title {
    font-size: 1.1rem;
  }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #1a1f2e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 360px;
}

.footer__desc a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--dur-fast);
}

.footer__desc a:hover {
  color: var(--clr-gold-light);
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--dur-fast) var(--ease);
}

.footer__links a:hover {
  color: var(--clr-gold-light);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__contact-list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--dur-fast) var(--ease);
}

.footer__contact-list a:hover {
  color: var(--clr-gold-light);
}

.footer__tel-big {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold) !important;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__seo-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  max-width: 500px;
  line-height: 1.5;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item,
  .feature-item.reverse {
    grid-template-columns: 1fr;
  }

  .feature-item.reverse .feature-item__img,
  .feature-item.reverse .feature-item__text {
    order: unset;
  }

  .feature-item__img {
    max-height: 380px;
    aspect-ratio: 4 / 3;
  }

  .feature-item__title {
    font-size: 1.4rem;
  }

  .feature-item__num {
    font-size: 3rem;
  }

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

  .zone__map {
    height: 320px;
  }

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

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__tel {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

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

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

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

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

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

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__seo-text {
    text-align: center;
  }

  /* ── Video carousel mobile ─────────────────────────────── */
  .video-carousel {
    overflow: hidden;
    width: 100%;
  }

  .video-carousel__overflow {
    overflow: hidden;
    border-radius: var(--r-lg);
    width: 100%;
    max-width: 100%;
  }

  .video-carousel__track {
    gap: 0;
    justify-content: flex-start;
    align-items: stretch;
    min-height: auto;
    /* JS will set transform: translateX */
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    /* prevent track from creating horizontal scroll */
    max-width: none;
  }

  .video-slide {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    flex-shrink: 0;
    opacity: 1 !important;
    transform: scale(1) !important;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-border) !important;
  }

  .video-slide.active {
    border-color: rgba(212, 146, 10, 0.4) !important;
    box-shadow: 0 4px 24px rgba(212, 146, 10, 0.2) !important;
  }

  .video-slide video {
    max-height: 70svh;
    width: 100%;
  }

  /* ── Reviews mobile ──────────────────────────────────────── */
  .reviews__track-wrapper {
    overflow: hidden;
    max-width: 100%;
  }

  .review-card {
    width: calc(100vw - 4rem);
    max-width: 340px;
    min-width: 0;
    flex-shrink: 0;
  }

  .accordion__price {
    font-size: 1.2rem;
  }

  .feature-item__img {
    max-height: 280px;
  }

  .feature-item__title {
    font-size: 1.2rem;
  }

  .feature-item__num {
    font-size: 2.4rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .contact__map {
    height: 280px;
  }

  .zone__map {
    height: 260px;
  }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__h1 {
    font-size: 2rem;
  }

  .accordion__header {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .accordion__price {
    order: 3;
    width: 100%;
  }
}

/* Narrow mobile ≤ 360px (Samsung Galaxy S, Xiaomi Redmi, etc.) */
@media (max-width: 360px) {
  :root {
    --space-md: 0.875rem;
    --space-lg: 1.25rem;
  }

  .container {
    padding: 0 0.875rem;
  }

  .navbar__inner {
    padding: 0 0.875rem;
  }

  .navbar__logo img {
    height: 36px;
  }

  .navbar__logo-text {
    font-size: 0.95rem;
  }

  .hero__h1 {
    font-size: 1.75rem;
  }

  .hero__sub {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 8vw, 1.75rem);
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
  }

  /* Savings: ensure nothing overflows */
  .savings__details,
  .savings__summary {
    padding: 0.875rem;
  }

  .savings-item {
    gap: 6px;
    padding: 0.75rem;
  }

  .savings-item__icon {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .savings-item__label {
    font-size: 0.85rem;
  }

  .savings-item__desc {
    font-size: 0.75rem;
  }

  .savings-item__value {
    font-size: 0.88rem;
    padding-left: 34px;
  }

  .savings__total-val {
    font-size: 1.6rem;
  }

  .savings__calc-row {
    font-size: 0.78rem;
  }

  /* Accordion */
  .accordion__header {
    padding: 0.875rem;
  }

  /* Reviews */
  .review-card {
    width: calc(100vw - 1.75rem);
  }

  /* Footer */
  .footer__tel-big {
    font-size: 0.95rem;
  }
}