body[data-page="services"] .service-detail-shell {
  background: #000;
  color: #fff;
}

html[data-theme="light"] body[data-page="services"] .service-detail-shell {
  background: #ffffff;
  color: #091321;
}

.frontend-service {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.social-service {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.seo-service-page {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.seo-service-hero,
.seo-service-section,
.seo-related-section {
  padding: clamp(86px, 12vh, 148px) clamp(20px, 7vw, 96px);
}

.seo-service-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  isolation: isolate;
}

.seo-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #000 0%, #070707 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

html[data-theme="light"] .seo-service-hero::before {
  background:
    linear-gradient(rgba(8, 24, 44, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 24, 44, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 78% 30%, rgba(45, 93, 144, 0.16), transparent 24%),
    linear-gradient(180deg, #fff 0%, #edf4fb 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.seo-service-copy {
  display: grid;
  gap: 22px;
}

.seo-service-title {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 0;
}

.seo-service-lead,
.seo-service-copy p,
.seo-card p,
.seo-related-section p {
  color: #a3adbb;
  line-height: 1.8;
  font-weight: 300;
}

html[data-theme="light"] .seo-service-lead,
html[data-theme="light"] .seo-service-copy p,
html[data-theme="light"] .seo-card p,
html[data-theme="light"] .seo-related-section p {
  color: #4e6075;
}

.seo-service-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 12, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

html[data-theme="light"] .seo-service-panel {
  border-color: rgba(10, 31, 56, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(31, 70, 113, 0.14);
}

.seo-service-panel strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
  font-weight: 300;
}

.seo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.seo-chip-row span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7dde7;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.84rem;
}

html[data-theme="light"] .seo-chip-row span {
  border-color: rgba(10, 31, 56, 0.12);
  color: #27405c;
  background: rgba(255, 255, 255, 0.66);
}

.seo-service-section {
  display: grid;
  gap: clamp(30px, 5vw, 58px);
}

.seo-section-head {
  display: grid;
  gap: 18px;
}

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

.seo-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 320px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

html[data-theme="light"] .seo-card {
  border-color: rgba(10, 31, 56, 0.13);
  background: rgba(255, 255, 255, 0.66);
}

.seo-card h2,
.seo-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.05;
  font-weight: 300;
}

.seo-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-card li {
  position: relative;
  padding-left: 18px;
  color: #c3cad6;
  line-height: 1.55;
}

html[data-theme="light"] .seo-card li {
  color: #354960;
}

.seo-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.seo-related-section {
  display: grid;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .seo-related-section {
  border-top-color: rgba(10, 31, 56, 0.12);
}

.seo-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-related-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: #dce2ec;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.seo-related-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .seo-related-links a {
  border-color: rgba(10, 31, 56, 0.13);
  background: rgba(255, 255, 255, 0.66);
  color: #0b223c;
}

.fd-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(104px, 13vh, 150px) clamp(20px, 7vw, 96px) clamp(54px, 8vh, 90px);
  isolation: isolate;
}

.fd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(150, 166, 190, 0.08), transparent 24%),
    linear-gradient(180deg, #000 0%, #060606 100%);
}

