@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:    #0e0e0f;
  --bg-surface: #131314;
  --bg-card:    #1a1a1c;
  --bg-card-hover: #202023;
  --border:     rgba(255,255,255,0.07);

  --green:      #7ee8a2;
  --green-dim:  #4ade80;
  --green-glow: rgba(126,232,162,0.14);
  --green-btn:  #5edf8a;

  --amber:      #fbbf24;
  --amber-glow: rgba(251,191,36,0.1);

  --text-primary:   #f0f0f0;
  --text-secondary: #9a9aaa;
  --text-muted:     #5a5a6a;

  --announce-h: 44px;
  --nav-h:      68px;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background-color: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--announce-h) + var(--nav-h));
}
body.no-announce {
  padding-top: var(--nav-h);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); font-weight: 600; }
p  { color: var(--text-secondary); }
a  { color: inherit; text-decoration: none; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 14px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-btn);
  color: #071a0e;
  box-shadow: 0 0 24px rgba(94,223,138,0.25);
}
.btn-primary:hover {
  background: #73f0a0;
  box-shadow: 0 0 38px rgba(94,223,138,0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

/* ── Announcement Bar ── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--announce-h);
  background-image: linear-gradient(
    -45deg,
    #000 25%, #fbbf24 25%,
    #fbbf24 50%, #000 50%,
    #000 75%, #fbbf24 75%
  );
  background-size: 44px 44px;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 110px;
  color: #000;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform var(--transition), opacity var(--transition);
  overflow: hidden;
  animation: stripeFlow 1s linear infinite;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    #fbbf24 90px,
    #fbbf24 calc(100% - 90px),
    transparent 100%
  );
  pointer-events: none;
}
.announcement-bar::after { content: none; }

@keyframes stripeFlow {
  from { background-position: 0 0; }
  to   { background-position: 44px 44px; }
}
.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 800;
}
.announcement-bar a:hover { opacity: 0.7; }
.announcement-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  z-index: 1;
  transition: opacity var(--transition);
}
.announcement-close:hover { opacity: 0.6; }
.announcement-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: top var(--transition), background var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(14,14,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav.announce-gone {
  top: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.site-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-icon {
  width: 32px; height: 32px;
  background: var(--green-btn);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071a0e;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; align-items: center; }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 6px;
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,14,15,0.97);
  backdrop-filter: blur(24px);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mobile-link {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}
.mobile-menu .mobile-link:hover { color: var(--green); }
.mobile-close {
  position: absolute;
  top: 22px; right: 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: calc(100svh - var(--announce-h) - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(94,223,138,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-text {
  position: relative;
}
.hero-year-bg {
  position: absolute;
  top: -0.65em;
  left: -0.05em;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(100px, 15vw, 190px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(to bottom, var(--green) 0%, transparent 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-title {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.hero-title .accent { color: var(--green); }
.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 10px;
  max-width: 480px;
  color: var(--text-secondary);
}
.hero-question {
  font-size: 0.9rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: var(--green-light);
  margin-bottom: 8px;
  opacity: 0.5;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Hero Image */
.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(126,232,162,0.12);
  background: linear-gradient(to bottom, transparent 60%, rgba(14,14,15,0.4));
}
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(14,14,15,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(126,232,162,0.2);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 0;
}

/* ── Trust Slider ── */
.trust-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 0;
}
.slider-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
.slider-wrapper::before,
.slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-surface), transparent);
}
.slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-surface), transparent);
}
.slider-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: logoScroll 32s linear infinite;
  padding: 8px 0 40px;
}
.slider-track:hover { animation-play-state: paused; }

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

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-item img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.logo-grey img {
  filter: grayscale(1);
  opacity: 0.6;
}

