html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 209, 197, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(119, 228, 218, 0.06), transparent 24%),
    linear-gradient(180deg, #071018 0%, #091118 100%);
  color: var(--text);
  line-height: 1.6;
}

:root {
  --bg: #0a0f14;
  --bg-soft: #0f151d;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f5f7;
  --muted: #9aa6b2;
  --accent: #4fd1c5;
  --accent-2: #77e4da;
  --accent-deep: rgba(79, 209, 197, 0.16);
  --header-bg: rgba(7, 18, 30, 0.56);
  --header-bg-strong: rgba(8, 20, 34, 0.8);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1200px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 140, 60, 0.06), transparent 24%),
    linear-gradient(180deg, #071018 0%, #091118 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.solar-loader {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
}

.loader-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(243, 245, 247, 0.88);
}

.sun-core {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffcb7a 0%, #ff9b42 45%, #ff6b1a 100%);
  box-shadow:
    0 0 18px rgba(255, 140, 60, 0.45),
    0 0 38px rgba(255, 120, 40, 0.22);
  position: relative;
  z-index: 3;
}

.loader-orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.loader-orbit-1 {
  width: 62px;
  height: 62px;
  animation: orbitClockwise 2.8s linear infinite;
}

.loader-orbit-2 {
  width: 96px;
  height: 96px;
  animation: orbitCounter 4.4s linear infinite;
}

.loader-orbit-3 {
  width: 128px;
  height: 128px;
  animation: orbitClockwise 6.2s linear infinite;
}

.loader-planet {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: block;
}

.loader-planet-1 {
  width: 8px;
  height: 8px;
  background: #ffd166;
  box-shadow: 0 0 10px rgba(255, 209, 102, 0.4);
}

.loader-planet-2 {
  width: 10px;
  height: 10px;
  background: #7ee7d8;
  box-shadow: 0 0 12px rgba(126, 231, 216, 0.35);
}

.loader-planet-3 {
  width: 7px;
  height: 7px;
  background: #8fb8ff;
  box-shadow: 0 0 10px rgba(143, 184, 255, 0.35);
}

@keyframes orbitClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitCounter {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background:
    linear-gradient(180deg, rgba(8, 20, 36, 0.78), rgba(8, 20, 36, 0.42)),
    linear-gradient(90deg, rgba(79, 209, 197, 0.06), transparent 38%, rgba(79, 209, 197, 0.04));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    opacity var(--transition),
    box-shadow var(--transition);
  transform: translateY(-90px);
  opacity: 0;
}

body.page-ready .site-header {
  animation: headerReveal 2.2s cubic-bezier(.19,1,.22,1) forwards;
}

.site-header.scrolled {
  background:
    linear-gradient(180deg, rgba(8, 24, 38, 0.9), rgba(7, 17, 30, 0.82)),
    linear-gradient(90deg, rgba(79, 209, 197, 0.08), transparent 40%, rgba(79, 209, 197, 0.05));
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 10003;
  min-height: 84px;
  padding-left: 138px;
  margin-left: -66px;
}

.logo-image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 190px;
  height: 190px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  display: inline-block;
  margin-left: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color var(--transition), transform var(--transition), opacity var(--transition);
  opacity: 0;
  transform: translateX(55px);
}

body.page-ready .nav-links a {
  animation: navReveal 1.5s cubic-bezier(.19,1,.22,1) forwards;
}

body.page-ready .nav-links a:nth-of-type(1) { animation-delay: .55s; }
body.page-ready .nav-links a:nth-of-type(2) { animation-delay: .7s; }
body.page-ready .nav-links a:nth-of-type(3) { animation-delay: .85s; }
body.page-ready .nav-links a:nth-of-type(4) { animation-delay: 1s; }
body.page-ready .nav-links a:nth-of-type(5) { animation-delay: 1.15s; }

.nav-links a:hover {
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  opacity: 0;
  transform: translateX(70px);
}

