:root {
  --bg: #07101f;
  --bg-2: #0b162a;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.11);
  --text: #eff5ff;
  --muted: #aeb9cf;
  --primary: #4da3ff;
  --primary-2: #8fd3ff;
  --success: #7de3c0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 26px;
  --container: 1180px;
  --header-h: 84px;
  --pointer-x: 50%;
  --pointer-y: 10%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(77, 163, 255, 0.12), transparent 18%),
    radial-gradient(circle at top left, rgba(143, 211, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #06101d 0%, #091322 38%, #07111e 100%);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section { padding: 92px 0; }
.grid { display: grid; gap: 24px; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--primary-2);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(77, 163, 255, 0.85);
}

.section-title {
  margin: 0 0 16px;
  font-family: "Anton", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: linear-gradient(135deg, var(--primary), #2f8ded);
  color: #fff;
  box-shadow: 0 18px 34px rgba(47, 141, 237, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: var(--text);
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfe5ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.verified svg { width: 18px; height: 18px; flex: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  background: rgba(6, 11, 21, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(77, 163, 255, 0.18);
  flex: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 3px;
}

.brand-verified {
  display: inline-flex;
  align-items: center;
  color: #cfe5ff;
  white-space: nowrap;
}

.brand-verified svg { width: 15px; height: 15px; flex: none; }

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: rgba(77, 163, 255, 0.15);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle::before { margin-bottom: 5px; }
.menu-toggle::after { margin-top: 5px; }
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

.chooser {
  min-height: calc(100vh - var(--header-h));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
  background: linear-gradient(90deg, rgba(6, 18, 37, 0.96) 0%, rgba(7, 17, 33, 0.98) 50%, rgba(5, 14, 29, 0.98) 100%);
}

.chooser-layout {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - var(--header-h));
  transition: grid-template-columns 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.chooser.is-expanded-web .chooser-layout {
  grid-template-columns: minmax(0, 1fr) 0px 0px;
}

.chooser.is-expanded-graphic .chooser-layout {
  grid-template-columns: 0px 0px minmax(0, 1fr);
}

.chooser-top-switch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 14, 27, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.chooser.is-expanded-web .chooser-top-switch,
.chooser.is-expanded-graphic .chooser-top-switch {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.chooser-top-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 1), rgba(47, 141, 237, 1));
  box-shadow: 0 12px 24px rgba(47, 141, 237, 0.28);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease;
  z-index: 1;
}

.chooser-top-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.chooser-top-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.chooser-top-link.active {
  color: #07101f;
}

.chooser-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.chooser-center::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.08) 15%, rgba(255,255,255,0.08) 85%, transparent 100%);
  opacity: 0.6;
}

.chooser.is-expanded-web .chooser-center,
.chooser.is-expanded-graphic .chooser-center {
  opacity: 0;
  transform: scale(0.8);
}

.chooser-logo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  background: rgba(10, 18, 34, 0.9);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35), 0 0 0 10px rgba(255,255,255,0.03);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.chooser-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.choose-card {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 56px 72px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition:
    opacity 0.55s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease,
    padding 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.choose-card::before,
.choose-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.choose-card::before { opacity: 0.9; }
.choose-card::after { opacity: 0.45; mix-blend-mode: screen; }

.choose-card.web {
  background: linear-gradient(180deg, rgba(6, 18, 37, 0.98), rgba(7, 17, 33, 0.98));
}

.choose-card.web::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(77,163,255,0.22), transparent 26%),
    linear-gradient(180deg, rgba(77,163,255,0.04), transparent 45%);
}

.choose-card.web::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 5%, rgba(0,0,0,0.8) 28%, rgba(0,0,0,0.18) 100%);
}

.choose-card.graphic {
  background: linear-gradient(180deg, rgba(5, 14, 29, 0.98), rgba(6, 16, 31, 0.98));
}

.choose-card.graphic::before {
  background:
    radial-gradient(circle at 82% 30%, rgba(77,163,255,0.18), transparent 24%),
    linear-gradient(180deg, rgba(77,163,255,0.03), transparent 48%);
}

.choose-card.graphic::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 5%, rgba(0,0,0,0.7) 28%, rgba(0,0,0,0.12) 100%);
}

.chooser:not(.is-expanded-web):not(.is-expanded-graphic) .choose-card:hover {
  filter: brightness(1.08);
  transform: scale(1.01);
}

.chooser.is-expanded-web .choose-card.web,
.chooser.is-expanded-graphic .choose-card.graphic {
  padding-left: clamp(32px, 10vw, 160px);
  padding-right: clamp(32px, 10vw, 160px);
  filter: brightness(1.08);
}

.chooser.is-expanded-web .choose-card.graphic {
  opacity: 0;
  transform: translateX(72px) scale(0.98);
  pointer-events: none;
}

.chooser.is-expanded-graphic .choose-card.web {
  opacity: 0;
  transform: translateX(-72px) scale(0.98);
  pointer-events: none;
}

.choose-inner {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.chooser.is-expanded-web .choose-card.web .choose-inner,
.chooser.is-expanded-graphic .choose-card.graphic .choose-inner {
  transform: scale(1.03);
}

.choose-icon {
  width: 42px;
  height: 42px;
  color: var(--primary-2);
  opacity: 0.95;
}

.choose-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
}

