/* ── VARIABLES ── */
:root {
  --orange: #F4640A;
  --orange-light: #FF7D2A;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1C1C1C;
  --dark4: #242424;
  --gray: #6B6B6B;
  --light: #E8E8E8;
  --white: #F5F5F5;
}

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

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13,13,13,0.98) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  transition: background 0.3s;
  width: 100%;
  max-width: 100vw;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: #000 !important;
  padding: 0.55rem 1.4rem;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5vw 6rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--orange);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  color: var(--white);
}

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

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #999;
  max-width: 420px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.btn-primary {
  background: var(--orange);
  color: #000;
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid #444;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid #222;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-box {
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--dark3);
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #333;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #141414 0%, #1a1a1a 50%, #141414 100%);
}

.hero-img-placeholder .ph-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.hero-img-placeholder p { opacity: 0.4; }

/* diagonal overlay */
.hero-right::after {
  content: '';
  position: absolute;
  top: 0; left: -2px; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--dark), transparent);
  z-index: 1;
}

/* orange stripe */
.hero-right::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  z-index: 3;
}

/* ── SECTION BASE ── */
section {
  padding: 7rem 5vw;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--orange);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  max-width: 100vw;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #000;
  padding: 0 2rem;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ── */
#uslugi { background: var(--dark2); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: #1a1a1a;
}

.service-card {
  background: var(--dark3);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}

.service-card:hover { background: #202020; }
.service-card:hover::before { width: 100%; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: #1e1e1e;
  position: absolute;
  top: 1rem; right: 2rem;
  line-height: 1;
  transition: color 0.3s;
  user-select: none;
}

.service-card:hover .service-num { color: #252525; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #888;
  font-weight: 300;
}

/* ── ABOUT ── */
#o-nas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--dark3);
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #2a2a2a;
  background: linear-gradient(135deg, #141414, #1c1c1c);
}

.about-img-placeholder .ph-icon { font-size: 3rem; }
.about-img-placeholder p { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #333; }

.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--orange);
  color: #000;
  width: 8rem; height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  text-align: center;
}

.about-badge .big  { font-size: 2.5rem; line-height: 1; }
.about-badge .small { font-size: 0.65rem; letter-spacing: 0.1em; margin-top: 0.2rem; }

.about-content { padding: 2rem 0; }

.about-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #888;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  border-left: 2px solid var(--orange);
  padding-left: 1rem;
}

.feature-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ── EQUIPMENT / PORTFOLIO ── */
#sprzet { background: var(--dark2); }

.equipment-header { margin-bottom: 4rem; }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.eq-card {
  background: var(--dark3);
  overflow: hidden;
  transition: transform 0.3s;
}

.eq-card:hover { transform: translateY(-4px); }

.eq-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--dark4);
  overflow: hidden;
  position: relative;
}

.eq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  display: block;
  transition: opacity 0.4s, transform 0.5s;
}

.eq-card:hover .eq-img img { opacity: 0.85; transform: scale(1.05); }

.eq-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #2a2a2a;
  background: linear-gradient(135deg, #141414, #1c1c1c);
}

.eq-img-placeholder .ph-icon { font-size: 2.5rem; }
.eq-img-placeholder p { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #333; }

.eq-tag {
  position: absolute;
  top: 1rem; left: 0;
  background: var(--orange);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
}

.eq-content { padding: 1.8rem; }

.eq-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.eq-content p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #777;
  font-weight: 300;
}

/* ── WHY US ── */
#dlaczego-my {
  position: relative;
  overflow: hidden;
}

#dlaczego-my::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(244,100,10,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  margin-top: 4rem;
}

.why-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #888;
  font-weight: 300;
  margin-bottom: 3rem;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #1a1a1a;
}

.why-card {
  background: var(--dark3);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: background 0.2s;
}

.why-card:hover { background: #202020; }

.why-icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #000;
}

.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.why-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
}

/* ── CONTACT ── */
#kontakt {
  background: var(--dark2);
  text-align: center;
}

#kontakt .section-title {
  margin-bottom: 4rem;
}

.contact-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: var(--dark3);
  padding: 3rem 2rem;
  border: 1px solid #222;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  background: var(--dark4);
  border-color: var(--orange);
  transform: translateY(-5px);
}

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

.contact-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-card a {
  display: block;
  font-size: 1.1rem;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--orange-light);
}

