/* =========================================================================
   MAIN — style sekcji motywu Stylowe Garaże
   Wszystkie media queries → responsive.css
   ========================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* FontAwesome — domyślne zachowanie inline */
i.fa-sharp,
i.fa-brands {
  display: inline-block;
  line-height: 1;
}

.btn i,
.btn-cta-large i,
.btn-cta-alt i {
  margin-left: 4px;
}

.sg-product-card-arrow i {
  transition: transform var(--t-fast);
  margin-left: 0;
}

.sg-product-card:hover .sg-product-card-arrow i {
  transform: translateX(4px);
}

/* ===================== UTILS ===================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.label {
  font-family: var(--font-b);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: var(--space-section) 0;
}

.section-title {
  font-family: var(--font-h);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: .01em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: var(--fs-lead);
  color: var(--g500);
  max-width: 65%;
  line-height: 1.7;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--t-fast);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  filter: brightness(1.05);
}

.btn-secondary {
  background: white;
  color: var(--black);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, .45);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: white;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--g200);
}

.btn-ghost-dark:hover {
  border-color: var(--black);
}

/* ===================== HEADER ===================== */
.sg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  transition: all var(--t-mid);
}

.sg-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.sg-header-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: var(--header-h);
  padding: 0 3rem;
  max-width: 100%;
  margin: 0 auto;
}

.sg-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.sg-logo img {
  height: 48px;
  width: auto;
}

.sg-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.sg-nav a {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  letter-spacing: .03em;
  white-space: nowrap;
  line-height: 1;
  opacity: .85;
  transition: color var(--t-fast), opacity var(--t-fast);
}

.sg-nav a:hover {
  color: var(--accent-dark);
  opacity: 1;
}

.sg-nav a.has-dropdown::after {
  content: '▾';
  font-size: 13px;
  margin-left: 4px;
  opacity: .4;
}

.sg-nav .current-menu-item>a {
  color: var(--accent-dark);
  opacity: 1;
}

.sg-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.sg-lang {
  display: flex;
  gap: 2px;
  background: var(--g100);
  border-radius: 6px;
  padding: 3px;
}

.sg-lang span {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.sg-lang .active {
  background: var(--black);
  color: white;
}

.sg-lang .inactive {
  color: var(--g400);
}

.sg-header-divider {
  width: 1px;
  height: 24px;
  background: var(--g200);
  margin: 0 8px;
}

.sg-header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sg-header-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  opacity: .75;
  white-space: nowrap;
  transition: opacity var(--t-fast);
}

.sg-header-contact-item:hover {
  opacity: 1;
}

.sg-header-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ===================== HERO ===================== */
.sg-hero {
  position: relative;
  height: 100dvh;
  min-height: 680px;
  display: flex;
  padding-top: var(--header-h);
  background: var(--black);
  overflow: hidden;
}

.sg-hero-panel {
  position: relative;
  z-index: 4;
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 72px 80px;
  background: var(--black);
}

.sg-hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .6;
}

.sg-hero-panel::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 70%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(245, 166, 35, .09) 0%, transparent 70%);
  pointer-events: none;
}

.sg-hero-slider-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}

.sg-hero-slider-wrap .swiper {
  width: 100%;
  height: 100%;
}

.sg-hero-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.sg-hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 16s ease-out forwards;
}

.sg-hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sg-hero-slider-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  right: auto;
  width: 22%;
  background: linear-gradient(to right, #111111 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.sg-hero-slider-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(to top, rgba(17, 17, 17, .55) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.sg-hero-slider-wrap .swiper-pagination {
  bottom: 32px !important;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sg-hero-slider-wrap .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .45);
  opacity: 1;
  margin: 0 !important;
  transition: all 300ms ease;
  cursor: pointer;
}

.sg-hero-slider-wrap .swiper-pagination-bullet:hover {
  border-color: var(--accent);
  background: rgba(245, 166, 35, .15);
}

.sg-hero-slider-wrap .swiper-pagination-bullet-active {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(245, 166, 35, .15);
}

/* Linia akcentowa rozdzielająca panel i slider */
.sg-hero-seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  z-index: 5;
  background: var(--gradient);
  opacity: .7;
  box-shadow: 0 0 20px rgba(245, 166, 35, .4), 0 0 40px rgba(232, 66, 10, .2);
}

