/* HS Web Ajans — Design System (HTML/CSS aşaması) */
:root {
  --hs-gold: #F5A623;
  --hs-gold-hover: #E8940A;
  --hs-gold-soft: #FFF8EB;
  --hs-navy: #0F172A;
  --hs-ink: #1E293B;
  --hs-slate: #64748B;
  --hs-muted: #94A3B8;
  --hs-line: #E2E8F0;
  --hs-bg: #FAFBFC;
  --hs-white: #FFFFFF;

  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --space: clamp(1rem, 2vw, 1.5rem);
  --container: 1120px;
  --radius: 16px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--hs-ink);
  background: var(--hs-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Skip link — yalnızca Tab odağında görünür */
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--hs-navy);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  transform: translateY(-160%);
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  outline: 2px solid var(--hs-gold);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  max-width: 100%;
  margin-inline: auto;
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hs-gold);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--hs-navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--hs-slate);
  max-width: 36ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--hs-gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--hs-gold-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--hs-navy);
  border: 1.5px solid var(--hs-line);
}

.btn-ghost:hover {
  border-color: var(--hs-navy);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 251, 252, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--hs-line);
}

.site-header .inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: 54px;
  max-width: min(280px, 58vw);
}

.logo-img-light {
  display: none;
}

.logo-img-footer {
  height: 42px;
  max-width: 220px;
}

/* Anasayfa koyu hero: beyaz logo */
body.home .site-header:not(.is-scrolled) .logo-img-dark {
  display: none;
}

body.home .site-header:not(.is-scrolled) .logo-img-light {
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--hs-slate);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--hs-navy);
}

.nav-cta,
.nav-login {
  padding: 0.65rem 1.15rem !important;
  min-height: 44px;
  font-size: 0.92rem !important;
}

.nav-cta {
  color: #fff !important;
}

.nav-cta:hover,
.nav-cta.is-active {
  color: #fff !important;
}

.nav-login {
  margin-left: 0.35rem;
  color: var(--hs-navy) !important;
  border-color: var(--hs-navy) !important;
  background: transparent;
}

.nav-login:hover {
  background: var(--hs-navy) !important;
  color: #fff !important;
  border-color: var(--hs-navy) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--hs-line);
  transition: border-color 0.25s var(--ease);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--hs-navy);
  position: relative;
  transition: background 0.25s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--hs-navy);
  transition: background 0.25s var(--ease);
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Anasayfa koyu hero: menü açık renk */
body.home .site-header:not(.is-scrolled) .nav a:not(.nav-cta):not(.nav-login) {
  color: rgba(255, 255, 255, 0.78);
}

body.home .site-header:not(.is-scrolled) .nav a:not(.nav-cta):not(.nav-login):hover,
body.home .site-header:not(.is-scrolled) .nav a:not(.nav-cta):not(.nav-login).is-active {
  color: #fff;
}

body.home .site-header:not(.is-scrolled) .nav-login {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  background: transparent;
}

body.home .site-header:not(.is-scrolled) .nav-login:hover {
  background: #fff !important;
  color: var(--hs-navy) !important;
  border-color: #fff !important;
}

body.home .site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

body.home .site-header:not(.is-scrolled) .menu-toggle span,
body.home .site-header:not(.is-scrolled) .menu-toggle span::before,
body.home .site-header:not(.is-scrolled) .menu-toggle span::after {
  background: #fff;
}

/* Mobil menü açılınca panel açık renk — linkler koyu kalsın */
body.home .site-header:not(.is-scrolled) .nav.is-open a:not(.nav-cta):not(.nav-login) {
  color: var(--hs-slate);
}

body.home .site-header:not(.is-scrolled) .nav.is-open a:not(.nav-cta):not(.nav-login):hover,
body.home .site-header:not(.is-scrolled) .nav.is-open a:not(.nav-cta):not(.nav-login).is-active {
  color: var(--hs-navy);
}

body.home .site-header:not(.is-scrolled) .nav.is-open .nav-login {
  color: var(--hs-navy) !important;
  border-color: var(--hs-navy) !important;
}

body.home .site-header:not(.is-scrolled) .nav.is-open .nav-login:hover {
  background: var(--hs-navy) !important;
  color: #fff !important;
}

/* Hero — one composition, brand first, full-bleed */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 3.5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.72) 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(245, 166, 35, 0.35), transparent 55%),
    linear-gradient(135deg, #1a2332 0%, #0F172A 45%, #243044 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  right: -8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.28), transparent 70%);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-brand .hs {
  color: var(--hs-gold);
}

.hero h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 1.1rem;
}

.hero .lead {
  color: rgba(226, 232, 240, 0.88);
  margin-bottom: 1.75rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.hero-phone:hover {
  color: var(--hs-gold);
}

.hero-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.hero .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-mock {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
  background: #0f172a;
  min-height: 220px;
}

.hero-mock img,
.hero-mock svg {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Animasyonlar: yalnızca motion açıkken — aksi halde opacity:0’da takılı kalır */
@media (prefers-reduced-motion: no-preference) {
  .hero-brand,
  .hero h1,
  .hero .lead,
  .hero .btn-group,
  .hero-phone,
  .hero-visual,
  .hero-scroll {
    opacity: 0;
  }

  .hero-brand { animation: rise 0.8s var(--ease) 0.1s forwards; }
  .hero h1 { animation: rise 0.85s var(--ease) 0.22s forwards; }
  .hero .lead { animation: rise 0.85s var(--ease) 0.34s forwards; }
  .hero .btn-group { animation: rise 0.85s var(--ease) 0.46s forwards; }
  .hero-phone { animation: rise 0.85s var(--ease) 0.55s forwards; }
  .hero-visual { animation: rise 0.9s var(--ease) 0.4s forwards; }
  .hero-scroll { animation: rise 0.8s var(--ease) 0.8s forwards; }
}

/* Price strip */
.price-strip {
  position: relative;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.12) 0%, transparent 38%),
    linear-gradient(105deg, #e8920f 0%, var(--hs-gold) 48%, #f7bc4a 100%);
  color: #fff;
  padding: 1.1rem 0;
  overflow: hidden;
}

.price-strip::after {
  content: "";
  position: absolute;
  inset: auto -4% -55% auto;
  width: 220px;
  height: 220px;
  border-radius: 40%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.price-strip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr) auto;
  align-items: center;
  gap: 1.25rem 1.5rem;
}

