*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-deep: #0f3d2e;
  --green-mid: #1a5c42;
  --green-vivid: #2a8b5e;
  --green-light: #3db87a;
  --green-soft: #9ee5bd;
  --navy: #0c1b2e;
  --night: #06110d;
  --paper: #eff4f0;
  --paper-soft: #f7faf7;
  --white: #ffffff;
  --off-white: #f3f7f3;
  --text-dark: #101814;
  --text-muted: #5a6e61;
  --text-soft: #9db2a6;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --frame: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--night);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 28px;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(8, 20, 15, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-logo,
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img,
.footer-logo img {
  display: block;
  height: 42px;
  width: auto;
}

/* Universe switch */
.univ-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  background: rgba(17,17,25,.5);
  backdrop-filter: blur(10px);
  margin-left: 14px;
}
.univ-switch a {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 100px;
  transition: all .2s;
  white-space: nowrap;
}
.univ-switch a:hover {
  color: #fff;
  background: rgba(61,184,122,.12);
}
.univ-switch .sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.15);
}
.univ-switch a.active {
  background: rgba(61,184,122,.2);
  color: var(--green-light);
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-self: end;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.25s;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-light);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 22px;
  border: 1px solid rgba(61, 184, 122, 0.5);
  border-radius: 999px;
  background: transparent;
  color: var(--green-light);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.nav-cta:hover {
  background: rgba(61, 184, 122, 0.1);
  border-color: rgba(61, 184, 122, 0.8);
  color: #7be0a1;
  transform: translateY(-1px);
}

.lang-toggle,
.mobile-lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(17, 17, 25, 0.6);
}

.lang-toggle-btn,
.mobile-lang-toggle-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  min-width: 32px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.mobile-lang-toggle-btn {
  padding: 6px 12px;
  font-size: 12px;
}

.lang-toggle-btn.active,
.mobile-lang-toggle-btn.active {
  background: var(--green-vivid);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(42, 139, 94, 0.24);
}

.lang-toggle-btn:focus-visible,
.mobile-lang-toggle-btn:focus-visible {
  outline: 2px solid rgba(61, 184, 122, 0.8);
  outline-offset: 2px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background: rgba(8, 8, 14, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: right 0.4s var(--ease-out);
  overflow: hidden;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 112px 8vw 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
  color: var(--green-light);
}

.mobile-menu-cta {
  margin-top: 16px;
  min-width: 220px;
  min-height: 50px;
  padding: 16px 44px;
  font-size: 17px;
}

.mobile-nav-tools {
  display: none;
  margin: 16px 0 8px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-label.light {
  color: var(--green-light);
}

.section-label.dark {
  color: var(--green-mid);
}

.section-label-centered {
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 40px;
  border-radius: 4px;
  background: var(--green-vivid);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(42, 139, 94, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
}

.btn-ghost::after {
  content: "->";
  font-size: 15px;
  transition: transform 0.25s var(--ease-out);
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-ghost:hover::after {
  transform: translateX(6px);
}

.solutions-hero {
  position: relative;
  min-height: 100vh;
  padding: 152px 7vw 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(61, 184, 122, 0.18), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(61, 184, 122, 0.12), transparent 30%),
    linear-gradient(145deg, #06110d 0%, #0b2218 52%, #0c1b2e 100%);
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 17, 13, 0.9) 6%, rgba(10, 34, 24, 0.58) 48%, rgba(12, 27, 46, 0.88) 100%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=85") center/cover no-repeat;
  opacity: 0.8;
  transform: scale(1.08);
}

.solutions-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
  pointer-events: none;
}

.solutions-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 470px);
  gap: clamp(52px, 6vw, 92px);
  align-items: center;
}

.solutions-copy h1 {
  max-width: 10.8ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 7vw, 118px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.solutions-copy h1 em {
  font-style: italic;
  color: var(--green-light);
}

.hero-intro {
  max-width: 37ch;
  margin-top: 28px;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 24px;
}

.hero-media {
  position: relative;
}

.media-link-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b2218;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.28);
}

.media-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 17, 13, 0.08) 0%, rgba(6, 17, 13, 0.34) 44%, rgba(6, 17, 13, 0.9) 100%);
}

.media-link-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.45s var(--ease-out);
}

.media-link-card:hover img {
  transform: scale(1.08);
}

.media-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.media-link-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
}

.media-link-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.media-link-overlay h3 {
  max-width: 13ch;
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.media-link-overlay p {
  max-width: 34ch;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.72);
}

.media-link-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease-out), background 0.25s, border-color 0.25s;
}

.media-link-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-link-card:hover .media-link-arrow {
  transform: translateY(-2px);
  background: rgba(61, 184, 122, 0.18);
  border-color: rgba(61, 184, 122, 0.52);
}