body.page-ready .lang-switcher {
  animation: navReveal 1.7s cubic-bezier(.19,1,.22,1) forwards;
  animation-delay: 1.05s;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 52px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  background: linear-gradient(135deg, rgba(79,209,197,0.24), rgba(119,228,218,0.12));
  color: var(--text);
}

.nav-cta {
  opacity: 0;
  transform: translateX(70px);
}

body.page-ready .nav-cta {
  animation: navReveal 1.7s cubic-bezier(.19,1,.22,1) forwards;
  animation-delay: 1.15s;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 999px;
}

@keyframes headerReveal {
  0% {
    transform: translateY(-90px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes navReveal {
  0% {
    opacity: 0;
    transform: translateX(55px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #061015;
  box-shadow: 0 10px 30px rgba(79, 209, 197, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(79, 209, 197, 0.26);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 80px 0 80px;
}

.hero-simple {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  position: relative;
  padding-top: 80px;
}

.hero-visual {
  position: relative;
  width: 500px;
  height: 500px;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.92;
}

.solar-hero {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(79,209,197,0.12), transparent 72%);
  filter: blur(26px);
  pointer-events: none;
}

.solar-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 39px;
  height: 39px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd18a 0%, #ffb14e 38%, #ff7a18 70%, #ff5a00 100%);
  box-shadow:
    0 0 28px rgba(255, 140, 60, 0.75),
    0 0 70px rgba(255, 120, 40, 0.45),
    0 0 140px rgba(255, 110, 20, 0.20);
  z-index: 4;
}

.solar-hero .orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  transform-origin: 50% 50%;
  animation: none !important;
  overflow: visible;
}

.solar-hero .orbit-1 {
  width: 150px;
  height: 72px;
  transform: rotate(16deg);
}

.solar-hero .orbit-2 {
  width: 240px;
  height: 112px;
  transform: rotate(-14deg);
}

.solar-hero .orbit-3 {
  width: 335px;
  height: 158px;
  transform: rotate(24deg);
}

.solar-hero .orbit-4 {
  width: 435px;
  height: 210px;
  transform: rotate(-8deg);
}

.solar-hero .planet-track {
  position: absolute;
  inset: 0;
  animation: none !important;
}

.solar-hero .planet {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  display: block;
  offset-rotate: 0deg;
  offset-anchor: center;
  transform: none;
}

.solar-hero .planet-1 {
  width: 20px;
  height: 20px;
  background: #57f287;
  box-shadow:
    0 0 16px rgba(87,242,135,0.72),
    0 0 30px rgba(87,242,135,0.32);
  offset-path: path("M 75 0.5 A 74.5 35.5 0 1 1 75 71.5 A 74.5 35.5 0 1 1 75 0.5");
  animation: orbitMove1 10s linear infinite;
}

.solar-hero .planet-2 {
  width: 30px;
  height: 30px;
  background: #5da9ff;
  box-shadow:
    0 0 18px rgba(93,169,255,0.72),
    0 0 34px rgba(93,169,255,0.32);
  offset-path: path("M 120 0.5 A 119.5 55.5 0 1 1 120 111.5 A 119.5 55.5 0 1 1 120 0.5");
  animation: orbitMove2 20s linear infinite;
}

.solar-hero .planet-3 {
  width: 16px;
  height: 16px;
  background: #ffd84d;
  box-shadow:
    0 0 16px rgba(255,216,77,0.72),
    0 0 28px rgba(255,216,77,0.30);
  offset-path: path("M 167.5 0.5 A 167 78.5 0 1 1 167.5 157.5 A 167 78.5 0 1 1 167.5 0.5");
  animation: orbitMove3 14s linear infinite;
}

.solar-hero .planet-4 {
  width: 16px;
  height: 16px;
  background: #b784ff;
  box-shadow:
    0 0 18px rgba(183,132,255,0.72),
    0 0 32px rgba(183,132,255,0.32);
  offset-path: path("M 217.5 0.5 A 217 104.5 0 1 1 217.5 209.5 A 217 104.5 0 1 1 217.5 0.5");
  animation: orbitMove4 34s linear infinite;
}

@keyframes orbitMove1 {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

@keyframes orbitMove2 {
  from { offset-distance: 100%; }
  to { offset-distance: 0%; }
}

@keyframes orbitMove3 {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

@keyframes orbitMove4 {
  from { offset-distance: 100%; }
  to { offset-distance: 0%; }
}

.hero-copy {
  width: min(100%, 900px);
  max-width: 900px;
  flex: 0 1 900px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: none;
  width: fit-content;
}

.hero-text {
  max-width: 720px;
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-copy .eyebrow,
.hero-copy h1 {
  opacity: 0;
  transform: translateX(-150px);
}

body.page-ready .hero-copy .eyebrow,
body.page-ready .hero-copy h1 {
  animation: heroMainReveal 2.2s cubic-bezier(.19,1,.22,1) forwards;
}

.hero-copy .hero-text {
  opacity: 0;
  transform: translateX(-110px);
}

body.page-ready .hero-copy .hero-text {
  animation: heroSubReveal 1.9s cubic-bezier(.19,1,.22,1) forwards;
  animation-delay: .35s;
}

.hero-actions .btn {
  opacity: 0;
  transform: translateX(90px);
}

body.page-ready .hero-actions .btn {
  animation: heroBtns 1.7s cubic-bezier(.19,1,.22,1) forwards;
}

body.page-ready .hero-actions .btn:nth-child(1) { animation-delay: .8s; }
body.page-ready .hero-actions .btn:nth-child(2) { animation-delay: 1s; }

@keyframes heroMainReveal {
  0% {
    opacity: 0;
    transform: translateX(-220px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroSubReveal {
  0% {
    opacity: 0;
    transform: translateX(-110px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroBtns {
  0% {
    opacity: 0;
    transform: translateX(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.section {
  padding: 96px 0;
  overflow: clip;
}

.section-head {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-head h2,
.about-copy h2,
.cta-box h2 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-head p,
.about-copy p,
.cta-box p {
  color: var(--muted);
  font-size: 1.02rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 24px;
}

.service-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 209, 197, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(79, 209, 197, 0.08);
  border: 1px solid rgba(79, 209, 197, 0.18);
}

.service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 760px minmax(320px, 1fr);
  gap: 124px;
  align-items: start;
  justify-content: space-between;
}

.about-copy {
  width: 760px;
  max-width: 760px;
}

.about-heading {
  margin: 0 0 20px;
  max-width: 760px;
}

.about-heading .section-label,
.about-heading h2 {
  margin-left: 0;
  padding-left: 0;
}

.about-texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-texts p {
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.72;
  max-width: 760px;
}

.about-panel {
  justify-self: start;
  padding-left: 0;
  padding-top: 84px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.stat-in {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.work-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  border-radius: 26px;
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 209, 197, 0.22);
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

.work-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.04);
}

.work-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.08) 45%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}

.work-image-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8, 20, 34, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.10);
  color: #f3f5f7;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.playful-cta {
  text-align: center;
  padding-top: 110px;
  padding-bottom: 170px;
}

.playful-cta .container {
  max-width: 920px;
}

.playful-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin: 0 0 18px;
}

.playful-cta p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 42px;
  font-size: 1.06rem;
  padding-bottom: 6px;
}

.cta-buttons {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  min-height: 84px;
}

.dodge-btn {
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease;
}

.cta-section {
  padding-top: 170px;
}

.cta-box {
  padding: 44px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(79, 209, 197, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  margin-top: 0;
}

.contact-email-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: #d9e4e2;
  font-weight: 500;
}

.contact-email-line a {
  color: var(--accent-2);
}

.contact-email-line a:hover {
  color: var(--text);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.site-footer {
  padding: 56px 0 96px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}

.footer-credit {
  display: flex;
  align-items: center;
}

.footer-made {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.footer-made a {
  color: var(--text);
  font-weight: 600;
}

.footer-made a:hover {
  color: var(--accent-2);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(.98);
  transition:
    opacity .8s cubic-bezier(.22,.61,.36,1),
    transform .8s cubic-bezier(.22,.61,.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.about-left {
  transform: translate(-42px, 26px);
}

.reveal.about-diagonal {
  transform: translate(-52px, 34px);
}

.reveal.about-right {
  transform: translateX(80px) scale(.98);
  opacity: 0;
  transition:
    opacity 1.2s cubic-bezier(.19,1,.22,1),
    transform 1.2s cubic-bezier(.19,1,.22,1);
}

.reveal.visible.about-left,
.reveal.visible.about-diagonal,
.reveal.visible.about-right {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.reveal.work-head-left {
  transform: translateX(-70px);
  transition:
    opacity 1s cubic-bezier(.19,1,.22,1),
    transform 1s cubic-bezier(.19,1,.22,1);
}

.reveal.work-card-right {
  transform: translateX(70px);
  transition:
    opacity 1.05s cubic-bezier(.19,1,.22,1),
    transform 1.05s cubic-bezier(.19,1,.22,1);
}

.reveal.work-card-left {
  transform: translateX(-70px);
  transition:
    opacity 1.05s cubic-bezier(.19,1,.22,1),
    transform 1.05s cubic-bezier(.19,1,.22,1);
}

.reveal.visible.work-head-left,
.reveal.visible.work-card-right,
.reveal.visible.work-card-left {
  transform: translateX(0);
}

.reveal,
.site-header,
.nav-links a,
.nav-cta,
.lang-switcher,
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-text,
.hero-actions .btn {
  will-change: transform, opacity;
}

.hero-title-hu,
.hero-title-es,
.hero-title-en {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: fit-content;
  max-width: none;
}

.hero-title-hu span,
.hero-title-es span,
.hero-title-en span {
  display: block;
  white-space: nowrap;
}

.mobile-lang-switcher,
.mobile-menu-cta {
  display: none;
}

.mobile-shake {
  animation: mobileLockedShake 0.55s ease;
  will-change: transform;
}

@keyframes mobileLockedShake {
  0% { transform: translateX(0) rotate(0deg); }
  12% { transform: translateX(-12px) rotate(-1.6deg); }
  24% { transform: translateX(12px) rotate(1.6deg); }
  36% { transform: translateX(-10px) rotate(-1.3deg); }
  48% { transform: translateX(10px) rotate(1.3deg); }
  60% { transform: translateX(-7px) rotate(-1deg); }
  72% { transform: translateX(7px) rotate(1deg); }
  84% { transform: translateX(-3px) rotate(-0.4deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

@media (max-width: 1100px) {
  .services-grid,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 44px;
  }

  .about-copy {
    width: 100%;
    max-width: 760px;
  }

  .services-grid article:last-child {
    grid-column: span 2;
  }

  .about-panel {
    justify-self: start;
    padding-top: 40px;
  }
}

@media (max-width: 980px) {
  .nav-links {
    gap: 18px;
  }

  .lang-btn {
    min-width: 46px;
    padding: 0 10px;
  }

  .nav-cta {
    padding: 0 18px;
  }
}

@media (max-width: 860px) {
  .logo-image {
  display: none;
}

.logo {
  padding-left: 0;
  margin-left: 0;
}
    .hero-copy {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
  .lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.page-ready .lang-switcher {
    animation: none !important;
    animation-delay: 0s !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .lang-switcher .lang-btn {
    min-width: 48px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .nav-cta {
    display: none;
  }

  .nav-right {
    display: flex;
    position: absolute;
    top: 50%;
    right: 78px;
    transform: translateY(-50%);
    gap: 0;
    margin-left: 0;
    z-index: 10002;
  }

  .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px 24px;
    margin-left: 0;
    background: linear-gradient(180deg, rgba(6, 16, 24, 0.985), rgba(7, 16, 24, 0.985));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 0;
    border-radius: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition:
      transform 0.5s cubic-bezier(.22,.61,.36,1),
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .nav-links a {
    animation: none !important;
    transition: none !important;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links.active a {
    opacity: 1;
    transform: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 8vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    color: rgba(243,245,247,0.82);
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }

  .nav-links.active a:hover {
    color: #f3f5f7;
  }

  .mobile-menu-cta {
    display: inline-block;
  }

  .nav-links.active .mobile-menu-cta {
    margin-top: 12px;
    padding-top: 0;
    border-top: none;
    color: var(--accent);
    font-weight: 700;
  }

  .mobile-lang-switcher {
    display: none !important;
  }

  .mobile-lang-switcher .lang-btn {
    min-width: 42px;
    height: 30px;
    padding: 0 8px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 0;
    right: -20px;
    width: 60px;
    height: 64px;
    margin-left: 0;
    border: 0;
    outline: none;
    box-shadow: none;
    border-radius: 0 0 0 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    z-index: 10003;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 5px;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    display: none !important;
  }

  .menu-toggle:focus,
  .menu-toggle:active {
    outline: none;
    box-shadow: none;
  }

  .menu-toggle span {
    width: 20px;
    height: 2.4px;
    background: #f3f5f7;
    border-radius: 999px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

    .hero {
    padding-top: 15px;
    padding-bottom: 5px;
  }

    .hero-simple {
    min-height: auto;
    gap: 0;
    padding-top: 132px;
    padding-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .hero-visual {
    display: none;
  }

  .about-grid,
  .services-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    width: 100%;
    max-width: 100%;
  }

  .services-grid article:last-child,
  .work-grid article:last-child {
    grid-column: auto;
  }

  .section {
    padding: 88px 0;
  }

  .about-panel {
    justify-self: stretch;
    padding-left: 0;
    padding-top: 18px;
  }

  .about-stats {
    align-items: center;
    text-align: center;
    gap: 28px;
  }

  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-number,
  .stat-label,
  .stat-in {
    text-align: center;
  }

  .footer-row {
    flex-direction: column;
  }

  .playful-cta {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .cta-section {
    padding-top: 68px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .hero-copy {
    padding-right: 4px;
  }

  .hero-copy,
  .section-head,
  .about-copy,
  .about-texts,
  .cta-box,
  .service-card,
  .work-image-label,
  .contact-email-line,
  .site-footer p,
  .footer-links {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero h1,
  .section-head h2,
  .about-copy h2,
  .cta-box h2,
  .playful-cta h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 100%;
  }

  .hero-title-hu {
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .nav {
    min-height: 64px;
  }

  .nav-right {
    right: 50px;
  }

  .lang-switcher .lang-btn {
    min-width: 44px;
    height: 34px;
    font-size: 0.68rem;
    padding: 0 9px;
  }

  .menu-toggle {
    width: 56px;
    height: 64px;
    right: -18px;
    border-radius: 0 0 0 20px;
    gap: 5px;
  }

  .menu-toggle span {
    width: 19px;
    height: 2.3px;
  }

  .service-card,
  .cta-box {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .dodge-btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    align-self: stretch;
  }

  .hero-actions,
  .cta-actions,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .about-texts p {
    font-size: 1.05rem;
    line-height: 1.68;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1.02rem;
  }

  .nav-links.active {
    gap: 16px;
    padding-top: 96px;
  }

  .nav-links.active a {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .mobile-lang-switcher {
    margin-bottom: 8px;
  }

  .solar-loader {
    width: 120px;
    height: 120px;
  }

  .loader-orbit-1 {
    width: 50px;
    height: 50px;
  }

  .loader-orbit-2 {
    width: 78px;
    height: 78px;
  }

  .loader-orbit-3 {
    width: 104px;
    height: 104px;
  }

  .loader-brand {
    font-size: 0.85rem;
  }
}