/* =========================
   BASE
========================= */

:root {
  --color-ink: #0f172a;
  --color-muted: #64748b;
  --color-line: #e2e8f0;
  --color-bg: #f8fafc;
  --color-card: #ffffff;
  --color-teal: #14b8a6;
  --color-blue: #3b82f6;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 70px rgba(15, 23, 42, .10);
  --container-narrow: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-bg);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================
   SKIP LINK
========================= */

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  z-index: 9999;
  background: var(--color-ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* =========================
   HEADER / NAVBAR
   alap = mobil
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(248, 250, 252, .88);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(226, 232, 240, .8);

  transition:
    background .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 252, .96);
  border-bottom-color: rgba(226, 232, 240, .95);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.navbar {
  padding: .75rem 0;
}

.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .22rem;
  text-transform: uppercase;

  color: var(--color-ink) !important;
  text-decoration: none;

  transition: opacity .2s ease;
}

.navbar-brand:hover {
  opacity: .75;
}

.navbar-collapse {
  margin-top: .85rem;
}

.navbar-nav {
  gap: .15rem;
}

.nav-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  width: 100%;

  font-weight: 700;
  color: var(--color-ink) !important;

  text-decoration: none;

  padding: .55rem 0;
}

.nav-link:hover,
.nav-link:focus {
  color: #0d9488 !important;
}



.nav-link.active::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;
  bottom: .15rem;

  width: 2.25rem;
  height: 2px;

  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
}

/* =========================
   HASZNOS MOBIL ALMENÜ
========================= */

.nav-mobile-label {
  display: block;

  padding: .75rem 0 .25rem;

  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: var(--color-muted);
  opacity: .85;
}

.nav-sub-link {
  padding-left: 1.35rem;
  color: var(--color-muted) !important;
  font-size: .95rem;
}

.nav-sub-link::before {
  content: "— ";
  color: #0d9488;
  font-weight: 900;
}

.nav-link.nav-sub-link.active {
  color: #0d9488 !important;
}

.nav-link.nav-sub-link.active::after {
  display: none;
}

/* =========================
   DROPDOWN DESKTOP ALAP STÍLUS
========================= */

.dropdown-menu {
  margin-top: .65rem;
  min-width: 220px;

  padding: .45rem;

  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 1rem;

  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);

  box-shadow:
    0 18px 40px rgba(15, 23, 42, .08),
    0 4px 14px rgba(15, 23, 42, .05);
}

.dropdown-item {
  border-radius: .75rem;
  padding: .7rem .9rem;

  font-size: .95rem;
  font-weight: 600;

  color: var(--color-ink);

  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(20, 184, 166, .05);
  color: var(--color-teal);
  transform: translateX(2px);
}

.dropdown-item.active,
.dropdown-item:active {
  color: #0d9488;
  background: rgba(20, 184, 166, .12);
}

.dropdown-toggle::after {
  margin-left: .45rem;
  vertical-align: .15rem;
}

/* =========================
   BUTTONS
========================= */

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: .78rem 1.25rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
  border: 0;
  box-shadow: 0 14px 34px rgba(20, 184, 166, .22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(.98);
}

.btn-outline-dark {
  border-color: rgba(15, 23, 42, .22);
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 992px) {
  .navbar-brand {
    font-size: 1.15rem;
    letter-spacing: .28rem;
  }

  .navbar-collapse {
    margin-top: 0;
  }

  .navbar-nav {
    gap: .5rem;
  }

  .nav-link {
    width: auto;
    padding: .5rem 0;
  }

  .nav-link.active::after {
    width: 100%;
    bottom: .05rem;
  }
}

/* =========================
   HERO
   alap = mobil
========================= */

