/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lime:   #a8c800;
  --lime-d: #8aaa00;
  --dark:   #1e2228;
  --dark2:  #2b3038;
  --gray:   #f4f5f2;
  --text:   #333;
  --muted:  #666;
  --white:  #fff;
  --radius: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── TOPBAR ── */
.topbar { background: var(--dark); color: #aaa; font-size: .78rem; padding: .45rem 0; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .4rem; }
.topbar .tb-left, .topbar .tb-right { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.topbar i { color: var(--lime); margin-right: .3rem; }
.topbar a { color: #aaa; transition: color .2s; }
.topbar a:hover { color: var(--lime); }

/* ── HEADER ── */
header { background: var(--dark2); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 14px rgba(0,0,0,.4); }
header .wrap { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; gap: .8rem; }

.logo { display: flex; align-items: center; gap: .7rem; }
.logo-icon { width: 44px; height: 44px; background: var(--lime); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--dark); flex-shrink: 0; }
.logo-text .brand { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -.5px; }
.logo-text .brand span { color: var(--lime); }
.logo-text .tagline { font-size: .7rem; color: #888; }

nav { display: flex; align-items: center; gap: .1rem; }
nav a { color: #ccc; font-size: .83rem; font-weight: 500; padding: .5rem .75rem; border-radius: 6px; transition: .2s; white-space: nowrap; }
nav a:hover, nav a.active { background: rgba(168,200,0,.15); color: var(--lime); }

.btn-cta { background: var(--lime); color: var(--dark); font-weight: 700; font-size: .83rem; padding: .5rem 1.1rem; border-radius: 6px; transition: .2s; white-space: nowrap; }
.btn-cta:hover { background: var(--lime-d); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── WRAP ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--dark) 0%, #252c1a 100%); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -80px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(168,200,0,.15) 0%, transparent 70%); border-radius: 50%; }
.hero .wrap { display: flex; align-items: center; gap: 3rem; }
.hero-content { flex: 1; z-index: 1; }

.hero-badge { display: inline-flex; align-items: center; gap: .4rem; background: rgba(168,200,0,.12); color: var(--lime); font-size: .75rem; font-weight: 600; letter-spacing: .05em; padding: .35rem .8rem; border-radius: 20px; border: 1px solid rgba(168,200,0,.25); margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.hero h1 span { color: var(--lime); }
.hero p { color: #aab; font-size: .98rem; line-height: 1.7; max-width: 520px; margin-bottom: 2rem; }

.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn-primary { background: var(--lime); color: var(--dark); font-weight: 700; padding: .75rem 1.5rem; border-radius: 8px; font-size: .92rem; transition: .2s; display: inline-flex; align-items: center; gap: .5rem; }
.btn-primary:hover { background: var(--lime-d); color: var(--white); }
.btn-outline { border: 2px solid rgba(168,200,0,.4); color: var(--lime); font-weight: 600; padding: .7rem 1.4rem; border-radius: 8px; font-size: .92rem; transition: .2s; display: inline-flex; align-items: center; gap: .5rem; }
.btn-outline:hover { border-color: var(--lime); background: rgba(168,200,0,.08); }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat .num { font-size: 1.9rem; font-weight: 800; color: var(--lime); line-height: 1; }
.hero-stat .label { font-size: .7rem; color: #888; margin-top: .15rem; }

.hero-visual { flex: 0 0 320px; background: rgba(255,255,255,.04); border: 1px solid rgba(168,200,0,.2); border-radius: 16px; padding: 1.8rem; z-index: 1; }
.hero-visual h3 { color: var(--lime); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem; border-bottom: 1px solid rgba(168,200,0,.2); padding-bottom: .6rem; }
.quick-service { display: flex; align-items: center; gap: .7rem; padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.quick-service:last-child { border-bottom: none; }
.qs-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(168,200,0,.1); display: flex; align-items: center; justify-content: center; color: var(--lime); font-size: .9rem; flex-shrink: 0; }
.qs-text { flex: 1; }
.qs-text strong { color: var(--white); font-size: .83rem; display: block; }
.qs-text span { color: #777; font-size: .7rem; }
.qs-check { color: var(--lime); font-size: .78rem; }

/* ── SECTION SHARED ── */
section { padding: 4.5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { display: inline-block; color: var(--lime); font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.section-header h2 { font-size: clamp(1.4rem, 3vw, 1.95rem); font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.section-header p { color: var(--muted); max-width: 520px; margin: 0 auto; font-size: .9rem; }

/* ── O NAS ── */
#onas { background: var(--gray); }
.onas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.onas-content .section-label { display: block; margin-bottom: .4rem; }
.onas-content h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--dark); margin-bottom: 1rem; line-height: 1.25; }
.onas-content p { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.onas-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .55rem; }
.of-item { display: flex; align-items: center; gap: .6rem; font-size: .88rem; font-weight: 500; color: var(--dark); }
.of-item i { color: var(--lime); }

.onas-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.onas-card { background: var(--white); border-radius: var(--radius); padding: 1.4rem 1.2rem; border-left: 3px solid var(--lime); transition: box-shadow .2s; }
.onas-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.onas-card i { font-size: 1.4rem; color: var(--lime); margin-bottom: .7rem; }
.onas-card h3 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.onas-card p { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ── SERVICES ── */
#uslugi { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.service-card { background: var(--gray); border-radius: var(--radius); padding: 1.7rem 1.4rem; border: 2px solid transparent; transition: .25s; }
.service-card:hover { border-color: var(--lime); background: var(--white); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.07); }
.sc-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(168,200,0,.12); display: flex; align-items: center; justify-content: center; color: var(--lime); font-size: 1.25rem; margin-bottom: 1rem; }
.service-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.service-card > p { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.service-card ul { margin-top: .75rem; display: flex; flex-direction: column; gap: .3rem; }
.service-card ul li { font-size: .77rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; }
.service-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }

/* ── PROMO BAND ── */
.promo-band { background: linear-gradient(135deg, var(--dark) 0%, #2a3318 100%); padding: 3rem 0; }
.promo-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.promo-band h2 { color: var(--white); font-size: 1.55rem; font-weight: 800; }
.promo-band h2 span { color: var(--lime); }
.promo-band p { color: #aab; margin-top: .35rem; font-size: .88rem; }
.promo-phones { display: flex; gap: 1rem; flex-wrap: wrap; }
.phone-btn { display: flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.06); border: 1px solid rgba(168,200,0,.25); border-radius: 8px; padding: .65rem 1.1rem; transition: .2s; color: var(--white); }
.phone-btn:hover { background: var(--lime); color: var(--dark); border-color: var(--lime); }
.phone-btn i { color: var(--lime); font-size: .95rem; }
.phone-btn:hover i { color: var(--dark); }
.phone-btn span { font-size: .7rem; color: #aaa; display: block; }
.phone-btn:hover span { color: var(--dark); }
.phone-btn strong { font-size: .9rem; display: block; }

/* ── NAPRAWY ── */
#naprawy { background: var(--gray); }
.repairs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.repair-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.repair-header { background: var(--dark); padding: 1rem 1.3rem; display: flex; align-items: center; gap: .65rem; }
.repair-header i { color: var(--lime); font-size: 1rem; }
.repair-header h3 { color: var(--white); font-size: .92rem; font-weight: 700; }
.repair-body { padding: 1.1rem 1.3rem; }
.repair-body ul { display: flex; flex-direction: column; gap: .4rem; }
.repair-body li { font-size: .8rem; color: var(--muted); display: flex; gap: .45rem; align-items: flex-start; line-height: 1.5; }
.repair-body li i { color: var(--lime); margin-top: .2rem; font-size: .65rem; flex-shrink: 0; }

/* ── GSM ── */
.gsm-section { background: var(--white); }
.gsm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; margin-bottom: 2.5rem; }
.gsm-card { background: var(--gray); border-radius: var(--radius); padding: 1.7rem 1.4rem; transition: .2s; }
.gsm-card:hover { background: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.gsm-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(168,200,0,.12); display: flex; align-items: center; justify-content: center; color: var(--lime); font-size: 1.2rem; margin-bottom: 1rem; }
.gsm-card h3 { font-size: .93rem; font-weight: 700; color: var(--dark); margin-bottom: .7rem; }
.gsm-card ul { display: flex; flex-direction: column; gap: .35rem; }
.gsm-card li { font-size: .8rem; color: var(--muted); display: flex; gap: .4rem; }
.gsm-card li::before { content: '–'; color: var(--lime); flex-shrink: 0; }

.brands-section { margin-top: 1rem; }
.brands-section h3 { text-align: center; font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: .8rem; }
.brands-row { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.brand-tag { background: var(--gray); border: 1px solid #ddd; padding: .3rem .8rem; border-radius: 20px; font-size: .78rem; font-weight: 500; color: var(--muted); transition: .2s; cursor: default; }
.brand-tag:hover { background: var(--lime); color: var(--dark); border-color: var(--lime); }

/* ── SKLEP ── */
#sklep { background: var(--gray); }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.shop-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: .2s; border: 2px solid transparent; }
.shop-card:hover { border-color: var(--lime); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.shop-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(168,200,0,.1); display: flex; align-items: center; justify-content: center; color: var(--lime); font-size: 1.4rem; margin: 0 auto 1rem; }
.shop-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.shop-card ul { text-align: left; display: flex; flex-direction: column; gap: .4rem; }
.shop-card li { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.shop-card li i { color: var(--lime); font-size: .7rem; }

/* ── WHY BAND ── */
.why-band { background: var(--white); padding: 4.5rem 0; }
.why-band .section-header h2 { color: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.3rem; }
.why-card { background: var(--gray); border-radius: var(--radius); padding: 1.8rem 1.2rem; text-align: center; transition: .2s; }
.why-card:hover { background: #ecf0e0; }
.wc-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(168,200,0,.12); display: flex; align-items: center; justify-content: center; color: var(--lime); font-size: 1.2rem; margin: 0 auto 1rem; }
.why-card h3 { font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.why-card p  { font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* ── KONTAKT ── */
#kontakt { background: var(--dark); }
#kontakt .section-header h2 { color: var(--white); }
#kontakt .section-label { color: var(--lime); }
#kontakt .section-header p  { color: #888; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.contact-info h3, .contact-form h3 { color: var(--lime); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.3rem; display: flex; align-items: center; gap: .4rem; }
.contact-item { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.3rem; }
.ci-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(168,200,0,.1); display: flex; align-items: center; justify-content: center; color: var(--lime); font-size: .9rem; flex-shrink: 0; }
.ci-text strong { display: block; color: var(--white); font-size: .88rem; margin-bottom: .15rem; }
.ci-text span, .ci-text a { color: #888; font-size: .8rem; display: block; line-height: 1.5; }
.ci-text a:hover { color: var(--lime); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: .4rem; }
.hours-table td { padding: .28rem 0; font-size: .8rem; color: #888; border-bottom: 1px solid rgba(255,255,255,.05); }
.hours-table td:first-child { color: #ccc; font-weight: 500; width: 55%; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-group { margin-bottom: .75rem; }
.form-group label { display: block; color: #aaa; font-size: .77rem; margin-bottom: .3rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: .6rem .85rem; color: var(--white); font-size: .86rem;
  font-family: inherit; outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--lime); background: rgba(168,200,0,.05); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--dark2); color: var(--white); }

.btn-send { width: 100%; background: var(--lime); color: var(--dark); border: none; font-family: inherit; font-size: .92rem; font-weight: 700; padding: .8rem; border-radius: 8px; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.btn-send:hover { background: var(--lime-d); color: var(--white); }

.form-msg { margin-top: .8rem; padding: .7rem 1rem; border-radius: 6px; font-size: .83rem; text-align: center; }
.form-msg.success { background: rgba(168,200,0,.15); color: var(--lime); border: 1px solid rgba(168,200,0,.3); }
.form-msg.error   { background: rgba(220,50,50,.12); color: #f88; border: 1px solid rgba(220,50,50,.3); }

.map-wrap { margin-top: 3rem; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.08); }

/* ── FOOTER ── */
footer { background: #151a1f; padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand p { color: #777; font-size: .82rem; line-height: 1.6; margin-top: 1rem; margin-bottom: 1rem; }
.fb-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--lime); font-size: .82rem; font-weight: 600; transition: opacity .2s; }
.fb-link:hover { opacity: .8; }

.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col li, .footer-col a { color: #777; font-size: .8rem; display: flex; align-items: center; gap: .4rem; transition: color .2s; }
.footer-col a:hover { color: var(--lime); }
.footer-col i { color: var(--lime); font-size: .72rem; width: 14px; }

.footer-bottom { padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .4rem; }
.footer-bottom span { color: #555; font-size: .75rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .wrap { flex-direction: column; }
  .hero-visual { flex: none; width: 100%; max-width: 460px; }
  .onas-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar .tb-right { display: none; }
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark2); padding: 1rem 1.5rem; gap: .2rem; border-top: 1px solid rgba(255,255,255,.08); }
  nav.open { display: flex; }
  nav a { padding: .65rem .8rem; border-radius: 6px; }
  .hamburger { display: flex; }
  .btn-cta { display: none; }
  header { position: relative; }
  .hero { padding: 3rem 0; }
  .hero-stats { gap: 1.5rem; }
  .onas-cards { grid-template-columns: 1fr 1fr; }
  .promo-band .wrap { flex-direction: column; text-align: center; }
  .promo-phones { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .onas-cards { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
}
