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

:root {
  --orange: #FF6A00;
  --orange-light: #FF8A2E;
  --orange-dark: #D45500;
  --graphite: #FFFFFF;
  --graphite-light: #F5F5F7;
  --graphite-mid: #E0E0E4;
  --white: #1A1A1F;
  --offwhite: #F8F8F6;
  --text-muted: #6B6B70;
  --text-light: #4A4A50;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--graphite);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── UTILITY ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── FLOATING SOCIAL BAR ─── */
.social-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-bar a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 52px;
  height: 52px;
  text-decoration: none;
  color: var(--white);
  font-size: 22px;
  transition: width 0.3s ease, background 0.3s ease;
  overflow: hidden;
  position: relative;
}
.social-bar a svg {
  flex-shrink: 0;
  margin-left: 15px;
}
.social-bar a.fb { background: #1877F2; }
.social-bar a.olx { background: #23E5DB; color: #002F34; }
.social-bar a.phone { background: var(--orange); }
.social-bar a:hover { width: 160px; }
.social-bar a span {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-left: 8px;
}
.social-bar a:hover span { opacity: 1; }
.social-bar svg { min-width: 22px; flex-shrink: 0; }
.social-bar .allegro-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  min-width: 22px;
  text-align: center;
  opacity: 1;
  margin-left: 15px;
}

/* ─── TOP NAV ─── */
.top-bar {
  background: var(--graphite);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.social-bar a.allegro { background: #FF5A00; }
nav { display: flex; gap: 20px; align-items: center; }
nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--orange); }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--orange) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em !important;
}
.nav-phone svg { stroke: var(--orange); }

.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: #1A1A1F; margin: 6px 0;
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F4 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,106,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,106,0,0.08);
  border: 1px solid rgba(255,106,0,0.2);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  animation: fadeIn 0.8s ease-out;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: slideUp 0.8s ease-out 0.1s both;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: slideUp 0.8s ease-out 0.25s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border: 1px solid rgba(0,0,0,0.2);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--orange); transform: translateY(-2px); }

/* Hero right visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease-out 0.5s both;
}
.phone-mockup {
  width: 280px; height: 520px;
  border-radius: 36px;
  background: linear-gradient(160deg, #2A2A30 0%, #1A1A1F 100%);
  border: 2px solid #3A3A42;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 0 60px rgba(255,106,0,0.06);
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px;
  background: #3A3A42;
  border-radius: 3px;
}
.phone-screen {
  position: absolute;
  top: 30px; left: 12px; right: 12px; bottom: 12px;
  border-radius: 24px;
  background: linear-gradient(160deg, #1a1a24, #0f0f15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.phone-screen .repair-icon {
  width: 64px; height: 64px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: rotateSlow 6s linear infinite;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.phone-screen .repair-icon svg { stroke: var(--orange); }
.phone-screen .label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--orange);
}
.phone-screen .sublabel {
  font-size: 11px;
  color: #9A9A9E;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Floating stat badges */