.choose-title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.choose-copy {
  margin: 0;
  color: var(--muted);
  max-width: 26ch;
  font-size: 1rem;
}

.signature-line {
  color: var(--muted);
  font-size: 0.94rem;
}

.intro-grid,
.skills-grid,
.services-grid,
.plans-grid,
.faq-grid,
.contact-grid {
  align-items: stretch;
}

.intro-grid { grid-template-columns: 1.08fr 0.92fr; }

.intro-copy,
.intro-side,
.contact-info,
.contact-form {
  padding: 32px;
}

.quote-box {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.quote-box p { margin: 0; color: var(--muted); }

.skills-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.skill-card {
  padding: 24px;
  text-align: left;
}

.skill-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(77, 163, 255, 0.22);
  color: var(--primary-2);
  margin-bottom: 18px;
}

.skill-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skill-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.skill-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.services-grid.single {
  grid-template-columns: 1fr;
}

.service-block {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-block h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.service-block p {
  margin: 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.service-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d9e2f5;
}

.plans-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
}

.plan-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.pricing-card {
  --glow-x: 50%;
  --glow-y: 32%;
  --glow-opacity: 0;
  --glow-size: 280px;
  isolation: isolate;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    var(--glow-size) circle at var(--glow-x) var(--glow-y),
    rgba(77, 163, 255, 0.26),
    rgba(77, 163, 255, 0.11) 32%,
    transparent 62%
  );
  opacity: var(--glow-opacity);
  transition: opacity 0.26s ease;
  pointer-events: none;
  z-index: 0;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
  transition: border-color 0.32s ease, box-shadow 0.32s ease;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card:hover,
.pricing-card.is-active {
  transform: translateY(-6px);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(77, 163, 255, 0.1),
    0 0 44px rgba(77, 163, 255, 0.12);
}

.pricing-card:hover::before,
.pricing-card.is-active::before {
  opacity: 1;
}

.pricing-card:hover::after,
.pricing-card.is-active::after {
  border-color: rgba(77, 163, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(77, 163, 255, 0.08);
}

.pricing-card.featured::after {
  border-color: rgba(181, 177, 176, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(181, 177, 176, 0.08);
}

.plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.plan-card h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.plan-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #2f8ded);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 22px rgba(47, 141, 237, 0.28);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.plan-price strong {
  font-family: "Anton", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.plan-price span {
  color: var(--muted);
  font-weight: 600;
}

.plan-card p {
  margin: 0 0 16px;
  color: var(--muted);
  min-height: 72px;
}

.plan-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.plan-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #d7e1f4;
  font-size: 0.95rem;
}

.plan-list li::before {
  content: "•";
  color: var(--primary-2);
  font-size: 1.1rem;
  line-height: 1.2;
}

.payment-note {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d5e0f3;
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.faq-column { display: grid; gap: 16px; }

.faq-item {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.faq-button span:last-child {
  color: var(--primary-2);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open .faq-button span:last-child {
  transform: rotate(45deg);
}

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
  margin-top: 30px;
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-row {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-row small {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.76rem;
}

.contact-row a,
.contact-row span {
  color: #dce6f7;
  font-weight: 600;
  word-break: break-word;
}

form { display: grid; gap: 14px; }
.field { display: grid; gap: 8px; }

.field label {
  color: #d6e1f3;
  font-weight: 600;
  font-size: 0.95rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(77, 163, 255, 0.42);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-nav a {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
}

.footer-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.projects-showcase {
  margin-top: 32px;
}

.project-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.project-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 31, 0.02) 0%, rgba(7, 16, 31, 0.18) 100%);
  pointer-events: none;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.03);
}

.project-thumb-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #eff5ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.project-card h3 {
  margin: 0 0 8px;
}

.project-card .plan-price {
  margin-bottom: 10px;
}

.project-card p {
  min-height: 112px;
  margin: 0 0 14px;
  line-height: 1.42;
  font-size: 0.97rem;
}

.project-card .plan-list {
  gap: 8px;
  margin-bottom: 18px;
}

.project-card .plan-list li {
  font-size: 0.93rem;
  line-height: 1.35;
}

.project-link {
  margin-top: auto;
  align-self: flex-start;
}

.button-ghost.project-link {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.button-ghost.project-link:hover {
  transform: translateY(-2px);
  background: rgba(77, 163, 255, 0.08);
  border-color: rgba(77, 163, 255, 0.35);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(77, 163, 255, 0.16);
}

.button-ghost.project-link.is-soon {
  cursor: default;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
  color: #dce6f7;
}

.graphic-projects-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.graphic-project-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  min-height: 100%;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.graphic-project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 163, 255, 0.22);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(77, 163, 255, 0.06),
    0 0 24px rgba(77, 163, 255, 0.08);
}

.graphic-thumb {
  aspect-ratio: 4 / 3;
  margin-bottom: 2px;
  cursor: zoom-in;
}

.graphic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.graphic-project-card:hover .graphic-thumb img {
  transform: scale(1.04);
}