.price-strip-copy {
  min-width: 0;
}

.price-strip-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.price-strip-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.price-strip-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.price-chip {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.price-chip:hover {
  background: rgba(15, 23, 42, 0.28);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.price-chip.is-featured {
  background: rgba(15, 23, 42, 0.32);
  border-color: rgba(255, 255, 255, 0.4);
}

.price-chip span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

.price-chip b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-strip-cta {
  background: var(--hs-navy);
  white-space: nowrap;
}

.price-strip-cta:hover {
  background: #1e293b;
}

@media (max-width: 980px) {
  .price-strip-inner {
    grid-template-columns: 1fr auto;
  }

  .price-strip-plans {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .price-strip-inner {
    grid-template-columns: 1fr;
  }

  .price-strip-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Testimonials */
.testimonials {
  background: var(--hs-bg);
  border-block: 1px solid var(--hs-line);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 1.45rem 1.35rem 1.35rem;
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  background: var(--hs-white);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.quote:hover {
  border-color: rgba(245, 166, 35, 0.5);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.quote-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 0.7;
  color: var(--hs-gold);
  opacity: 0.85;
}

.quote-stars {
  color: var(--hs-gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1;
  padding-top: 0.2rem;
}

.quote p {
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  color: var(--hs-ink);
  line-height: 1.55;
  flex: 1;
}

.quote footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hs-line);
}

.quote-avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--hs-navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.quote footer > div {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.quote strong {
  color: var(--hs-navy);
  font-size: 0.95rem;
}

.quote-meta {
  color: var(--hs-slate);
  font-size: 0.85rem;
}

/* Mini lead form */
.mini-lead {
  background: var(--hs-bg);
  border-block: 1px solid var(--hs-line);
}

.mini-lead-panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--hs-line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--hs-white);
  box-shadow: var(--shadow-soft);
}

.mini-lead-copy {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background:
    linear-gradient(165deg, rgba(245, 166, 35, 0.12) 0%, transparent 42%),
    var(--hs-navy);
  color: #fff;
}

.mini-lead-copy .eyebrow {
  color: var(--hs-gold);
}

.mini-lead-copy h2 {
  margin: 0.55rem 0 0.75rem;
  color: #fff;
}

.mini-lead-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42ch;
  line-height: 1.6;
  font-size: 0.98rem;
}

.mini-lead-perks {
  list-style: none;
  margin: 1.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.mini-lead-perks li {
  position: relative;
  padding-left: 1.35rem;
}

.mini-lead-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--hs-gold);
}

.mini-lead-perks strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.mini-lead-perks span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  max-width: 36ch;
}

.mini-lead-alt {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.mini-lead-alt > span {
  flex: 1 0 100%;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.mini-lead-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--hs-gold);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.mini-lead-phone:hover {
  color: #fff;
}

.mini-lead-copy .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}

.mini-lead-copy .btn-ghost:hover {
  border-color: var(--hs-gold);
  background: rgba(245, 166, 35, 0.15);
  color: #fff;
}

.mini-form {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--hs-white);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-form .btn-primary {
  width: auto;
  margin-top: 0;
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--hs-line);
}

.step-progress-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.step-progress-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 2px;
  background: var(--hs-line);
  z-index: 0;
}

.step-progress-item.is-done:not(:last-child)::after,
.step-progress-item.is-active:not(:last-child)::after {
  background: linear-gradient(90deg, var(--hs-gold), rgba(245, 166, 35, 0.35));
}

.step-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--hs-line);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hs-slate);
  background: #fff;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hs-muted);
  transition: color 0.25s var(--ease);
}

.step-progress-item.is-active .step-dot,
.step-progress-item.is-done .step-dot {
  background: var(--hs-gold);
  border-color: var(--hs-gold);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.18);
}

.step-progress-item.is-done .step-dot {
  box-shadow: none;
}

.step-progress-item.is-active .step-label,
.step-progress-item.is-done .step-label {
  color: var(--hs-navy);
}

.form-step[hidden] {
  display: none !important;
}

.step-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hs-navy);
}

.step-options {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.step-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hs-line);
  border-radius: 12px;
  background: var(--hs-bg);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.step-option:hover {
  border-color: rgba(245, 166, 35, 0.55);
}

.step-option:has(input:checked) {
  border-color: var(--hs-gold);
  background: var(--hs-gold-soft);
}

.step-option input {
  accent-color: var(--hs-gold);
  width: 1rem;
  height: 1rem;
}

.step-option span {
  font-weight: 600;
  color: var(--hs-navy);
  font-size: 0.95rem;
}

.step-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.step-nav .btn-primary {
  flex: 1;
  justify-content: center;
  min-width: 8rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-row-2 > div label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hs-slate);
  margin-bottom: 0.4rem;
}

.form-row-2 input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hs-line);
  border-radius: 10px;
  font: inherit;
  color: var(--hs-navy);
  background: var(--hs-bg);
  transition: border-color 0.2s;
}

.form-row-2 input:focus {
  outline: none;
  border-color: var(--hs-gold);
  background: #fff;
}