html[data-theme="light"] .fd-hero-bg {
  background:
    radial-gradient(circle at 78% 28%, rgba(45, 93, 144, 0.16), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(94, 120, 151, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.fd-grid-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  transform-origin: center;
}

html[data-theme="light"] .fd-grid-line {
  background: rgba(8, 24, 44, 0.12);
}

.fd-grid-line.line-a {
  width: 1px;
  height: 100%;
  left: 18%;
}

.fd-grid-line.line-b {
  width: 1px;
  height: 100%;
  right: 31%;
}

.fd-grid-line.line-c {
  width: 100%;
  height: 1px;
  top: 66%;
}

.fd-hero-copy {
  display: grid;
  gap: 22px;
}

.fd-back-link {
  width: fit-content;
  color: #aeb7c7;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

html[data-theme="light"] .fd-back-link {
  color: #405a78;
}

.fd-title {
  max-width: 11ch;
  font-size: clamp(3rem, 8.8vw, 8.2rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 0;
}

.fd-lead,
.fd-section-copy {
  max-width: 58ch;
  color: #a3adbb;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.8;
  font-weight: 300;
}

html[data-theme="light"] .fd-lead,
html[data-theme="light"] .fd-section-copy {
  color: #4e6075;
}

.fd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.fd-preview-console {
  position: relative;
  min-height: min(68vh, 620px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015)),
    rgba(10, 10, 12, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-rows: 48px 1fr;
  overflow: hidden;
}

html[data-theme="light"] .fd-preview-console {
  border-color: rgba(10, 31, 56, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(31, 70, 113, 0.14);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .preview-toolbar {
  border-bottom-color: rgba(10, 31, 56, 0.12);
}

.preview-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9dee8;
  opacity: 0.65;
}

.preview-canvas {
  display: grid;
  place-items: center;
  padding: clamp(22px, 5vw, 56px);
}

.preview-poster {
  width: min(100%, 460px);
  aspect-ratio: 0.72;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.18), transparent 38%),
    linear-gradient(340deg, rgba(119, 128, 145, 0.16), transparent 45%),
    #0d0d0f;
  transition: transform 360ms ease, background 360ms ease;
}

html[data-theme="light"] .preview-poster {
  border-color: rgba(10, 31, 56, 0.15);
  background:
    linear-gradient(160deg, rgba(24, 62, 102, 0.14), transparent 38%),
    linear-gradient(340deg, rgba(126, 150, 178, 0.16), transparent 45%),
    #f8fbff;
}

.preview-tag,
.package-type,
.package-detail {
  color: #d4d9e2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

html[data-theme="light"] .preview-tag,
html[data-theme="light"] .package-type,
html[data-theme="light"] .package-detail {
  color: #526985;
}

.preview-poster h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
  font-weight: 300;
}

.preview-poster p {
  color: #a3adbb;
  line-height: 1.7;
}

html[data-theme="light"] .preview-poster p {
  color: #4e6075;
}

.preview-lines {
  display: grid;
  gap: 10px;
}

.preview-lines span {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

html[data-theme="light"] .preview-lines span {
  background: rgba(10, 31, 56, 0.16);
}

.fd-package-section,
.fd-system-section,
.fd-cta-band {
  padding: clamp(80px, 11vh, 138px) clamp(20px, 7vw, 96px);
}

.fd-section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(32px, 6vw, 68px);
}

.fd-section-title {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: 0;
}

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

.fd-package-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
  padding: clamp(24px, 3.4vw, 42px);
  color: inherit;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

html[data-theme="light"] .fd-package-card {
  border-color: rgba(10, 31, 56, 0.13);
  background: rgba(255, 255, 255, 0.62);
}

.fd-package-card:hover,
.fd-package-card.is-active {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.32);
}

html[data-theme="light"] .fd-package-card:hover,
html[data-theme="light"] .fd-package-card.is-active {
  border-color: rgba(10, 31, 56, 0.24);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 52px rgba(31, 70, 113, 0.14);
}

.package-index {
  margin-bottom: auto;
  color: #5f6672;
  font-size: 0.86rem;
  letter-spacing: 0.2em;
}

.fd-package-card strong {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  font-weight: 300;
}

.fd-package-card p {
  color: #9aa4b3;
  line-height: 1.75;
}

html[data-theme="light"] .fd-package-card p {
  color: #4e6075;
}

.fd-system-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.fd-system-copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.fd-flow {
  display: grid;
  gap: 14px;
}

.fd-flow-step {
  display: grid;
  grid-template-columns: 56px 160px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

html[data-theme="light"] .fd-flow-step {
  border-color: rgba(10, 31, 56, 0.13);
  background: rgba(255, 255, 255, 0.62);
}

.fd-flow-step.is-lit {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .fd-flow-step.is-lit {
  border-color: rgba(10, 31, 56, 0.24);
  background: rgba(255, 255, 255, 0.88);
}

.fd-flow-step span {
  color: #687180;
  letter-spacing: 0.16em;
}

.fd-flow-step strong {
  font-size: 1.35rem;
  font-weight: 400;
}

.fd-flow-step p {
  color: #9aa4b3;
  line-height: 1.7;
}

html[data-theme="light"] .fd-flow-step p {
  color: #4e6075;
}

.fd-cta-band {
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .fd-cta-band {
  border-top-color: rgba(10, 31, 56, 0.12);
}

.fd-cta-band div {
  display: grid;
  gap: 18px;
}

.fd-cta-band h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  line-height: 0.92;
  font-weight: 300;
}

.social-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(104px, 13vh, 150px) clamp(20px, 7vw, 96px) clamp(54px, 8vh, 90px);
  isolation: isolate;
}

.social-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.09), transparent 24%),
    linear-gradient(180deg, #000 0%, #070707 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

html[data-theme="light"] .social-hero-bg {
  background:
    linear-gradient(rgba(8, 24, 44, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 24, 44, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 76% 28%, rgba(45, 93, 144, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.social-hero-copy {
  display: grid;
  gap: 22px;
}

.social-title {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 0;
}

.social-lead {
  max-width: 60ch;
  color: #a3adbb;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.8;
  font-weight: 300;
}

html[data-theme="light"] .social-lead {
  color: #4e6075;
}

.social-command-panel {
  min-height: min(66vh, 610px);
  display: grid;
  grid-template-rows: 48px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015)),
    rgba(10, 10, 12, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

html[data-theme="light"] .social-command-panel {
  border-color: rgba(10, 31, 56, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(31, 70, 113, 0.14);
}

.social-signal-stack {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 4vw, 46px);
}

.signal-row {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

html[data-theme="light"] .signal-row {
  border-color: rgba(10, 31, 56, 0.13);
  background: rgba(255, 255, 255, 0.62);
}

.signal-row.strong {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

html[data-theme="light"] .signal-row.strong {
  border-color: rgba(10, 31, 56, 0.24);
  background: rgba(255, 255, 255, 0.9);
}

.signal-row span,
.social-card-index {
  color: #687180;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-row strong {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 300;
}

.social-platform-section,
.automation-section {
  padding: clamp(80px, 11vh, 138px) clamp(20px, 7vw, 96px);
}

.social-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(270px, auto);
  gap: 18px;
  align-items: stretch;
}

.social-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.025);
  outline: none;
  overflow: hidden;
  transition:
    min-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

html[data-theme="light"] .social-card {
  border-color: rgba(10, 31, 56, 0.13);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.62);
}

.social-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 58%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateY(40%);
  opacity: 0;
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

html[data-theme="light"] .social-card::before {
  background: linear-gradient(90deg, transparent, rgba(17, 58, 104, 0.09), transparent);
}

.social-card:hover,
.social-card:focus-visible {
  min-height: 430px;
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.32);
  z-index: 2;
}

html[data-theme="light"] .social-card:hover,
html[data-theme="light"] .social-card:focus-visible {
  border-color: rgba(10, 31, 56, 0.24);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 52px rgba(31, 70, 113, 0.14);
}

.social-card:hover::before,
.social-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.social-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.social-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #f5f7fb;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

html[data-theme="light"] .social-mark {
  border-color: rgba(10, 31, 56, 0.16);
  color: #091321;
  background: rgba(10, 31, 56, 0.05);
}

.social-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 300;
}

.social-summary {
  color: #a3adbb;
  line-height: 1.65;
}

html[data-theme="light"] .social-summary {
  color: #4e6075;
}

.social-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition:
    max-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 300ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-card:hover .social-details,
.social-card:focus-visible .social-details,
.social-card:focus-within .social-details {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
}

.social-details ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.social-details li {
  position: relative;
  padding-left: 18px;
  color: #c3cad6;
  line-height: 1.55;
}

html[data-theme="light"] .social-details li {
  color: #354960;
}

.social-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.68;
}

.automation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.automation-list div {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

html[data-theme="light"] .automation-list div {
  border-color: rgba(10, 31, 56, 0.13);
  background: rgba(255, 255, 255, 0.66);
}

.automation-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 400;
}

.automation-list p {
  color: #a3adbb;
  line-height: 1.75;
}

html[data-theme="light"] .automation-list p {
  color: #4e6075;
}

@media (max-width: 980px) {
  .fd-hero,
  .fd-system-section,
  .social-hero,
  .automation-section,
  .seo-service-hero {
    grid-template-columns: 1fr;
  }

  .fd-title {
    max-width: 12ch;
  }

  .fd-preview-console {
    min-height: 560px;
  }

  .fd-package-grid {
    grid-template-columns: 1fr;
  }

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

  .seo-service-grid {
    grid-template-columns: 1fr;
  }

  .fd-package-card {
    min-height: 320px;
  }

  .social-card,
  .social-card:hover,
  .social-card:focus-visible {
    min-height: auto;
    transform: none;
  }

  .social-details {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .fd-system-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .fd-hero {
    padding-top: 96px;
  }

  .social-hero {
    padding-top: 96px;
  }

  .fd-preview-console {
    min-height: 480px;
  }

  .fd-flow-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fd-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fd-package-card,
  .preview-poster,
  .social-card,
  .social-details {
    transition: none;
  }
}
