:root {
  --bg: #03050b;
  --panel: rgba(8, 13, 27, 0.88);
  --panel-strong: rgba(10, 16, 31, 0.96);
  --line: rgba(83, 112, 205, 0.22);
  --line-strong: rgba(83, 112, 205, 0.44);
  --text: #f4f7ff;
  --muted: #97a8d0;
  --blue: #2d6dff;
  --blue-soft: #12308d;
  --blue-glow: rgba(36, 98, 255, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 30px 80px rgba(2, 8, 24, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Poppins, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(39, 96, 255, 0.28), transparent 28%),
    radial-gradient(circle at 10% 20%, rgba(24, 72, 198, 0.2), transparent 22%),
    linear-gradient(180deg, #04060e 0%, #02040a 38%, #020308 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

body::before {
  top: -80px;
  right: 4%;
  background: rgba(31, 84, 255, 0.22);
}

body::after {
  bottom: 12%;
  left: -100px;
  background: rgba(11, 45, 139, 0.22);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header,
.panel,
.feature-card,
.tool-card,
.pricing-card,
.review-card,
.contact-card,
.site-footer {
  backdrop-filter: blur(16px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 28px;
  background: rgba(5, 10, 20, 0.72);
  border: 1px solid rgba(88, 118, 220, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, #ffffff, rgba(255, 255, 255, 0.2) 22%, transparent 24%),
    linear-gradient(135deg, #1851fa, #07102b 72%);
  box-shadow: 0 0 24px rgba(36, 98, 255, 0.4);
}

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

.site-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.site-nav a:focus-visible,
.footer-links a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(84, 113, 208, 0.24);
  border-radius: 14px;
  background: rgba(11, 17, 32, 0.9);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(180deg, #2c71ff, #1451dc);
  box-shadow: 0 12px 30px rgba(28, 89, 242, 0.35);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.header-cta {
  white-space: nowrap;
}

main {
  display: grid;
  gap: 26px;
}

.panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 11, 22, 0.95), rgba(4, 8, 18, 0.95)),
    linear-gradient(135deg, rgba(45, 109, 255, 0.08), transparent 40%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 52px;
}

.hero::before,
.cta::before,
.faq-section::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55, 116, 255, 0.5), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -140px -140px auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 100, 255, 0.28), transparent 65%);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #dce6ff;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  min-width: 140px;
  padding: 16px 18px;
  border: 1px solid rgba(80, 108, 191, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.glass-card {
  position: relative;
  min-height: 460px;
  padding: 28px;
  background:
    radial-gradient(circle at 60% 10%, rgba(53, 108, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(7, 10, 21, 0.96), rgba(3, 6, 14, 0.92));
  border: 1px solid rgba(94, 124, 225, 0.24);
  border-radius: calc(var(--radius-xl) - 4px);
}

.hero-card-glow {
  position: absolute;
  inset: 12% 12% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 102, 255, 0.35), transparent 70%);
  filter: blur(10px);
}

.mini-label {
  margin-bottom: 30px;
  font-size: 0.92rem;
  color: #d9e2ff;
}

.orbit,
.logo-showcase {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.logo-shell {
  position: relative;
  width: min(500px, 100%);
  padding: 0;
  border-radius: 28px;
  background: transparent;
  border: 0;
  box-shadow:
    0 24px 60px rgba(5, 13, 36, 0.3),
    0 0 50px rgba(40, 101, 255, 0.18);
}

.logo-shell::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(40, 101, 255, 0.12), transparent 72%);
  z-index: -1;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 14px 34px rgba(42, 102, 255, 0.18));
}

.orbit-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(91, 120, 219, 0.26);
  box-shadow: inset 0 0 60px rgba(27, 79, 240, 0.12);
  animation: spin 18s linear infinite;
}

.orbit-ring-secondary {
  inset: 24%;
  border-color: rgba(109, 144, 255, 0.22);
  animation-direction: reverse;
  animation-duration: 14s;
}

.orbit-core {
  width: 96px;
  height: 96px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 30%, #ffffff, rgba(255, 255, 255, 0.28) 20%, transparent 22%),
    linear-gradient(135deg, rgba(40, 101, 255, 0.95), rgba(8, 12, 28, 0.95));
  box-shadow:
    0 0 40px rgba(40, 101, 255, 0.45),
    inset 0 0 24px rgba(255, 255, 255, 0.1);
  transform: rotate(16deg);
}

.hero-card-footer {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(88, 118, 215, 0.2);
}

.hero-card-footer strong,
.contact-card strong,
.review-card strong {
  display: block;
}