.graphic-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 31, 0) 0%, rgba(7, 16, 31, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.graphic-project-card:hover .graphic-thumb::before {
  opacity: 0.65;
}

.graphic-project-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.graphic-project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.42;
}

.project-type {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.1);
  border: 1px solid rgba(77, 163, 255, 0.18);
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.projects-web-grid[hidden],
.projects-graphic-grid[hidden] {
  display: none !important;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.82);
  backdrop-filter: blur(8px);
}

.project-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 1100px);
  max-height: 88vh;
  margin: 4vh auto 0;
  padding: 18px;
  border-radius: 24px;
  background: rgba(10, 16, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 12px;
}

.project-lightbox-dialog img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.project-lightbox-dialog figcaption {
  color: #dce6f7;
  font-size: 0.95rem;
  line-height: 1.4;
}

.project-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.project-lightbox-close:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.14);
}

body.lightbox-open {
  overflow: hidden;
}

.pricing-hover-grid {
  margin-top: 32px;
}

.pricing-hover-grid .plan-card {
  padding: 0;
  overflow: hidden;
}

.plan-card-inner {
  position: relative;
  min-height: 500px;
  padding: 26px;
}

.plan-face {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.plan-face-default {
  opacity: 1;
  transform: translateY(0);
}

.plan-face-hover {
  position: absolute;
  inset: 26px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.plan-price-note {
  margin: -4px 0 14px;
  color: var(--primary-2);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.hover-feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.hover-feature-list li {
  position: relative;
  padding-left: 24px;
  color: #dce6f7;
  font-size: 0.96rem;
  line-height: 1.38;
}

.hover-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.ideal-fit {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ideal-fit small {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.76rem;
}

.ideal-fit p {
  margin: 0;
  min-height: auto;
  color: #dce6f7;
  font-size: 0.94rem;
  line-height: 1.38;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover .plan-face-default {
    opacity: 0;
    transform: translateY(-10px);
  }

  .pricing-card:hover .plan-face-hover {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1140px) {
  .intro-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .graphic-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-wrap {
    position: relative;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, calc(100vw - 2rem));
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 12, 22, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    display: none;
  }

  .nav-panel.open {
    display: grid;
    gap: 14px;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav a {
    padding: 14px;
    border-radius: 16px;
  }
}

@media (min-width: 981px) {
  .nav-panel {
    display: flex !important;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  :root { --header-h: 78px; }

  .section {
    padding: 72px 0;
  }

  .chooser {
    min-height: calc(100svh - var(--header-h));
    padding: 0;
  }

  .chooser-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0;
    min-height: calc(100svh - var(--header-h));
    padding: 0;
  }

  .chooser-top-switch {
    display: none;
  }

  .chooser-center {
    display: none;
  }

  .choose-card {
    width: 100%;
    min-height: auto;
    height: 100%;
    margin: 0;
    padding: 24px 18px;
    border-radius: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .choose-card.web,
  .choose-card.graphic {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .choose-inner {
    width: 100%;
    gap: 12px;
    justify-items: center;
    text-align: center;
  }

  .choose-icon {
    width: 34px;
    height: 34px;
    opacity: 0.95;
  }

  .choose-title {
    font-size: 1.5rem;
    line-height: 1.05;
    text-align: center;
    text-transform: none;
    letter-spacing: -0.02em;
  }

  .choose-copy,
  .signature-line {
    display: none;
  }

  .chooser:not(.is-expanded-web):not(.is-expanded-graphic) .choose-card {
    min-height: 50%;
  }

  .chooser.is-expanded-web .chooser-layout,
  .chooser.is-expanded-graphic .chooser-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .chooser.is-expanded-web .choose-card.web,
  .chooser.is-expanded-graphic .choose-card.graphic {
    display: flex;
    min-height: calc(100svh - var(--header-h));
    height: calc(100svh - var(--header-h));
  }

  .chooser.is-expanded-web .choose-card.graphic,
  .chooser.is-expanded-graphic .choose-card.web {
    display: none;
  }

  .intro-copy,
  .intro-side,
  .skill-card,
  .service-block,
  .plan-card,
  .contact-info,
  .contact-form {
    padding: 24px;
  }

  .skills-grid,
  .plans-grid,
  .faq-grid,
  .graphic-projects-grid {
    grid-template-columns: 1fr;
  }

  .chooser-logo {
    width: 88px;
    height: 88px;
  }

  .section-title {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-top {
    align-items: flex-start;
  }

  .project-card {
    padding: 18px;
  }

  .project-card p {
    min-height: auto;
    line-height: 1.38;
  }

  .project-card .plan-list li {
    line-height: 1.32;
  }

  .graphic-project-card {
    padding: 16px;
    min-height: auto;
  }

  .graphic-project-card p {
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .project-lightbox-dialog {
    width: min(94vw, 94vw);
    padding: 14px;
    border-radius: 20px;
  }

  .project-lightbox-dialog img {
    max-height: 66vh;
  }

  .plan-card-inner {
    min-height: auto;
    padding: 24px;
  }

  .plan-face-hover {
    display: none;
  }
}