/* AHOB ürün ailesi hub — site layout içinde (.ahob-hub-root kapsamı; navbar .btn bozulmaz) */
.ahob-hub-root {
  --paper: #eef1f6;
  --paper-alt: #ffffff;
  --ink: #10182b;
  --ink-soft: #55607a;
  --line: #d6dce8;
  --amber: #f0a93b;
  --amber-deep: #b9740f;
  --amber-ink: #3d2a05;
  --teal: #0e9e97;
  --teal-deep: #086f6a;
  --navy: #0b1526;
  --navy-alt: #132038;
  --navy-line: #26375a;
  --radius: 14px;
  box-sizing: border-box;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.ahob-hub-root *,
.ahob-hub-root *::before,
.ahob-hub-root *::after {
  box-sizing: border-box;
}

.ahob-hub-root h1,
.ahob-hub-root h2,
.ahob-hub-root h3,
.ahob-hub-root .display {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.ahob-hub-root .eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ahob-hub-root .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(240, 169, 59, 0.25);
}

.ahob-hub-root .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.ahob-hub-root a {
  color: inherit;
}

.ahob-hub-root img {
  max-width: 100%;
  display: block;
}

.ahob-hub-root .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ahob-hub-root .btn:hover {
  transform: translateY(-1px);
}

.ahob-hub-root .btn-primary {
  background: var(--ink);
  color: var(--paper-alt) !important;
}

.ahob-hub-root .btn-primary:hover {
  box-shadow: 0 8px 20px rgba(16, 24, 43, 0.25);
}

.ahob-hub-root .btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}

.ahob-hub-root .btn-ghost:hover {
  border-color: var(--ink);
}

.ahob-hub-root .btn-amber {
  background: var(--amber);
  color: var(--amber-ink) !important;
}

.ahob-hub-root .btn-amber:hover {
  box-shadow: 0 8px 20px rgba(240, 169, 59, 0.35);
}

.ahob-hub-root .hero {
  padding: 76px 0 60px;
}

.ahob-hub-root .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.ahob-hub-root .hero h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  line-height: 1.06;
  margin-top: 18px;
}

.ahob-hub-root .hero h1 em {
  font-style: italic;
  color: var(--teal-deep);
}

.ahob-hub-root .hero p.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 20px;
}

.ahob-hub-root .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.ahob-hub-root .trust-row {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.ahob-hub-root .trust-row div {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.ahob-hub-root .trust-row b,
.ahob-hub-root .trust-row strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 600;
}

.ahob-hub-root .pacer-card {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 26px 22px;
  box-shadow: 0 30px 60px -20px rgba(16, 24, 43, 0.18);
}

.ahob-hub-root .pacer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ahob-hub-root .pacer-head .eyebrow {
  margin: 0;
}

.ahob-hub-root .pacer-dots {
  display: flex;
  gap: 6px;
}

.ahob-hub-root .pacer-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.ahob-hub-root .pacer-text {
  position: relative;
  font-family: "Fraunces", serif;
  font-size: 1.22rem;
  line-height: 1.9;
  color: #c7cedb;
  user-select: none;
}

.ahob-hub-root .pacer-text .chunk {
  padding: 2px 3px;
  border-radius: 5px;
  transition: color 0.12s linear, background 0.12s linear;
}

.ahob-hub-root .pacer-text .chunk.active {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(240, 169, 59, 0) 55%, rgba(240, 169, 59, 0.55) 55%);
}

.ahob-hub-root .pacer-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.ahob-hub-root .pacer-controls label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.ahob-hub-root .pacer-controls input[type="range"] {
  flex: 1;
  accent-color: var(--teal);
}

.ahob-hub-root .pacer-metric {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  color: var(--teal-deep);
  min-width: 74px;
  text-align: right;
}

.ahob-hub-root .stats {
  background: var(--navy);
  color: #eaf0fa;
  padding: 38px 0;
}

.ahob-hub-root .stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ahob-hub-root .stat {
  font-size: 0.86rem;
  color: #9cacc9;
}

.ahob-hub-root .stat b,
.ahob-hub-root .stat strong {
  font-family: "Fraunces", serif;
  font-size: 2.1rem;
  font-weight: 600;
  display: block;
  color: var(--amber);
}

.ahob-hub-root .stat span {
  font-size: inherit;
  color: inherit;
}

.ahob-hub-root section {
  padding: 88px 0;
}

.ahob-hub-root .section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.ahob-hub-root .section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 14px;
}

.ahob-hub-root .section-head p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 1.02rem;
}

.ahob-hub-root .problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ahob-hub-root .problem-grid .lead {
  font-size: 1.28rem;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
}

.ahob-hub-root .problem-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.ahob-hub-root .problem-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.ahob-hub-root .problem-list li b,
.ahob-hub-root .problem-list li strong {
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  min-width: 26px;
}

