:root {
  --bg: #f5f5f3;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #101010;
  --muted: #5f5f5f;
  --line: rgba(16, 16, 16, 0.1);
  --accent: #111111;
  --accent-deep: #000000;
  --accent-soft: #e7e7e7;
  --olive: #2a2a2a;
  --shadow: 0 24px 80px rgba(16, 16, 16, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.06), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(0, 0, 0, 0.05), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 52%, #f0f0ef 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 75%);
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(16, 16, 16, 0.1);
  backdrop-filter: blur(24px) saturate(140%);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
  margin-left: auto;
}

.lang-switcher {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
}

.lang-switcher button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switcher button.is-active {
  background: #111111;
  color: #fff;
}

.brand,
.nav a {
  color: var(--text);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  min-width: 38px;
  height: 12px;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.brand-mark img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
}

.brand-mark-classic {
  min-width: 60px;
  height: 42px;
  padding: 4px;
  border-radius: 14px;
  background: #0d0d0d;
  color: #ffffff;
  font-family: "Syne", sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
}

.brand-text,
.hero h1,
.section-heading h2,
.cta-panel h2 {
  font-family: "Syne", sans-serif;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.topbar.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.topbar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: -22px;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 150px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav a {
  color: var(--muted);
  font-weight: 600;
}

.nav a.is-active {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #151515 0%, #000000 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
}

.button-small {
  padding: 12px 18px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 72px 28px 54px;
  border-radius: 40px 40px 0 0;
  background:
    radial-gradient(circle at 50% 72%, rgba(0, 0, 0, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 28px 80px rgba(16, 16, 16, 0.08);
}

.eyebrow {
  margin: 0 0 14px;
  color: #222222;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-background-title {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.6rem, 9vw, 6.6rem);
  max-width: 12ch;
  color: #0b0b0b;
}

.hero-text,
.section-heading,
.cta-panel p,
.info-card p,
.showcase-card p,
.process-step p,
.testimonial p {
  color: var(--muted);
}

.hero-text {
  max-width: 52ch;
  margin: 22px auto 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.hero-stats div {
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
}

.hero-stats strong,
.metric-card strong,
.process-step h3,
.showcase-card h3,
.info-card h3,
.testimonial strong {
  display: block;
}

.hero-stats strong {
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.dashboard-card,
.info-card,
.showcase-card,
.process-step,
.testimonial,
.clients,
.topbar.is-scrolled {
  backdrop-filter: blur(18px);
}

.topbar.is-scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.56));
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 44px rgba(16, 16, 16, 0.14);
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 232, 0.84)),
    linear-gradient(135deg, rgba(255, 107, 44, 0.16), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--accent-deep);
  font-weight: 800;
}

.pill-muted {
  background: rgba(0, 0, 0, 0.06);
  color: var(--olive);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 26, 23, 0.06);
}

.metric-card.accent {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(0, 0, 0, 0.88));
  color: #fff;
}

.metric-card.accent p,
.metric-card.accent span {
  color: rgba(255, 255, 255, 0.84);
}

.metric-card span,
.showcase-label,
.testimonial span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  font-weight: 700;
}

.testimonial-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 16, 16, 0.08);
  overflow: hidden;
}

.testimonial-logo {
  width: 100%;
  max-width: 220px;
  max-height: 78px;
  object-fit: contain;
  display: block;
}

.testimonial-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.06);
  transition: background 180ms ease, transform 180ms ease;
}

.testimonial-link:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.metric-card strong {
  margin: 10px 0 8px;
  font-size: 1.4rem;
}

.metric-card p {
  margin: 0;
  line-height: 1.65;
}

.metric-card.wide {
  grid-column: 1 / -1;
}

.clients {
  display: grid;
  gap: 20px;
  margin: 0 0 26px;
  padding: 28px 22px 30px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-top: 0;
  border-radius: 0 0 40px 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.04), transparent 35%),
    #fbfbfb;
}

.clients p {
  margin: 0;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-row span {
  flex: 1 1 140px;
  text-align: center;
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.03);
  color: #171717;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marqueeLeft 46s linear infinite;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(16, 16, 16, 0.06);
}