.sg-hero-content {
  position: relative;
  z-index: 2;
}

.sg-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.sg-hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  animation: scrollPulse 2s infinite;
}

.sg-hero h1 {
  font-family: var(--font-h);
  font-size: var(--fs-h1);
  font-weight: 400;
  color: white;
  line-height: .95;
  letter-spacing: .02em;
  margin-bottom: 28px;
}

.sg-hero h1 .brand-name {
  display: block;
  color: white;
}

.sg-hero h1 .line-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sg-hero h1 .line-plain {
  color: white;
}

.sg-hero-sub {
  font-family: var(--font-b);
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.sg-hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sg-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 32px;
}

.sg-hero-stat {
  flex: 1;
  padding-right: 28px;
  position: relative;
}

.sg-hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .08);
}

.sg-hero-stat-num {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 400;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.sg-hero-stat-label {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.sg-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 80px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  transition: all var(--t-fast);
  text-decoration: none;
}

.sg-hero-scroll i {
  transition: transform var(--t-fast);
}

.sg-hero-scroll:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(245, 166, 35, .08);
}

.sg-hero-scroll:hover i {
  transform: translateY(3px);
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.7);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.0);
  }
}

/* ===================== USP BAR ===================== */
.sg-usp {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--g200);
}

.sg-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--g200);
}

.sg-usp-item {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--g200);
  border-top: 1px solid var(--g200);
  transition: background var(--t-mid);
}

.sg-usp-item:hover {
  background: var(--g100);
}

.sg-usp-icon {
  font-size: 26px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 4px;
}

.sg-usp-title {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
}

.sg-usp-text {
  font-size: 15px;
  color: var(--g500);
  line-height: 1.65;
}

/* ===================== PRODUCTS ===================== */
.sg-products {
  padding: var(--space-section) 0;
}

.sg-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.sg-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* === SWIPER PRODUKTÓW === */
.sg-products-slider-wrap {
  position: relative;
  padding: 0;
  /* karty na 100% szerokości kontenera */
}

.sg-products-swiper {
  overflow: hidden;
  padding-bottom: 56px;
}

.sg-products-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.sg-products-swiper .sg-product-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Strzałki nawigacji — wyciągnięte POZA kontener slidera (w marginesy container) */
.sg-swiper-arrow {
  position: absolute;
  top: calc(50% - 28px);
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--g200);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all var(--t-fast);
}

.sg-swiper-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--white);
}

.sg-swiper-arrow.swiper-button-disabled {
  opacity: .35;
  cursor: default;
}

.sg-swiper-arrow-prev {
  left: -84px;
}

.sg-swiper-arrow-next {
  right: -84px;
}

/* Paginacja — kropki jak w hero */
.sg-products-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sg-products-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--g200);
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  transition: all 300ms ease;
}

.sg-products-pagination .swiper-pagination-bullet:hover {
  border-color: var(--accent);
  background: rgba(245, 166, 35, .15);
}

.sg-products-pagination .swiper-pagination-bullet-active {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(245, 166, 35, .15);
}

.sg-product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 280ms ease;
  background: var(--white);
  border: 1px solid var(--g200);
  display: block;
}

.sg-product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.sg-product-card-img {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.sg-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.sg-product-card:hover .sg-product-card-img img {
  transform: scale(1.06);
}

.sg-product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, transparent 55%);
}

.sg-product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
}

.sg-product-card-body {
  padding: 22px 24px 24px;
}

.sg-product-card-title {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 6px;
}

.sg-product-card-sub {
  font-size: 14px;
  color: var(--g400);
  margin-bottom: 18px;
}

.sg-product-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.sg-product-card-arrow svg {
  transition: transform var(--t-fast);
}

.sg-product-card:hover .sg-product-card-arrow svg {
  transform: translateX(4px);
}

/* ===================== ABOUT ===================== */
.sg-about {
  position: relative;
  padding: var(--space-section) 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(245, 166, 35, .12) 0%, transparent 55%), radial-gradient(ellipse at 30% 70%, rgba(232, 66, 10, .08) 0%, transparent 50%);
  ;
  overflow: hidden;
}

/* Gradient + ozdobny pattern teraz NA CAŁEJ sekcji (nie pod zdjęciami) */
.sg-about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 166, 35, .12) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(232, 66, 10, .08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.sg-about>.container {
  position: relative;
  z-index: 1;
}

.sg-about-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: center;
}