.ahob-hub-root .products {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ahob-hub-root .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ahob-hub-root .p-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.ahob-hub-root .p-card.featured {
  background: var(--navy);
  color: #eaf0fa;
  border-color: var(--navy);
}

.ahob-hub-root .p-card.featured .p-tier {
  color: var(--amber);
}

.ahob-hub-root .p-card.featured .p-desc {
  color: #b7c3dd;
}

.ahob-hub-root .p-card.featured .p-feat {
  border-color: var(--navy-line);
  color: #d3dbed;
}

.ahob-hub-root .p-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  background: var(--amber);
  color: var(--amber-ink);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.ahob-hub-root .p-tier {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.ahob-hub-root .p-card h3 {
  font-size: 1.55rem;
  margin-top: 10px;
}

.ahob-hub-root .p-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 10px;
  min-height: 64px;
}

.ahob-hub-root .p-feat {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--ink-soft);
}

.ahob-hub-root .p-feat li {
  display: flex;
  gap: 8px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.ahob-hub-root .p-feat li::before {
  content: "→";
  color: var(--teal);
  font-weight: 700;
}

.ahob-hub-root .p-card .btn {
  margin-top: 22px;
  justify-content: center;
  width: 100%;
}

.ahob-hub-root .method {
  background: var(--navy);
  color: #eaf0fa;
}

.ahob-hub-root .method .eyebrow {
  color: var(--amber);
}

.ahob-hub-root .method .eyebrow::before {
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 158, 151, 0.3);
}

.ahob-hub-root .method .section-head p {
  color: #9cacc9;
}

.ahob-hub-root .method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ahob-hub-root .m-step {
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: var(--navy-alt);
}

.ahob-hub-root .m-step .m-num {
  font-family: "IBM Plex Mono", monospace;
  color: var(--amber);
  font-size: 0.78rem;
}

.ahob-hub-root .m-step h3 {
  font-size: 1.18rem;
  margin-top: 12px;
  color: #f3f6fc;
  font-weight: 600;
}

.ahob-hub-root .m-step p {
  color: #9cacc9;
  font-size: 0.9rem;
  margin-top: 8px;
}

.ahob-hub-root .segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ahob-hub-root .seg-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  background: var(--paper-alt);
}

.ahob-hub-root .seg-card .tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ahob-hub-root .seg-card h3 {
  font-size: 1.08rem;
  margin-top: 10px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.ahob-hub-root .seg-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.ahob-hub-root .results {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ahob-hub-root .results-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.ahob-hub-root .quote-block {
  border-left: 3px solid var(--amber);
  padding-left: 22px;
}

.ahob-hub-root .quote-block p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
}

.ahob-hub-root .quote-block span {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-family: "IBM Plex Mono", monospace;
}

.ahob-hub-root .press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ahob-hub-root .press-list li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.ahob-hub-root .press-list li b,
.ahob-hub-root .press-list li strong {
  color: var(--ink);
  font-weight: 600;
}

.ahob-hub-root .process-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-alt);
}

.ahob-hub-root .process-step {
  flex: 1;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.ahob-hub-root .process-step:last-child {
  border-right: none;
}

.ahob-hub-root .process-step .eyebrow {
  margin-bottom: 10px;
}

.ahob-hub-root .process-step h3 {
  font-size: 1.05rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.ahob-hub-root .process-step p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.ahob-hub-root .partner {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 52px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.ahob-hub-root .partner h2 {
  color: #fff;
  font-size: 1.9rem;
  max-width: 520px;
}

.ahob-hub-root .partner p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
  max-width: 480px;
}

.ahob-hub-root .partner .btn-primary {
  background: #fff;
  color: var(--teal-deep) !important;
}

.ahob-hub-root .faq-item {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  cursor: pointer;
}

.ahob-hub-root .faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.ahob-hub-root .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}

.ahob-hub-root .faq-q .plus {
  font-family: "IBM Plex Mono", monospace;
  color: var(--teal-deep);
  transition: transform 0.2s ease;
}

.ahob-hub-root .faq-item.open .plus {
  transform: rotate(45deg);
}

.ahob-hub-root .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.ahob-hub-root .faq-item.open .faq-a {
  max-height: 320px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .ahob-hub-root .hero-grid,
  .ahob-hub-root .problem-grid,
  .ahob-hub-root .results-grid {
    grid-template-columns: 1fr;
  }

  .ahob-hub-root .product-grid,
  .ahob-hub-root .method-grid {
    grid-template-columns: 1fr;
  }

  .ahob-hub-root .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ahob-hub-root .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .ahob-hub-root .partner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ahob-hub-root .process-row {
    flex-direction: column;
  }

  .ahob-hub-root .process-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}