.logo-item img {
  width: auto;
  max-width: 76px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-item span {
  font-weight: 700;
  color: #171717;
}

.section {
  padding: 48px 0;
}

.about-heading {
  margin-bottom: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}

.about-profile,
.about-panel {
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 243, 243, 0.88));
  box-shadow: 0 18px 46px rgba(16, 16, 16, 0.08);
}

.about-profile {
  grid-row: span 2;
  display: grid;
  align-content: start;
  gap: 24px;
}

.about-badge {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.about-copy h3,
.about-panel h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.about-copy p,
.about-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.about-panel-space {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
}

.about-space-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #151515 0%, #000000 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.about-space-note:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2);
}

.about-space-note:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.14);
  outline-offset: 4px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 32px;
  max-width: 220px;
  object-fit: contain;
}

.page-hero {
  padding: 68px 30px 42px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.page-hero h1 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.7;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.about-story-card,
.about-philosophy-card,
.about-gallery-card,
.about-space-card,
.price-card {
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 243, 243, 0.88));
  box-shadow: 0 18px 46px rgba(16, 16, 16, 0.08);
}

.about-story-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  grid-column: 1 / -1;
  align-items: center;
}

.about-main-photo,
.about-gallery-card img,
.about-space-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.about-main-photo {
  min-height: 420px;
}

.about-story-copy h2,
.about-philosophy-card h3,
.about-space-copy h3,
.price-card h2 {
  margin: 0 0 14px;
}

.about-story-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
}

.about-story-copy p,
.about-philosophy-card p,
.about-space-copy p,
.price-card p {
  color: var(--muted);
  line-height: 1.75;
}

.about-gallery-card {
  padding: 12px;
  min-height: 320px;
}

.about-space-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.about-space-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.price-wrap {
  display: grid;
  place-items: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1100px);
}

.price-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card-featured {
  position: relative;
  border-color: rgba(16, 16, 16, 0.2);
  background:
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.05), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 241, 241, 0.92));
  box-shadow: 0 26px 56px rgba(16, 16, 16, 0.14);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 16, 16, 0.14);
  box-shadow: 0 20px 42px rgba(16, 16, 16, 0.1);
}

.price-note {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.045);
  font-weight: 600;
}

.price-card-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card-header {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.price-card-label {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.65;
}

.price-feature-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.7;
}

.price-feature-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111111;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-button-secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.12);
}

.order-panel {
  align-items: stretch;
}

.order-summary-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.order-summary-list {
  display: grid;
  gap: 14px;
}

.order-summary-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 16, 16, 0.06);
}

.order-summary-item strong {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  color: var(--text);
}

.price-value {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.price-value strong {
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  line-height: 0.96;
  font-family: "Syne", sans-serif;
}

.price-value span {
  color: var(--muted);
  font-weight: 700;
}

.price-value-custom strong {
  font-size: clamp(2.2rem, 4.6vw, 3.15rem);
}

.section-heading {
  max-width: 660px;
  margin-bottom: 24px;
}

.technology-heading {
  margin-bottom: 30px;
}

.technology-section {
  position: relative;
  overflow: hidden;
  padding: 58px 30px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 0, 0, 0.05), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.05), transparent 26%),
    linear-gradient(180deg, #fcfcfc 0%, #f7f7f7 100%);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.tech-stack {
  display: grid;
  gap: 46px;
}

.tech-group {
  display: grid;
  gap: 28px;
  padding-bottom: 14px;
}

.tech-marquee-shell {
  position: relative;
  overflow: hidden;
  padding: 10px 18px 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.24));
}

.tech-marquee-shell::before,
.tech-marquee-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 54px;
  z-index: 2;
  pointer-events: none;
}

.tech-marquee-shell::before {
  left: 0;
  border-radius: 34px 0 0 34px;
  background: linear-gradient(90deg, rgba(247, 247, 247, 0.98), rgba(247, 247, 247, 0));
}

.tech-marquee-shell::after {
  right: 0;
  border-radius: 0 34px 34px 0;
  background: linear-gradient(270deg, rgba(247, 247, 247, 0.98), rgba(247, 247, 247, 0));
}

.tech-group-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tech-group-heading h3 {
  margin: 0;
  min-width: 120px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-family: "Syne", sans-serif;
}

.tech-group-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02));
}

.tech-icon-grid {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding-top: 10px;
}

.tech-icon-grid-small {
  display: flex;
}

