:root {
  --ink: #111827;
  --soft-ink: #273241;
  --muted: #667085;
  --line: #d8e0e7;
  --paper: #ffffff;
  --mist: #f5f8fb;
  --dark: #071014;
  --navy: #10202b;
  --teal: #0f8f83;
  --cyan: #0b86a8;
  --lime: #b8d84a;
  --amber: #c98025;
  --rose: #b64258;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 17px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: white;
  background: var(--dark);
  border-radius: var(--radius);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(11px, 1.5vw, 23px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.text-link:hover {
  color: var(--teal);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.button {
  min-height: 48px;
  padding: 0 18px;
}

.button.primary {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}

.button.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.dark {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.button.ghost-dark {
  color: var(--ink);
  background: white;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 74px));
  display: flex;
  align-items: center;
  padding: clamp(86px, 12vw, 136px) clamp(18px, 4vw, 64px);
  color: white;
  background: var(--dark);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.98) 0%, rgba(7, 16, 20, 0.9) 38%, rgba(7, 16, 20, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 16, 20, 0.05), rgba(7, 16, 20, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(830px, 100%);
}

.eyebrow,
.tag {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.01;
  letter-spacing: 0;
}

.hero-lead,
.page-hero p,
.section-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions,
.contact-actions,
.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.metric-band div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 64px);
  border-right: 1px solid var(--line);
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  display: block;
  margin-bottom: 5px;
  font-size: clamp(32px, 4vw, 54px);
}

.metric-band span,
article p,
article li,
.service-list p,
.research-grid span,
.note-band p,
.contact-aside li,
.preview-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.section,
.contact,
.page-hero {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 64px);
}

.page-hero {
  color: white;
  background: linear-gradient(135deg, var(--dark), #12303a 58%, #143026);
}

.page-hero h1,
.section h2,
.contact h2,
.editor-panel h1 {
  max-width: 930px;
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.intro-grid,
.split-section,
.analyzer-layout,
.estimator-layout,
.brief-layout,
.contact-page {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 0.72fr);
  gap: 28px;
  margin-bottom: 34px;
}

.tool-teasers,
.service-list,
.research-grid,
.article-grid,
.pricing-grid,
.process-grid,
.article-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.tool-teasers {
  grid-template-columns: repeat(3, 1fr);
}

.tool-card,
.service-list article,
.research-grid div,
.article-grid a,
.pricing-grid article,
.process-grid div,
.article-list article,
.analyzer-panel,
.calculator,
.brief-builder,
.contact-form,
.contact-aside,
.editor-panel,
.preview-panel {
  padding: clamp(24px, 3vw, 34px);
  background: white;
  border-radius: var(--radius);
}

.tool-teasers .tool-card,
.service-list article,
.research-grid div,
.article-grid a,
.pricing-grid article,
.process-grid div,
.article-list article {
  border-radius: 0;
}

.tool-card span,
.service-deep article span,
.article-list span {
  color: var(--teal);
  font-weight: 900;
}

.tool-card h3,
.work-card h3,
.article-grid h3,
.service-list b {
  display: block;
  margin: 14px 0 10px;
  font-size: 22px;
}

.split-section,
.case-preview,
.admin-page,
.estimator-layout {
  background: var(--mist);
}

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

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 900;
}

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

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.work-card h2,
.work-card h3,
.work-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.work-card p:last-child {
  margin-bottom: 24px;
}

.mock {
  height: 190px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), transparent 42%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.26) 10px, transparent 10px, transparent 24px);
}

.mock-crm { background-color: var(--cyan); }
.mock-shop { background-color: var(--amber); }
.mock-report { background-color: var(--navy); }
.mock-corporate { background-color: var(--teal); }
.mock-service { background-color: var(--rose); }
.mock-booking { background-color: #667a2d; }

.case-preview .button {
  margin-top: 24px;
}

.research-band {
  color: white;
  background: var(--dark);
}

.research-band h2 {
  color: white;
}

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

.research-grid div {
  color: var(--ink);
}

.research-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.article-grid span {
  color: var(--teal);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: white;
  background: linear-gradient(135deg, var(--dark), var(--navy));
}

.contact p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer div,
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

footer div {
  flex-direction: column;
  gap: 4px;
}

.service-deep,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-deep article,
.pricing-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pricing-grid {
  background: transparent;
  border: 0;
  gap: 18px;
}

.pricing-grid article strong {
  display: block;
  margin-bottom: 18px;
  font-size: 25px;
}

.pricing-grid .featured {
  color: white;
  background: var(--dark);
}

.pricing-grid .featured p,
.pricing-grid .featured li {
  color: rgba(255, 255, 255, 0.76);
}

.note-band {
  color: white;
  background: var(--navy);
}

.note-band p {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.76);
}

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