/* ── Stats Bar ── */
/* ── Big Stats ── */
.bigstats-section {
  border-top: 1px solid var(--border);
}
.bigstat-block {
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.bigstat-block .container {
  position: relative;
  z-index: 1;
}
.bigstat-inner {
  position: relative;
}
.bigstat-bg {
  position: absolute;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(130px, 20vw, 300px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(to bottom, var(--green) 0%, transparent 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-60%);
}
.bigstat-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}
.bigstat-heading {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.bigstat-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 520px;
}

/* Center */
.bigstat-center .bigstat-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bigstat-center .bigstat-bg {
  left: 50%;
  transform: translate(-50%, -60%);
}
.bigstat-center .bigstat-content p { margin: 0 auto; }

/* Left */
.bigstat-left .bigstat-inner { text-align: left; }
.bigstat-left .bigstat-bg { left: -0.05em; }

.bigstat-with-image .bigstat-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.bigstat-quote {
  position: absolute;
  bottom: 24px;
  left: -32px;
  z-index: 3;
  background: rgba(20,90,45,0.75);
  border: none;
  padding: 18px 20px 38px;
  max-width: 240px;
  animation: floatQuote 6s ease-in-out infinite;
}

@keyframes floatQuote {
  0%, 100% { transform: translateX(0px); }
  50%       { transform: translateX(10px); }
}
.bigstat-quote::after { display: none; }
.bigstat-quote-text {
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary) !important;
  margin-bottom: 12px;
}
.bigstat-quote-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  display: block;
}
.bigstat-quote-author em {
  font-style: normal;
  color: var(--text-primary);
  font-weight: 400;
}
.bigstat-stars {
  position: absolute;
  bottom: 12px;
  right: 14px;
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testimonial-slider {
  flex-shrink: 0;
  width: 440px;
  position: relative;
}
.testimonial-slide {
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.testimonial-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.bigstat-image {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bigstat-image::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: 0;
  background: linear-gradient(to bottom, rgba(94,223,138,0.18) 0%, rgba(94,223,138,0.04) 100%);
  z-index: 0;
  animation: floatSquare 5s ease-in-out infinite;
}
.bigstat-image img {
  width: 100%;
  height: auto;
  max-height: calc(85vh - 80px);
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.bigstat-image img.img-smaller {
  width: 70%;
  margin: 0 auto;
}

@keyframes floatSquare {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@media (max-width: 768px) {
  .bigstat-with-image .bigstat-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .bigstat-right.bigstat-with-image .bigstat-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .bigstat-right.bigstat-with-image .bigstat-image { order: 0; }
  .bigstat-image {
    display: block;
    width: 100%;
  }
  .testimonial-slider { width: 100%; }
  .bigstat-image img {
    height: 360px;
    object-fit: contain;
    object-position: center bottom;
  }
  .bigstat-quote {
    left: 0;
    bottom: 16px;
    max-width: 78%;
    padding: 10px 14px 28px;
  }
  .bigstat-quote-text {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 6px;
  }
  .bigstat-quote-author {
    font-size: 0.72rem;
  }
}

/* Right */
.bigstat-right .bigstat-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.bigstat-right .bigstat-bg { right: -0.05em; }
.bigstat-right .bigstat-content p { margin-left: auto; }
.bigstat-right.bigstat-with-image .bigstat-inner {
  flex-direction: row;
  align-items: center;
  text-align: left;
}
.bigstat-right.bigstat-with-image .bigstat-image { order: -1; }
.bigstat-right.bigstat-with-image .bigstat-content p { margin-left: 0; }

/* ── Services ── */
.services {
  padding: 100px 0;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-dim), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(126,232,162,0.2);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--green-glow);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 22px;
}
.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.service-more {
  display: none;
}
.service-more-visible {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.03em;
  transition: gap 0.2s ease;
}
.service-card:hover .service-more { gap: 9px; }

/* ── Reference Images ── */
.refs-section {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.refs-grid {
  display: block;
}
.ref-item {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 16px auto;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.ref-item:last-child {
  margin-bottom: 0;
}
.ref-item img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.5s ease;
}
.ref-item:hover img { transform: scale(1.03); }
.ref-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,15,0.35), transparent 50%);
  pointer-events: none;
}