.tech-tile {
  position: relative;
  flex: 0 0 170px;
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 148px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 240, 240, 0.9));
  border: 1px solid rgba(16, 16, 16, 0.1);
  box-shadow: 0 18px 44px rgba(16, 16, 16, 0.08);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tech-tile::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.16), transparent 70%);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.tech-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 24px 56px rgba(16, 16, 16, 0.14);
}

.tech-tile:hover::after {
  opacity: 1;
}

.tech-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: linear-gradient(135deg, #111111 0%, #3a3a3a 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.tech-tile strong {
  font-size: 1.05rem;
}

.tech-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.tech-scroll-left {
  animation: techMarqueeLeft 40s linear infinite;
}

.tech-scroll-right {
  animation: techMarqueeRight 40s linear infinite;
}

.tech-icon-grid:hover,
.tech-icon-grid-small:hover {
  animation-play-state: paused;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.glass-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(245, 245, 245, 0.48)),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.34), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 239, 239, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 22px 48px rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.service-card {
  min-height: 390px;
  padding: 38px 32px;
  border-radius: 34px;
  display: grid;
  align-content: start;
  gap: 20px;
  color: var(--text);
  text-align: center;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.92), rgba(58, 58, 58, 0.86));
  box-shadow: 0 18px 34px rgba(16, 16, 16, 0.16);
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: #ffffff;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.service-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 28px 58px rgba(16, 16, 16, 0.12);
}

.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 38px rgba(16, 16, 16, 0.22);
}

.card-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-radius: 28px;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.process-step,
.testimonial {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 40px rgba(68, 47, 30, 0.06);
  overflow: hidden;
}

.info-card,
.process-step {
  gap: 0;
}

.info-card h3,
.showcase-card h3,
.process-step h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.info-card p,
.process-step p,
.testimonial p {
  margin: 0;
  line-height: 1.7;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  border-radius: 28px;
}

.showcase-card {
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 28px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase-card.large {
  background:
    linear-gradient(180deg, transparent 0%, rgba(16, 16, 16, 0.38) 100%),
    linear-gradient(135deg, #1a1a1a, #3a3a3a 55%, #9e9e9e 100%);
}

.showcase-card.warm {
  background:
    linear-gradient(180deg, transparent 0%, rgba(16, 16, 16, 0.42) 100%),
    linear-gradient(135deg, #111111, #4c4c4c 55%, #cfcfcf 100%);
}

.showcase-card.dark {
  background:
    linear-gradient(180deg, transparent 0%, rgba(16, 16, 16, 0.42) 100%),
    linear-gradient(135deg, #000000, #2d2d2d 55%, #8d8d8d 100%);
}

.showcase-label {
  color: rgba(255, 255, 255, 0.76);
}

.showcase-card h3 {
  margin-top: 12px;
  font-size: 1.8rem;
}

.showcase-card p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 28ch;
}

.jobs-preview {
  padding-top: 10px;
}

.about-preview {
  padding-top: 10px;
}

.jobs-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 244, 244, 0.88));
}

.about-banner {
  background:
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 244, 244, 0.88));
}

.jobs-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.jobs-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.job-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.job-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 243, 243, 0.88));
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 18px 44px rgba(16, 16, 16, 0.08);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.job-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
}

.job-card p,
.job-card li {
  color: var(--muted);
  line-height: 1.65;
}

.job-card ul {
  padding-left: 18px;
  margin: 16px 0 22px;
}

.job-card.job-card-static {
  display: grid;
  gap: 14px;
}

.job-card-note {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-panel {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.info-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--accent-deep);
  font-weight: 800;
  margin-bottom: 16px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial strong {
  margin-top: 18px;
  margin-bottom: 4px;
}

.testimonial-footnote {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-section {
  padding-bottom: 0;
}

.cta-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 243, 243, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-card {
  position: relative;
  isolation: isolate;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.94));
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 18px 46px rgba(16, 16, 16, 0.08);
  overflow: hidden;
}

.card-grid > *,
.process-list > *,
.testimonial-grid > *,
.showcase-grid > * {
  border-radius: 28px !important;
  overflow: hidden;
}

.contact-info {
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12), transparent 68%);
}