/* Guarantee */
.guarantee {
  background: var(--hs-navy);
  color: #fff;
  border: 0;
  padding: clamp(3.25rem, 6vw, 4.5rem) 0;
}

.guarantee-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.guarantee .eyebrow {
  color: var(--hs-gold);
}

.guarantee h2 {
  color: #fff;
  margin: 0.5rem 0 0.75rem;
}

.guarantee-copy p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  max-width: 38ch;
  line-height: 1.55;
}

.guarantee-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.guarantee-list li {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.guarantee-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.98rem;
}

.guarantee-list span {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Add-on / existing site */
.add-on {
  background: var(--hs-bg);
  border-block: 1px solid var(--hs-line);
  padding: clamp(2.25rem, 4vw, 3rem) 0;
}

.add-on-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.35rem 1.5rem;
  align-items: center;
  padding: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.35rem, 2.5vw, 1.85rem);
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(245, 166, 35, 0.16) 0%, transparent 42%),
    var(--hs-white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.add-on-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--hs-gold);
}

.add-on-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--hs-gold);
  color: #fff;
  flex-shrink: 0;
}

.add-on-icon svg {
  width: 26px;
  height: 26px;
}

.add-on-copy {
  min-width: 0;
}

.add-on-copy .eyebrow {
  color: var(--hs-gold);
}

.add-on-panel h2 {
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  max-width: 28ch;
}

.add-on-panel p {
  margin: 0;
  color: var(--hs-slate);
  max-width: 52ch;
  line-height: 1.5;
  font-size: 0.95rem;
}

.add-on-perks {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.add-on-perks li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--hs-gold-soft);
  border: 1px solid rgba(245, 166, 35, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hs-navy);
}

.add-on-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 11.5rem;
}

.add-on-actions .btn {
  width: 100%;
  justify-content: center;
}

.home-refs {
  background: var(--hs-bg);
  border-block: 1px solid var(--hs-line);
}

.home-refs .ref-card {
  color: inherit;
  text-decoration: none;
}

.ref-result {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hs-gold);
  letter-spacing: 0.02em;
}

.home-refs-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.home-blog {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.95), transparent 55%);
}

.home-blog-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

/* Why us */
.why {
  background: var(--hs-bg);
  border-block: 1px solid var(--hs-line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.why-item {
  position: relative;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  background: var(--hs-white);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.why-item:hover {
  border-color: rgba(245, 166, 35, 0.55);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: transparent;
  transition: background 0.25s var(--ease);
}

.why-item:hover::before {
  background: var(--hs-gold);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  background: var(--hs-gold-soft);
  color: var(--hs-gold);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-num {
  position: absolute;
  top: 1.45rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.28);
}

.why-item h3 {
  margin: 0 0 0.5rem;
}

.why-item p {
  margin: 0;
  color: var(--hs-slate);
  font-size: 0.95rem;
  line-height: 1.55;
}

.why-promise {
  margin-top: 1.75rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: var(--hs-gold-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.why-promise-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hs-gold);
}

.why-promise ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.why-promise li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hs-navy);
}

.why-promise li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: var(--hs-gold);
}

.quote-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hs-slate);
  border: 1px solid var(--hs-line);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: var(--hs-bg);
}

/* Fit / not fit */
.fit {
  background: var(--hs-white);
  border-block: 1px solid var(--hs-line);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.fit-box {
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--hs-line);
  background: var(--hs-bg);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.fit-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.fit-box.is-yes {
  border-color: rgba(245, 166, 35, 0.5);
  background:
    linear-gradient(180deg, rgba(245, 166, 35, 0.14) 0%, transparent 42%),
    var(--hs-gold-soft);
}

.fit-box.is-no {
  background: var(--hs-white);
}

.fit-box-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.fit-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.fit-box.is-yes .fit-badge {
  background: var(--hs-gold);
  color: #fff;
}

.fit-box.is-no .fit-badge {
  background: rgba(15, 23, 42, 0.06);
  color: var(--hs-slate);
}

.fit-label {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hs-slate);
}

.fit-box.is-yes .fit-label {
  color: var(--hs-gold);
}

.fit-box h3 {
  margin: 0;
  font-size: 1.2rem;
}

.fit-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-box li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.7rem;
  color: var(--hs-ink);
  font-size: 0.95rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.fit-box li:last-child {
  border-bottom: 0;
  padding-bottom: 0.15rem;
}

.fit-box.is-yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--hs-gold);
}

.fit-box.is-no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.7rem;
  height: 2px;
  border-radius: 1px;
  background: var(--hs-muted);
}

.fit-foot {
  margin: 1.5rem 0 0;
  color: var(--hs-slate);
  font-size: 0.95rem;
}