.hero-section {
  padding: 3.75rem 0 4rem;

  background:
    radial-gradient(circle at 85% 10%, rgba(20, 184, 166, .14), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(59, 130, 246, .12), transparent 34%),
    var(--color-bg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  margin-bottom: 1rem;

  color: #0d9488;

  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  flex: 0 0 auto;

  width: .65rem;
  height: .65rem;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
}

h1,
h2,
h3 {
  font-family: "Montserrat", "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: -.045em;
  color: var(--color-ink);
}

h1 {
  max-width: 780px;

  margin-bottom: 1.2rem;

  font-size: clamp(2.35rem, 12vw, 3.4rem);
  font-weight: 700;
}

.hero-lead {
  max-width: 680px;

  margin-bottom: 1.65rem;

  color: #334155;

  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  gap: .75rem;

  margin-bottom: 1.35rem;
}

.hero-actions .btn {
  width: 100%;
  justify-content: center;
}

.trust-list {
  display: grid;
  gap: .55rem;

  padding: 0;
  margin: 0;

  list-style: none;

  color: var(--color-muted);

  font-size: .94rem;
  font-weight: 700;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
}

.trust-list li::before {
  content: "✓";

  color: #0d9488;
  font-weight: 900;
}

.hero-card {
  margin-top: .5rem;

  padding: 1.35rem;

  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: var(--radius-lg);

  background: rgba(255, 255, 255, .88);

  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: .65rem;

  margin-bottom: 1.15rem;

  font-weight: 900;
}

.status-dot {
  width: .8rem;
  height: .8rem;

  border-radius: 50%;

  background: var(--color-teal);

  box-shadow: 0 0 0 7px rgba(20, 184, 166, .13);
}

.benefit-item {
  padding: 1rem 0;

  border-top: 1px solid var(--color-line);
}

.benefit-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.benefit-item strong {
  display: block;

  margin-bottom: .3rem;

  font-size: 1.03rem;
}

.benefit-item p {
  margin: 0;

  color: var(--color-muted);
}

/* tablet */

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }

  h1 {
    font-size: clamp(3rem, 7vw, 4.3rem);
  }

  .hero-lead {
    font-size: 1.16rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
  }

  .hero-actions .btn {
    width: auto;
  }

  .trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
  }

  .trust-list li {
    align-items: center;
  }

  .hero-card {
    padding: 1.65rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .hero-section {
    padding: 6.5rem 0 7rem;
  }

  h1 {
    font-size: clamp(3.8rem, 5.6vw, 5rem);
  }

  .hero-lead {
    font-size: 1.28rem;
  }

  .hero-card {
    margin-top: 0;
    padding: 2rem;
  }
}

/* =========================
   ÁLTALÁNOS SECTION
   alap = mobil
========================= */

.section-padding {
  padding: 3.75rem 0;
  background: #fff;
}

.section-heading {
  max-width: var(--container-narrow);
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 1rem;

  font-size: clamp(1.95rem, 10vw, 2.65rem);
  line-height: 1.08;
}

.section-heading p {
  max-width: 720px;

  color: var(--color-muted);

  font-size: 1.05rem;
  line-height: 1.75;
}

/* =========================
   SERVICE PROOF
   alap = mobil
========================= */

.service-proof {
  display: grid;
  gap: 1rem;
}

.proof-card {
  position: relative;
  overflow: hidden;

  padding: 1.25rem;

  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .94),
      rgba(255, 255, 255, .82)
    );

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .06);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.proof-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(20, 184, 166, .10),
      transparent 38%
    );

  pointer-events: none;
}

.proof-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 24px 60px rgba(15, 23, 42, .10);
}

.proof-card strong {
  position: relative;
  z-index: 1;

  display: block;

  margin-bottom: .65rem;

  color: var(--color-ink);

  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.proof-card span {
  position: relative;
  z-index: 1;

  display: block;

  color: var(--color-muted);

  font-size: .98rem;
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }

  .section-heading p {
    font-size: 1.12rem;
  }

  .service-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .proof-card {
    padding: 1.35rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .section-padding {
    padding: 6rem 0;
  }

  .section-heading h2 {
    font-size: clamp(2.8rem, 4vw, 3.4rem);
  }

  .proof-card strong {
    font-size: 1.35rem;
  }
}

/* =========================
   PROBLÉMA SECTION
   alap = mobil
========================= */

.problem-section {
  background: #fff;
}

.problem-section .row {
  row-gap: 2rem;
}

.problem-section h2 {
  max-width: 760px;
}

.problem-grid {
  display: grid;
  gap: 1rem;
}

/* közös kártya alap */

.simple-card,
.feature-card {
  height: 100%;

  padding: 1.25rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: var(--color-card);
}

.simple-card h3,
.feature-card h3,
.process-item h3 {
  margin-bottom: .55rem;

  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.simple-card p,
.feature-card p,
.process-item p {
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .simple-card,
  .feature-card {
    padding: 1.35rem;
  }

  .simple-card h3,
  .feature-card h3,
  .process-item h3 {
    font-size: 1.18rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .problem-section .row {
    row-gap: 0;
  }

  .problem-grid {
    gap: 1rem;
  }
}

/* =========================
   SERVICE DETAIL SECTION
   alap = mobil
========================= */

.service-detail-section {
  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #ffffff 100%
    );
}

.service-detail-section .row {
  row-gap: 1rem;
}

.feature-card {
  position: relative;
  overflow: hidden;

  height: 100%;

  padding: 1.25rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: var(--color-card);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.feature-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(20, 184, 166, .08),
      transparent 38%
    );

  opacity: .9;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .08);
}