.process-grid b {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

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

.analyzer-panel,
.calculator,
.brief-builder,
.contact-form,
.contact-aside {
  border: 1px solid var(--line);
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

.analysis-result {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.score-ring {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 8px solid var(--teal);
  border-radius: 50%;
  background: white;
}

.score-ring span {
  font-size: 28px;
  font-weight: 900;
}

.score-ring small {
  margin-top: -16px;
  color: var(--muted);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.check-list div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 6px 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list b {
  color: var(--teal);
}

.check-list .warn b {
  color: var(--amber);
}

.check-list small {
  grid-column: 2;
  color: var(--muted);
}

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

.calculator output {
  grid-column: 1 / -1;
  min-height: 72px;
  display: grid;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  color: white;
  background: var(--dark);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
}

.brief-builder,
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.brief-builder label:nth-child(3),
.brief-builder textarea,
.wide {
  grid-column: 1 / -1;
}

.contact-aside h2 {
  font-size: 32px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  padding: clamp(24px, 4vw, 54px);
}

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

.editor-actions {
  grid-column: 1 / -1;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.preview-stats span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: var(--radius);
  background: var(--mist);
  font-size: 26px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .tool-teasers,
  .work-grid,
  .portfolio-grid,
  .research-grid,
  .article-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 720px;
  }

  .metric-band,
  .intro-grid,
  .split-section,
  .section-kicker,
  .service-deep,
  .pricing-grid,
  .article-list,
  .analyzer-layout,
  .estimator-layout,
  .brief-layout,
  .contact,
  .contact-page,
  .admin-layout,
  .editor-form,
  .calculator,
  .brief-builder,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .metric-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .inline-form,
  .analysis-result {
    grid-template-columns: 1fr;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
  }

  .brand span:last-child {
    max-width: 150px;
  }

  .header-action {
    min-height: 36px;
    padding: 0 10px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .tool-teasers,
  .work-grid,
  .portfolio-grid,
  .research-grid,
  .article-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .check-list small {
    grid-column: 1;
  }
}

/* Premium home refresh */
.home-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(15, 143, 131, 0.12), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(184, 216, 74, 0.14), transparent 24%),
    #f7faf8;
}

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.floating-header {
  top: 14px;
  width: min(1180px, calc(100% - 36px));
  min-height: 68px;
  margin: 14px auto 0;
  padding: 0 18px;
  border: 1px solid rgba(216, 224, 231, 0.82);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16, 32, 43, 0.08);
}

.hero-v2 {
  min-height: auto;
  padding: 82px 0 46px;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.availability {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 0 12px;
  border: 1px solid rgba(15, 143, 131, 0.26);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(15, 143, 131, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.hero-v2 h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(50px, 7.5vw, 92px);
  line-height: 0.98;
}

.hero-v2 .hero-lead {
  color: #4b5563;
}

.hero-v2 .button.ghost-dark {
  background: white;
  box-shadow: 0 12px 30px rgba(16, 32, 43, 0.08);
}

.skill-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.skill-marquee span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344054;
  background: white;
  font-weight: 850;
}

.audit-studio {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(16, 32, 43, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    url("/assets/akinlog-web-yazilim-hero.png") center / cover;
  box-shadow: 0 30px 80px rgba(16, 32, 43, 0.18);
}

.audit-studio::after {
  content: "";
  position: absolute;
  inset: auto 28px -22px 28px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 32, 43, 0.22);
  filter: blur(24px);
  z-index: -1;
}

.studio-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(7, 16, 20, 0.88);
  color: white;
}

.studio-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.studio-top span:nth-child(2) {
  background: var(--amber);
}

.studio-top span:nth-child(3) {
  background: var(--rose);
}

.studio-top b {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.studio-score {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  margin-top: 16px;
  padding: 20px;
  border-radius: 8px;
  background: white;
}

.score-large {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 11px solid var(--teal);
  border-radius: 50%;
  color: var(--ink);
  font-size: 38px;
  font-weight: 950;
}

.studio-score h2 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.05;
}

.studio-score p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.studio-checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.studio-checks div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.studio-checks b,
.studio-checks span {
  display: block;
}

.studio-checks span {
  margin-top: 6px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.studio-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 130px;
  margin-top: 12px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(7, 16, 20, 0.88);
}

.studio-chart i {
  flex: 1;
  min-width: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--lime), var(--teal));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: 26px;
  background: white;
}