.fit-foot a {
  color: var(--hs-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(245, 166, 35, 0.55);
  text-underline-offset: 0.2em;
}

.fit-foot a:hover {
  color: var(--hs-gold);
}

/* Founder */
.founder {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(245, 166, 35, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
    var(--hs-navy);
  color: #fff;
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  overflow: hidden;
}

.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.founder-visual {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.founder-avatar {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: var(--hs-gold);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.founder-avatar img {
  width: 48px;
  height: 48px;
  display: block;
}

.founder-ring {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 34px;
  pointer-events: none;
}

.founder-copy {
  min-width: 0;
}

.founder .eyebrow {
  color: var(--hs-gold);
}

.founder h2 {
  color: #fff;
  margin: 0.4rem 0 0.35rem;
}

.founder-role {
  margin: 0 0 0.85rem;
  color: rgba(245, 166, 35, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  max-width: none;
}

.founder-copy > p:not(.founder-role) {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  max-width: 52ch;
  line-height: 1.6;
  font-size: 1.02rem;
}

.founder-meta {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.founder-meta li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.founder .btn-primary {
  background: var(--hs-gold);
  color: #fff;
}

.founder .btn-primary:hover {
  background: #e89410;
  color: #fff;
}

.founder .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}

.founder .btn-ghost:hover {
  border-color: var(--hs-gold);
  background: rgba(245, 166, 35, 0.12);
  color: #fff;
}

@media (max-width: 900px) {
  .why-grid,
  .fit-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    justify-items: start;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .mini-lead-panel {
    grid-template-columns: 1fr;
  }

  .guarantee-panel,
  .add-on-panel {
    grid-template-columns: 1fr;
  }

  .add-on-panel {
    justify-items: start;
  }

  .add-on-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }

  .add-on-actions .btn {
    width: auto;
    flex: 1;
    min-width: 10rem;
  }

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

  .hero-mock {
    transform: none;
    max-width: 520px;
    margin-inline: auto;
  }

  .hero {
    align-items: start;
    padding-top: calc(var(--header-h) + 1.5rem);
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head .eyebrow {
  margin-bottom: 0.75rem;
}

.section-head h2 {
  margin-bottom: 0.85rem;
}

.section-head p {
  margin: 0;
  color: var(--hs-slate);
  max-width: 46ch;
}

/* Process — one job */
.process {
  background: var(--hs-white);
  border-block: 1px solid var(--hs-line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.process-item {
  position: relative;
  padding: 1.5rem 1.25rem 1.4rem;
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  background: var(--hs-bg);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.process-item:hover {
  border-color: rgba(245, 166, 35, 0.55);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--hs-gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.process-item h3 {
  margin-bottom: 0.45rem;
}

.process-item p {
  margin: 0;
  color: var(--hs-slate);
  font-size: 0.95rem;
  line-height: 1.5;
}

.process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.15rem;
  right: -0.8rem;
  width: 1.6rem;
  height: 2px;
  background: linear-gradient(90deg, var(--hs-gold), transparent);
  z-index: 1;
}

/* Services strip — not card-heavy */
.services {
  background: var(--hs-white);
  border-block: 1px solid var(--hs-line);
}

.service-rows {
  display: grid;
  gap: 0.75rem;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1.5fr) auto;
  gap: 1.25rem 1.5rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  background: var(--hs-bg);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.25s var(--ease);
}

.service-row:hover {
  border-color: rgba(245, 166, 35, 0.5);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.service-row:hover::before {
  background: var(--hs-gold);
}

.service-lead {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.28);
  min-width: 1.6rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--hs-gold-soft);
  color: var(--hs-gold);
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-copy h3 {
  margin: 0 0 0.35rem;
}

.service-copy p {
  margin: 0;
  color: var(--hs-slate);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 46ch;
}

.service-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  text-align: right;
}

.service-from {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--hs-slate);
}

.service-row .link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--hs-gold);
  white-space: nowrap;
}

.service-row .link span {
  transition: transform 0.25s var(--ease);
}

.service-row:hover .link span {
  transform: translateX(4px);
}

/* CTA band */
.cta-band {
  background: var(--hs-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 6vw, 4.5rem) 0;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.32), transparent 70%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.cta-band .eyebrow {
  color: var(--hs-gold);
}

.cta-band h2 {
  color: #fff;
  margin: 0.55rem 0 0.75rem;
  max-width: 16ch;
}

.cta-band p {
  margin: 0;
  color: rgba(226, 232, 240, 0.8);
  max-width: 42ch;
}

.cta-band .phone {
  display: inline-block;
  margin-top: 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 700;
  color: var(--hs-gold);
  letter-spacing: -0.02em;
}

.cta-band .phone:hover {
  color: #ffb84d;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  min-width: min(100%, 260px);
  justify-self: end;
}

.cta-actions .btn {
  width: 100%;
  justify-content: center;
}

.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.cta-band .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cta-note {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.95);
  text-align: center;
}

/* Footer */
.site-footer {
  background: #070b14;
  color: rgba(226, 232, 240, 0.75);
  padding: 3.25rem 0 1.5rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
}

.site-footer .logo {
  margin-bottom: 0.25rem;
}

.site-footer p {
  margin: 0.85rem 0 0;
  max-width: 34ch;
  line-height: 1.6;
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
  color: rgba(226, 232, 240, 0.75);
}

.site-footer a:hover {
  color: var(--hs-gold);
}

.footer-contact .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 0.2rem;
}

.footer-contact .item {
  margin-bottom: 1rem;
}

.footer-contact .item:last-child {
  margin-bottom: 0;
}

.footer-contact .value {
  color: #E2E8F0;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--hs-muted);
}

/* Reveal on scroll — varsayılan görünür (JS/CSS motion yoksa boş sayfa olmasın) */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

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

/* Mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(250, 251, 252, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 1.5rem;
    gap: 0.35rem;
    border-bottom: 1px solid var(--hs-line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a:not(.btn) {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--hs-line);
  }

  .nav .btn {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .nav-login {
    margin-left: 0;
  }

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

  .process-item:not(:last-child)::after {
    display: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }

  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-self: stretch;
    min-width: 0;
  }

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

@media (max-width: 560px) {
  .process-list {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .logo-img {
    height: 44px;
  }
}

/* Trust strip */
.trust {
  background: var(--hs-white);
  border-bottom: 1px solid var(--hs-line);
  padding: 2rem 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  position: relative;
  transition: background 0.25s var(--ease);
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--hs-line);
}

.trust-item:hover {
  background: var(--hs-gold-soft);
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--hs-gold-soft);
  color: var(--hs-gold);
  display: grid;
  place-items: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.trust-item:hover .trust-icon {
  background: var(--hs-gold);
  color: #fff;
  transform: translateY(-2px);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--hs-navy);
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
  line-height: 1.15;
}