.feature-number {
  position: relative;
  z-index: 1;

  display: inline-flex;

  margin-bottom: 1.25rem;

  color: #0d9488;

  font-weight: 900;
  letter-spacing: .12em;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin-bottom: .55rem;

  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.feature-card p {
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .service-detail-section .row {
    row-gap: 1.5rem;
  }

  .feature-card {
    padding: 1.35rem;
  }

  .feature-card h3 {
    font-size: 1.18rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .service-detail-section .row {
    row-gap: 0;
  }
}

/* =========================
   PROCESS SECTION
   alap = mobil
========================= */

.process-section {
  background: var(--color-ink);
  color: #fff;
}

.process-section h2,
.process-section h3 {
  color: #fff;
}

.process-section .eyebrow {
  color: #67e8f9;
}

.process-list {
  display: grid;
  gap: 1rem;

  margin-top: 2rem;
}

.process-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;

  padding: 1.25rem;

  border: 1px solid rgba(226, 232, 240, .16);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, .045);
}

.process-item span {
  display: inline-grid;
  place-items: center;

  width: 2.35rem;
  height: 2.35rem;

  border-radius: 999px;

  background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
  color: #fff;

  font-weight: 900;
}

.process-item h3 {
  margin-bottom: .45rem;

  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.process-item p {
  margin: 0;

  color: #cbd5e1;
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .process-item {
    grid-template-columns: auto 1fr;
    gap: 1rem;

    padding: 1.35rem;
  }

  .process-item h3 {
    font-size: 1.18rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .process-list {
    gap: 1rem;
  }
}

/* =========================
   TRUST SECTION
   alap = mobil
========================= */

.trust-section {
  background: #fff;
}

.trust-box {
  display: grid;
  gap: 1.25rem;

  padding: 1.35rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 92% 18%,
      rgba(20, 184, 166, .14),
      transparent 32%
    ),
    #f8fafc;
}

.trust-box h2 {
  margin-bottom: 1rem;

  font-size: clamp(1.85rem, 9vw, 2.45rem);
  line-height: 1.08;
}

.trust-box p {
  margin-bottom: 0;

  color: var(--color-muted);
  line-height: 1.75;
}

.trust-highlight {
  padding: 1.25rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: #fff;

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .07);
}

.trust-highlight strong {
  display: block;

  margin-bottom: .5rem;

  font-size: 1.1rem;
}

/* tablet */

@media (min-width: 768px) {
  .trust-box {
    gap: 1.75rem;
    padding: 2rem;
  }

  .trust-box h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
  }

  .trust-highlight {
    padding: 1.35rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .trust-box {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 2rem;
    align-items: center;

    padding: 3rem;
  }

  .trust-box h2 {
    font-size: clamp(2.4rem, 4vw, 3rem);
  }
}

/* =========================
   ABOUT SECTION
   alap = mobil
========================= */

.about-section {
  background: #fff;
}

.about-section .row {
  row-gap: 1.5rem;
}

.large-text {
  margin: 0;

  color: #334155;

  font-size: 1.08rem;
  line-height: 1.8;
}

/* tablet */

@media (min-width: 768px) {
  .large-text {
    font-size: 1.16rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .about-section .row {
    row-gap: 0;
  }

  .large-text {
    font-size: 1.25rem;
  }
}

/* =========================
   PORTFOLIO SECTION
   alap = mobil
========================= */

.portfolio-section {
  background: #f8fafc;
}

.portfolio-grid {
  display: grid;
  gap: 1.25rem;

  margin-top: 2rem;
}

.project-card {
  overflow: hidden;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  background: #fff;

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .06);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.project-card:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .20);

  box-shadow:
    0 24px 60px rgba(15, 23, 42, .09);
}

.project-card-content {
  padding: 1.35rem;
}

.project-label {
  display: inline-flex;

  margin-bottom: 1rem;

  color: #0d9488;

  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: .85rem;

  font-size: clamp(1.5rem, 8vw, 1.9rem);
  line-height: 1.08;
}

.project-card p {
  margin-bottom: 1.15rem;

  color: var(--color-muted);
  line-height: 1.75;
}

.project-points {
  display: grid;
  gap: .55rem;

  padding: 0;
  margin: 0 0 1.35rem;

  list-style: none;

  color: #334155;

  font-weight: 700;
}

.project-points li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.project-points li::before {
  content: "✓";

  color: #0d9488;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;

  color: #0f766e;

  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "→";

  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

/* tablet */

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card-content {
    padding: 1.6rem;
  }

  .project-card h3 {
    font-size: clamp(1.75rem, 4vw, 2.1rem);
  }
}

/* desktop */