.contact-points {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.contact-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.contact-point p {
  margin: 0;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #111111 0%, #3b3b3b 100%);
  color: #fff;
  font-weight: 800;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 16, 16, 0.1);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-row a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.social-row a svg {
  width: 28px;
  height: 28px;
  display: block;
}

.social-row-colored a {
  background: rgba(255, 255, 255, 0.92);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.contact-form button {
  margin-top: 6px;
}

.contact-form button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
  max-height: 320px;
  overflow-y: auto;
}

.form-status {
  min-height: 24px;
  margin: 2px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.form-status.is-success {
  color: #0d7a42;
}

.form-status.is-error {
  color: #b42318;
}

.social-links-panel {
  display: grid;
  gap: 12px;
}

.social-links-title {
  margin: 0;
  font-weight: 700;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.social-link-card {
  text-decoration: none;
  color: inherit;
}

.social-link-card,
.social-option-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-link-card:hover,
.social-option:hover .social-option-card {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.social-option-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.06);
  flex: 0 0 auto;
}

.social-option-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.social-option-text {
  display: block;
  min-width: 0;
}

.social-option-text strong,
.social-option-text small {
  display: block;
}

.social-option-text small {
  color: var(--muted);
}

.social-option-text strong {
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.instagram-option.social-link-card,
.instagram-option input:checked + .social-option-card {
  border-color: rgba(214, 41, 118, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 240, 246, 0.92));
  box-shadow: 0 16px 32px rgba(214, 41, 118, 0.14);
}

.whatsapp-option.social-link-card,
.whatsapp-option input:checked + .social-option-card {
  border-color: rgba(37, 211, 102, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 255, 242, 0.94));
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.14);
}

.email-option.social-link-card,
.email-option input:checked + .social-option-card {
  border-color: rgba(17, 17, 17, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 241, 241, 0.94));
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.08);
}

.social-link-card:focus-visible,
.social-option input:focus-visible + .social-option-card {
  outline: 2px solid rgba(0, 0, 0, 0.12);
  outline-offset: 3px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.thank-you-hero {
  text-align: center;
}

.thank-you-hero-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(24, 175, 93, 0.14), rgba(24, 175, 93, 0.08));
  box-shadow: inset 0 0 0 1px rgba(24, 175, 93, 0.14);
}

.thank-you-hero-icon svg {
  width: 38px;
  height: 38px;
  fill: #18af5d;
}

.thank-you-hero-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(24, 175, 93, 0.08);
  color: #0f7f42;
  font-weight: 700;
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.thank-you-step {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(16, 16, 16, 0.06);
}

.thank-you-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.08);
  font-weight: 800;
  margin-bottom: 16px;
}

.thank-you-step h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.thank-you-step p,
.thank-you-helper,
.thank-you-trust-item span,
.thank-you-quote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.thank-you-panel {
  align-items: stretch;
}

.thank-you-form-intro,
.thank-you-form {
  display: grid;
  align-content: start;
}

.thank-you-trust-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.thank-you-trust-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 16, 16, 0.06);
}

.thank-you-trust-item strong {
  font-size: 1rem;
}

.thank-you-quote {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(24, 175, 93, 0.08), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(24, 175, 93, 0.12);
}

.thank-you-helper {
  margin-top: -2px;
  margin-bottom: 4px;
  font-size: 0.94rem;
  font-weight: 600;
}

.support-contact-section {
  padding-top: 8px;
}

.support-contact-banner {
  background:
    radial-gradient(circle at top left, rgba(24, 175, 93, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 244, 0.9));
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 40px;
  padding: 34px 0 8px;
  border-top: 1px solid rgba(31, 26, 23, 0.1);
}

.footer-brand p,
.footer-copy,
.footer-column a {
  color: var(--muted);
}

.footer-brand p {
  max-width: 46ch;
  margin: 16px 0 0;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.footer-column a {
  text-decoration: none;
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  text-align: center;
}

.footer-copy span {
  display: block;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 14px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-legal-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-legal-links a:hover {
  color: #000;
}

.legal-page {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(16, 16, 16, 0.06);
}

.legal-card h2 {
  margin: 0 0 14px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-card a {
  color: #111111;
}

.panel {
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 243, 243, 0.9));
  box-shadow: 0 18px 46px rgba(16, 16, 16, 0.08);
}

.panel h1,
.panel h2 {
  margin-top: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
}

.stack-form {
  display: grid;
  gap: 16px;
}

.stack-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.stack-form input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  color: var(--text);
}