.trust-text span {
  display: block;
  color: var(--hs-slate);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .trust-list {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-item:not(:last-child)::after {
    display: none;
  }

  .trust-item {
    border-bottom: 1px solid var(--hs-line);
    padding-inline: 0.25rem;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}

/* Work / sectors */
.work {
  background: var(--hs-white);
}

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

.work-item {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  isolation: isolate;
}

.work-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.85) 100%),
    var(--work-bg, linear-gradient(135deg, #1e293b, #0f172a));
}

.work-item:nth-child(1) { --work-bg: linear-gradient(135deg, #334155 0%, #0f172a 55%, #f5a62333 100%); }
.work-item:nth-child(2) { --work-bg: linear-gradient(145deg, #1e3a5f 0%, #0f172a 60%, #f5a62344 100%); }
.work-item:nth-child(3) { --work-bg: linear-gradient(160deg, #3f3a2e 0%, #0f172a 55%, #f5a62333 100%); }

.work-item .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hs-gold);
  margin-bottom: 0.5rem;
}

.work-item h3 {
  color: #fff;
  margin-bottom: 0.35rem;
}

.work-item p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.85);
}

/* Inner pages */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(245, 166, 35, 0.12), transparent 55%),
    var(--hs-white);
  border-bottom: 1px solid var(--hs-line);
}

.page-hero h1 {
  margin: 0.65rem 0 0.85rem;
  max-width: 16ch;
}

.page-hero .lead {
  margin: 0;
}

/* Demo subdomain showcase */
.demo-hub {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: var(--radius);
  background: var(--hs-gold-soft);
}

.demo-hub h2 {
  margin: 0.4rem 0 0.45rem;
}

.demo-hub p {
  margin: 0;
  color: var(--hs-slate);
  max-width: 42ch;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.demo-card {
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  background: var(--hs-white);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.demo-priority {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hs-gold);
}

.demo-card h3 {
  margin: 0;
}

.demo-card p {
  margin: 0;
  color: var(--hs-slate);
  font-size: 0.95rem;
  flex: 1;
}

.demo-url {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: var(--hs-navy);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.demo-url:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.demo-url span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  word-break: break-all;
}

.demo-url small {
  color: rgba(226, 232, 240, 0.65);
  font-size: 0.75rem;
}

.demo-dns {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  background: var(--hs-bg);
}

.demo-dns h3 {
  margin: 0 0 0.65rem;
}

.demo-dns p {
  margin: 0 0 0.75rem;
  color: var(--hs-slate);
}

.demo-dns ul {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
  color: var(--hs-ink);
}

.demo-dns li {
  margin-bottom: 0.35rem;
}

.demo-dns code {
  font-size: 0.88rem;
  background: var(--hs-white);
  border: 1px solid var(--hs-line);
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
}

.demo-dns .muted {
  margin: 0;
  font-size: 0.9rem;
  color: var(--hs-muted);
}

@media (max-width: 900px) {
  .demo-hub,
  .demo-grid {
    grid-template-columns: 1fr;
  }
}

.detail-block {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--hs-line);
}

.detail-block:last-of-type {
  border-bottom: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-grid h2 {
  margin: 0.5rem 0 1rem;
}

.feature-list {
  margin: 1.25rem 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  color: var(--hs-slate);
  border-bottom: 1px solid var(--hs-line);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hs-gold);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-plan {
  background: var(--hs-white);
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.price-plan.is-featured {
  border-color: var(--hs-gold);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.price-plan.is-featured::before {
  content: "Önerilen";
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  background: var(--hs-gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.price-plan .plan-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hs-navy);
  margin-bottom: 0.35rem;
}

.price-plan .plan-desc {
  color: var(--hs-slate);
  font-size: 0.92rem;
  margin: 0 0 1.25rem;
  min-height: 2.8em;
}

.price-plan .plan-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--hs-navy);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.price-plan .plan-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--hs-slate);
  font-family: var(--font-body);
}

.price-plan .plan-note {
  font-size: 0.8rem;
  color: var(--hs-muted);
  margin-bottom: 1.25rem;
}

.price-plan ul {
  margin: 0 0 1.5rem;
  flex: 1;
}

.price-plan li {
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--hs-ink);
  border-bottom: 1px solid var(--hs-line);
}

.price-plan .btn {
  width: 100%;
}

.price-footnote {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--hs-slate);
}

/* FAQ */
.home-faq {
  background: var(--hs-bg);
  border-block: 1px solid var(--hs-line);
}

.home-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.home-faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
}

.home-faq-intro h2 {
  margin: 0.55rem 0 0.75rem;
}

.home-faq-intro p {
  margin: 0 0 1.5rem;
  color: var(--hs-slate);
  max-width: 34ch;
  line-height: 1.55;
}

.home-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.faq-list {
  max-width: 720px;
  display: grid;
  gap: 0.65rem;
}

.home-faq .faq-list {
  max-width: none;
}

.faq-item {
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  background: var(--hs-white);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq-item:hover {
  border-color: rgba(245, 166, 35, 0.35);
}

.faq-item.is-open {
  border-color: rgba(245, 166, 35, 0.65);
  box-shadow: var(--shadow-soft);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
  padding: 1.05rem 1.1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hs-navy);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--hs-gold-soft);
  color: var(--hs-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.faq-item.is-open .faq-num {
  background: var(--hs-gold);
  color: #fff;
}

.faq-q {
  flex: 1;
  min-width: 0;
  padding-right: 0.35rem;
  line-height: 1.3;
}

.faq-item button::after {
  content: "+";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--hs-line);
  color: var(--hs-gold);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.faq-item.is-open button::after {
  content: "−";
  background: var(--hs-gold);
  border-color: var(--hs-gold);
  color: #fff;
}

.faq-item .faq-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.3s var(--ease),
    opacity 0.2s var(--ease);
}

.faq-item .faq-body > * {
  overflow: hidden;
  min-height: 0;
}