@media (min-width: 992px) {
  .portfolio-grid {
    gap: 1.5rem;
  }

  .project-card-content {
    padding: 2rem;
  }

  .project-card h3 {
    font-size: clamp(1.9rem, 3vw, 2.25rem);
  }
}

/* =========================
   FOOTER
   alap = mobil
========================= */

.site-footer {
  padding: 3.5rem 0 0;

  background: var(--color-ink);
  color: #fff;
}

.footer-box {
  max-width: 760px;
}

.footer-box h2 {
  margin-bottom: 1rem;

  color: #fff;

  font-size: clamp(2rem, 10vw, 2.7rem);
  line-height: 1.08;
}

.footer-box p {
  margin-bottom: 1.5rem;

  color: #cbd5e1;

  font-size: 1.06rem;
  line-height: 1.8;
}

.site-footer .btn-light {
  border: 0;

  color: var(--color-ink);

  font-weight: 800;

  box-shadow:
    0 14px 34px rgba(255, 255, 255, .08);
}

.site-footer .btn-light:hover {
  transform: translateY(-1px);
}

/* =========================
   PAGE HERO / SERVICES HERO
   alap = mobil
========================= */

.page-hero {
  padding: 3.75rem 0 4rem;

  background:
    radial-gradient(circle at 85% 12%, rgba(20, 184, 166, .13), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(59, 130, 246, .12), transparent 34%),
    var(--color-bg);
}

.page-hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 960px;
}

.page-hero .hero-lead {
  max-width: 900px;
}

.service-hero-visual {
  display: none;
}
/* tablet */

@media (min-width: 768px) {
  .page-hero {
    padding: 5rem 0;
  }

  .page-hero-grid {
    gap: 3rem;
  }
}

/* desktop */

@media (min-width: 992px) { 
  .page-hero {
    padding: 6.5rem 0 7rem;
  }
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  }

  .service-hero-visual {
    position: relative;

    display: block;

    min-height: 420px;
  }

  .service-hero-visual::before {
    content: "";

    position: absolute;
    inset: 3rem 1rem;

    border-radius: 999px;

    background:
      radial-gradient(circle at 30% 30%, rgba(20, 184, 166, .18), transparent 42%),
      radial-gradient(circle at 70% 70%, rgba(59, 130, 246, .18), transparent 42%);

    filter: blur(34px);
  }

  .service-visual-card {
    position: absolute;

    width: min(300px, 100%);

    padding: 1.25rem;

    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 24px;

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(18px);

    box-shadow:
      0 24px 70px rgba(15, 23, 42, .10);

    transition:
      transform .2s ease,
      box-shadow .2s ease;
  }

  .service-visual-card:hover {
    transform: translateY(-4px);

    box-shadow:
      0 26px 70px rgba(15, 23, 42, .12);
  }

  .service-visual-card span {
    display: inline-flex;

    margin-bottom: .75rem;

    color: #0d9488;

    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
  }

  .service-visual-card strong {
    display: block;

    margin-bottom: .45rem;

    color: var(--color-ink);

    font-size: 1.05rem;
  }

  .service-visual-card p {
    margin: 0;

    color: var(--color-muted);

    font-size: .95rem;
    line-height: 1.65;
  }

  .service-visual-card.card-one {
    top: -8rem;
    left: 1rem;
  }

  .service-visual-card.card-two {
    top: 6rem;
    right: 5rem;
  }

  .service-visual-card.card-three {
    right: -5rem;
    bottom: -4rem;
  }
}

/* =========================
   DELIVERABLES SECTION
   alap = mobil
========================= */

.deliverables-section {
  background: #fff;
}

.deliverables-section .section-heading {
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  min-height: auto;

  padding: 1.25rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: #fff;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .2);

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .07);
}

.service-card h3 {
  margin-bottom: .65rem;

  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    padding: 1.35rem;
    min-height: 220px;
  }

  .service-card h3 {
    font-size: 1.18rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    min-height: 230px;
  }
}

/* =========================
   DARK SPLIT SECTION
   alap = mobil
========================= */

.dark-split-section {
  background: var(--color-ink);
  color: #fff;
}

.dark-split-section .row {
  row-gap: 2rem;
}

.dark-split-section h2,
.dark-split-section h3 {
  color: #fff;
}

.dark-split-section .eyebrow {
  color: #67e8f9;
}

.plain-list {
  display: grid;
  gap: 1rem;
}

.plain-list article {
  padding: 1.25rem;

  border: 1px solid rgba(226, 232, 240, .16);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, .045);
}

.plain-list h3 {
  margin-bottom: .55rem;

  font-size: 1.12rem;
  line-height: 1.25;
}