.stack-form input:focus {
  outline: 2px solid rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.45);
}

.error-box {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff1ed;
  border: 1px solid rgba(180, 35, 24, 0.2);
  color: #b42318;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  text-align: left;
  vertical-align: top;
  color: var(--muted);
  line-height: 1.6;
}

.table-wrap th {
  color: #111111;
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.admin-stat {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.06);
}

.admin-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-stat strong {
  display: block;
  margin-top: 10px;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.admin-stat-accent {
  background: linear-gradient(180deg, #111111 0%, #242424 100%);
  color: #ffffff;
}

.admin-stat-accent span {
  color: rgba(255, 255, 255, 0.72);
}

.nav a,
.footer-column a,
.logo-row span,
.info-card,
.process-step,
.showcase-card,
.testimonial,
.contact-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, color 220ms ease;
}

.nav a:hover,
.footer-column a:hover {
  color: #000;
}

.info-card:hover,
.process-step:hover,
.testimonial:hover,
.job-card:hover,
.info-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: 420px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12), transparent 68%);
  filter: blur(28px);
  animation: heroPulse 5s ease-in-out infinite;
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(0.92);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes techMarqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes techMarqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .topbar {
    position: sticky;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .topbar-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    width: min(360px, 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: 0 24px 60px rgba(16, 16, 16, 0.14);
  }

  .topbar.is-menu-open .topbar-panel {
    display: flex;
  }

  .nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.035);
  }

  .nav a.is-active {
    background: rgba(0, 0, 0, 0.08);
    text-decoration: none;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-submenu {
    position: static;
    left: auto;
    transform: none;
    display: grid;
    gap: 8px;
    min-width: 0;
    margin-top: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-submenu a {
    padding-left: 24px;
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switcher {
    width: fit-content;
  }

  .hero,
  .cta-panel,
  .showcase-grid,
  .jobs-banner,
  .contact-page-grid,
  .about-story-card,
  .about-space-card,
  .footer,
  .admin-topbar {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .price-grid,
  .card-grid,
  .process-list,
  .job-listing-grid,
  .info-grid,
  .thank-you-steps,
  .about-page-grid,
  .admin-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-icon-grid,
  .tech-icon-grid-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .topbar {
    top: 10px;
    padding: 14px 16px;
  }

  .button-small {
    display: none;
  }

  .topbar-panel .button-small {
    display: inline-flex;
    width: 100%;
  }

  .hero {
    padding-top: 22px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-stats,
  .price-grid,
  .services-grid,
  .dashboard-grid,
  .card-grid,
  .process-list,
  .job-listing-grid,
  .info-grid,
  .thank-you-steps,
  .about-page-grid,
  .testimonial-grid,
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .showcase-card,
  .service-card,
  .info-card,
  .process-step,
  .testimonial {
    padding: 20px;
  }

  .tech-group-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    padding: 64px 18px 42px;
  }

  .hero-background-title {
    top: 54px;
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .logo-row {
    justify-content: center;
  }

  .logo-item {
    min-width: 160px;
  }

  .tech-icon-grid,
  .tech-icon-grid-small {
    gap: 14px;
  }

  .about-space-images {
    grid-template-columns: 1fr;
  }

  .about-story-top,
  .footer-meta {
    flex-direction: column;
    align-items: center;
  }

  .price-card-badge {
    position: static;
    justify-self: start;
    margin-bottom: 10px;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 16px, 1180px);
  }

  .tech-icon-grid,
  .tech-icon-grid-small,
  .footer {
    grid-template-columns: 1fr;
  }

  .technology-section,
  .cta-panel,
  .page-hero,
  .jobs-banner {
    padding: 22px;
  }

  .contact-card {
    padding: 20px;
  }

  .social-links-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .logo-item {
    min-width: 140px;
    padding: 14px;
  }
}

@media (min-width: 1600px) {
  .site-shell {
    width: min(1520px, calc(100% - 64px));
  }
}

@media (min-width: 2200px) {
  html {
    font-size: 18px;
  }

  .site-shell {
    width: min(1800px, calc(100% - 96px));
  }
}