.hero-card-footer span,
.contact-card span,
.review-card span {
  color: var(--muted);
}

.status-pill,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #dce6ff;
  font-size: 0.78rem;
  border: 1px solid rgba(112, 143, 245, 0.2);
  background: rgba(26, 62, 163, 0.3);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  padding: 42px;
}

.media-card,
.portrait-frame {
  min-height: 100%;
}

.portrait-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(180deg, rgba(8, 12, 24, 0.96), rgba(5, 8, 16, 0.96)),
    radial-gradient(circle at 50% 20%, rgba(42, 102, 255, 0.18), transparent 45%);
  border: 1px solid rgba(90, 121, 224, 0.2);
}

.portrait-glow {
  position: absolute;
  inset: auto 0 -15% 20%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 99, 255, 0.28), transparent 68%);
}

.portrait-shape {
  position: absolute;
  inset: 10% 16% 8%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(18, 24, 46, 0.9), rgba(5, 7, 14, 1)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(101, 131, 228, 0.16);
}

.portrait-shape::before,
.portrait-shape::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(50, 105, 255, 0.95), rgba(10, 21, 55, 0.95));
}

.portrait-shape::before {
  top: 14%;
  left: 50%;
  width: 132px;
  height: 132px;
  transform: translateX(-50%);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(40, 101, 255, 0.32);
}

.portrait-shape::after {
  bottom: 0;
  left: 50%;
  width: 210px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 110px 110px 30px 30px;
}

.about-copy {
  align-self: center;
}

.about-copy .eyebrow {
  margin-bottom: 20px;
}

.about-copy h2 {
  max-width: 11ch;
  margin-bottom: 24px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.about-copy p {
  max-width: 58ch;
  margin-bottom: 18px;
}

.page-hero .glass-card {
  min-height: 100%;
}

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

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

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

.brand-chip {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 18px;
  text-align: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(8, 12, 24, 0.94), rgba(5, 8, 16, 0.96)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(88, 118, 215, 0.18);
  color: #dce6ff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.work-grid {
  display: grid;
  gap: 18px;
}

.logo-strip {
  padding: 34px 28px;
  text-align: center;
}

.logo-strip-title {
  margin-bottom: 26px;
  color: #dce6ff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 136px;
  padding: 18px;
  border-radius: 20px;
  color: #cdd9ff;
  background:
    linear-gradient(180deg, rgba(10, 14, 28, 0.86), rgba(6, 9, 18, 0.96)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(88, 118, 215, 0.16);
  font-weight: 600;
}

.client-logo {
  display: block;
  max-width: 100%;
  max-height: 104px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.work-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(8, 12, 24, 0.94), rgba(5, 8, 16, 0.96)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(88, 118, 215, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.work-thumb {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 20px;
  color: #dce6ff;
  background:
    radial-gradient(circle at center, rgba(42, 102, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(12, 17, 34, 0.98), rgba(5, 8, 16, 0.98));
  border: 1px solid rgba(88, 118, 215, 0.18);
}

.work-meta {
  display: grid;
  align-content: center;
  gap: 10px;
}

.work-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #dce6ff;
  background: rgba(26, 62, 163, 0.3);
  border: 1px solid rgba(112, 143, 245, 0.2);
}

.pricing-item-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(8, 12, 24, 0.94), rgba(5, 8, 16, 0.96)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(88, 118, 215, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.pricing-item-card h3 {
  margin-bottom: 10px;
}

.service-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 14px;
  margin-bottom: 12px;
  border-top: 1px solid rgba(88, 118, 215, 0.16);
  border-bottom: 1px solid rgba(88, 118, 215, 0.16);
}

.service-price-row strong {
  color: var(--text);
  font-size: 0.95rem;
}

.service-price-row span {
  color: #dce6ff;
  font-weight: 700;
}

.service-list {
  margin-top: 10px;
}

.service-list li {
  color: #d7e2ff;
}

.check-list,
.pricing-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.check-list li,
.pricing-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 28px;
  color: #d7e2ff;
  min-height: 24px;
}

.check-list li::before,
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2b6dff, #104ad1);
  box-shadow: 0 0 18px rgba(39, 99, 255, 0.4);
  transform: translateY(-50%);
}

.section-heading {
  max-width: 760px;
  padding: 24px 6px 0;
}

.section-heading-left {
  padding-top: 0;
}

.card-grid,
.tools-grid,
.review-grid,
.contact-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.tool-card,
.review-card,
.contact-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(8, 12, 24, 0.94), rgba(5, 8, 16, 0.96)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(88, 118, 215, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card::after,
.pricing-card::after,
.review-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 101, 255, 0.12), transparent 70%);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  font-weight: 700;
  color: white;
}