.plain-list p {
  margin: 0;

  color: #cbd5e1;
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .plain-list article {
    padding: 1.35rem;
  }

  .plain-list h3 {
    font-size: 1.18rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .dark-split-section .row {
    row-gap: 0;
  }
}

#kinek {
  background: #fff;
}

#kinek {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 100%
    );
}

/* =========================
   FAQ SECTION
   alap = mobil
========================= */

.faq-section {
  background: #f8fafc;
}

.faq-list {
  display: grid;

  gap: .85rem;

  max-width: 900px;

  margin-top: 2rem;
}

.faq-list details {
  padding: 1.1rem 1.1rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: #fff;

  transition:
    box-shadow .2s ease,
    transform .2s ease,
    border-color .2s ease;
}

.faq-list details[open] {
  border-color: rgba(20, 184, 166, .35);

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .07);
}

.faq-list summary {
  position: relative;

  padding-right: 2rem;

  list-style: none;

  cursor: pointer;

  color: var(--color-ink);

  font-weight: 900;
  line-height: 1.45;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";

  position: absolute;
  top: 50%;
  right: 0;

  transform: translateY(-50%);

  color: #0d9488;

  font-size: 1.25rem;
  font-weight: 700;

  transition: transform .2s ease;
}

.faq-list details[open] summary::after {
  transform:
    translateY(-50%)
    rotate(45deg);
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;

  border-radius: 8px;
}

.faq-list p {
  margin: .75rem 0 0;

  color: var(--color-muted);

  line-height: 1.75;
}

/* tablet */

@media (min-width: 768px) {
  .faq-list details {
    padding: 1.1rem 1.25rem;
  }
}

/* =========================
   MUNKÁINK HERO
   alap = mobil
========================= */

.munkaink-hero {
  padding: 3.75rem 0 4rem;

  background:
    radial-gradient(circle at 80% 14%, rgba(20, 184, 166, .13), transparent 30%),
    radial-gradient(circle at 15% 88%, rgba(59, 130, 246, .12), transparent 32%),
    var(--color-bg);
}

.munkaink-hero-inner {
  max-width: 920px;
}

.munkaink-hero-inner h1 {
  max-width: 900px;

  margin-bottom: 1.25rem;

  font-size: clamp(2.35rem, 11vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.munkaink-lead {
  max-width: 900px;

  margin: 0;

  color: #334155;

  font-size: 1.06rem;
  line-height: 1.75;
}

/* tablet */

@media (min-width: 768px) {
  .munkaink-hero {
    padding: 5rem 0;
  }

  .munkaink-hero-inner h1 {
    font-size: clamp(3rem, 7vw, 4.3rem);
  }

  .munkaink-lead {
    font-size: 1.16rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .munkaink-hero {
    padding: 6.5rem 0 7rem;
  }

  .munkaink-hero-inner h1 {
    font-size: clamp(3.8rem, 5.6vw, 5rem);
  }

  .munkaink-lead {
    font-size: 1.28rem;
  }
}

/* =========================
   CASE STUDY SECTION
   alap = mobil
========================= */

.case-section {
  background: #fff;
}

.case-study {
  overflow: hidden;

  margin-bottom: 1.5rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  background: #fff;

  box-shadow: var(--shadow-soft);
}

.case-study:last-child {
  margin-bottom: 0;
}

.case-study-content {
  padding: 1.35rem;
}

.case-intro {
  max-width: 760px;

  margin-bottom: 0;

  color: var(--color-muted);

  font-size: 1.04rem;
  line-height: 1.75;
}

.case-grid {
  display: grid;
  gap: 1rem;

  margin-top: 2rem;
}

.case-box {
  padding: 1.15rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: #f8fafc;
}

.case-box strong {
  display: block;

  margin-bottom: .5rem;

  color: var(--color-ink);
}

.case-box p {
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .case-study {
    margin-bottom: 2rem;
  }

  .case-study-content {
    padding: 2rem;
  }

  .case-intro {
    font-size: 1.08rem;
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-box {
    padding: 1.2rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .case-study-content {
    padding: 3rem;
  }

  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* Áraink oldal */

.price-intro-section,
.maintenance-section,
.payment-section { background: #fff; }

.pricing-section { background: #f8fafc; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;

  margin-top: 2rem;
}

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 1.35rem;

  background: #fff;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .06);

  overflow: hidden;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 24px 65px rgba(15, 23, 42, .10);
}

.pricing-card.featured {
  border-color: rgba(20, 184, 166, .55);

  box-shadow:
    0 24px 70px rgba(20, 184, 166, .14);
}

.pricing-card.featured::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(20, 184, 166, .08),
      transparent 38%
    );

  pointer-events: none;
}

.package-label {
  display: inline-flex;

  margin-bottom: 1rem;

  color: #0d9488;

  font-size: .78rem;
  font-weight: 900;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: .85rem;

  font-size: 1.45rem;
  line-height: 1.2;
}

.price {
  margin: 0 0 .35rem;
}

.price span {
  display: block;

  font-size: clamp(2rem, 7vw, 2.7rem);
  font-weight: 900;

  letter-spacing: -.05em;

  color: var(--color-ink);

  line-height: 1;
}

.price small {
  display: inline-block;

  margin-top: .35rem;

  color: var(--color-muted);

  font-size: .92rem;
  font-weight: 700;
}

.old-price {
  margin-bottom: 1rem;

  color: var(--color-muted);

  font-size: .95rem;
}

.package-desc {
  color: var(--color-muted);

  line-height: 1.7;
}

.pricing-card ul,
.mini-price-card ul {
  display: grid;
  gap: .7rem;

  padding: 0;
  margin: 1.35rem 0 0;

  list-style: none;
}

.pricing-card li,
.mini-price-card li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;

  color: #334155;

  font-weight: 700;
  line-height: 1.6;
}

.pricing-card li::before,
.mini-price-card li::before {
  content: "✓";

  flex-shrink: 0;

  color: #0d9488;

  font-weight: 900;
}

.pricing-note {
  max-width: 760px;

  margin-top: 1.5rem;

  color: var(--color-muted);

  font-size: .95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card {
    padding: 1.5rem;
  }
}

@media (min-width: 1200px) {

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;

  margin-top: 2rem;
}

.mini-price-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 1.35rem;

  background: #f8fafc;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  overflow: hidden;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.mini-price-card:hover {
  transform: translateY(-4px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 22px 60px rgba(15, 23, 42, .08);
}

.mini-price-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(20, 184, 166, .06),
      transparent 42%
    );

  pointer-events: none;
}

.mini-price-card h3 {
  margin-bottom: .65rem;

  font-size: 1.35rem;
  line-height: 1.2;
}

.mini-price-card p {
  margin-bottom: 1rem;
}

.mini-price-card strong {
  display: inline-block;

  color: var(--color-ink);

  font-size: 1.35rem;
  font-weight: 900;

  letter-spacing: -.03em;
}

.mini-price-card ul {
  display: grid;
  gap: .7rem;

  padding: 0;
  margin: 0;

  list-style: none;
}

.mini-price-card li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;

  color: #334155;

  font-weight: 700;
  line-height: 1.6;
}