/* ── Contact ── */
.contact-section {
  padding: 100px 0;
}
.contact-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #fbbf24;
  border: none;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
}
.contact-intro p {
  color: #000;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--green-glow);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-item span,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
  display: block;
}
.contact-info-item a:hover { color: var(--green); }
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg) brightness(0.85) contrast(0.9);
}

/* ── Snap dots ── */
.snap-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.snap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.snap-dot.active {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.4);
}
.snap-dot:hover:not(.active) {
  background: rgba(255,255,255,0.45);
}

/* ── Scroll hint arrow ── */
.scroll-hint {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  color: rgba(255,255,255,0.35);
  animation: bounceHint 1.6s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.4s;
}
.scroll-hint.hidden { opacity: 0; }
@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

@media (max-width: 768px) {
  .snap-dots { right: 10px; }
}

/* ── Footer ── */
footer {
  padding: 52px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.86rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--green-light); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { color: var(--green); border-color: rgba(126,232,162,0.3); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 540px; margin: 0 auto; width: 100%; }
  .hero-img { height: 380px; }
  .service-card { flex: 0 0 calc(50% - 10px); }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { height: 340px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .service-card { flex: 0 0 100%; }
  .bigstat-block { height: 90vh; padding: 0; }
  .bigstat-block .container { position: static; }
  .bigstat-inner { position: static; }
  .bigstat-bg { position: absolute; top: 12vh; transform: translateY(0); }
  .bigstat-center .bigstat-bg { transform: translateX(-50%); }
  .bigstat-right.bigstat-with-image .bigstat-inner {
    flex-direction: column !important;
    align-items: flex-start;
    text-align: left;
  }
  .bigstat-right.bigstat-with-image .bigstat-image { order: 0 !important; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  :root { --announce-h: 52px; }
  .announcement-bar { font-size: 0.76rem; padding: 0 44px; text-align: center; line-height: 1.4; }
  .btn { padding: 11px 20px; font-size: 0.84rem; }
  .hero-question { text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-img { height: 280px; }
  .bigstat-right .bigstat-inner { align-items: flex-start; text-align: left; }
  .bigstat-right .bigstat-bg { right: auto; left: -0.05em; }
  .contact-actions { flex-direction: column; }
  .contact-map { height: 280px; }
}

@media (max-width: 375px) {
  /* ── Hero ── */
  .hero { padding: 48px 0 48px; }
  .hero-content { gap: 28px; }
  .hero-title { font-size: 1.7rem; margin-bottom: 12px; }
  .hero-desc { font-size: 0.88rem; }
  .hero-question { font-size: 0.78rem; }
  .hero-img { height: 200px; }
  .hero-visual { max-width: 100%; }
  .btn { padding: 9px 16px; font-size: 0.8rem; }
  .hero-year-bg { font-size: 80px; }

  /* ── Bigstat általános ── */
  .bigstat-block { height: auto; min-height: 100svh; padding: 80px 0 60px; }
  .bigstat-bg { font-size: clamp(80px, 28vw, 130px); top: 8vh; }
  .bigstat-heading { font-size: 1.8rem; margin-bottom: 16px; }
  .bigstat-content p { font-size: 0.88rem; }

  /* ── 1000+ Projekt (center) ── */
  .bigstat-center .bigstat-inner { gap: 0; }

  /* ── 1000+ Elégedett ügyfél (left + image) ── */
  .bigstat-with-image .bigstat-inner {
    flex-direction: column;
    gap: 16px;
  }
  .bigstat-image img {
    max-height: 220px;
    object-fit: contain;
  }
  .testimonial-slider { width: 100%; }
  .bigstat-quote {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 8px;
    padding: 10px 12px 12px;
  }
  .bigstat-stars { display: none; }
  .bigstat-image::before { display: none; }

  /* ── 30+ év tapasztalat (right + image) ── */
  .bigstat-right.bigstat-with-image .bigstat-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
  }
  .bigstat-right.bigstat-with-image .bigstat-image {
    order: 0 !important;
    width: 100%;
  }
  .bigstat-right.bigstat-with-image .bigstat-image img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
}
