@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&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: #99CC34;
  --green-dim: #7aaa20;
  --green-glow: rgba(153, 204, 52, 0.14);
  --green-btn: #99CC34;

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

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

  --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: var(--nav-h);
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", "Roboto", sans-serif;
  line-height: 1.15;
  letter-spacing: 0.04em;
}
h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  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: 10px 24px;
  border-radius: 100px;
  font-family: "Inter", -apple-system, system-ui, Roboto, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: all 250ms;
  white-space: nowrap;
  user-select: none;
  touch-action: manipulation;
  text-decoration: none;
}
.btn-primary {
  background-color: #99CC34;
  color: #1a2a00;
  box-shadow:
    rgba(153, 204, 52, .2) 0 -25px 18px -14px inset,
    rgba(153, 204, 52, .15) 0 1px 2px,
    rgba(153, 204, 52, .15) 0 2px 4px,
    rgba(153, 204, 52, .15) 0 4px 8px,
    rgba(153, 204, 52, .15) 0 8px 16px,
    rgba(153, 204, 52, .15) 0 16px 32px;
}
.btn-primary:hover {
  box-shadow:
    rgba(153, 204, 52, .35) 0 -25px 18px -14px inset,
    rgba(153, 204, 52, .25) 0 1px 2px,
    rgba(153, 204, 52, .25) 0 2px 4px,
    rgba(153, 204, 52, .25) 0 4px 8px,
    rgba(153, 204, 52, .25) 0 8px 16px,
    rgba(153, 204, 52, .25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}
.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: scale(1.05) rotate(-1deg);
}

/* ── Announcement Bar ── */
/* ── Site modal ── */
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.site-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.site-modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.35s ease;
}
.site-modal.visible .site-modal-box {
  transform: translateY(0);
}
.site-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.site-modal-close:hover { color: var(--text-primary); }
.site-modal-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.site-modal-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.site-modal-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.site-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .site-modal-box { padding: 32px 24px 24px; }
  .site-modal-actions { flex-direction: column; }
  .site-modal-actions .btn { width: 100%; justify-content: center; }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  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-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 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  white-space: nowrap;
}
.nav-logo-top {
  font-family: "Bebas Neue", "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  line-height: 1;
}
.nav-logo-top sup {
  font-size: 0.45em;
  vertical-align: super;
  margin-left: -0.4em;
}
.nav-logo-bottom {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.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: #1a2a00;
  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(153, 204, 52, 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(153, 204, 52, 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(153, 204, 52, 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: 0 0 48px;
}
.trust-intro {
  padding: 56px 0 48px;
  overflow: hidden;
}
.trust-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.trust-intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.trust-intro-bg {
  position: absolute;
  font-family: "Bebas Neue", 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%;
  left: 50%;
  transform: translate(-50%, -35%);
  z-index: 0;
}
.trust-intro-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.trust-intro-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.trust-intro-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
}
.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%); }
}
@keyframes logoScrollReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.slider-track-reverse {
  animation-name: logoScrollReverse;
}

.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 {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: clip;
  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;
}
.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--green);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.btn-text-arrow:hover {
  gap: 10px;
  opacity: 0.8;
}

/* 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;
}

/* Trust-style centered bigstat (1000+ Elégedett ügyfél) */
.bigstat-trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding-top: 80px;
}
.bigstat-trust-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bigstat-trust-style .bigstat-bg {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
}
.bigstat-trust-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.bigstat-trust-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.bigstat-trust-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
  text-align: center;
}
.review-cta {
  margin-top: 8px;
  margin-bottom: 64px;
}
.bigstat-30-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.bigstat-30-image {
  flex: 1;
  max-width: 480px;
}
.bigstat-30-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.bigstat-30-text {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.bigstat-30-text .bigstat-bg {
  left: -0.05em;
  top: 50%;
  transform: translateY(-60%);
}
.bigstat-30-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 480px;
}
@media (max-width: 768px) {
  .bigstat-30-inner {
    flex-direction: column;
    gap: 32px;
  }
  .bigstat-30-image {
    max-width: 100%;
    width: 100%;
  }
}
.review-slider {
  width: 100%;
  max-width: 960px;
  overflow: visible;
  position: relative;
  padding-bottom: 48px;
}
.review-slider-track {
  display: flex;
  gap: 20px;
}
.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 24px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}
.review-slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.review-dot {
  width: 8px;
  height: 8px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.review-dot.active {
  background: var(--green);
  width: 24px;
}
@media (max-width: 768px) {
  .review-slider {
    max-width: 100%;
    overflow: hidden;
  }
  .review-slider-track {
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .review-card {
    flex: 0 0 100%;
  }
  .review-slider-dots {
    display: flex;
  }
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  background: linear-gradient(to top, rgba(153, 204, 52, 0.35) 0%, transparent 100%);
}
.review-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.review-title-text {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: var(--text-secondary);
  opacity: 0.7;
}
.review-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}
.review-company {
  font-size: 0.82rem;
  color: var(--text-secondary);
  opacity: 0.6;
}

.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(60, 90, 10, 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(153, 204, 52, 0.18) 0%,
    rgba(153, 204, 52, 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(153, 204, 52, 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(153, 204, 52, 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 {
    min-height: 90vh;
    height: auto;
    padding: 60px 0;
    overflow: visible;
  }
  .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;
  }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .hero-title {
    font-size: 2.2rem;
    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: 100vh;
    padding: 80px 0 60px;
    overflow: visible;
  }
  .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;
  }
}