.faq-item .faq-body p {
  margin: 0;
  padding: 0 1.15rem;
  color: var(--hs-slate);
  font-size: 0.95rem;
  line-height: 1.55;
  border-top: 0 solid transparent;
}

.home-faq .faq-item .faq-body p {
  padding-left: 4.05rem;
  padding-right: 3.4rem;
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-body p {
  padding-bottom: 1.15rem;
  padding-top: 0.15rem;
}

@media (max-width: 900px) {
  .home-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .home-faq-intro {
    position: static;
  }

  .home-faq-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .home-faq-actions .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 560px) {
  .home-faq .faq-item button {
    gap: 0.7rem;
    padding: 0.95rem 0.95rem;
    font-size: 0.98rem;
  }

  .home-faq .faq-item .faq-body p {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info p {
  margin: 0 0 1.25rem;
  color: var(--hs-slate);
}

.contact-lines {
  margin: 1.5rem 0;
}

.contact-lines a,
.contact-lines span {
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 600;
  color: var(--hs-navy);
}

.contact-lines .muted {
  font-weight: 500;
  color: var(--hs-slate);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--hs-white);
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-map-section {
  padding-top: 0;
}

.contact-map {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--hs-mist, #f1f5f9);
  aspect-ratio: 16 / 9;
  min-height: 240px;
  max-height: 420px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
}

.contact-map-link {
  margin: 1.25rem 0 0;
  text-align: center;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hs-slate);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hs-line);
  border-radius: 10px;
  font: inherit;
  color: var(--hs-navy);
  background: var(--hs-bg);
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--hs-gold);
  background: #fff;
}

.form-row input.is-invalid,
.form-row select.is-invalid,
.form-row textarea.is-invalid {
  border-color: #b91c1c;
  background: #fff;
}

.field-error {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #b91c1c;
}

.form-check .field-error {
  flex: 1 1 100%;
  margin: 0.15rem 0 0 1.65rem;
  width: auto;
}

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

.form-hint {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--hs-muted);
}

/* Referans kartları */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.ref-card {
  background: var(--hs-white);
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(245, 166, 35, 0.45);
}

.ref-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.ref-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.ref-card:hover .ref-thumb img {
  transform: scale(1.04);
}

.ref-hover {
  position: absolute;
  inset: auto 1rem 1rem auto;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--hs-navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
}

.ref-card:hover .ref-hover {
  opacity: 1;
  transform: translateY(0);
}

.ref-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.ref-body .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hs-gold);
  margin-bottom: 0.45rem;
}

.ref-body h3 {
  margin: 0 0 0.35rem;
}

.ref-body p {
  margin: 0;
  color: var(--hs-slate);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease), bottom 0.3s var(--ease);
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Sticky quote dock */
.quote-dock {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 88;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: min(540px, calc(100vw - 5.5rem));
  padding: 0.85rem 1rem 0.85rem 0.95rem;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.quote-dock.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-dock.is-closed {
  display: none;
}

.quote-dock-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.18);
  color: var(--hs-gold);
}

.quote-dock-icon svg {
  width: 22px;
  height: 22px;
}

.quote-dock-copy {
  flex: 1;
  min-width: 0;
}

.quote-dock-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.quote-dock-copy span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.7);
}

.quote-dock-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  flex-shrink: 0;
}

.quote-dock-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  color: var(--hs-navy);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.quote-dock-call:hover {
  background: var(--hs-gold);
  color: #fff;
}

.quote-dock-call svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.quote-dock-note {
  font-size: 0.68rem;
  text-align: center;
  color: rgba(226, 232, 240, 0.65);
  font-style: italic;
}

.quote-dock-close {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--hs-navy);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  z-index: 2;
}

.quote-dock-close:hover {
  background: var(--hs-gold);
  color: #fff;
}

.quote-dock-link {
  display: none;
}

/* Masaüstünde dock solda, WA sağda yan yana kalır */
body.has-quote-dock .wa-float {
  bottom: 1.25rem;
}

@media (max-width: 720px) {
  .quote-dock {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    max-width: none;
    flex-wrap: wrap;
    padding: 0.9rem 1rem 0.95rem;
    gap: 0.75rem;
  }

  .quote-dock-icon {
    display: none;
  }

  .quote-dock-copy {
    width: calc(100% - 1.5rem);
    padding-right: 0.25rem;
  }

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

  .quote-dock-actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .quote-dock-call {
    flex: 1;
  }

  .quote-dock-note {
    display: none;
  }

  .quote-dock-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }

  .quote-dock-close {
    top: 0.55rem;
    right: 0.55rem;
  }

  /* Mobilde dock tam genişlik — WA üstüne binmesin */
  body.has-quote-dock .wa-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.85);
  }
}

@media (max-width: 900px) {
  .trust-list,
  .work-grid,
  .pricing-grid,
  .detail-grid,
  .contact-layout,
  .ref-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero-brand,
  .hero h1,
  .hero .lead,
  .hero .btn-group,
  .hero-phone,
  .hero-visual,
  .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .skip-link {
    transition: none !important;
  }
}

/* Logo / sector band — metin şeridi, pill yığını yok */
.logo-band {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--hs-line);
  background: var(--hs-white);
  overflow: hidden;
}

.logo-band-label {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hs-muted);
}

.logo-band-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0;
  text-align: center;
}

.logo-chip {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--hs-navy);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0.72;
}

.logo-chip:not(:last-child)::after {
  content: "·";
  margin: 0 0.75rem;
  color: var(--hs-muted);
  font-weight: 500;
  opacity: 1;
}

/* Metrics — ince tek satır, fiyat tekrarı yok */
.metrics {
  padding: 2rem 0 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  border-top: 1px solid var(--hs-line);
  border-bottom: 1px solid var(--hs-line);
}