.mini-price-card li::before {
  content: "✓";

  flex-shrink: 0;

  color: #0d9488;

  font-weight: 900;
}

@media (min-width: 768px) {

  .maintenance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-price-card {
    padding: 1.5rem;
  }
}

@media (min-width: 1200px) {

  .maintenance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.addon-section {
  background: #f8fafc;
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;

  margin-top: 2rem;
}

.addon-item {
  display: grid;
  gap: .35rem;

  padding: 1.1rem 1.2rem;

  background: #fff;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.addon-item:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .07);
}

.addon-item span {
  color: var(--color-muted);

  font-weight: 700;
}

.addon-item strong {
  color: var(--color-ink);

  font-size: 1.05rem;
  font-weight: 900;
}

/* tablet */

@media (min-width: 768px) {
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .addon-item strong {
    text-align: right;
  }
}

/* desktop */

@media (min-width: 1200px) {
  .addon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.payment-section .trust-highlight strong {
  color: #0f172a;
}

.payment-section .trust-highlight p {
  margin-bottom: 0;
}

/* Rolunk oldal */
.story-section {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;

  align-items: start;
}

.story-text p {
  color: var(--color-muted);

  margin-bottom: 1rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-card {
  padding: 1.35rem;

  background: #f8fafc;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .06);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.story-card:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 24px 60px rgba(15, 23, 42, .08);
}

.story-card strong {
  display: block;

  margin-bottom: 1rem;

  color: var(--color-ink);

  font-size: 1.1rem;
  font-weight: 800;
}

.story-card ul {
  display: grid;
  gap: .8rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

.story-card li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;

  color: #334155;

  font-weight: 700;
  line-height: 1.6;
}

.story-card li::before {
  content: "✓";

  flex-shrink: 0;

  color: #0d9488;

  font-weight: 900;
}

/* tablet */

@media (min-width: 768px) {

  .story-card {
    padding: 1.5rem;
  }
}

/* desktop */

@media (min-width: 992px) {

  .story-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr);
    gap: 2rem;
  }
}

.values-section {
  background: #f8fafc;
}

.values-section .section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.value-card {
  padding: 1.35rem;

  background: #fff;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.value-card:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .07);
}

.value-number {
  display: inline-flex;

  margin-bottom: 1.25rem;

  color: #0d9488;

  font-weight: 900;
  letter-spacing: .12em;
}

.value-card h3 {
  margin-bottom: .65rem;

  font-size: 1.15rem;
  line-height: 1.25;
}

.value-card p {
  margin-bottom: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

/* tablet */

@media (min-width: 768px) {
  .values-section .section-heading {
    margin-bottom: 2.5rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-card {
    padding: 1.5rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .values-section .section-heading {
    margin-bottom: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* =========================
   PERSONAL SECTION
   alap = mobil
========================= */

.personal-section {
  background: #fff;
}

.personal-box {
  display: grid;
  gap: 1.35rem;

  padding: 1.35rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 92% 18%,
      rgba(20, 184, 166, .14),
      transparent 32%
    ),
    #f8fafc;
}

.quote-box {
  padding: 1.35rem;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  background: #fff;

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .07);
}

.quote-box p {
  margin: 0;

  color: #334155;

  font-size: 1.05rem;
  line-height: 1.75;
}

/* tablet */

@media (min-width: 768px) {
  .personal-box {
    gap: 1.75rem;
    padding: 2rem;
  }

  .quote-box {
    padding: 1.5rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .personal-box {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 2rem;
    align-items: center;

    padding: 3rem;
  }
}

/* Hogyan dolgozunk oldal */
.about-detail-section {
  background: #fff;
}

.glossary-section,
.about-detail-section {
  background: #fff;
}

.glossary-grid,
.question-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;

  margin-top: 2rem;
}

.glossary-card,
.question-card {
  padding: 1.25rem;

  background: #fff;

  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .05);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.glossary-card:hover,
.question-card:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 184, 166, .22);

  box-shadow:
    0 22px 60px rgba(15, 23, 42, .08);
}

.glossary-card h3,
.question-card h3 {
  margin-bottom: .65rem;

  font-size: 1.12rem;
  line-height: 1.25;
}

.glossary-card p,
.question-card p {
  margin: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .glossary-grid,
  .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glossary-card,
  .question-card {
    padding: 1.35rem;
  }

  .glossary-card h3,
  .question-card h3 {
    font-size: 1.18rem;
  }
}

@media (min-width: 992px) {
  .glossary-grid,
  .question-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Eléehetőség oldal */
.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 1.35rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-info {
  background:
    radial-gradient(circle at 92% 18%, rgba(20, 184, 166, .14), transparent 32%),
    #f8fafc;
}

.contact-info p,
.form-header p {
  color: var(--color-muted);
}

.contact-cards {
  display: grid;
  gap: .85rem;
  margin: 1.5rem 0;
}

.contact-card {
  display: grid;
  gap: .15rem;
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-card:hover {
  border-color: rgba(20, 184, 166, .55);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, .07);
}

.contact-card span {
  color: var(--color-muted);
  font-size: .9rem;
}

.contact-card strong {
  color: var(--color-ink);
  font-size: 1.04rem;
}

.small-note,
.form-note {
  color: var(--color-muted);
  font-size: .92rem;
  margin-bottom: 0;
}

.form-header {
  margin-bottom: 1.25rem;
}

.form-header h2 {
  margin-bottom: .5rem;
}

.form-header p {
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: .45rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--color-ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin: .75rem 0 1.25rem;
  color: #334155;
}

.checkbox-row input {
  width: auto;
  margin-top: .35rem;
}

.checkbox-row a {
  color: #0f766e;
  font-weight: 900;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  }
}

@media (min-width: 1200px) {
  .contact-info,
  .contact-form {
    padding: 2.4rem;
  }
}



/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  margin-top: 3rem;

  border-top: 1px solid rgba(226, 232, 240, .12);

  padding: 1.25rem 0;
}

.footer-legal-nav {
  display: flex;
  flex-direction: column;
  gap: .9rem;

  align-items: flex-start;
}

.footer-legal-nav a,
.footer-cookie-button {
  padding: 0;

  border: 0;
  background: transparent;

  color: #cbd5e1;

  font-size: .95rem;
  font-weight: 600;

  text-decoration: none;

  transition:
    color .2s ease,
    opacity .2s ease;
}

.footer-legal-nav a:hover,
.footer-cookie-button:hover {
  color: #fff;
}

.footer-cookie-button {
  cursor: pointer;
}

/* tablet */

@media (min-width: 768px) {
  .site-footer {
    padding: 4.5rem 0 0;
  }

  .footer-box h2 {
    font-size: clamp(2.4rem, 5vw, 3rem);
  }

  .footer-box p {
    font-size: 1.12rem;
  }

  .footer-bottom {
    margin-top: 4rem;
  }

  .footer-legal-nav {
    flex-direction: row;
    flex-wrap: wrap;

    align-items: center;
    gap: 1.5rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .site-footer {
    padding: 5rem 0 0;
  }

  .footer-box h2 {
    font-size: clamp(2.7rem, 4vw, 3.2rem);
  }
}






/* =========================
   COOKIE BANNER
   alap = mobil
========================= */

.cookie-banner {
  position: fixed;
  left: .85rem;
  right: .85rem;
  bottom: .85rem;
  z-index: 1100;
}

.cookie-banner__content {
  display: grid;
  gap: 1rem;

  max-width: 1120px;
  margin: 0 auto;

  padding: 1rem;

  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 22px;

  background: rgba(255, 255, 255, .96);

  box-shadow:
    0 24px 70px rgba(15, 23, 42, .16);

  backdrop-filter: blur(16px);
}

.cookie-banner strong {
  display: block;

  margin-bottom: .25rem;

  color: #0f172a;
  font-weight: 900;
}

.cookie-banner p {
  margin: 0;

  color: #64748b;

  font-size: .92rem;
  line-height: 1.65;
}

.cookie-banner a {
  display: inline-flex;

  margin-top: .45rem;

  color: #0f766e;

  font-weight: 800;
  text-decoration: none;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: grid;
  gap: .6rem;
}

.cookie-banner__actions .btn,
.cookie-modal__actions .btn {
  width: 100%;
}

/* =========================
   COOKIE MODAL
   alap = mobil
========================= */

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;

  display: grid;
  place-items: center;

  padding: .85rem;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(15, 23, 42, .55);

  backdrop-filter: blur(8px);
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 1.7rem);

  overflow: auto;

  padding: 1.15rem;

  border: 1px solid #e2e8f0;
  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 30px 90px rgba(15, 23, 42, .28);
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;

  margin-bottom: 1rem;
}