.sg-about-text h2 {
  font-family: var(--font-h);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: .01em;
  margin-bottom: 24px;
}

.sg-about-text p {
  font-size: 16px;
  color: var(--g700);
  line-height: 1.75;
  margin-bottom: 18px;
}

.sg-quote {
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, #F5A623, #E8420A) 1;
  padding: 22px 28px;
  background: white;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.sg-quote-text {
  font-family: var(--font-b);
  font-size: 16px;
  font-style: italic;
  color: var(--g700);
  line-height: 1.7;
  margin-bottom: 14px;
}

.sg-quote-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sg-quote-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
}

.sg-quote-author {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.sg-quote-role {
  font-size: 11px;
  color: var(--g400);
  letter-spacing: .04em;
}

.sg-about-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* Każda kolumna to flex z małym, równym odstępem między zdjęciami */
.sg-collage-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Druga kolumna — offsetowana 32px w dół (efekt schodków) */
.sg-collage-col:nth-child(2) {
  margin-top: 32px;
}

/* Stara warstwa z gradientem pod kolażem — wyłączamy
   (gradient siedzi teraz na całej sekcji) */
.sg-about-collage::before {
  display: none;
  z-index: 0;
}

/* Wzorzec/pattern na całej sekcji — bo gradient już mamy na .sg-about::before/after */
.sg-about-collage::after {
  display: none;
}

.sg-collage-photo {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
  transition: transform 350ms ease;
  background: var(--g200);
}

.sg-collage-photo:hover {
  transform: scale(1.02);
}

.sg-collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-collage-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  z-index: 10;
}

.sg-badge-stat {
  text-align: center;
}

.sg-badge-num {
  font-family: var(--font-h);
  font-size: 34px;
  font-weight: 400;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* Wariant: badge ze samym tekstem (np. "15 lat na rynku") */
.sg-badge-num-text {
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Akapit treści About — wpautop może dać <p>, dlatego mar­gin */
.sg-about-paragraph {
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--g700);
  line-height: 1.75;
}

.sg-about-paragraph p {
  margin-bottom: 14px;
}

.sg-about-paragraph p:last-child {
  margin-bottom: 0;
}

/* Listy UL w treści About — pomarańczowe kropki */
.sg-about-paragraph ul {
  list-style: none;
  margin: 14px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sg-about-paragraph ul li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  color: var(--g700);
  line-height: 1.6;
}

.sg-about-paragraph ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.sg-badge-label {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--g400);
  margin-top: 5px;
}

.sg-badge-divider {
  width: 1px;
  height: 36px;
  background: var(--g200);
}

/* ===================== MATERIALS (DARK) ===================== */
.sg-materials {
  padding: var(--space-section) 0;
  background: #111111;
}

.sg-materials .label {
  color: var(--accent);
}

.sg-materials .section-title {
  color: white;
}

.sg-materials .section-sub {
  color: #777;
}

.sg-materials-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.sg-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #282828;
  margin-bottom: 52px;
}

.sg-tab {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  color: #555;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--t-fast);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.sg-tab.active {
  color: white;
  border-bottom-color: var(--accent);
}

.sg-tab:hover:not(.active) {
  color: #aaa;
}

.sg-tab-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sg-tab-content.active {
  display: grid;
}

.sg-tab-text h3 {
  font-family: var(--font-h);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: white;
  margin-bottom: 18px;
  letter-spacing: .01em;
}

.sg-tab-text p {
  font-size: 16px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Treść wysiwyg w zakładce — nagłówki, akapity, listy, pogrubienia */
.sg-tab-rich {
  margin-bottom: 24px;
}

.sg-tab-rich h2,
.sg-tab-rich h3,
.sg-tab-rich h4 {
  font-family: var(--font-h);
  font-weight: 400;
  color: white;
  letter-spacing: .01em;
  margin: 24px 0 12px;
}

.sg-tab-rich h2 {
  font-size: 32px;
}

.sg-tab-rich h3 {
  font-size: 26px;
}

.sg-tab-rich h4 {
  font-size: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}

.sg-tab-rich h2:first-child,
.sg-tab-rich h3:first-child,
.sg-tab-rich h4:first-child {
  margin-top: 0;
}

.sg-tab-rich p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 16px;
}