.hero-media-card {
  min-height: 560px;
}

.hero-media-card .media-link-overlay {
  padding: 42px 34px 34px;
}

.hero-media-card .media-link-overlay h3 {
  max-width: 11ch;
}

.creation-section,
.admin-section {
  background: var(--paper-soft);
  color: var(--text-dark);
}

.creation-section {
  padding: 118px 7vw 120px;
}

.section-heading {
  max-width: 1360px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-heading.centered > div {
  max-width: 860px;
}

.section-heading h2 {
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 300;
  line-height: 1.02;
  color: inherit;
}

.section-heading.centered h2 {
  max-width: none;
}

.section-heading p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

.creation-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 272px;
  padding: 32px 30px 30px;
  border: 1px solid rgba(26, 92, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 247, 0.88)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(10, 30, 20, 0.06);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-vivid), rgba(61, 184, 122, 0));
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 184, 122, 0.28);
  box-shadow: 0 30px 80px rgba(10, 30, 20, 0.12);
}

.service-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(42, 139, 94, 0.24);
  background: rgba(42, 139, 94, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green-vivid);
}

.service-card h3 {
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.06;
}

.service-card p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.76;
  color: var(--text-muted);
}

.service-card-wide {
  grid-column: span 2;
}

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

.pricing-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.price-line {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--green-vivid);
}

.price-currency {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 4vw, 62px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.price-value.is-word {
  font-size: clamp(34px, 3vw, 44px);
}

.price-unit {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.service-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-vivid);
}

.page-note {
  margin-top: auto;
  padding-top: 26px;
}

.contact-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-panel {
  min-height: 100%;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(26, 92, 66, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(10, 30, 20, 0.08);
}

.contact-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.04;
}

.contact-detail-list {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.contact-detail {
  padding-top: 18px;
  border-top: 1px solid rgba(26, 92, 66, 0.14);
}

.contact-detail strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-vivid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.split-section {
  padding: 120px 7vw;
}

.split-section,
.question-panel,
.support-poster,
.cta-inner,
.footer-grid,
.footer-bottom {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}

.split-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(10, 30, 20, 0.1);
}

.split-media::before,
.split-media::after,
.support-poster::before,
.support-poster::after {
  content: none;
}

.hr-section {
  background:
    radial-gradient(circle at 84% 10%, rgba(61, 184, 122, 0.16), transparent 26%),
    linear-gradient(160deg, #09150f 0%, #0d271d 48%, #0c1b2e 100%);
}

.hr-media {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.28);
}

.split-media-card {
  min-height: 560px;
}

.split-media-card .media-link-overlay {
  padding: 36px 34px 34px;
}

.split-media-card .media-link-overlay h3 {
  max-width: 11.5ch;
}

.admin-link-card::before {
  background:
    linear-gradient(180deg, rgba(6, 17, 13, 0.1) 0%, rgba(6, 17, 13, 0.3) 42%, rgba(6, 17, 13, 0.86) 100%);
}

.hr-link-card::before {
  background:
    linear-gradient(180deg, rgba(6, 17, 13, 0.14) 0%, rgba(6, 17, 13, 0.34) 42%, rgba(6, 17, 13, 0.9) 100%);
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.admin-section .split-content h2 {
  color: var(--text-dark);
}

.hr-section .split-content h2 {
  color: var(--white);
}

.split-intro {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.82;
}

.admin-section .split-intro {
  color: var(--text-muted);
}

.hr-section .split-intro {
  color: rgba(255, 255, 255, 0.68);
}

.feature-stack {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(26, 92, 66, 0.14);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-dark);
}

.feature-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-muted);
}

.question-banner {
  padding: 0 7vw 120px;
  background: var(--paper-soft);
}

.question-panel {
  position: relative;
  overflow: hidden;
  padding: 54px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #24915e 0%, #1a5c42 56%, #143d2e 100%);
  box-shadow: 0 28px 90px rgba(19, 64, 46, 0.28);
}

.question-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.3;
}

.question-panel h2,
.question-btn {
  position: relative;
  z-index: 1;
}

.question-panel h2 {
  max-width: 13ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 66px);
  font-weight: 300;
  line-height: 1.02;
}

.question-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s, border-color 0.25s;
}

.question-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

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

.check-item {
  position: relative;
  min-height: 104px;
  padding: 24px 22px 24px 62px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.check-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 22px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(61, 184, 122, 0.34);
  background: rgba(61, 184, 122, 0.12);
}

.check-item::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 31px;
  width: 8px;
  height: 13px;
  border-right: 2px solid var(--green-light);
  border-bottom: 2px solid var(--green-light);
  transform: rotate(45deg);
}