.metric-item {
  text-align: center;
  padding: 1.35rem 1rem;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--hs-line);
}

.metric-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--hs-navy);
  line-height: 1.15;
}

.metric-item span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--hs-slate);
}

@media (max-width: 800px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-item:nth-child(2n)::after {
    display: none;
  }

  .metric-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hs-line);
  }
}

.home-demos {
  padding-top: 3.5rem;
}

.home-demos .section-head {
  margin-bottom: 1.75rem;
}

.home-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hs-line);
}

.home-demo-card {
  display: block;
  padding: 1.5rem 1.35rem;
  border: 0;
  border-right: 1px solid var(--hs-line);
  border-bottom: 1px solid var(--hs-line);
  border-radius: 0;
  background: transparent;
  transition: background 0.2s var(--ease);
}

.home-demo-card:last-child {
  border-right: 0;
}

.home-demo-card:hover {
  border-color: var(--hs-line);
  transform: none;
  background: var(--hs-gold-soft);
}

.home-demo-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hs-gold-hover);
}

.home-demo-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.home-demo-card p {
  margin: 0 0 0.85rem;
  color: var(--hs-slate);
  font-size: 0.95rem;
}

.home-demo-card .link {
  font-weight: 700;
  color: var(--hs-navy);
}

@media (max-width: 800px) {
  .home-demo-grid {
    grid-template-columns: 1fr;
  }

  .home-demo-card {
    border-right: 0;
  }
}

.section-head-extra {
  margin: 0.75rem 0 0;
}

.section-head-extra a {
  font-weight: 700;
  color: var(--hs-gold-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Founder photo */
.founder-avatar.has-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.founder-avatar.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form privacy check */
.form-check {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0.85rem 0 1rem;
  font-size: 0.88rem;
  color: var(--hs-slate);
  cursor: pointer;
}

.form-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--hs-gold);
}

.form-check > span {
  flex: 1;
  min-width: 12rem;
}

.form-check a {
  color: var(--hs-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Legal pages */
.legal-page {
  padding-top: 2rem;
}

.legal-prose {
  max-width: 720px;
}

.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--hs-slate);
}

.legal-prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.legal-prose li {
  margin-bottom: 0.4rem;
}

.legal-prose a {
  color: var(--hs-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-prose code {
  font-size: 0.88em;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: var(--hs-gold-soft);
}

.cookie-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
  border: 1px solid var(--hs-line);
  border-radius: 12px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--hs-line);
  vertical-align: top;
}

.cookie-table th {
  background: var(--hs-navy);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-table tr:last-child td {
  border-bottom: 0;
}

.cookie-table code {
  font-size: 0.84em;
  word-break: break-word;
}

.legal-prose .muted {
  color: var(--hs-muted);
  font-size: 0.9rem;
}

.legal-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.5rem !important;
}

/* Footer legal */
.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-legal a {
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.88rem;
}

.footer-legal a:hover {
  color: var(--hs-gold);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin-top: 1rem;
}

.footer-social a {
  font-weight: 600;
  color: var(--hs-gold);
  font-size: 0.9rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner-main {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner-inner p,
.cookie-banner-main p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.92);
}

.cookie-banner-inner a {
  color: var(--hs-gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner .btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.cookie-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-prefs {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.cookie-prefs-lead {
  margin: 0 0 0.85rem !important;
  font-weight: 600;
  color: #fff !important;
}

.cookie-prefs-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.cookie-pref {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.cookie-pref input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: var(--hs-gold);
}

.cookie-pref input:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-pref strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.cookie-pref small {
  display: block;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cookie-prefs-actions {
  justify-content: flex-end;
}

.cookie-banner.is-customizing .cookie-banner-main .cookie-banner-actions {
  display: none;
}

@media (max-width: 720px) {
  .cookie-banner {
    padding: 0.75rem;
  }

  .cookie-banner-inner {
    padding: 1rem 1rem 1.05rem;
    border-radius: 14px;
  }

  .cookie-banner-main {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .cookie-banner-inner p,
  .cookie-banner-main p {
    flex: none;
    font-size: 0.88rem;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.55rem;
  }

  .cookie-banner-actions .btn {
    width: 100%;
    flex: none;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .cookie-prefs-actions {
    flex-direction: column-reverse;
  }
}

/* Çerez paneli açıkken alt sabit UI’ları gizle — üst üste binmesin */
body:has(#cookie-banner:not([hidden])) .quote-dock,
body:has(#cookie-banner:not([hidden])) .wa-float {
  visibility: hidden;
  pointer-events: none;
}

/* ——— Blog ——— */
.blog-hero {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(245, 166, 35, 0.12), transparent 55%),
    linear-gradient(180deg, #F8FAFC 0%, var(--hs-bg) 100%);
}

.blog-section {
  padding-top: 1.5rem;
}

.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hs-line);
  font-size: 0.95rem;
  font-weight: 600;
}

.blog-cats a {
  color: var(--hs-slate);
  position: relative;
  padding-bottom: 0.2rem;
}

.blog-cats a:hover,
.blog-cats a.is-active {
  color: var(--hs-navy);
}

.blog-cats a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  /* Link altında kalsın — negatif bottom çok satırda alt sıraya kayıyordu */
  bottom: 0;
  height: 2px;
  background: var(--hs-gold);
  border-radius: 1px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hs-muted);
}

.blog-meta a {
  color: var(--hs-gold-hover);
}

.blog-meta a:hover {
  color: var(--hs-navy);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  background: var(--hs-white);
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.blog-featured:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.blog-featured-media {
  min-height: 280px;
  background:
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-body {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--hs-navy);
}

.blog-featured-body p {
  margin: 0 0 1.25rem;
  color: var(--hs-slate);
}

.blog-more {
  font-weight: 700;
  color: var(--hs-gold-hover);
}

.blog-featured:hover .blog-more {
  color: var(--hs-navy);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--hs-white);
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, #1E293B, #0F172A 60%);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--hs-navy);
}

.blog-card-body p {
  margin: 0;
  color: var(--hs-slate);
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.blog-pagination a {
  min-width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--hs-line);
  font-weight: 700;
  color: var(--hs-ink);
  background: var(--hs-white);
}

.blog-pagination a.is-active,
.blog-pagination a:hover {
  border-color: var(--hs-gold);
  background: var(--hs-gold-soft);
  color: var(--hs-navy);
}

/* Article detail */
.blog-article {
  /* Fixed header altında kalmasın (kapak / başlık) */
  padding-top: var(--header-h);
}

.blog-article-cover {
  width: 100%;
  max-height: min(58vh, 520px);
  overflow: hidden;
  background: #0F172A;
}

.blog-article-cover img {
  width: 100%;
  height: min(58vh, 520px);
  object-fit: cover;
}

.blog-article-header {
  padding-top: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: 0.5rem;
  max-width: 760px;
  margin-inline: auto;
}

.blog-article-header h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  color: var(--hs-navy);
}

.blog-article-header .lead {
  margin: 0;
  font-size: 1.15rem;
  color: var(--hs-slate);
}

.blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.45rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--hs-line);
}