.cookie-modal__header h2 {
  margin: 0;

  color: #0f172a;
}

.cookie-modal__close {
  flex: 0 0 auto;

  width: 2.4rem;
  height: 2.4rem;

  border: 1px solid #e2e8f0;
  border-radius: 999px;

  background: #f8fafc;
  color: #0f172a;

  font-size: 1.5rem;
  line-height: 1;

  cursor: pointer;
}

.cookie-modal__lead {
  margin-bottom: 1.25rem;

  color: #64748b;
  line-height: 1.7;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;

  padding: 1rem 0;

  border-top: 1px solid #e2e8f0;
}

.cookie-option strong {
  display: block;

  margin-bottom: .25rem;

  color: #0f172a;
}

.cookie-option p {
  margin: 0;

  color: #64748b;

  font-size: .92rem;
  line-height: 1.6;
}

.cookie-option input[type="checkbox"] {
  width: 1.35rem;
  height: 1.35rem;

  accent-color: #14b8a6;
}

.cookie-modal__actions {
  margin-top: 1rem;
  padding-top: 1rem;

  border-top: 1px solid #e2e8f0;
}

/* tablet */

@media (min-width: 768px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .cookie-banner__content {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;

    padding: 1.1rem;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .cookie-banner__actions .btn,
  .cookie-modal__actions .btn {
    width: auto;
  }

  .cookie-modal {
    padding: 1rem;
  }

  .cookie-modal__panel {
    padding: 2rem;
    border-radius: 28px;
    max-height: min(760px, calc(100vh - 2rem));
  }
}

/* =========================
   BACK TO TOP
   alap = mobil
========================= */

.back-to-top {
  position: fixed;

  right: 1.2rem;
  bottom: 3rem;

  width: 2.75rem;
  height: 2.75rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;

  background: rgba(15, 23, 42, .94);
  color: #fff;

  font-size: 1rem;
  font-weight: 700;

  cursor: pointer;

  backdrop-filter: blur(10px);

  box-shadow:
    0 18px 38px rgba(15, 23, 42, .22),
    0 4px 12px rgba(15, 23, 42, .12);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease,
    background .25s ease,
    box-shadow .25s ease;

  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.back-to-top:hover {
  background: #0d9488;

  transform: translateY(-3px);

  box-shadow:
    0 22px 44px rgba(13, 148, 136, .28),
    0 8px 18px rgba(13, 148, 136, .18);
}

/* tablet */

@media (min-width: 768px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;

    width: 2.9rem;
    height: 2.9rem;

    font-size: 1.02rem;
  }
}

/* desktop */

@media (min-width: 992px) {
  .back-to-top {
    right: 1.1rem;
    bottom: 1.25rem;

    width: 3rem;
    height: 3rem;

    font-size: 1.05rem;
  }
}