.stat-badge {
  position: absolute;
  background: rgba(26,26,31,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: 8px;
  white-space: nowrap;
}
.stat-badge .number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
}
.stat-badge .desc {
  font-size: 11px;
  color: #9A9A9E;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-badge.top-left { top: 20px; left: -20px; animation: float 4s ease-in-out infinite; }
.stat-badge.bottom-right { bottom: 40px; right: -30px; animation: float 4s ease-in-out 2s infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── SECTIONS COMMON ─── */
section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--orange);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ─── OFFER ─── */
.offer { background: var(--graphite); position: relative; }
.offer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.offer-card {
  background: var(--graphite-light);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.offer-card:hover {
  border-color: rgba(255,106,0,0.3);
  transform: translateY(-4px);
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}
.offer-card:hover::before { width: 100%; }
.offer-card .icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,106,0,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.offer-card .icon svg { stroke: var(--orange); }
.offer-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.offer-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.offer-card ul {
  list-style: none;
  margin-top: 16px;
}
.offer-card ul li {
  font-size: 14px;
  color: var(--text-light);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.offer-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ─── WHY US ─── */
.why-us {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F7 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.why-item { text-align: center; }
.why-item .number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.why-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.why-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── OLX SECTION ─── */
.olx-section {
  background: var(--graphite);
  position: relative;
}
.olx-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.olx-visual {
  background: linear-gradient(160deg, #F5F5F7, #FFFFFF);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.olx-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 6px;
  color: #002F34;
  background: #23E5DB;
  padding: 10px 30px;
  margin-bottom: 24px;
}
.olx-stats {
  display: flex; gap: 32px; margin-top: 20px;
}
.olx-stat {
  text-align: center;
}
.olx-stat .val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
}
.olx-stat .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.olx-content .btn-primary {
  margin-top: 32px;
  background: #23E5DB;
  color: #002F34;
}
.olx-content .btn-primary:hover { background: #1cc8bf; }

/* ─── ALLEGRO SECTION ─── */
.allegro-section {
  background: linear-gradient(180deg, #F5F5F7 0%, #FFFFFF 100%);
  position: relative;
}
.allegro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.allegro-visual {
  background: linear-gradient(160deg, #F5F5F7, #FFFFFF);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.allegro-logo-box {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 6px;
  color: #fff;
  background: #FF5A00;
  padding: 10px 40px;
  margin-bottom: 24px;
  border-radius: 4px;
}
.allegro-content .btn-primary:hover { background: #ff7a33 !important; }

/* ─── FACEBOOK SECTION ─── */
.fb-section {
  background: linear-gradient(180deg, #F5F5F7 0%, #FFFFFF 100%);
}
.fb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fb-visual {
  background: linear-gradient(160deg, #F5F5F7, #FFFFFF);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 48px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fb-icon-large {
  width: 100px; height: 100px;
  background: #1877F2;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px rgba(24,119,242,0.3);
}
.fb-posts {
  display: flex; gap: 12px; margin-top: 12px;
}
.fb-post-mini {
  width: 80px; height: 80px;
  background: #E0E0E4;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.fb-post-mini svg { stroke: #6B6B70; opacity: 0.4; }
.fb-content .btn-primary {
  margin-top: 32px;
  background: #1877F2;
}
.fb-content .btn-primary:hover { background: #2088FF; }

/* ─── REVIEWS ─── */
.reviews { background: var(--graphite); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.review-card {
  background: var(--graphite-light);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 28px;
}
.stars {
  display: flex; gap: 4px;
  margin-bottom: 16px;
}
.stars svg { fill: var(--orange); stroke: none; width: 18px; height: 18px; }
.review-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.reviewer {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── GOOGLE REVIEW BUTTON ─── */
.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e0e0e0;
  border-radius: 60px;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.google-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(66,133,244,0.25), 0 2px 8px rgba(0,0,0,0.08);
  border-color: #4285F4;
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
}
.google-review-btn svg:last-child {
  transition: transform 0.3s ease;
}
.google-review-btn:hover svg:last-child {
  transform: translateX(4px);
}

/* ─── CONTACT ─── */
.contact {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F7 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  border: 1px solid rgba(255,106,0,0.2);
  display: flex; align-items: center; justify-content: center;
}
.contact-item .ci-icon svg { stroke: var(--orange); }
.contact-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.5;
}
.contact-item a:hover { color: var(--orange); }
.contact-phone-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px !important;
  color: var(--orange) !important;
  letter-spacing: 2px;
}
.map-container {
  border: 1px solid rgba(0,0,0,0.06);
  min-height: 380px;
  background: var(--graphite-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.map-container iframe {
  width: 100%; height: 380px; border: 0; filter: contrast(90%);
}

/* ─── FOOTER ─── */
footer {
  background: #F0F0F4;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-inner p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-inner .logo .logo-img { height: 50px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { 
    margin-top: 40px;
    transform: scale(0.75);
    transform-origin: center top;
  }
  .stat-badge.top-left { left: 10px; }
  .stat-badge.bottom-right { right: 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .olx-inner, .fb-inner, .contact-grid, .allegro-inner { grid-template-columns: 1fr; }
  .olx-visual, .fb-visual, .allegro-visual { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  nav { display: none; flex-direction: column; width: 100%; order: 3; background: rgba(255,255,255,0.98); padding: 8px 0; gap: 0; }
  nav a { padding: 14px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 15px; }
  nav a:last-child { border-bottom: none; }
  .hamburger { display: block; }
  .top-bar .container { flex-wrap: wrap; }
  .logo-img { height: 60px; }
  .footer-inner .logo .logo-img { height: 50px; }
  .social-bar { top: auto; bottom: 0; right: 0; left: 0; transform: none; flex-direction: row; }
  .social-bar a { flex: 1; width: auto; height: auto; flex-direction: column; padding: 6px 0; gap: 2px; align-items: center; justify-content: center; }
  .social-bar a svg { margin-left: 0; }
  .social-bar a .allegro-icon { margin-left: 0; }
  .social-bar a span { display: block; opacity: 1; margin-left: 0; font-size: 10px; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .logo-img { height: 48px; }
  .footer-inner .logo .logo-img { height: 40px; }
  .hero-visual {
    transform: scale(0.6);
  }
}