.feature-icon svg,
.tool-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-badge {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.contact-badge {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin-bottom: 14px;
}

.orange { background: linear-gradient(180deg, #ff9347, #d65d15); }
.blue { background: linear-gradient(180deg, #5090ff, #2158d6); }
.green { background: linear-gradient(180deg, #37cd81, #148a54); }
.violet { background: linear-gradient(180deg, #7b7dff, #4347cf); }
.yellow { background: linear-gradient(180deg, #f9c847, #c5910f); color: #0a0f1f; }
.cyan { background: linear-gradient(180deg, #2fe4f1, #1088b6); color: #04111c; }

.tool-card {
  min-height: 170px;
}

.tool-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #dce6ff;
  background: linear-gradient(180deg, rgba(20, 28, 52, 0.98), rgba(10, 16, 32, 0.98));
  border: 1px solid rgba(108, 140, 240, 0.12);
  box-shadow: 0 10px 24px rgba(13, 36, 109, 0.18);
  overflow: hidden;
}

.tool-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.photoshop-icon,
.lightroom-icon,
.premiere-icon,
.aftereffects-icon,
.illustrator-icon,
.figma-icon,
.canva-icon,
.davinci-icon,
.vscode-icon,
.github-icon,
.html-icon,
.css-icon,
.mongodb-icon {
  background: transparent;
  border-color: rgba(108, 140, 240, 0.06);
  box-shadow: none;
}

.figma-icon img,
.davinci-icon img,
.github-icon img {
  width: 26px;
  height: 26px;
}

.html-icon img,
.css-icon img,
.mongodb-icon img,
.vscode-icon img {
  width: 23px;
  height: 23px;
}

.app-badge {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 13px;
}

.adobe-badge {
  color: #61daff;
  background: linear-gradient(180deg, #15243f, #0c1427);
  border: 1px solid rgba(92, 218, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(19, 39, 77, 0.7);
}

.canva-badge {
  color: #ffffff;
  background: linear-gradient(135deg, #00c4cc, #7d2ae8);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.pricing-card {
  padding: 28px;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card.featured {
  border-color: rgba(96, 126, 228, 0.42);
  box-shadow:
    0 0 0 1px rgba(96, 126, 228, 0.22),
    0 24px 60px rgba(13, 27, 82, 0.45);
}

.pricing-badge {
  margin-bottom: 18px;
}

.pricing-badge.accent {
  background: rgba(38, 92, 240, 0.34);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.price-row strong {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-row span {
  color: var(--muted);
}

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

.review-card {
  min-height: 230px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  font-weight: 700;
  color: white;
  background: linear-gradient(180deg, #f0b54f, #d08b14);
}

.stars {
  margin-bottom: 12px;
  color: #fff2b3;
  letter-spacing: 0.12em;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  padding: 42px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(89, 119, 215, 0.18);
  border-radius: 18px;
  padding: 0 18px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 28px 18px 0;
  font-weight: 600;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #dce6ff;
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding-bottom: 18px;
  margin-bottom: 0;
}

.cta {
  padding: 44px 24px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(39, 99, 255, 0.28), transparent 38%),
    linear-gradient(180deg, rgba(8, 11, 24, 0.96), rgba(4, 7, 16, 0.96));
}

.cta h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.cta p {
  max-width: 60ch;
  margin: 0 auto 24px;
}

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

.contact-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  min-height: 120px;
}

.contact-form-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(88, 118, 215, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(6, 10, 20, 0.88);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

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

code {
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .site-header.menu-open .header-cta {
    display: inline-flex;
  }

  .hero,
  .about,
  .faq-section,
  .pricing-grid,
  .review-grid,
  .contact-grid,
  .service-groups,
  .pricing-list-grid,
  .brand-grid,
  .work-card,
  .logo-row {
    grid-template-columns: 1fr;
  }

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

  .hero,
  .about,
  .faq-section {
    padding: 28px;
  }

  .glass-card {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
  }

  .site-header {
    top: 10px;
    padding: 14px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .card-grid,
  .tools-grid,
  .contact-grid,
  .service-groups,
  .pricing-list-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .about,
  .faq-section,
  .cta,
  .pricing-card {
    padding: 22px;
  }

  .about-copy h2 {
    max-width: none;
  }

  .hero-card-footer,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics li {
    width: 100%;
  }
}
