:root {
  --ink: #111111;
  --ink-soft: #202025;
  --muted: #696765;
  --paper: #f7f4ef;
  --paper-strong: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --gold: #e7b84d;
  --red: #bd3036;
  --blue: #3b82f6;
  --green: #9bd66f;
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.16);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(231, 184, 77, 0.8);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  height: 4px;
}

.top-strip span:nth-child(1) {
  background: #111111;
}

.top-strip span:nth-child(2) {
  background: var(--red);
}

.top-strip span:nth-child(3) {
  background: var(--gold);
}

.site-header {
  position: fixed;
  top: 4px;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(11, 11, 15, 0.88);
  border-bottom: 1px solid var(--line-light);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 52px;
  height: auto;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(231, 184, 77, 0.98), rgba(189, 48, 54, 0.92)),
    #111;
  color: #111;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 3px;
  padding: 2px 0 0;
}

.brand-copy strong {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  background: #fff;
  color: #111;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 56px);
  padding: 132px 0 70px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 28%, rgba(59, 130, 246, 0.28), transparent 28%),
    linear-gradient(145deg, #0b0b0f 0%, #151515 48%, #241317 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -36%;
  width: 720px;
  height: 720px;
  background:
    conic-gradient(from 160deg, rgba(231, 184, 77, 0.35), rgba(189, 48, 54, 0.28), rgba(59, 130, 246, 0.22), rgba(231, 184, 77, 0.35));
  filter: blur(48px);
  opacity: 0.52;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.74fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.position-grid h2,
.process-layout h2,
.faq-layout h2,
.final-card h2 {
  margin: 0;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  max-width: 860px;
  font-size: clamp(2.6rem, 4.9vw, 4.45rem);
  line-height: 1.02;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button-primary {
  background: var(--gold);
  color: #111;
  box-shadow: 0 16px 34px rgba(231, 184, 77, 0.22);
}

.button-primary:hover {
  background: #f2c861;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary.light {
  border-color: rgba(255, 255, 255, 0.26);
}

.button-quiet {
  width: 100%;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-quiet:hover {
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

.trust-note {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-tags li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.browser-card {
  top: 46px;
  right: 0;
  width: min(100%, 480px);
  overflow: hidden;
  z-index: 1;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.browser-bar span:nth-child(1) {
  background: var(--red);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--green);
}

.browser-bar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.browser-body {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    rgba(255, 255, 255, 0.04);
}

.mock-title {
  width: 78%;
  height: 58px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.48));
}

.mock-text,
.mock-text.short {
  height: 12px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.34);
}

.mock-text {
  width: 88%;
}

.mock-text.short {
  width: 56%;
}

.mock-button {
  width: 132px;
  height: 40px;
  margin-top: 24px;
  background: var(--gold);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.mock-grid span {
  height: 82px;
  background:
    linear-gradient(145deg, rgba(231, 184, 77, 0.75), rgba(189, 48, 54, 0.35)),
    rgba(255, 255, 255, 0.08);
}

.social-card {
  left: 6px;
  bottom: 108px;
  width: 256px;
  padding: 18px;
  animation: floatUp 7s ease-in-out infinite;
  z-index: 2;
}

.post-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  border-radius: 50%;
}

.post-header strong,
.post-header small {
  display: block;
}

.post-header small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.post-art {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
  margin-top: 18px;
}

.post-art span {
  min-height: 116px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(231, 184, 77, 0.52)),
    rgba(255, 255, 255, 0.15);
}

.post-art span:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(59, 130, 246, 0.76), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.12);
}

.social-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.metric-card {
  right: 34px;
  bottom: 112px;
  width: 210px;
  padding: 18px;
  animation: floatUp 8s ease-in-out infinite reverse;
  z-index: 3;
}

.metric-card small,
.metric-card strong {
  display: block;
}

.metric-card small {
  color: rgba(255, 255, 255, 0.62);
}

.metric-card strong {
  margin-top: 4px;
  font-size: 2rem;
}

