/* ==========================================================================
   SPECO Custom CSS Stylesheet
   ========================================================================== */

/* Utility and Global classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.py-5 { padding-top: 80px; padding-bottom: 80px; }
.mb-3 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 48px; }

/* Custom Buttons */
.speco-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-headers);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.speco-button-orange {
  background-color: var(--color-accent-orange);
  color: var(--color-bg-white);
}

.speco-button-orange:hover {
  background-color: var(--color-accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 95, 56, 0.2);
}

.speco-button-glow {
  background-color: var(--color-accent-orange);
  color: var(--color-bg-white);
  box-shadow: 0 10px 25px rgba(226, 95, 56, 0.4);
  font-size: 14px;
}

.speco-button-glow:hover {
  background-color: var(--color-accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(226, 95, 56, 0.5);
}

.speco-button-ghost {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color-text-charcoal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.speco-button-ghost:hover {
  background-color: var(--color-bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.speco-button-white {
  background-color: var(--color-bg-white);
  color: var(--color-text-charcoal);
}

.speco-button-white:hover {
  background-color: var(--color-bg-sand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.speco-button-link-white {
  background-color: transparent;
  color: var(--color-bg-white);
  padding: 16px 0;
}

.speco-button-link-white .arrow {
  margin-left: 8px;
  transition: var(--transition-smooth);
}

.speco-button-link-white:hover {
  color: var(--color-accent-orange);
}

.speco-button-link-white:hover .arrow {
  transform: translateX(6px);
}

.speco-button-link {
  background-color: transparent;
  color: var(--color-text-charcoal);
  padding: 16px 16px;
}

.speco-button-link .arrow {
  margin-left: 8px;
  transition: var(--transition-smooth);
}

.speco-button-link:hover {
  color: var(--color-accent-orange);
}

.speco-button-link:hover .arrow {
  transform: translateX(6px);
}

/* Header Styles */
.site-header {
  background-color: var(--color-bg-sand);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border-light);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  flex: 1;
}

.speco-logo {
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text-charcoal);
  text-decoration: none;
  letter-spacing: -1px;
}

.speco-logo .dot {
  color: var(--color-accent-orange);
}

.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-navigation a {
  text-decoration: none;
  color: var(--color-text-charcoal);
  font-family: var(--font-headers);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.main-navigation a:hover {
  color: var(--color-accent-orange);
}

.header-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.header-action-btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-charcoal);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background-color: var(--color-bg-sand);
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tagline {
  font-family: var(--font-headers);
  font-weight: 600;
  color: var(--color-accent-orange);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-headers);
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text-charcoal);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-title .highlight {
  color: var(--color-accent-orange);
}

.hero-description {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.dot-red {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent-orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.hero-stats-new {
  display: flex;
  gap: 16px;
  align-items: center;
}

.stat-box {
  background: var(--color-bg-white);
  padding: 12px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.stat-box strong {
  font-family: var(--font-headers);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-charcoal);
}

.stat-box span {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Hero Visual (Right Side) */
.hero-visual-new {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4 / 4.5;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speco-overlay-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text-charcoal);
  letter-spacing: -1px;
}

.hero-card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-card-overlay-text h3 {
  font-family: var(--font-headers);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-card-overlay-text p {
  font-size: 11px;
  color: var(--color-text-muted);
  max-width: 250px;
  line-height: 1.4;
}

.hero-card-link {
  font-family: var(--font-headers);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent-orange);
  text-decoration: none;
  white-space: nowrap;
}

/* Quick Features Section */
.quick-features-section {
  padding: 10px 0 60px 0;
  background-color: var(--color-bg-sand);
}

.features-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-pill {
  background: var(--color-bg-white);
  padding: 8px 20px 8px 8px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--color-text-charcoal);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.circle-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-accent-orange);
  color: white;
  border-radius: 50%;
  font-size: 12px;
}

/* Brand Statement Section */
.brand-statement-section {
  padding: 100px 0;
}

.statement-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.statement-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 500px;
}

.statement-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-image-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: var(--color-bg-white);
}

.statement-image-text h2 {
  font-family: var(--font-headers);
  font-size: 48px;
  font-weight: 700;
}

.statement-text-card {
  background-color: var(--color-text-charcoal);
  color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.card-tagline {
  color: var(--color-accent-orange);
  font-family: var(--font-headers);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 20px;
}

.statement-text-card h2 {
  font-family: var(--font-headers);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.card-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Collections Section */
.collections-section {
  padding: 100px 0;
  background-color: var(--color-bg-sand-light);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-headers);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 16px;
}

.collections-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.collection-card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.highlighted-card {
  border: 2px solid var(--color-accent-orange);
  transform: scale(1.02);
}

.highlighted-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.collection-color-block {
  height: 140px;
  width: 100%;
}

.color-slim { background-color: #C19A6B; background-image: linear-gradient(135deg, #C19A6B 0%, #A68053 100%); }
.color-cubana { background-color: #A07855; background-image: linear-gradient(135deg, #A07855 0%, #835C3A 100%); }
.color-loft { background-color: #4A4A4A; background-image: linear-gradient(135deg, #4A4A4A 0%, #2B2B2B 100%); }
.color-boho { background-color: #E6D7C3; background-image: linear-gradient(135deg, #E6D7C3 0%, #CCBCAB 100%); }
.color-linea { background-color: #D2B48C; background-image: linear-gradient(135deg, #D2B48C 0%, #B89A72 100%); }

.collection-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.collection-tag {
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-accent-orange);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.collection-info h3 {
  font-family: var(--font-headers);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.collection-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.collection-specs {
  list-style: none;
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
  margin-bottom: 24px;
}

.collection-specs li {
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--color-text-charcoal);
  display: flex;
  justify-content: space-between;
}

.card-link {
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-charcoal);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.card-link:hover {
  color: var(--color-accent-orange);
}

/* Pillars Section */
.pillars-section {
  padding: 100px 0;
  background-color: var(--color-bg-sand);
}

.pillars-grid {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  border: 1px solid var(--color-border-light);
  position: relative;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.pillar-number {
  font-family: var(--font-headers);
  font-size: 60px;
  font-weight: 800;
  color: rgba(30, 30, 30, 0.05);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.pillar-card h3 {
  font-family: var(--font-headers);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text-charcoal);
}

.pillar-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.featured-pillar {
  background-color: var(--color-accent-orange);
  color: var(--color-bg-white);
  border-color: var(--color-accent-orange);
}

.featured-pillar .pillar-number {
  color: rgba(255, 255, 255, 0.15);
}

.featured-pillar h3 {
  color: var(--color-bg-white);
}

.featured-pillar p {
  color: rgba(255, 255, 255, 0.9);
}

/* Gotowa Na Wszystko Section */
.gotowa-section {
  padding: 100px 0;
  background-color: var(--color-bg-white);
}

.gotowa-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  align-items: center;
}

.gotowa-left {
  padding-right: 40px;
}

.gotowa-left .section-title {
  font-family: var(--font-headers);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.gotowa-left .section-desc {
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.gotowa-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gotowa-spec-box {
  background-color: var(--color-bg-sand);
  border-radius: var(--border-radius-md);
  padding: 24px;
}

.gotowa-spec-box strong {
  display: block;
  font-family: var(--font-headers);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-charcoal);
  margin-bottom: 4px;
}

.gotowa-spec-box span {
  font-size: 13px;
  color: var(--color-text-light);
}

.gotowa-middle {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 480px;
}

.feet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gotowa-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gotowa-info-card {
  background-color: var(--color-bg-sand);
  border-radius: var(--border-radius-md);
  padding: 32px;
  border-left: 4px solid var(--color-accent-orange);
}

.gotowa-info-card h3 {
  font-family: var(--font-headers);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.gotowa-info-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.gotowa-checklist-card {
  background-color: var(--color-bg-sand-light);
  border-radius: var(--border-radius-md);
  padding: 32px;
  border: 1px dashed var(--color-border-light);
}

.gotowa-checklist-card ul {
  list-style: none;
}

.gotowa-checklist-card li {
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gotowa-checklist-card li:last-child {
  margin-bottom: 0;
}

.check-icon {
  color: var(--color-accent-orange);
  font-weight: bold;
}

/* Inquiry Calculator Banner (Orange) */
.quick-inquiry-section {
  padding: 60px 0;
  background-color: var(--color-bg-sand);
}

.quick-inquiry-banner {
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--color-accent-orange);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  color: var(--color-bg-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 20px 48px rgba(226, 95, 56, 0.2);
}

.banner-text h2 {
  font-family: var(--font-headers);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.banner-interactive {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.interactive-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 20px;
}

.interactive-select, .interactive-input, .interactive-result {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interactive-select label, .interactive-input label, .interactive-result label {
  font-family: var(--font-headers);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

.interactive-select select, .interactive-input input {
  padding: 14px 20px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  color: var(--color-bg-white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition-smooth);
}

.interactive-select select option {
  color: var(--color-text-charcoal);
  background-color: var(--color-bg-white);
}

.interactive-select select:focus, .interactive-input input:focus {
  border-color: var(--color-bg-white);
  background-color: rgba(255, 255, 255, 0.05);
}

.result-value {
  font-family: var(--font-headers);
  font-size: 24px;
  font-weight: 700;
  padding: 8px 0;
}

/* Inspirations Section */
.inspirations-section {
  padding: 100px 0;
}

.inspirations-grid {
  max-width: 1400px;
  margin: 50px auto 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 24px;
}

.inspire-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.inspire-tall {
  grid-row: span 2;
  grid-column: 1 / 2;
}

.inspire-card:nth-child(2) {
  grid-column: 2 / 3;
}

.inspire-card:nth-child(3) {
  grid-column: 3 / 4;
}

.inspire-card:nth-child(4) {
  grid-column: 2 / 4;
}

.inspire-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.inspire-card:hover .inspire-img {
  transform: scale(1.08);
}

.inspire-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--color-bg-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 50%;
}

.inspire-overlay h3 {
  font-family: var(--font-headers);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.inspire-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Promo Section */
.promo-section {
  padding: 100px 0;
  background-color: var(--color-bg-sand-light);
}

.promo-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.promo-tag {
  color: var(--color-accent-orange);
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.promo-text h2 {
  font-family: var(--font-headers);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.promo-text p {
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-size: 16px;
}

.promo-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.promo-visual {
  display: flex;
  justify-content: center;
}

.packaging-mockup-wrapper {
  background: var(--color-bg-sand);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.package-mockup {
  max-width: 100%;
  height: auto;
}

/* Footer Styles */
.site-footer {
  background-color: var(--color-text-charcoal);
  color: var(--color-bg-white);
  padding: 80px 0 0 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.footer-branding .speco-logo {
  color: var(--color-bg-white);
}

.footer-slogan {
  margin-top: 12px;
  font-family: var(--font-headers);
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.footer-column h4 {
  font-family: var(--font-headers);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--color-bg-white);
  opacity: 0.9;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-column a:hover {
  color: var(--color-accent-orange);
}

.footer-column p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.distributor-name {
  font-weight: 600;
  color: var(--color-bg-white) !important;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Single Product WooCommerce Styling */
.speco-inquiry-container {
  margin: 30px 0;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: var(--color-accent-orange);
}

.woocommerce-tabs {
  border-top: 1px solid var(--color-border-light);
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .hero-title { font-size: 52px; }
  .collections-grid { grid-template-columns: repeat(3, 1fr); }
  .gotowa-container { grid-template-columns: 1fr 1fr; }
  .gotowa-middle { display: none; }
}

@media (max-width: 991px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .statement-container { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .quick-inquiry-banner { grid-template-columns: 1fr; gap: 30px; }
  .inspirations-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .inspire-tall { grid-row: auto; height: 280px; }
  .promo-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .menu-toggle { display: flex; }
  .main-navigation ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-sand);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .main-navigation.active ul { display: flex; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 38px; }
  .collections-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .promo-buttons { flex-direction: column; align-items: stretch; }
  .interactive-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
}

/* ==========================================================================
   MONTAŻ PAGE STYLES
   ========================================================================== */

/* Page Hero */
.page-hero-section {
  padding: 100px 0 80px;
  background-color: var(--color-bg-sand);
}

.page-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-hero-title {
  font-family: var(--font-headers);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--color-text-charcoal);
  margin-bottom: 20px;
}

.page-hero-title .highlight {
  color: var(--color-accent-orange);
}

.page-hero-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 36px;
}

.page-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.montaz-hero-img-wrap {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/3.5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.montaz-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.montaz-hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.badge-time {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.badge-time-number {
  font-family: var(--font-headers);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent-orange);
}

.badge-time-label {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.badge-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border-light);
}

.badge-tools-label {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.badge-tools-value {
  display: block;
  font-family: var(--font-headers);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-charcoal);
}

/* Montaż Features */
.montaz-features-section {
  padding: 80px 0;
  background: var(--color-bg-white);
}

.montaz-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.montaz-feature-card {
  background: var(--color-bg-sand);
  border-radius: var(--border-radius-md);
  padding: 32px 28px;
  transition: var(--transition-smooth);
}

.montaz-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.mf-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.montaz-feature-card h3 {
  font-family: var(--font-headers);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text-charcoal);
}

.montaz-feature-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Steps Timeline */
.montaz-steps-section {
  padding: 100px 0;
  background: var(--color-bg-sand);
}

.section-header-center {
  text-align: center;
  margin-bottom: 80px;
}

.section-header-center h2 {
  font-family: var(--font-headers);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 12px 0 16px;
  color: var(--color-text-charcoal);
}

.section-sub {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step-item {
  position: relative;
}

.step-number {
  font-family: var(--font-headers);
  font-size: 80px;
  font-weight: 700;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -4px;
}

.step-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.step-item-reverse .step-content {
  direction: rtl;
}

.step-item-reverse .step-content > * {
  direction: ltr;
}

.step-text h3 {
  font-family: var(--font-headers);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text-charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.step-text p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.step-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.step-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-charcoal);
}

.step-img-wrap {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.step-img-wrap:hover .step-img {
  transform: scale(1.04);
}

/* Tools Section */
.tools-section {
  padding: 100px 0;
  background: var(--color-bg-white);
}

.tools-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.tools-text h2 {
  font-family: var(--font-headers);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 12px 0 16px;
  color: var(--color-text-charcoal);
}

.tools-text p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tool-card {
  background: var(--color-bg-sand);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition-smooth);
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.tool-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.tool-card strong {
  font-family: var(--font-headers);
  font-size: 15px;
  color: var(--color-text-charcoal);
}

.tool-card span {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--color-bg-sand);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
}

.faq-card {
  background: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}

.faq-card h4 {
  font-family: var(--font-headers);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-charcoal);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Montaż CTA Section */
.montaz-cta-section {
  padding: 80px 0;
  background: var(--color-text-charcoal);
}

.montaz-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.montaz-cta-text h2 {
  font-family: var(--font-headers);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--color-bg-white);
  margin: 12px 0 16px;
}

.montaz-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 500px;
}

.montaz-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Shared label style */
.section-label {
  font-family: var(--font-headers);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent-orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive - Montaż */
@media (max-width: 1024px) {
  .page-hero-container { grid-template-columns: 1fr; gap: 40px; }
  .montaz-features-grid { grid-template-columns: repeat(2, 1fr); }
  .step-content { grid-template-columns: 1fr; gap: 32px; }
  .step-item-reverse .step-content { direction: ltr; }
  .tools-inner { grid-template-columns: 1fr; gap: 40px; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .montaz-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-title { font-size: 42px; }
}

@media (max-width: 640px) {
  .montaz-features-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-actions { flex-direction: column; align-items: stretch; }
  .montaz-cta-actions { width: 100%; }
  .page-hero-title { font-size: 34px; }
}