.support-stage {
  padding: 120px 7vw 140px;
  background: linear-gradient(180deg, #0c1b2e 0%, #06110d 100%);
}

.support-stage .section-heading {
  color: var(--white);
}

.support-stage .section-heading p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.66);
}

.support-poster {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.3);
}

.support-link-card {
  min-height: 520px;
}

.support-link-card::before {
  background:
    linear-gradient(95deg, rgba(6, 17, 13, 0.92) 0%, rgba(6, 17, 13, 0.56) 44%, rgba(6, 17, 13, 0.88) 100%);
}

.support-link-card .media-link-overlay {
  max-width: 640px;
  padding: 52px 46px;
}

.support-link-card .media-link-overlay h3 {
  max-width: 12ch;
  font-size: clamp(38px, 4.4vw, 68px);
}

.support-link-brand {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 2;
  width: min(240px, 34%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 17, 13, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.support-link-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 150px 7vw;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(61, 184, 122, 0.22), transparent 26%),
    radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(15, 61, 46, 0.92), rgba(12, 27, 46, 0.88));
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 20, 15, 0.24), rgba(8, 18, 34, 0.3));
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.08;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--green-light);
}

.cta-inner p {
  max-width: 600px;
  margin: 24px auto 52px;
  font-size: 17px;
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.68);
}

footer {
  background: var(--navy);
  padding: 80px 7vw 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  max-width: 260px;
  font-size: 13.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  background: rgba(61, 184, 122, 0.06);
}

.footer-col h5 {
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  text-decoration: none;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

#cur {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
}

#cur-r {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(61, 184, 122, 0.45);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s;
}

#cur-r.big {
  width: 64px;
  height: 64px;
  border-color: rgba(61, 184, 122, 0.65);
}

@media (max-width: 1180px) {
  .nav-center {
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .solutions-hero-grid,
  .split-section {
    gap: 36px;
  }

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

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

  .hero-media-card,
  .split-media-card {
    min-height: 520px;
  }

  .support-link-card .media-link-overlay {
    padding: 42px 36px;
  }

  .service-card-wide {
    grid-column: auto;
  }

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

@media (max-width: 960px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    padding: 14px 5vw;
  }

  .nav-center,
  .nav-tools {
    display: none;
  }

  .burger {
    display: inline-flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-logo img,
  .footer-logo img {
    height: 36px;
  }

  .mobile-nav-tools {
    display: flex;
  }

  .solutions-hero {
    min-height: auto;
    padding: 124px 6vw 88px;
  }

  .solutions-hero-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 52px;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading.centered {
    align-items: center;
  }

  .section-heading h2,
  .solutions-copy h1 {
    max-width: none;
  }

  .hero-media-card,
  .split-media-card,
  .split-media,
  .support-poster,
  .support-link-card {
    min-height: 460px;
  }

  .media-link-overlay,
  .support-link-card .media-link-overlay {
    padding: 32px 28px;
  }

  .creation-section,
  .split-section,
  .support-stage,
  .cta-section,
  footer {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .question-banner {
    padding: 0 6vw 96px;
  }

  .question-panel {
    padding: 42px 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .question-panel h2 {
    max-width: none;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .support-link-brand {
    top: 24px;
    right: 24px;
    width: min(200px, 42%);
    padding: 14px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  nav {
    gap: 16px;
  }

  .mobile-menu-panel {
    gap: 20px;
    padding: 104px 6vw 40px;
  }

  .mobile-menu a {
    font-size: 20px;
  }

  .mobile-menu-cta {
    min-width: 208px;
    min-height: 48px;
    padding: 15px 40px;
    font-size: 16px;
  }

  .solutions-copy h1 {
    font-size: clamp(50px, 15vw, 78px);
  }

  .hero-intro,
  .section-heading p,
  .cta-inner p,
  .split-intro {
    font-size: 15px;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost,
  .question-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-media-card,
  .split-media-card,
  .split-media,
  .support-poster,
  .support-link-card {
    min-height: 360px;
  }

  .media-link-overlay,
  .support-link-card .media-link-overlay {
    padding: 24px 20px 28px;
  }

  .media-link-overlay h3,
  .support-link-card .media-link-overlay h3 {
    max-width: none;
    font-size: clamp(30px, 10vw, 42px);
  }

  .creation-grid,
  .pricing-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .feature-card,
  .check-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .media-link-arrow {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .support-link-brand {
    top: 18px;
    right: 18px;
    width: min(160px, 48%);
    padding: 12px 14px;
  }

  .check-item {
    min-height: auto;
  }

  .cta-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}

@media (pointer: coarse), (max-width: 960px) {
  body {
    cursor: auto;
  }

  #cur,
  #cur-r {
    display: none;
  }
}