.sg-tab-rich p:last-child {
  margin-bottom: 0;
}

.sg-tab-rich strong {
  color: #fff;
  font-weight: 600;
}

.sg-tab-rich em {
  color: #bbb;
}

.sg-tab-rich a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(245, 166, 35, .35);
  transition: text-decoration-color var(--t-fast);
}

.sg-tab-rich a:hover {
  text-decoration-color: var(--accent);
}

.sg-tab-rich ul,
.sg-tab-rich ol {
  list-style: none;
  margin: 14px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sg-tab-rich ul li,
.sg-tab-rich ol li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
}

.sg-tab-rich ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

.sg-tab-rich ol {
  counter-reset: tab-counter;
}

.sg-tab-rich ol li {
  counter-increment: tab-counter;
}

.sg-tab-rich ol li::before {
  content: counter(tab-counter) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--accent);
}

.sg-tab-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sg-tab-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #aaa;
}

.sg-tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.sg-tab-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 64px;
  border: 1px solid #222;
}

.sg-tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== HOWTO ===================== */
.sg-howto {
  padding: var(--space-section) 0;
  background: var(--g100);
}

.sg-howto-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.sg-howto-header .label {
  justify-content: center;
  display: flex;
}

.sg-howto-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.sg-steps {
  display: flex;
  position: relative;
}

.sg-steps-line {
  position: absolute;
  top: 36px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--g200) 15%, var(--g200) 85%, transparent);
  z-index: 0;
}

.sg-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.sg-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(232, 66, 10, .3);
}

/* Liczba (fallback gdy klient nie wybrał ikony) */
.sg-step-num-text {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

/* Ikona FA w kółku — większa, biała */
.sg-step-num i {
  font-size: 28px;
  line-height: 1;
}

.sg-step-title {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}

.sg-step-text {
  font-size: 14px;
  color: var(--g500);
  line-height: 1.65;
  margin: 0 auto;
}

/* ===================== GALLERY ===================== */
.sg-gallery {
  padding: var(--space-section) 0;
}

.sg-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
}

.sg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 220px;
  gap: 12px;
}

.sg-gi {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--g200);
}

.sg-gi-1 {
  grid-column: span 5;
  grid-row: span 2;
}

.sg-gi-2 {
  grid-column: span 4;
}

.sg-gi-3 {
  grid-column: span 3;
}

.sg-gi-4 {
  grid-column: span 3;
}

.sg-gi-5 {
  grid-column: span 4;
}

.sg-gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.sg-gi:hover img {
  transform: scale(1.05);
}

.sg-gi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  transition: opacity var(--t-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-gi:hover .sg-gi-overlay {
  opacity: 1;
}

.sg-gi-zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 300;
}

/* ===================== CTA STRIP ===================== */
.sg-cta {
  padding: 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.sg-cta-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-h);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  color: white;
  opacity: .025;
  white-space: nowrap;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}

.sg-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 5%;
  width: 45%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(245, 166, 35, .12) 0%, transparent 70%);
  pointer-events: none;
}

.sg-cta::after {
  content: '';
  position: absolute;
  top: -40%;
  right: 10%;
  width: 40%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(232, 66, 10, .1) 0%, transparent 70%);
  pointer-events: none;
}

.sg-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 64px;
  padding: 96px 0;
}

.sg-cta-eyebrow {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sg-cta-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gradient);
}

.sg-cta-left h2 {
  font-family: var(--font-h);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 400;
  color: white;
  line-height: .95;
  letter-spacing: .02em;
}

.sg-cta-left h2 span {
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sg-cta-left p {
  font-size: 17px;
  color: #777;
  margin-top: 18px;
  line-height: 1.65;
  max-width: 480px;
}

.sg-cta-divider {
  width: 1px;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .12) 30%, rgba(255, 255, 255, .12) 70%, transparent);
}

.sg-cta-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.sg-cta-phone-label {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 6px;
}

.sg-cta-phone-num {
  font-family: var(--font-h);
  font-size: 56px;
  font-weight: 400;
  color: white;
  letter-spacing: .01em;
  line-height: 1;
}