.metric-bars {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.metric-bars span {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.metric-bars span::before {
  content: "";
  display: block;
  width: 76%;
  height: 100%;
  background: var(--green);
}

.metric-bars span:nth-child(2)::before {
  width: 58%;
  background: var(--gold);
}

.metric-bars span:nth-child(3)::before {
  width: 88%;
  background: var(--blue);
}

.ad-card {
  top: 0;
  left: 58px;
  width: 220px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(189, 48, 54, 0.94), rgba(231, 184, 77, 0.84)),
    #fff;
  color: #111;
  transform: rotate(-3deg);
  z-index: 4;
}

.ad-card span,
.ad-card strong {
  display: block;
}

.ad-card span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ad-card strong {
  margin-top: 10px;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.calendar-card {
  padding: 16px;
}

.calendar-card {
  right: 0;
  bottom: 10px;
  width: 180px;
  z-index: 2;
}

.calendar-card span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
}

.calendar-dots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.calendar-dots i {
  display: block;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
}

.calendar-dots i:nth-child(2) {
  background: rgba(231, 184, 77, 0.72);
}

.calendar-dots i:nth-child(4) {
  background: rgba(155, 214, 111, 0.58);
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.position-section {
  padding: 64px 0;
  color: #fff;
  background: #111;
}

.position-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.position-grid h2,
.section-heading h2,
.process-layout h2,
.faq-layout h2,
.final-card h2 {
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  line-height: 1.02;
}

.position-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.mini-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-points span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.section {
  padding: clamp(78px, 9vw, 124px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr minmax(0, 1.3fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 760px;
  display: block;
}

.section-heading.compact h2 {
  margin-top: 0;
}

.section-intro,
.process-intro {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
}

.services-section,
.audience-section,
.projects-section {
  background: var(--paper);
}

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

.service-card,
.audience-grid article,
.package-card,
.project-card,
.working-grid article,
.process-list li,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
}

.service-card {
  min-height: 240px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(189, 48, 54, 0.28);
  background: #fff;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.08);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #111;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3,
.audience-grid h3,
.package-card h3,
.working-grid h3 {
  margin: 22px 0 10px;
  font-size: 1.24rem;
  line-height: 1.15;
}

.service-card p,
.audience-grid p,
.package-card li,
.working-grid p,
.process-list p,
.faq-list p {
  color: var(--muted);
}

.service-card p,
.audience-grid p,
.working-grid p,
.process-list p {
  margin: 0;
}

.working-section,
.packages-section,
.faq-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(189, 48, 54, 0.12), transparent 40%),
    #111;
}

.working-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.working-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.working-grid span,
.process-list span {
  color: var(--gold);
  font-weight: 800;
}

.working-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.audience-grid article {
  min-height: 186px;
  padding: 24px;
  background: #fff;
}

.audience-grid article:nth-child(2n) {
  background: #fbfaf7;
}

.audience-grid h3 {
  margin-top: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.package-card.featured {
  background: #f7f4ef;
  color: #111;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.package-kicker,
.package-badge {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.package-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.featured .package-kicker {
  color: var(--red);
}

.package-badge {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 8px 10px;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.package-card h3 {
  margin-top: 16px;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 1.72rem;
}

.package-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.featured .package-note {
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.package-card:not(.featured) li {
  color: rgba(255, 255, 255, 0.72);
}

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

.process-section {
  background: #fff;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 6vw, 86px);
}

.process-intro {
  color: var(--muted);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px 18px;
  padding: 20px;
  background: #f9f7f2;
}

.process-list span {
  grid-row: span 2;
}

.process-list strong {
  font-size: 1.08rem;
}

.projects-section {
  scroll-margin-top: 96px;
}

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

.project-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 48, 54, 0.22);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.1);
}

.project-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-card:hover .project-media img {
  transform: scale(1.02);
}

.project-content {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-meta span:last-child {
  color: var(--red);
}

.project-card h3 {
  margin: 24px 0 12px;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.project-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.project-services li {
  border: 1px solid var(--line);
  padding: 7px 10px;
  background: #f9f7f2;
  color: #484644;
  font-size: 0.78rem;
  font-weight: 700;
}

.project-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  min-height: 44px;
  margin-top: auto;
  border-bottom: 1px solid var(--ink);
  font-weight: 800;
}

.project-link span {
  transition: transform 260ms ease;
}

.project-link:hover span {
  transform: translate(3px, -3px);
}

.projects-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  border: 1px solid var(--line);
  padding: 26px 28px;
  background: #fbfaf7;
}

.projects-cta h3 {
  margin: 0 0 6px;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 1.35rem;
}

.projects-cta p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.projects-cta .button {
  flex: 0 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(34px, 6vw, 86px);
}

.faq-intro {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

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

.faq-list details {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

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

.faq-list details[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-list p {
  margin: 0;
  padding: 18px 20px 22px;
  color: rgba(255, 255, 255, 0.68);
}

.final-cta {
  padding: 34px 0 0;
  background: #111;
  color: #fff;
}

.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(231, 184, 77, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(59, 130, 246, 0.16), transparent 52%),
    rgba(255, 255, 255, 0.06);
}

.final-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.final-card small {
  color: rgba(255, 255, 255, 0.62);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 12px;
  background: rgba(11, 11, 15, 0.72);
  color: #fff;
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form.was-validated .form-row input:invalid,
.contact-form.was-validated .form-row textarea:invalid,
.contact-form.was-validated .form-row select:invalid {
  border-color: rgba(231, 184, 77, 0.54);
}

.contact-form .button {
  grid-column: 1 / -1;
  width: 100%;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.form-message.is-success {
  color: var(--green);
}

.form-message.is-error {
  color: #ffd18a;
}

.site-footer {
  padding: 54px 0;
  background: #0b0b0f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.7fr);
  gap: 34px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p,
.site-footer small,
.site-footer a,
.footer-muted {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer p {
  max-width: 330px;
}

.site-footer h2,
.footer-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.94rem;
}

.footer-muted {
  display: block;
  max-width: 260px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.site-footer a {
  display: block;
  margin-top: 10px;
  min-height: 36px;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: #fff;
}

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

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 20px;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 14px;
    background: rgba(11, 11, 15, 0.96);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
  }

  .main-nav a {
    padding: 14px;
    font-size: 1rem;
  }

  .site-header.is-open .main-nav {
    display: grid;
    gap: 6px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .position-grid,
  .process-layout,
  .faq-layout,
  .final-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .browser-card {
    right: 4%;
    width: 82%;
  }

  .ad-card {
    left: 2%;
  }

  .calendar-card {
    right: 5%;
  }

  .section-heading,
  .services-grid,
  .audience-grid,
  .packages-grid,
  .working-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    align-items: start;
  }

  .projects-grid,
  .mini-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-actions {
    max-width: 360px;
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 14px;
    background: rgba(11, 11, 15, 0.96);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .main-nav {
    display: grid;
    gap: 6px;
  }

  .main-nav a {
    padding: 14px;
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .hero h1 span:last-child {
    font-size: clamp(2.18rem, 9.8vw, 3.25rem);
  }

  .hero-visual {
    min-height: 440px;
  }

  .browser-card {
    width: 92%;
  }

  .social-card {
    bottom: 96px;
  }

  .metric-card {
    right: 0;
    bottom: 34px;
  }

  .calendar-card {
    top: 350px;
    right: 18px;
    bottom: auto;
  }

  .services-grid,
  .audience-grid,
  .packages-grid,
  .working-grid,
  .section-heading,
  .projects-grid,
  .mini-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 46px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-actions,
  .final-actions {
    width: 100%;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-tags li {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero {
    padding-bottom: 44px;
  }

  .browser-card {
    top: 24px;
    right: 0;
    left: 0;
    width: 100%;
  }

  .browser-body {
    padding: 22px;
  }

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

  .mock-grid span {
    height: 44px;
  }

  .social-card {
    left: 0;
    bottom: 82px;
    width: 204px;
  }

  .metric-card {
    right: 0;
    width: 160px;
  }

  .ad-card {
    top: 0;
    left: 8px;
    width: 180px;
  }

  .ad-card strong {
    font-size: 1.22rem;
  }

  .section {
    padding: 70px 0;
  }

  .service-card,
  .audience-grid article,
  .package-card,
  .working-grid article {
    padding: 22px;
  }

  .project-content {
    min-height: auto;
    padding: 22px;
  }

  .projects-cta {
    padding: 22px;
  }

  .projects-cta .button {
    width: 100%;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .process-list span {
    grid-row: auto;
  }

  .final-card {
    padding: 28px 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .form-row.full {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