.contact-card span {
  display: block;
  font-size: 1rem;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact-cta {
  background: var(--dark3);
  border: 2px solid var(--orange);
  padding: 3rem;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.cta-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.cta-content p {
  font-size: 1rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .cta-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1.5px;
  margin-top: 4rem;
  background: #1a1a1a;
}

.photo-cell {
  background: var(--dark3);
  overflow: hidden;
  position: relative;
}

.photo-cell:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
  transition: opacity 0.4s, transform 0.5s;
}

.photo-cell:hover img { opacity: 0.8; transform: scale(1.04); }

.ph-block {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #141414, #1c1c1c);
}

.ph-block .ph-icon { font-size: 2.5rem; opacity: 0.2; }
.ph-block p { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: #333; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid #1a1a1a;
  padding: 2.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.footer-logo span { color: var(--orange); }

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.footer-copy { font-size: 0.75rem; color: #444; letter-spacing: 0.05em; }

.footer-nip { font-size: 0.75rem; color: #333; }

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.footer-credit-text {
  font-size: 0.55rem;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.footer-credit a {
  display: block;
  line-height: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-credit a:hover {
  opacity: 1;
}

.footer-credit img {
  height: 32px;
  width: auto;
  display: block;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero               { grid-template-columns: 1fr; }
  .hero-right         { display: none; }
  .hero-left          { padding: 6rem 5vw 4rem; }
  .hero-title         { font-size: clamp(3rem, 10vw, 5rem); }
  #o-nas              { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge        { position: static; width: 6rem; height: 6rem; margin: 1rem auto; }
  .about-badge .big   { font-size: 2rem; }
  .about-badge .small { font-size: 0.6rem; }
  .services-grid      { grid-template-columns: 1fr; }
  .equipment-grid     { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .why-grid           { grid-template-columns: 1fr; gap: 3rem; }
  .photo-grid         { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 1px; }
  .photo-cell:first-child { grid-column: span 2; grid-row: span 1; }
  nav                 { padding: 1rem 5vw; }
  .nav-links          { display: none; }
  .contact-modern     { grid-template-columns: 1fr; }
  .contact-cta        { flex-direction: column; text-align: center; gap: 2rem; }
  .cta-buttons        { width: 100%; flex-direction: column; }
  .cta-buttons a      { width: 100%; text-align: center; }
  footer              { flex-direction: column; text-align: center; }
  .footer-logo        { order: 1; }
  .footer-center      { order: 2; }
  .footer-credit      { order: 3; align-items: center; }
  .footer-credit img  { height: 28px; }
  .about-features     { grid-template-columns: 1fr; gap: 1.2rem; }
  section             { padding: 4rem 5vw; }
  .service-card       { padding: 2.5rem 2rem; }
  .service-num        { font-size: 4rem; top: 0.5rem; right: 1.5rem; }
}

@media (max-width: 600px) {
  .equipment-grid     { grid-template-columns: 1fr; }
  .photo-grid         { grid-template-columns: 1fr; }
  .photo-cell:first-child { grid-column: span 1; }
  .hero-stats         { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .hero-btns          { flex-direction: column; width: 100%; }
  .hero-btns a        { width: 100%; text-align: center; }
  .contact-card       { padding: 2rem 1.5rem; }
  .contact-cta        { padding: 2rem 1.5rem; }
  .cta-content h3     { font-size: 1.4rem; }
  .why-card           { padding: 1.5rem; gap: 1.5rem; flex-direction: column; text-align: center; }
  .why-icon           { width: 3rem; height: 3rem; font-size: 1.3rem; }
  .eq-content         { padding: 1.5rem; }
  .service-card       { padding: 2rem 1.5rem; }
  .service-num        { font-size: 3rem; }
  nav                 { padding: 0.8rem 4vw; }
  .nav-logo           { font-size: 1.5rem; }
  section             { padding: 3rem 4vw; }
  .hero-left          { padding: 5rem 4vw 3rem; }
  .marquee-inner span { font-size: 0.85rem; padding: 0 1.5rem; }
  .footer-credit img  { height: 24px; }
  .footer-credit-text { font-size: 0.5rem; }
}

@media (max-width: 400px) {
  .hero-title         { font-size: 2.5rem; }
  .section-title      { font-size: 2rem; }
  .stat-num           { font-size: 2rem; }
  .stat-label         { font-size: 0.65rem; }
  .hero-stats         { margin-top: 2rem; padding-top: 1.5rem; }
  .contact-card h3    { font-size: 1.1rem; }
  .contact-card a     { font-size: 1rem; }
  .footer-logo        { font-size: 1.4rem; }
  .footer-copy        { font-size: 0.7rem; text-align: center; }
  .btn-primary        { padding: 0.85rem 1.5rem; font-size: 0.75rem; }
  .btn-outline        { padding: 0.85rem 1.5rem; font-size: 0.75rem; }
  .hero-subtitle      { font-size: 0.9rem; }
  .services-header    { gap: 1rem; }
  .eq-card            { margin: 0; }
}

@media (max-width: 360px) {
  nav                 { padding: 0.7rem 3vw; }
  .nav-logo           { font-size: 1.3rem; }
  section             { padding: 2.5rem 3vw; }
  .hero-left          { padding: 4.5rem 3vw 2.5rem; }
  .hero-title         { font-size: 2.2rem; margin-bottom: 1.5rem; }
  .section-title      { font-size: 1.8rem; }
  .hero-subtitle      { font-size: 0.85rem; margin-bottom: 2rem; }
  .btn-primary        { padding: 0.8rem 1.2rem; font-size: 0.7rem; }
  .btn-outline        { padding: 0.8rem 1.2rem; font-size: 0.7rem; }
  .stat-num           { font-size: 1.8rem; }
  .stat-label         { font-size: 0.6rem; }
  .service-card       { padding: 1.8rem 1.2rem; }
  .service-num        { font-size: 2.5rem; top: 0.5rem; right: 1rem; }
  .contact-card       { padding: 1.8rem 1.2rem; }
  .contact-cta        { padding: 1.8rem 1.2rem; }
  .footer-logo        { font-size: 1.2rem; }
  .footer-copy        { font-size: 0.65rem; }
  .footer-credit img  { height: 20px; }
  .footer-credit-text { font-size: 0.45rem; }
  .marquee-inner span { font-size: 0.75rem; padding: 0 1rem; }
}