.sg-cta-phone-sub {
  font-family: var(--font-b);
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

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

.btn-cta-large {
  font-size: 20px;
  padding: 16px 44px;
  background: var(--gradient);
  color: white;
  border-radius: var(--radius-pill);
  font-family: var(--font-h);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 12px 48px rgba(232, 66, 10, .4);
  transition: all var(--t-mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(232, 66, 10, .55);
  filter: brightness(1.06);
}

.btn-cta-alt {
  font-size: 20px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, .07);
  color: white;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .15);
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: all var(--t-mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-alt:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .3);
}

.sg-cta-configurator {
  position: relative;
  z-index: 2;
  height: 460px;
  margin: 0 0 96px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg, 16px);
  background: rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-family: var(--font-h);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ===================== CONTACT ===================== */
.sg-contact {
  padding: var(--space-section) 0;
  background: var(--white);
}

.sg-contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.sg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sg-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.sg-form-group.full {
  grid-column: span 2;
}

.sg-form-label {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--g700);
}

.sg-form-input {
  border: 1.5px solid var(--g200);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--black);
  background: var(--g100);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  width: 100%;
}

.sg-form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, .15);
  background: white;
}

textarea.sg-form-input {
  resize: vertical;
  min-height: 130px;
}

.sg-form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.sg-form-note {
  font-size: 12px;
  color: var(--g400);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

/* Załączniki */
.sg-form-files {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sg-form-file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px dashed var(--g200);
  border-radius: 10px;
  background: var(--g100);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  min-width: 0;
}

.sg-form-file:hover {
  border-color: var(--accent);
  background: white;
}

.sg-form-file input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.sg-form-file.has-file {
  border-style: solid;
  border-color: var(--accent);
  background: white;
}

.sg-form-file-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--g200);
  color: var(--g500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.sg-form-file.has-file .sg-form-file-icon {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.sg-form-file-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}

.sg-form-file-title {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: .03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sg-form-file-hint {
  font-size: 11px;
  color: var(--g400);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Zgoda RODO */
.sg-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  background: var(--g100);
  border: 1.5px solid var(--g200);
  border-radius: 10px;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.sg-form-consent:hover {
  border-color: var(--g300, #c8c8c8);
}

.sg-form-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sg-form-consent-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--g300, #c8c8c8);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: white;
  font-size: 12px;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.sg-form-consent-box i {
  opacity: 0;
  transform: scale(.6);
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.sg-form-consent input[type="checkbox"]:checked ~ .sg-form-consent-box {
  background: var(--accent);
  border-color: var(--accent);
}

.sg-form-consent input[type="checkbox"]:checked ~ .sg-form-consent-box i {
  opacity: 1;
  transform: scale(1);
}

.sg-form-consent input[type="checkbox"]:focus-visible ~ .sg-form-consent-box {
  box-shadow: 0 0 0 3px rgba(245, 166, 35, .2);
}

.sg-form-consent-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--g500);
}

/* CF7 — dopasowanie do naszych klas formularza */
.wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):not(.wpcf7-radio):not(.wpcf7-checkbox) {
  border: 1.5px solid var(--g200);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-b);
  font-size: 15px;
  background: var(--g100);
  width: 100%;
}

.wpcf7 .wpcf7-form-control:focus {
  border-color: var(--accent);
  background: white;
  outline: none;
}

.sg-contact-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sg-contact-boxes .sg-contact-mockup {
  grid-column: 1 / -1;
}

.sg-contact-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: transform 220ms ease;
}

.sg-contact-box-body {
  flex: 1;
  min-width: 0;
}

.sg-contact-box-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.sg-contact-box:hover {
  transform: translateX(4px);
}

.sg-contact-box.accent {
  background: var(--gradient);
}

.sg-contact-box-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: white;
}

.sg-contact-box.accent .sg-contact-box-icon {
  background: rgba(0, 0, 0, .15);
}

.sg-contact-box-label {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  white-space: nowrap;
}

.sg-contact-box.accent .sg-contact-box-label {
  color: rgba(255, 255, 255, .75);
}

.sg-contact-box-value {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  word-break: break-word;
}

.sg-contact-box-extra {
  font-family: var(--font-b);
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  margin-top: -6px;
}

.sg-contact-box-extra--fb {
  margin-top: 0;
}

.sg-contact-box.accent .sg-contact-box-extra {
  color: rgba(255, 255, 255, .8);
}

.sg-contact-box.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #0b5fcc 100%);
  color: white;
  text-decoration: none;
}

.sg-contact-box.facebook:hover {
  filter: brightness(1.08);
}