.trust-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(30px, 4vw, 52px);
}

.trust-strip span {
  color: var(--muted);
  font-weight: 800;
}

.home-tools,
.home-services,
.portfolio-home,
.about-proof {
  padding: clamp(70px, 8vw, 112px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.side {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.52fr);
  gap: 32px;
  max-width: none;
  align-items: end;
}

.section-head h2,
.insight-grid h2,
.proof-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.04;
}

.section-head p,
.insight-grid p,
.proof-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.premium-cards.three,
.service-showcase,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.premium-card,
.service-tile,
.project-card,
.research-card,
.article-stack a,
.testimonials article {
  border: 1px solid rgba(216, 224, 231, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(16, 32, 43, 0.06);
}

.premium-card,
.service-tile {
  min-height: 250px;
  padding: 28px;
}

.premium-card strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: white;
  background: var(--dark);
  font-size: 22px;
}

.premium-card h3,
.service-tile h3,
.project-card h3,
.research-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.12;
}

.premium-card p,
.service-tile p,
.project-card p,
.testimonials p {
  color: var(--muted);
  line-height: 1.62;
}

.premium-card span,
.service-tile b,
.project-card span,
.research-card a {
  color: var(--teal);
  font-weight: 950;
}

.service-tile span {
  color: var(--teal);
  font-size: 15px;
  font-weight: 950;
}

.specialties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.specialties a {
  padding: 18px;
  background: white;
  font-weight: 900;
}

.project-card {
  display: block;
  overflow: hidden;
}

.project-shot {
  position: relative;
  height: 210px;
  margin-bottom: 18px;
  background: #dbe8e8;
}

.project-shot::before,
.project-shot::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.project-shot::before {
  inset: 24px 22px auto 22px;
  height: 42px;
}

.project-shot::after {
  left: 22px;
  right: 80px;
  bottom: 26px;
  height: 86px;
  box-shadow: 108px -16px 0 rgba(255, 255, 255, 0.55);
}

.shop-shot { background: linear-gradient(135deg, #c98025, #f2c46b); }
.platform-shot { background: linear-gradient(135deg, #0b86a8, #75d0d8); }
.corporate-shot { background: linear-gradient(135deg, #0f8f83, #a7d8a2); }
.crm-shot { background: linear-gradient(135deg, #10202b, #667085); }
.report-shot { background: linear-gradient(135deg, #667a2d, #b8d84a); }
.content-shot { background: linear-gradient(135deg, #b64258, #eba5b1); }

.project-card span,
.project-card h3,
.project-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.project-card p:last-child {
  margin-bottom: 24px;
}

.insight-section {
  padding: clamp(78px, 9vw, 120px) 0;
  color: white;
  background: var(--dark);
}

.insight-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(260px, 0.62fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.insight-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.research-card {
  padding: 28px;
  color: var(--ink);
  background: white;
}

.research-stats {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.research-stats span {
  padding: 12px;
  border-radius: 8px;
  background: var(--mist);
  font-weight: 950;
}

.article-stack {
  display: grid;
  gap: 12px;
}

.article-stack a {
  display: grid;
  gap: 7px;
  padding: 18px;
  color: var(--ink);
  background: white;
}

.article-stack span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.article-stack small {
  color: var(--muted);
}

.about-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 30px;
  align-items: center;
}

.testimonials {
  display: grid;
  gap: 14px;
}

.testimonials article {
  padding: 24px;
}

.testimonials b {
  color: var(--amber);
}

.testimonials span {
  color: var(--teal);
  font-weight: 900;
}

.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 70px;
  border-radius: 8px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .insight-grid,
  .about-proof {
    grid-template-columns: 1fr;
  }

  .audit-studio {
    max-width: 720px;
  }
}

@media (max-width: 860px) {
  .floating-header {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .hero-v2 {
    padding-top: 54px;
  }

  .trust-strip,
  .premium-cards.three,
  .service-showcase,
  .project-grid,
  .specialties,
  .section-head.side {
    grid-template-columns: 1fr;
  }

  .studio-score,
  .studio-checks {
    grid-template-columns: 1fr;
  }

  .score-large {
    width: 104px;
    height: 104px;
  }
}