.blog-share-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hs-muted);
  margin-right: 0.2rem;
}

.blog-share-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--hs-line);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #F8FAFC);
  color: var(--hs-navy);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.blog-share-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.blog-share-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.blog-share-wa {
  color: #128C7E;
}

.blog-share-wa:hover {
  border-color: #25D366;
  background: #ECFDF5;
  color: #0F766E;
}

.blog-share-li {
  color: #0A66C2;
}

.blog-share-li:hover {
  border-color: #0A66C2;
  background: #EFF6FF;
  color: #084E96;
}

.blog-share-x {
  color: var(--hs-ink);
}

.blog-share-x:hover {
  border-color: #0F172A;
  background: #F1F5F9;
  color: #0F172A;
}

.blog-share-copy:hover,
.blog-share-copy.is-copied {
  border-color: var(--hs-gold);
  background: var(--hs-gold-soft);
  color: var(--hs-navy);
}

.blog-share-copy .blog-share-icon-check {
  display: none;
}

.blog-share-copy.is-copied .blog-share-icon-link {
  display: none;
}

.blog-share-copy.is-copied .blog-share-icon-check {
  display: block;
}

.blog-article-body {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  max-width: 760px;
  margin-inline: auto;
}

.blog-adjacent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--hs-line);
}

.blog-adjacent-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--hs-line);
  border-radius: var(--radius);
  background: var(--hs-white);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.blog-adjacent-link:hover {
  border-color: var(--hs-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.blog-adjacent-link.is-empty {
  visibility: hidden;
  pointer-events: none;
  border: 0;
  padding: 0;
}

.blog-adjacent-next {
  text-align: right;
  align-items: flex-end;
}

.blog-adjacent-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hs-muted);
}

.blog-adjacent-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--hs-navy);
  font-weight: 700;
}

.blog-related {
  padding-top: 0.5rem;
  border-top: 1px solid var(--hs-line);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.9), transparent 42%);
}

.blog-related-head {
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.blog-related-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--hs-navy);
}

.blog-prose {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--hs-ink);
}

.blog-prose > *:first-child {
  margin-top: 0;
}

.blog-prose h2,
.blog-prose h3 {
  font-family: var(--font-display);
  color: var(--hs-navy);
  line-height: 1.25;
  margin: 2.1rem 0 0.75rem;
}

.blog-prose h2 {
  font-size: 1.45rem;
}

.blog-prose h3 {
  font-size: 1.2rem;
}

.blog-prose p {
  margin: 0 0 1.15rem;
  color: var(--hs-slate);
}

.blog-prose ul,
.blog-prose ol {
  margin: 0 0 1.15rem;
  padding-left: 1.3rem;
  color: var(--hs-slate);
}

.blog-prose ul {
  list-style: disc;
}

.blog-prose ol {
  list-style: decimal;
}

.blog-prose li {
  margin-bottom: 0.4rem;
}

.blog-prose a {
  color: var(--hs-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-prose blockquote {
  margin: 1.5rem 0;
  padding: 0.85rem 0 0.85rem 1.15rem;
  border-left: 3px solid var(--hs-gold);
  color: var(--hs-ink);
  font-style: italic;
}

.blog-prose img {
  margin: 1.5rem 0;
  border-radius: 12px;
}

.blog-prose pre {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  background: #0F172A;
  color: #E2E8F0;
  border-radius: 10px;
  overflow: auto;
  font-size: 0.92rem;
  line-height: 1.55;
}

.blog-prose pre code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.blog-prose hr {
  margin: 2rem 0;
  border: none;
  border-top: 2px solid #E2E8F0;
}

.blog-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.blog-gallery figure {
  margin: 0;
}

.blog-gallery img {
  margin: 0;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-embed {
  position: relative;
  margin: 1.5rem 0;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #0F172A;
}

.blog-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-columns {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.blog-columns--2 {
  grid-template-columns: 1fr 1fr;
}

.blog-columns--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.blog-column > *:first-child {
  margin-top: 0;
}

.blog-column > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-media {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 640px) {
  .blog-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .blog-columns--2,
  .blog-columns--3 {
    grid-template-columns: 1fr;
  }

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

  .blog-adjacent {
    grid-template-columns: 1fr;
  }

  .blog-adjacent-next {
    text-align: left;
    align-items: flex-start;
  }

  .blog-adjacent-link.is-empty {
    display: none;
  }
}