.sg-contact-box.facebook .sg-contact-box-icon {
  background: rgba(255, 255, 255, .15);
}

.sg-contact-box.facebook .sg-contact-box-label {
  color: rgba(255, 255, 255, .75);
}

.sg-fb-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--font-b);
  font-size: 13px;
  letter-spacing: .02em;
  color: white;
}

.sg-fb-badge-host {
  opacity: .65;
}

.sg-fb-badge-handle {
  font-weight: 600;
}

.sg-contact-mockup {
  margin-top: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
}

.sg-contact-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.sg-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 5px;
}

.sg-hours-row strong {
  color: white;
  font-weight: 600;
  font-family: var(--font-h);
  font-size: 17px;
}

.sg-hours-row.closed strong {
  color: rgba(255, 255, 255, .3);
}

/* ===================== FOOTER ===================== */
.sg-footer {
  background: var(--dark);
  padding: 80px 0 32px;
}

.sg-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1fr 1fr;
  gap: 32px 56px;
  margin-bottom: 64px;
  align-items: start;
}

.sg-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sg-footer-logo img {
  height: 52px;
  width: auto;
}

.sg-footer-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
  max-width: 300px;
}

.sg-footer-address-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #aaa;
  margin-top: 18px;
}

.sg-footer-address-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
}

.sg-footer-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent);
  transition: color var(--t-fast), gap var(--t-fast);
}

.sg-footer-directions:hover {
  color: white;
  gap: 12px;
}

.sg-footer-directions i {
  font-size: 12px;
}

.sg-footer-fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 12px 18px 12px 12px;
  background: linear-gradient(135deg, #1877F2 0%, #0b5fcc 100%);
  border-radius: var(--radius-lg);
  color: white;
  transition: filter var(--t-fast), transform var(--t-fast);
}

.sg-footer-fb-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.sg-footer-fb-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.sg-footer-fb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sg-footer-fb-handle {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
}

.sg-footer-fb-sub {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 2px;
}

.sg-footer-legal {
  font-size: 12px;
  color: #555;
  margin-top: 18px;
  line-height: 1.7;
}

.sg-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.sg-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-h);
  transition: all var(--t-fast);
  color: white;
}

.sg-social-btn:hover {
  transform: translateY(-2px);
}

.sg-social-btn.fb {
  background: #1877F2;
}

.sg-social-btn.fb:hover {
  background: #0e65d8;
}

.sg-social-btn.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sg-social-btn.ig:hover {
  filter: brightness(1.1);
}

.sg-social-btn.yt {
  background: #FF0000;
}

.sg-social-btn.yt:hover {
  background: #cc0000;
}

.sg-footer-col-title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .04em;
  color: white;
  margin-bottom: 20px;
}

.sg-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sg-footer-links li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.sg-footer-links a {
  font-size: 14px;
  color: #888;
  transition: color var(--t-fast);
}

.sg-footer-links a:hover {
  color: white;
}

.sg-footer-contact {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  color: white;
  position: relative;
  overflow: hidden;
}

.sg-footer-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .6;
}

.sg-footer-contact-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.sg-footer-contact-row:first-child {
  padding-top: 0;
}

.sg-footer-contact-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sg-footer-contact-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}

.sg-footer-contact-value {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 500;
  color: white;
  line-height: 1.4;
  word-break: break-word;
  transition: opacity var(--t-fast);
}

a.sg-footer-contact-value:hover {
  opacity: .8;
}

.sg-footer-desc--locations {
  margin-top: 10px;
  color: #777;
  font-size: 14px;
}

.sg-footer-bottom {
  border-top: 1px solid #242424;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.sg-footer-copy {
  font-size: 13px;
  color: #555;
}

.sg-footer-policy {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.sg-footer-policy a {
  font-size: 13px;
  color: #555;
  transition: color var(--t-fast);
}

.sg-footer-policy a:hover {
  color: #888;
}

.sg-scroll-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #666;
  background: none;
  border: 1px solid #2e2e2e;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  transition: all var(--t-fast);
}

.sg-scroll-top:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(245, 166, 35, .06);
}

.sg-scroll-top svg,
.sg-scroll-top i {
  transition: transform var(--t-fast);
}

.sg-scroll-top:hover i {
  transform: translateY(-3px);
}

.sg-scroll-top:hover svg {
  transform: translateY(-3px);
}