/* ============================================================
   HANCH TECHNOLOGY & CONSULTING
   Improved Stylesheet — v2.0
   Improvements: Accessibility, Performance, Reduced Motion,
   Focus States, Better Contrast, Mobile UX
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&family=DM+Mono&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
  --black:        #0D0D0D;
  --charcoal:     #1A1A1A;
  --anthracite:   #3D3D3D;
  --mid-gray:     #6B6B6B;  /* Improved contrast from #7A7A7A */
  --light-gray:   #DEDEDE;
  --off-white:    #F4F4F4;
  --white:        #FFFFFF;
  /* NOTE: --accent / --accent-dark are ONLY for B2FORE components. */
  --accent:       #E85C1A;   /* B2FORE brand orange — do NOT use outside B2FORE */
  --accent-dark:  #cf4e14;   /* B2FORE hover — do NOT use outside B2FORE */
  --cta:          #4A4A4A;   /* Warm charcoal-gray — secondary CTA */
  --cta-dark:     #2E2E2E;   /* Gray hover */
  --cta-border:   rgba(74,74,74,0.85);

  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-sans:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --nav-height:   80px;
  --max-width:    1200px;
  --section-pad:  120px;
  --radius:       2px;

  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Focus ring */
  --focus-color:  #0066CC;
  --focus-ring:   0 0 0 3px rgba(0, 102, 204, 0.4);
}

/* --- Reduced Motion Support --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__label,
  .hero__title,
  .hero__sub,
  .hero__actions,
  .hero__panel,
  .b2fore-hero__eyebrow,
  .b2fore-hero__logo-wrap,
  .b2fore-hero__tagline,
  .b2fore-hero__desc,
  .b2fore-hero__actions,
  .b2fore-hero__panel,
  .b2fore-hero__scroll {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Body scroll lock when mobile menu open */
body.menu-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Global Focus States (Accessibility) --- */
:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 3px;
  border-radius: var(--radius);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Skip Navigation Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 20px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 9999;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--focus-color);
}

/* --- Typography Scale --- */
.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  font-size: 1rem;
  color: var(--anthracite);
  line-height: 1.75;
  font-weight: 300;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--gray {
  background-color: var(--off-white);
}

.section--dark {
  background-color: var(--black);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark .label {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.7); /* Improved contrast from 0.65 */
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--anthracite);
  border-color: var(--anthracite);
}

.btn--primary:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 3px;
}

.btn--outline {
  background: transparent;
  color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Secondary CTA — deep navy, used outside B2FORE sections */
.btn--accent {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
}
.btn--accent:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
}

.btn--b2fore {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 500;
}
.btn--b2fore:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* --- Thin Divider Line --- */
.divider {
  width: 40px;
  height: 1.5px;
  background: var(--black);
  margin: 20px 0;
}

.divider--light {
  background: rgba(255,255,255,0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--light-gray);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.nav__logo img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--anthracite);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--black);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.lang-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.lang-switcher button.active {
  color: var(--black);
  background: var(--off-white);
}

.lang-switcher button:hover {
  color: var(--black);
}

.lang-switcher span {
  color: var(--light-gray);
  font-size: 0.7rem;
}

/* Mobile Menu Toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: var(--transition);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  max-width: 700px;
  max-height: 700px;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 30vw;
  height: 30vw;
  max-width: 500px;
  max-height: 500px;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 580px;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.2s;
}

.hero__label-line {
  width: 32px;
  height: 1px;
  background: var(--mid-gray);
}

.hero__title {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.4s;
}

.hero__title em {
  font-style: italic;
  color: var(--anthracite);
}

.hero__sub {
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.6s;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.8s;
}

/* Hero Right — Decorative Stats Panel */
.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  animation: fadeIn 1s forwards 1s;
}

.hero__stat {
  background: var(--off-white);
  padding: 32px 36px;
  border-left: 2px solid var(--light-gray);
  transition: var(--transition);
}

.hero__stat:hover {
  border-left-color: var(--black);
  background: var(--white);
}

.hero__stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ============================================================
   B2FORE HERO
   ============================================================ */
.b2fore-hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  background: #f8f7f5;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.b2fore-hero::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.b2fore-hero::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.b2fore-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.b2fore-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.2s;
}

.b2fore-hero__eyebrow-line { width: 32px; height: 1px; background: var(--accent); }

.b2fore-hero__eyebrow span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.b2fore-hero__logo-wrap {
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s forwards 0.35s;
}

.b2fore-hero__logo-wrap img { height: 72px; width: auto; }

.b2fore-hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.5s;
}

.b2fore-hero__tagline em { font-style: italic; }

.b2fore-hero__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--anthracite);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.65s;
}

.b2fore-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.8s;
}

.b2fore-hero__panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  animation: fadeIn 1s forwards 0.9s;
}

.b2fore-feature {
  padding: 30px 34px;
  background: #fff;
  border-left: 2px solid transparent;
  transition: var(--transition);
}

.b2fore-feature:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.b2fore-feature__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 8px;
}

.b2fore-feature__title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--black); margin-bottom: 6px; }
.b2fore-feature__desc  { font-size: 0.83rem; color: var(--mid-gray); line-height: 1.65; }

.b2fore-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s forwards 1.4s;
}

.b2fore-hero__scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.2);
  text-transform: uppercase;
}

.b2fore-hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(232,92,26,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.4; } 50% { opacity: 1; }
}

/* ============================================================
   HANCH BRIDGE (homepage)
   ============================================================ */
.hanch-bridge {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-gray);
}

.hanch-bridge__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hanch-bridge h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.hanch-bridge .hanch-bridge__inner > div > p { margin-bottom: 32px; }

.hanch-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.hanch-stat {
  padding: 36px 28px;
  background: var(--off-white);
  transition: var(--transition);
}

.hanch-stat:hover { background: var(--white); }

.hanch-stat__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.hanch-stat__label { font-size: 0.78rem; color: var(--mid-gray); line-height: 1.4; }

/* ============================================================
   HOW WE WORK SECTION
   ============================================================ */
.how-we-work { padding: var(--section-pad) 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.process-step {
  padding: 40px 32px;
  background: var(--off-white);
  position: relative;
  transition: var(--transition);
}

.process-step::after {
  content: '→';
  position: absolute;
  top: 40px;
  right: -16px;
  font-size: 1.2rem;
  color: var(--light-gray);
  z-index: 1;
}

.process-step:last-child::after { display: none; }

.process-step:hover { background: var(--white); box-shadow: 0 8px 40px rgba(0,0,0,0.07); }

.process-step__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--mid-gray);
  margin-bottom: 20px;
}

.process-step h3 { font-size: 1.2rem; margin-bottom: 12px; }
.process-step p  { font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--section-pad) 0; background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
  color: var(--anthracite);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--anthracite);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
}

.testimonial-card__role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
}

/* ============================================================
   METRICS STRIP
   ============================================================ */
.metrics-strip { padding: 80px 0; background: var(--black); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.metric-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.metric-item:last-child { border-right: none; }

.metric-item__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-item__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ============================================================
   WHAT WE DO
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.service-card {
  background: var(--off-white);
  padding: 48px 40px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--white);
  box-shadow: 0 8px 48px rgba(0,0,0,0.08);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--light-gray);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.service-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.service-card p  { font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   ABOUT SNAPSHOT
   ============================================================ */
.about-snapshot__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-snapshot__visual { position: relative; }

.about-snapshot__box {
  background: var(--off-white);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-snapshot__box-inner { text-align: center; padding: 48px; }

.about-snapshot__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--light-gray);
}

.about-snapshot__content .label { margin-bottom: 16px; }
.about-snapshot__content h2     { margin-bottom: 24px; }
.about-snapshot__content p      { margin-bottom: 36px; font-size: 1rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: var(--transition);
}

.text-link:hover { gap: 16px; color: var(--anthracite); }

/* ============================================================
   REFERENCES
   ============================================================ */
.refs-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.ref-logo-card {
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.ref-logo-card.light { background: #fff; }
.ref-logo-card.dark  { background: #1f1f1f; }

.ref-logo-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.ref-logo-card img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: var(--transition);
}

.ref-logo-card:hover img { filter: none; opacity: 1; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  text-align: center;
  padding: 120px 0;
}

.cta-band h2 { color: var(--white); margin-bottom: 20px; }

.cta-band p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  font-size: 1.05rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: 64px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5); /* Improved contrast */
  line-height: 1.6;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6); /* Improved contrast */
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65); /* Improved contrast */
  transition: var(--transition);
}

.footer__col ul li a:hover { color: var(--white); }

.footer__col ul li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.footer__bottom-lang { display: flex; gap: 4px; }

.footer__bottom-lang button {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 4px 8px;
  transition: var(--transition);
}

.footer__bottom-lang button.active,
.footer__bottom-lang button:hover { color: var(--white); }

/* ============================================================
   SECTION HEADER (reusable)
   ============================================================ */
.section-header { max-width: 640px; }
.section-header .label { margin-bottom: 16px; }
.section-header h2    { margin-bottom: 20px; }
.section-header p     { font-size: 1rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  border-bottom: 1px solid var(--light-gray);
}

.page-hero h1 { max-width: 700px; margin-bottom: 20px; }
.page-hero p  { max-width: 560px; font-size: 1.05rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}

.mv-card { padding: 56px 48px; background: var(--off-white); }
.mv-card h3 { font-size: 1.6rem; margin: 12px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.value-card {
  padding: 40px 32px;
  background: var(--off-white);
  transition: var(--transition);
}

.value-card:hover { background: var(--white); box-shadow: 0 8px 48px rgba(0,0,0,0.06); }

.value-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--light-gray);
  margin-bottom: 16px;
}

.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.team-card {
  background: var(--off-white);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }

.team-card__photo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
}

.team-card__info { padding: 24px; }

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  text-transform: uppercase;
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.story__sidebar { position: sticky; top: 120px; }
.story__body p  { margin-bottom: 24px; line-height: 1.85; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.contact-info { position: sticky; top: 120px; }
.contact-info__label { margin-bottom: 12px; }
.contact-info__title { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 16px; }
.contact-info__body  { font-size: 0.95rem; line-height: 1.75; margin-bottom: 40px; }

.contact-detail { margin-bottom: 24px; }

.contact-detail__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 6px;
}

.contact-detail__value { font-size: 1rem; color: var(--black); }
.contact-detail__value a { color: var(--black); text-decoration: none; }
.contact-detail__value a:hover { color: var(--anthracite); }

/* Form Styles */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--anthracite);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  background: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: var(--transition);
  border-radius: var(--radius);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: var(--focus-ring);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

.form-group .field-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .field-error { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

textarea { resize: vertical; min-height: 160px; }

.form-submit { align-self: flex-start; }

/* Privacy consent */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--black);
}

.form-consent label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--mid-gray);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  cursor: pointer;
}

/* Honeypot field - visually hidden */
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* Form feedback */
.form-success {
  display: none;
  padding: 48px;
  background: var(--off-white);
  text-align: center;
}

.form-success h3 { font-size: 1.4rem; margin-bottom: 12px; }

.form-error-banner {
  display: none;
  padding: 16px 20px;
  background: #fdf0ee;
  border: 1px solid #e8a090;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: #c0392b;
  margin-bottom: 16px;
}

.form-loading {
  display: none;
  padding: 48px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--mid-gray);
  letter-spacing: 0.1em;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail:nth-child(even) { background: var(--off-white); }

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-detail__label { margin-bottom: 12px; }
.service-detail h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.service-detail p  { margin-bottom: 16px; }

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 8px;
}

.service-feature {
  padding: 28px 24px;
  background: var(--off-white);
  transition: var(--transition);
}

.service-detail:nth-child(even) .service-feature { background: var(--white); }
.service-feature:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.service-feature h4 { font-size: 1rem; margin-bottom: 8px; }
.service-feature p  { font-size: 0.85rem; line-height: 1.6; }

/* ============================================================
   SOLUTIONS PAGE
   ============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.solution-card {
  background: var(--off-white);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}

.solution-card--featured {
  background: var(--black);
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.solution-card--featured h3 { color: var(--white); }
.solution-card--featured p  { color: rgba(255,255,255,0.7); }

.solution-card:not(.solution-card--featured):hover {
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.solution-card--coming-soon { opacity: 0.7; }

.solution-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.solution-card p  { font-size: 0.88rem; line-height: 1.7; margin-bottom: 28px; }

.solution-card__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--off-white);
  color: var(--mid-gray);
  margin-bottom: 16px;
  border-radius: var(--radius);
}

.solution-card--featured .solution-card__badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   INDUSTRIES STRIP
   ============================================================ */
.industries__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.industries__header { flex: 0 0 auto; max-width: 200px; }

.industries__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}

.industry-tag {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--anthracite);
  padding: 10px 20px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}

.industry-tag:hover { border-color: var(--black); color: var(--black); background: var(--white); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.why-card { padding: 48px 44px; background: var(--off-white); transition: var(--transition); }
.why-card:hover { background: var(--white); }

.why-card__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.why-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.why-card p  { font-size: 0.9rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   MOBILE NAV MENU
   ============================================================ */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 32px 40px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

.nav__mobile-menu.open { display: flex; }

.nav__mobile-menu a {
  font-size: 1.1rem;
  font-family: var(--font-serif);
  color: var(--charcoal);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--off-white);
}

.nav__mobile-menu a.active { color: var(--black); font-weight: 500; }

.nav__mobile-menu .lang-switcher { margin-top: 8px; }

.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.nav__mobile-overlay.open { display: block; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  :root { --section-pad: 80px; }

  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__panel { flex-direction: row; }
  .hero__stat  { flex: 1; }
  .hero::before, .hero::after { display: none; }

  .b2fore-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .b2fore-hero__panel { display: none; }
  .hanch-bridge__inner { grid-template-columns: 1fr; gap: 32px; }

  .services-grid { grid-template-columns: 1fr; gap: 2px; }

  .about-snapshot__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-snapshot__visual { display: none; }

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

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  .mv-grid, .story__inner { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .story__sidebar { position: static; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { position: static; }

  .service-detail__inner { grid-template-columns: 1fr; gap: 48px; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }

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

  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .solution-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  :root { --section-pad: 64px; }

  .nav__links  { display: none; }
  .nav__right .btn { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: 90vh; }
  .hero__panel { flex-direction: column; gap: 2px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }

  .b2fore-hero__logo-wrap img { height: 56px; }
  .b2fore-hero__actions { flex-direction: column; }

  .hanch-stats { grid-template-columns: 1fr 1fr; }

  .industries__inner { flex-direction: column; align-items: flex-start; }
  .industries__header { max-width: 100%; }
  .industries__tags { justify-content: flex-start; }

  .refs-logos-row { gap: 16px; }
  .ref-logo-card { padding: 24px 32px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

  .values-grid, .team-grid { grid-template-columns: 1fr; }

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

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

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

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

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

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

  .cta-band__actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   NAV VISIBILITY FIXES — ensure all items always visible
   ============================================================ */

/* Desktop nav: all items must be visible */
.nav__links {
  display: flex !important;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__links li {
  display: list-item !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
}

.nav__links a {
  white-space: nowrap;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
}

/* Mobile: hide desktop links, show hamburger */
@media (max-width: 768px) {
  .nav__links  { display: none !important; }
  .nav__right .btn { display: none !important; }
  .nav__hamburger  { display: flex !important; }
}

/* Mobile menu: all items visible when .open */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 32px 40px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.nav__mobile-menu.open {
  display: flex !important;
}

.nav__mobile-menu a {
  font-size: 1.1rem;
  font-family: var(--font-serif);
  color: var(--charcoal);
  padding: 16px 0;
  border-bottom: 1px solid var(--off-white);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.nav__mobile-menu a:last-of-type {
  border-bottom: none;
}

.nav__mobile-menu a.active {
  color: var(--black);
  font-weight: 500;
}

.nav__mobile-menu .lang-switcher {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--off-white);
}

/* ============================================================
   LOGO STYLES — new logo files
   ============================================================ */

/* Header logo mark */
.nav__logo-img {
  height: 32px;
  width: 32px;
  display: block;
  object-fit: contain;
  filter: none;
}

/* Full logo (mark + wordmark) */
.nav__logo-full {
  height: 36px;
  width: auto;
  display: block;
}

/* Footer logos — invert to white since footer is dark */
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  opacity: 0.9;
}

/* Client / partner logos */
.client-logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Dener logo is white on black — needs special handling */
.ref-logo-card.dark .client-logo {
  filter: none;      /* Keep natural (white logo shows on dark bg) */
  opacity: 0.85;
}
.ref-logo-card.dark:hover .client-logo {
  opacity: 1;
}

/* Karbonsa logo is dark on transparent — invert on dark bg */
.ref-logo-card.light .client-logo {
  filter: grayscale(100%);
  opacity: 0.6;
}
.ref-logo-card.light:hover .client-logo {
  filter: none;
  opacity: 1;
}

/* About snapshot / decoration logo */
.brand-logo-display {
  width: 200px;
  height: auto;
  display: block;
  /* This logo has dark on transparent — shown on off-white bg */
  filter: none;
  opacity: 0.85;
}

/* Karbonsa logo: has dark background in file — show as is on light bg */
.ref-logo-karbonsa {
  background: transparent;
}


/* ============================================================
   HANCH MAIN HERO (new — sits above B2FORE section)
   ============================================================ */
.hanch-hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  /* Reduced padding — everything should sit comfortably in one screen */
  padding: calc(var(--nav-height) + 20px) 0 60px;
}

/* Subtle grid overlay */
.hanch-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Radial vignette — focus center */
.hanch-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hanch-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Use gap instead of individual margins for consistent spacing */
  gap: 0;
}

.hanch-hero__logo {
  width: clamp(220px, 28vw, 360px);
  height: auto;
  display: block;
  margin: 0 auto 0;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.1s both;
}

.hanch-hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  color: var(--white);
  line-height: 1.18;
  margin: 0 auto 12px;
  font-weight: 400;
  /* Very tight separator line — logo+headline read as one unit */
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 640px;
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.25s both;
}

.hanch-hero__tagline em {
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

.hanch-hero__sub {
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}

.hanch-hero__divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.04));
  margin: 0 auto 24px;
  animation: fadeIn 1s ease 0.6s both;
}

/* ── B2FORE teaser card inside hero ── */
.hanch-hero__b2fore-teaser {
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  padding: 24px 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
  cursor: pointer;
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.7s both;
  /* max-width so it doesn't stretch too wide */
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.hanch-hero__b2fore-teaser:hover {
  border-color: rgba(232,92,26,0.35);
  background: rgba(232,92,26,0.04);
}

/* Animated orange glow on hover */
.hanch-hero__b2fore-teaser::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 160px;
  background: radial-gradient(ellipse, rgba(232,92,26,0.18) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 0;
}
.hanch-hero__b2fore-teaser:hover::before { opacity: 1; }

/* Top line label — animated typing bar */
.hanch-hero__teaser-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hanch-hero__teaser-eyebrow::before,
.hanch-hero__teaser-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* B2FORE logo */
.hanch-hero__b2fore-logo {
  width: clamp(110px, 14vw, 180px);
  height: auto;
  display: block;
  margin: 2px 0;
}

/* ── COMING SOON pill — animated EN↔TR flip ── */
.hanch-hero__coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 9px 22px;
  border: 1px solid rgba(232,92,26,0.45);
  border-radius: 40px;
  background: rgba(232,92,26,0.1);
  /* prevent pill from being wider than content */
  width: fit-content;
  margin: 0 auto;
}

/* Pulsing orange dot */
.hanch-hero__coming-soon::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #E85C1A;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(232,92,26,0.8);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);   box-shadow: 0 0 8px rgba(232,92,26,0.8); }
  50%       { opacity: 0.35; transform: scale(0.5); box-shadow: 0 0 16px rgba(232,92,26,1); }
}

/* cs-text: fixed container — clips overflow, no flex centering issue */
.hanch-hero__cs-text {
  display: inline-block;
  position: relative;
  overflow: hidden;
  /* Sabit yükseklik ve genişlik — clip için şart */
  height: 1.2em;
  width: 100px;
  vertical-align: middle;
}

.hanch-hero__cs-en,
.hanch-hero__cs-tr {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}

/* EN visible for first half, then hides; never overlaps TR */
.hanch-hero__cs-en {
  animation: cs-en-anim 6s ease-in-out infinite;
}
/* TR hidden first half, visible second half */
.hanch-hero__cs-tr {
  animation: cs-tr-anim 6s ease-in-out infinite;
}

@keyframes cs-en-anim {
  0%   { opacity: 1;  transform: translateY(0);     }
  38%  { opacity: 1;  transform: translateY(0);     }  /* hold */
  48%  { opacity: 0;  transform: translateY(-12px); }  /* exit up */
  49%  { opacity: 0;  transform: translateY(12px);  }  /* snap below */
  99%  { opacity: 0;  transform: translateY(12px);  }  /* wait below */
  100% { opacity: 1;  transform: translateY(0);     }  /* enter */
}

@keyframes cs-tr-anim {
  0%   { opacity: 0;  transform: translateY(12px);  }  /* below, hidden */
  48%  { opacity: 0;  transform: translateY(12px);  }  /* wait */
  58%  { opacity: 1;  transform: translateY(0);     }  /* enter */
  88%  { opacity: 1;  transform: translateY(0);     }  /* hold */
  98%  { opacity: 0;  transform: translateY(-12px); }  /* exit up */
  100% { opacity: 0;  transform: translateY(12px);  }  /* snap below for next cycle */
}

/* Sub description line */
.hanch-hero__teaser-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  max-width: 340px;
  line-height: 1.55;
  margin: 0;
}

/* "Scroll ↓" arrow hint at bottom */
.hanch-hero__teaser-arrow {
  font-size: 0.7rem;
  color: rgba(232,92,26,0.5);
  letter-spacing: 0.1em;
  animation: bounce-arrow 2s ease-in-out infinite;
  margin-top: -4px;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(4px); opacity: 1; }
}

.hanch-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.hanch-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; }
}

@media (max-width: 768px) {
  .hanch-hero {
    min-height: 100svh;
    padding: calc(var(--nav-height) + 12px) 0 40px;
  }
  .hanch-hero__b2fore-teaser { padding: 20px 20px 16px; gap: 10px; }
  .hanch-hero__b2fore-logo { width: 120px; }
  .hanch-hero__cs-text { width: 80px; }
}

/* ============================================================
   B2FORE SECTION — updated (full-width, dark, dramatic)
   ============================================================ */

/* ── Reveal animation — scroll-triggered from JS ── */
@keyframes b2fore-curtain-reveal {
  0%   { clip-path: inset(0 0 100% 0); opacity: 0; }
  20%  { opacity: 1; }
  100% { clip-path: inset(0 0 0% 0);   opacity: 1; }
}
@keyframes b2fore-line-grow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
@keyframes b2fore-fade-up-stagger {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes b2fore-orange-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,92,26,0); }
  50%       { box-shadow: 0 0 60px 10px rgba(232,92,26,0.08); }
}

/* Section starts invisible, JS adds .b2fore-revealed on scroll */
.b2fore-section {
  background: #0a0a0a;
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: none;
  transition: opacity 0.1s;
}

.b2fore-section.b2fore-revealed {
  opacity: 1;
  animation: b2fore-orange-pulse 4s ease-in-out 1.2s 2;
}

.b2fore-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Left side — reveal line-by-line when .b2fore-revealed fires */
.b2fore-section__left {}

/* Eyebrow line animates in first */
.b2fore-section.b2fore-revealed .b2fore-section__eyebrow-line {
  animation: b2fore-line-grow 0.6s cubic-bezier(0.4,0,0.2,1) 0.15s both;
  transform-origin: left;
}

/* Logo slides up */
.b2fore-section.b2fore-revealed .b2fore-section__logo {
  animation: b2fore-fade-up-stagger 0.7s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}

/* Tagline */
.b2fore-section.b2fore-revealed .b2fore-section__tagline {
  animation: b2fore-fade-up-stagger 0.7s cubic-bezier(0.4,0,0.2,1) 0.48s both;
}

/* Desc */
.b2fore-section.b2fore-revealed .b2fore-section__desc {
  animation: b2fore-fade-up-stagger 0.7s cubic-bezier(0.4,0,0.2,1) 0.62s both;
}

/* Actions */
.b2fore-section.b2fore-revealed .b2fore-section__actions {
  animation: b2fore-fade-up-stagger 0.7s cubic-bezier(0.4,0,0.2,1) 0.76s both;
}

/* Right — feature cards curtain-reveal one by one */
.b2fore-section.b2fore-revealed .b2fore-feature-card:nth-child(1) {
  animation: b2fore-fade-up-stagger 0.6s cubic-bezier(0.4,0,0.2,1) 0.5s both;
}
.b2fore-section.b2fore-revealed .b2fore-feature-card:nth-child(2) {
  animation: b2fore-fade-up-stagger 0.6s cubic-bezier(0.4,0,0.2,1) 0.68s both;
}
.b2fore-section.b2fore-revealed .b2fore-feature-card:nth-child(3) {
  animation: b2fore-fade-up-stagger 0.6s cubic-bezier(0.4,0,0.2,1) 0.86s both;
}

/* Hide elements before reveal so they don't flash */
.b2fore-section:not(.b2fore-revealed) .b2fore-section__eyebrow-line,
.b2fore-section:not(.b2fore-revealed) .b2fore-section__logo,
.b2fore-section:not(.b2fore-revealed) .b2fore-section__tagline,
.b2fore-section:not(.b2fore-revealed) .b2fore-section__desc,
.b2fore-section:not(.b2fore-revealed) .b2fore-section__actions,
.b2fore-section:not(.b2fore-revealed) .b2fore-feature-card {
  opacity: 0;
}

.b2fore-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.b2fore-section__eyebrow-line {
  width: 32px; height: 1px;
  background: var(--accent);
  display: block;
}

.b2fore-section__logo {
  width: clamp(180px, 24vw, 300px);
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.b2fore-section__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 400;
}

.b2fore-section__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px;
}

.b2fore-section__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.b2fore-section__right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.b2fore-feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 22px 28px;
  transition: background 0.3s, border-color 0.3s;
}

.b2fore-feature-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,92,26,0.25);
}

.b2fore-feature-card__num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: rgba(232,92,26,0.5);
  margin-bottom: 12px;
}

.b2fore-feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
}

.b2fore-feature-card__desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .b2fore-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   ABOUT SNAPSHOT — refined visual side
   ============================================================ */
.about-snapshot__box {
  background: #f5f4f2;     /* açık krem/beyaz — logo filtresiz doğal görünsün */
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background on light box */
.about-snapshot__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-snapshot__box-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.brand-logo-display {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: block;
  /* Logo is dark on transparent — invert to white on dark bg */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.about-snapshot__logomark-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}

.about-snapshot__logomark-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.brand-logomark-display {
  width: 54px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.about-snapshot__box-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px;
}

.about-snapshot__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--light-gray);
  z-index: 2;
}

/* ============================================================
   REFERENCES — clean, no-background logos
   ============================================================ */
.refs-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.ref-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0.55;
}

.ref-logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Karbonsa: dark logo on off-white bg — render naturally, apply grayscale */
.ref-logo-item--karbonsa img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  /* The karbonsa logo has dark bg — cut it out visually */
  filter: grayscale(100%) contrast(1.2) brightness(0.9);
  mix-blend-mode: multiply;
}

/* Dener: koyu arka planlı logo — renkli göster, beyaz kart üzerinde */
.ref-logo-item--dener {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 16px 28px;
}

.ref-logo-item--dener img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  /* Renkli olarak göster — siyah zemin zaten var */
  filter: none;
  mix-blend-mode: normal;
}

.ref-logo-item:hover .ref-logo-item--karbonsa img,
.ref-logo-item--karbonsa:hover img {
  filter: none;
  mix-blend-mode: normal;
}

.ref-logo-item--dener:hover img {
  filter: none;
  mix-blend-mode: normal;
}

/* ============================================================
   CONTACT PAGE — layout & symmetry fixes
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
  border-right: 1px solid var(--off-white);
  padding-right: 48px;
}

.contact-detail {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--off-white);
}
.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-response-box {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--off-white);
  border-left: 2px solid var(--black);
}

.contact-response-box strong {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  display: block;
  margin-bottom: 6px;
}

.contact-response-box p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin: 0;
}

/* Form column full width */
.contact-form-wrap {
  min-width: 0; /* prevent grid blowout */
}

.form-section-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 6px;
  font-weight: 400;
}

.form-section-note {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-bottom: 32px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .contact-info {
    position: static;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--off-white);
    padding-bottom: 40px;
  }
}

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

/* ============================================================
   SOLUTIONS PAGE — B2FORE logo fix + Coming Soon badges
   ============================================================ */

/* Featured card: make sure B2FORE logo renders correctly (not inverted) */
.solution-card--featured .b2fore-logo-natural {
  /* b2fore-logo-clean.png is already white/color on dark bg */
  filter: none;
  width: clamp(160px, 20vw, 260px);
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.solution-card__coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.solution-card__coming-soon::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mid-gray);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Dimmed overlay for "coming soon" cards */
.solution-card--soon {
  position: relative;
}

.solution-card--soon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244,244,244,0.4);
  pointer-events: none;
}

/* ============================================================
   GLOBAL TEXT SYMMETRY UTILITIES
   ============================================================ */

/* Section headers: consistent, centered, max-width capped */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header .label { margin-bottom: 12px; }
.section-header h2     { margin-bottom: 20px; }
.section-header p      { font-size: 1rem; color: var(--mid-gray); line-height: 1.75; }

/* Page hero: consistent left-aligned, capped */
.page-hero .container > p.label { margin-bottom: 16px; }
.page-hero .container > h1 { margin-bottom: 24px; }
.page-hero .container > p:not(.label) {
  max-width: 640px;
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.75;
}



/* Sade logo panel — logo büyük ve belirgin */
.about-snapshot__logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 48px 40px;
  position: relative;
}
.about-snapshot__logo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,0,0,0.03) 0%, transparent 70%);
  pointer-events: none;
}
/* hanch-logo-full.png = beyaz/şeffaf arka plan üzerinde koyu logo
   Siyah kutu üzerinde invert ederek beyaz yapıyoruz
   opacity:1 — tam netlik, silik değil */
.about-snapshot__full-logo {
  width: clamp(260px, 36vw, 420px);
  height: auto;
  display: block;
  opacity: 1;
  position: relative;
  z-index: 1;
  /* Filtresiz — hanch-logo-full.png doğal haliyle göster */
  filter: none;
  transition: transform 0.4s ease;
}
.about-snapshot__visual:hover .about-snapshot__full-logo {
  transform: scale(1.04);
}

/* ============================================================
   HANCH v8 UPDATE PATCH
   - Hero animated background
   - Metrics redesign
   - Footer logo bigger
   - Value numbers bolder
   - Social media footer
   - B2FORE solutions redesign
   - Mission/Vision layout
   ============================================================ */

/* ── HERO ANIMATED BACKGROUND ── */
.hanch-hero {
  position: relative;
  overflow: hidden;
}

.hanch-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(232,92,26,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(232,92,26,0.05) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hanch-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGlow {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

.hanch-hero__inner {
  position: relative;
  z-index: 1;
}

/* Floating orbs */
.hanch-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hanch-hero__orb--1 {
  width: 400px; height: 400px;
  background: rgba(232,92,26,0.12);
  top: -100px; right: -80px;
  animation-delay: 0s;
}
.hanch-hero__orb--2 {
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  bottom: 80px; left: -60px;
  animation-delay: -4s;
}
.hanch-hero__orb--3 {
  width: 200px; height: 200px;
  background: rgba(232,92,26,0.07);
  top: 40%; left: 40%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.1); }
}

/* B2FORE teaser reconnected */
.hanch-hero__b2fore-teaser {
  margin-top: 56px;
  padding: 28px 36px;
  border: 1px solid rgba(232,92,26,0.25);
  border-radius: 12px;
  background: rgba(232,92,26,0.05);
  backdrop-filter: blur(8px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}
.hanch-hero__b2fore-teaser::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,92,26,0.3), transparent, rgba(232,92,26,0.1));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.hanch-hero__b2fore-teaser:hover::before { opacity: 1; }
.hanch-hero__b2fore-teaser:hover {
  border-color: rgba(232,92,26,0.5);
  background: rgba(232,92,26,0.08);
}

/* ── METRICS REDESIGN ── */
.metrics-strip {
  background: var(--charcoal);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.metrics-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,92,26,0.06) 0%, transparent 50%, rgba(232,92,26,0.03) 100%);
  pointer-events: none;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
}
.metric-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.metric-item:last-child { border-right: none; }
.metric-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.4s;
}
.metric-item:hover::after { opacity: 1; }
.metric-item__num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.metric-item__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
/* Accent the first number */
.metric-item:first-child .metric-item__num { color: var(--accent); }

/* ── FOOTER LOGO BIGGER ── */
.footer-logo-img {
  height: 52px !important;
  width: auto;
  opacity: 1 !important;
  filter: brightness(1.1);
}

/* ── VALUE NUMBERS BOLDER ── */
.value-num {
  font-family: var(--font-mono);
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  opacity: 1 !important;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

/* ── SOCIAL MEDIA FOOTER ── */
.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  color: rgba(255,255,255,0.65);
}
.footer__social-link:hover {
  background: rgba(232,92,26,0.15);
  border-color: rgba(232,92,26,0.4);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── MISSION/VISION REDESIGN ── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
}
.mv-card {
  background: var(--white);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mv-card:hover::before { transform: scaleY(1); }
.mv-card .label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--black);
  color: var(--white);
  border-radius: 2px;
  margin-bottom: 24px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}
.mv-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 18px;
  line-height: 1.25;
}
.mv-card p {
  color: var(--anthracite);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ── B2FORE SOLUTIONS REDESIGN ── */
.solution-card--featured {
  background: var(--black) !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  border-radius: 8px !important;
  padding: 48px !important;
}
.solution-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(232,92,26,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(232,92,26,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.solution-card--featured::after {
  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: 40px 40px;
  pointer-events: none;
}
.solution-card--featured .solution-card__header,
.solution-card--featured .solution-card__title,
.solution-card--featured .solution-card__desc,
.solution-card--featured .solution-card__coming-soon,
.solution-card--featured .solution-card__actions {
  position: relative;
  z-index: 1;
}
.solution-card--featured .solution-card__title {
  color: var(--white) !important;
  font-size: clamp(2rem, 3vw, 2.8rem) !important;
}
.solution-card--featured .solution-card__desc {
  color: rgba(255,255,255,0.7) !important;
  font-size: 1rem;
  line-height: 1.8;
  margin: 16px 0 28px;
}
.solution-card--featured .solution-card__logo {
  height: 48px;
  width: auto;
  filter: brightness(1.2);
}
.solution-card--featured .solution-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.solution-card--featured .solution-card__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  opacity: 1;
}
.solution-card--featured .solution-card__coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(232,92,26,0.4);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
}
.solution-card--featured .solution-card__cs-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* B2FORE actions inside solutions */
.solution-card--featured .solution-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE PATCH ── */
@media (max-width: 600px) {
  .hanch-hero__b2fore-teaser { padding: 20px 20px; }
  .metric-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .metric-item:last-child { border-bottom: none; }
  .mv-card { padding: 36px 28px; }
  .solution-card--featured { padding: 32px 24px !important; }
}


/* ============================================================
   HANCH v9 UPDATE PATCH
   ============================================================ */

/* 1. COMING SOON static pill (hero teaser) */
.hanch-hero__coming-soon {
  border-color: rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.06) !important;
}
.hanch-hero__coming-soon::before {
  background: rgba(255,255,255,0.7) !important;
  box-shadow: none !important;
  animation: pulse-dot-white 2s ease-in-out infinite !important;
}
@keyframes pulse-dot-white {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}
.hanch-hero__cs-static {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

/* 2. METRICS — antrasit renk, turuncu YOK */
.metrics-strip {
  background: var(--charcoal) !important;
}
.metrics-strip::before {
  background: linear-gradient(135deg, rgba(61,61,61,0.4) 0%, transparent 50%, rgba(61,61,61,0.2) 100%) !important;
}
.metric-item__num {
  color: var(--white) !important;
}
/* First item no longer orange */
.metric-item:first-child .metric-item__num {
  color: var(--white) !important;
}
/* Hover: grey underline accent */
.metric-item::after {
  background: rgba(255,255,255,0.4) !important;
}
.metric-item:hover {
  background: rgba(255,255,255,0.04);
}

/* 3. VALUES GRID — siteye uyumlu tasarım */
/* Override patch-added bold styles back to site-consistent */
.value-num {
  font-family: var(--font-mono) !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  color: var(--anthracite) !important;
  opacity: 1 !important;
  margin-bottom: 24px !important;
  display: block;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 16px;
  width: 40px;
}

.values-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  margin-top: 48px !important;
  border: 1px solid var(--light-gray);
}

.value-card {
  padding: 44px 36px !important;
  background: var(--white) !important;
  border-right: 1px solid var(--light-gray);
  transition: var(--transition) !important;
  position: relative;
  overflow: hidden;
}
.value-card:last-child { border-right: none; }

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-card:hover::after { transform: scaleX(1); }
.value-card:hover { background: var(--off-white) !important; box-shadow: none !important; }

.value-card h3 {
  font-size: 1.15rem !important;
  margin-bottom: 10px !important;
  color: var(--black);
}
.value-card p {
  font-size: 0.88rem;
  color: var(--anthracite);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .value-card { border-bottom: 1px solid var(--light-gray); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr !important; }
}

/* 4. B2FORE SOLUTION CARD — same size as others */
/* Remove all old featured overrides for solution cards */
.solution-card--b2fore {
  background: var(--black);
  position: relative;
  overflow: hidden;
  grid-column: span 1 !important;
  display: block !important;
  grid-template-columns: unset !important;
  gap: unset !important;
}
.solution-card--b2fore::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 0% 0%, rgba(232,92,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.solution-card--b2fore .solution-card__number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 20px;
}
.solution-card--b2fore .solution-card__b2fore-logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  filter: brightness(1.15);
}
.solution-card--b2fore .solution-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem !important;
  color: var(--white) !important;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.solution-card--b2fore .solution-card__desc {
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.solution-card--b2fore .solution-card__coming-soon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.solution-card--b2fore .solution-card__cs-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(232,92,26,0.8);
  animation: pulse 2s infinite;
}
.solution-card--b2fore .solution-card__actions {
  position: relative;
  z-index: 1;
}
.solution-card--b2fore:hover {
  background: #111 !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2) !important;
}

/* Hide old --featured card styles that could conflict */
.solution-card--featured {
  display: none !important;
}


/* ============================================================
   HANCH v9 PATCH — 4 değişiklik
   1. Coming Soon düzeltmesi (CSS)
   2. Metrics antrasit renk, gri hover
   3. Values tasarımı siteye uyumlu
   4. B2FORE solution card eşit boyut
   ============================================================ */

/* ── 1. COMING SOON static metin ── */
.hanch-hero__cs-static {
  font-family: var(--font-mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.22em !important;
  color: rgba(255,255,255,0.75) !important;
  text-transform: uppercase !important;
}
/* Eski animasyonlu EN/TR span'ları gizle (varsa) */
.hanch-hero__cs-en,
.hanch-hero__cs-tr { display: none !important; }
.hanch-hero__cs-text::after { content: 'COMING SOON'; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.22em; color: rgba(255,255,255,0.75); text-transform: uppercase; }
.hanch-hero__cs-text span { display: none; }

/* ── 2. METRİCS — antrasit, turuncu YOK ── */
.metrics-strip {
  background: var(--charcoal) !important;
}
.metrics-strip::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%) !important;
}
.metric-item__num {
  color: var(--white) !important;
}
/* İlk kartın turuncu rengini kaldır */
.metric-item:first-child .metric-item__num {
  color: var(--white) !important;
}
/* Hover accent çizgisini gri yap */
.metric-item::after {
  background: var(--anthracite) !important;
}
.metric-item:hover::after { opacity: 1; }
/* Hover arka planı antrasit gri */
.metric-item {
  transition: background 0.25s;
}
.metric-item:hover {
  background: rgba(255,255,255,0.04);
}

/* ── 3. OUR VALUES — siteyle uyumlu temiz tasarım ── */
/* Tüm önceki values patch'lerini sıfırla */
.values-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  margin-top: 48px !important;
  border: none !important;
}
.value-card {
  padding: 40px 36px !important;
  background: var(--white) !important;
  border: 1px solid var(--light-gray) !important;
  border-right: 1px solid var(--light-gray) !important;
  border-bottom: none;
  box-shadow: none !important;
  transition: var(--transition) !important;
  position: relative !important;
  overflow: hidden !important;
}
.value-card::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important;
  width: 100% !important; height: 3px !important;
  background: var(--black) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1) !important;
}
.value-card:hover::after { transform: scaleX(1) !important; }
.value-card:hover {
  background: var(--off-white) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
}
.value-num {
  font-family: var(--font-mono) !important;
  font-size: 0.68rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.22em !important;
  color: var(--mid-gray) !important;
  opacity: 1 !important;
  margin-bottom: 20px !important;
  display: block !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  width: auto !important;
  text-transform: uppercase;
}
.value-card h3 {
  font-size: 1.2rem !important;
  margin-bottom: 12px !important;
  color: var(--black) !important;
}
.value-card p {
  font-size: 0.9rem !important;
  color: var(--anthracite) !important;
  line-height: 1.75 !important;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr !important; }
}

/* ── 4. B2FORE SOLUTION CARD — diğer kartlarla eşit boyut ── */
/* Önceki büyük featured override'ları sıfırla */
.solution-card--featured {
  background: var(--black) !important;
  grid-column: span 1 !important;
  display: block !important;
  padding: 40px 36px !important;
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
}
.solution-card--featured::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(232,92,26,0.14) 0%, transparent 60%) !important;
  pointer-events: none !important;
}
.solution-card--featured::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  pointer-events: none !important;
}
.solution-card--featured > * { position: relative; z-index: 1; }

/* Featured card içindeki mini feature grid'i gizle (aşırı yer kaplıyor) */
.solution-card--featured .b2fore-mini-grid { display: none !important; }

/* Featured içindeki başlık ve desc stilleri */
.solution-card--featured .solution-card__title,
.solution-card--featured h2 {
  font-size: clamp(1.4rem, 2vw, 1.75rem) !important;
  color: var(--white) !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
}
.solution-card--featured .solution-card__desc,
.solution-card--featured p {
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
}
.solution-card--featured .solution-card__number {
  font-family: var(--font-mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.16em !important;
  color: var(--accent) !important;
  opacity: 1 !important;
  display: block !important;
  margin-bottom: 14px !important;
}
.solution-card--featured .solution-card__logo {
  height: 36px !important;
  width: auto !important;
  margin-bottom: 16px !important;
  display: block !important;
}
.solution-card--featured .solution-card__header {
  display: block !important;
  margin-bottom: 0 !important;
}
.solution-card--featured .solution-card__actions {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-bottom: 16px !important;
}
/* Coming soon pill inside featured */
.solution-card--featured .solution-card__coming-soon {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 4px !important;
  padding: 5px 12px !important;
  border: 1px solid rgba(232,92,26,0.35) !important;
  border-radius: 20px !important;
  color: var(--accent) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  background: transparent !important;
}

/* Büyük inline style grid'i (4 mini kart) gizle */
.solution-card--featured [style*="grid-template-columns:1fr 1fr"] {
  display: none !important;
}

/* b2fore.ai link - ayrı göster */
.solution-card--featured .b2fore-ext-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.solution-card--featured .b2fore-ext-link:hover { opacity: 1; }


/* ============================================================
   HANCH v10 PATCH
   1. Hero B2FORE Teaser — dramatic redesign
   2. Solutions page — B2FORE featured + uniform grid
   ============================================================ */

/* ─────────────────────────────────────────
   1. HERO TEASER — yeni tasarım
   ───────────────────────────────────────── */

/* Ana kapsayıcıyı sıfırla ve yeniden tanımla */
.hanch-hero__b2fore-teaser {
  margin-top: 64px !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  backdrop-filter: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  max-width: 580px !important;
  width: 100% !important;
  position: relative !important;
  overflow: visible !important;
}
.hanch-hero__b2fore-teaser::before,
.hanch-hero__b2fore-teaser::after { display: none !important; }

/* Eyebrow */
.hanch-hero__teaser-eyebrow {
  font-family: var(--font-mono) !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.3) !important;
  margin-bottom: 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.hanch-hero__teaser-eyebrow::before,
.hanch-hero__teaser-eyebrow::after {
  content: '' !important;
  display: block !important;
  width: 28px !important;
  height: 1px !important;
  background: rgba(255,255,255,0.18) !important;
}

/* B2FORE Logo */
.hanch-hero__b2fore-logo {
  width: clamp(140px, 18vw, 220px) !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 24px !important;
}

/* Çarpıcı başlık cümlesi */
.hanch-hero__teaser-headline {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem) !important;
  color: var(--white) !important;
  line-height: 1.35 !important;
  text-align: center !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.01em !important;
}
.hanch-hero__teaser-headline em {
  font-style: italic !important;
  color: var(--accent) !important;
}

/* COMING SOON pill — dikkat çekici */
.hanch-hero__teaser-cs-wrap {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 22px !important;
  border: 1px solid var(--accent) !important;
  border-radius: 40px !important;
  margin-bottom: 20px !important;
  background: rgba(232,92,26,0.08) !important;
  animation: pulseBorder 2.5s ease-in-out infinite !important;
}
@keyframes pulseBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,92,26,0.35); }
  50%       { box-shadow: 0 0 0 6px rgba(232,92,26,0); }
}

.hanch-hero__teaser-cs-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: var(--accent) !important;
  display: inline-block !important;
  animation: dotPulse 1.6s ease-in-out infinite !important;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hanch-hero__teaser-cs-text {
  font-family: var(--font-mono) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.24em !important;
  color: var(--accent) !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}

/* Açıklama metni */
.hanch-hero__teaser-desc {
  font-family: var(--font-sans) !important;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.38) !important;
  letter-spacing: 0.06em !important;
  text-align: center !important;
  margin-bottom: 20px !important;
}

/* Aşağı ok */
.hanch-hero__teaser-arrow {
  font-size: 1rem !important;
  color: rgba(255,255,255,0.2) !important;
  animation: bounceDown 2s ease-in-out infinite !important;
  display: block !important;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.2; }
  50%       { transform: translateY(6px); opacity: 0.5; }
}

/* ─────────────────────────────────────────
   2. SOLUTIONS — B2FORE featured row
   ───────────────────────────────────────── */
.sol-b2fore-featured {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
}
.sol-b2fore-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(232,92,26,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(232,92,26,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.sol-b2fore-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.sol-b2fore-featured__left,
.sol-b2fore-featured__right {
  position: relative;
  z-index: 1;
}
.sol-b2fore-featured__left {
  padding: 52px 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.sol-b2fore-featured__right {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.sol-b2fore-featured__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sol-b2fore-featured__logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.sol-b2fore-featured__desc {
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.62) !important;
  line-height: 1.8 !important;
  margin-bottom: 28px !important;
}

.sol-b2fore-featured__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Right column */
.sol-b2fore-featured__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(232,92,26,0.4);
  border-radius: 30px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: fit-content;
  animation: pulseBorder 2.5s ease-in-out infinite;
}
.sol-b2fore-featured__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 1.6s ease-in-out infinite;
}

.sol-b2fore-featured__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sol-b2fore-feat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sol-b2fore-feat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sol-b2fore-feat-item__n {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
  width: 20px;
}
.sol-b2fore-feat-item__t {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
}

.sol-b2fore-featured__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
  width: fit-content;
}
.sol-b2fore-featured__link:hover { color: var(--accent); }

/* ─────────────────────────────────────────
   Solutions uniform 3-col grid
   ───────────────────────────────────────── */
.solutions-grid-uniform {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3px;
}

.sol-card {
  background: var(--off-white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.25s, box-shadow 0.25s;
  position: relative;
}
.sol-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.sol-card:hover { background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.sol-card:hover::after { transform: scaleX(1); }

.sol-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.sol-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 400;
}
.sol-card__desc {
  font-size: 0.87rem;
  color: var(--anthracite);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}
.sol-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}
.sol-card__cs-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mid-gray);
  display: inline-block;
  flex-shrink: 0;
}
.sol-card__cs-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--mid-gray);
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .sol-b2fore-featured {
    grid-template-columns: 1fr;
  }
  .sol-b2fore-featured__left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 40px 32px;
  }
  .sol-b2fore-featured__right { padding: 40px 32px; }
  .solutions-grid-uniform { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .solutions-grid-uniform { grid-template-columns: 1fr; }
  .sol-b2fore-featured__left,
  .sol-b2fore-featured__right { padding: 32px 24px; }
  .hanch-hero__b2fore-teaser { margin-top: 48px !important; }
}


/* ============================================================
   HANCH v11 PATCH
   1. B2FORE merged hero section
   2. Hero hint arrow (teaser removed)
   3. Dener logo — no background needed
   4. Solutions B2FORE logo larger
   ============================================================ */

/* ── Hero hint (scroll indicator replacing teaser) ── */
.hanch-hero__b2fore-hint {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hanch-hero__b2fore-hint-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hanch-hero__b2fore-hint-label::before,
.hanch-hero__b2fore-hint-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.hanch-hero__b2fore-hint-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.18);
  animation: bounceDown 2s ease-in-out infinite;
}

/* ── B2FORE MERGED SECTION ── */
.b2fore-merged {
  background: var(--black) !important;
  padding: 0 !important;
  display: block !important;
}

/* Top band */
.b2fore-merged__top {
  padding: 72px 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.b2fore-merged__top::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 15% 50%, rgba(232,92,26,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(232,92,26,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.b2fore-merged__top::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.b2fore-merged__top-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 56px;
}

.b2fore-merged__eyebrow-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.b2fore-merged__eyebrow-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.b2fore-merged__logo {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 28px;
}

.b2fore-merged__headline {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  color: var(--white) !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  margin: 0 !important;
}
.b2fore-merged__headline em {
  font-style: italic !important;
  color: var(--accent) !important;
}

/* Right side of top band */
.b2fore-merged__top-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  padding-bottom: 8px;
}

.b2fore-merged__cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border: 1px solid var(--accent);
  border-radius: 40px;
  width: fit-content;
  background: rgba(232,92,26,0.08);
  animation: pulseBorder 2.5s ease-in-out infinite;
}
.b2fore-merged__cs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.b2fore-merged__cs-pill span:last-child {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}

.b2fore-merged__sub {
  font-family: var(--font-serif) !important;
  font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.5 !important;
  font-style: italic !important;
  margin: 0 !important;
}

/* Bottom band — existing b2fore section desc + features */
.b2fore-merged__bottom {
  padding: 64px 0;
}
/* Remove old b2fore section bg since parent is already black */
.b2fore-merged .b2fore-section__inner {
  padding: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .b2fore-merged__top-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .b2fore-merged__top-right { align-items: flex-start; }
}
@media (max-width: 600px) {
  .b2fore-merged__top { padding: 48px 0 0; }
  .b2fore-merged__top-inner { padding-bottom: 40px; }
  .b2fore-merged__headline { font-size: 1.7rem !important; }
}

/* ── Dener logo — no dark bg needed ── */
.ref-logo-item--dener {
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.ref-logo-item--dener img {
  height: 52px !important;
  width: auto !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  object-fit: contain !important;
}

/* ── Solutions B2FORE logo larger ── */
.sol-b2fore-featured__logo {
  height: 56px !important;
  width: auto !important;
  display: block !important;
  margin-bottom: 24px !important;
}


/* ============================================================
   HANCH v12 — Tasarım Bütünlüğü Revizyonu
   1. Hero: turuncu kaldır, saf siyah/beyaz
   2. B2FORE: logo büyük, düzenli layout
   3. Geçiş: siyah → beyaz
   4. Solutions B2FORE logo büyütme
   ============================================================ */

/* ── 1. HERO — turuncu tamamen kaldır ── */
.hanch-hero__orb--1 { background: rgba(255,255,255,0.04) !important; }
.hanch-hero__orb--2 { background: rgba(255,255,255,0.03) !important; }
.hanch-hero__orb--3 { background: rgba(255,255,255,0.03) !important; }

.hanch-hero::before {
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(255,255,255,0.02) 0%, transparent 50%) !important;
}

/* Hero scroll indicator — gizle */
.hanch-hero__scroll { display: none !important; }

/* Hero hint (Flagship Product ↓) — gizle */
.hanch-hero__b2fore-hint { display: none !important; }

/* Hero divider — gizle */
.hanch-hero__divider { display: none !important; }

/* ── 2. B2FORE MERGED — tamamen yeniden ── */

/* Siyahtan beyaza geçiş için wrapper */
.b2fore-merged {
  background: var(--black) !important;
  position: relative;
}

/* Alt kısımda beyaza yumuşak geçiş */
.b2fore-merged::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 120px !important;
  background: linear-gradient(to bottom, transparent, var(--white)) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* Grid doku sadece B2FORE alanında */
.b2fore-merged__top::after {
  opacity: 0.6 !important;
}

/* Üst bant layout — daha kompakt ve dengeli */
.b2fore-merged__top {
  padding: 80px 0 64px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.b2fore-merged__top-inner {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 80px !important;
  align-items: center !important;
  padding-bottom: 0 !important;
}

/* Sol: eyebrow + BÜYÜK logo + headline */
.b2fore-merged__eyebrow-label {
  font-size: 0.58rem !important;
  letter-spacing: 0.24em !important;
  margin-bottom: 28px !important;
  color: rgba(255,255,255,0.45) !important;
}
.b2fore-merged__eyebrow-label::before {
  opacity: 0.4 !important;
}

/* B2FORE LOGO — çok daha büyük */
.b2fore-merged__logo {
  height: auto !important;
  width: clamp(200px, 30vw, 320px) !important;
  display: block !important;
  margin-bottom: 32px !important;
}

.b2fore-merged__headline {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem) !important;
  line-height: 1.18 !important;
  color: var(--white) !important;
  margin: 0 !important;
}
.b2fore-merged__headline em {
  color: var(--accent) !important;
  font-style: italic !important;
}

/* Sağ: coming soon + tagline — dikey ortalı */
.b2fore-merged__top-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  padding-left: 40px !important;
  border-left: 1px solid rgba(255,255,255,0.08) !important;
}

.b2fore-merged__cs-pill {
  padding: 12px 28px !important;
  font-size: 0 !important; /* içeriği child span'lardan al */
}
.b2fore-merged__cs-pill span:last-child {
  font-size: 0.75rem !important;
  letter-spacing: 0.28em !important;
  font-weight: 600 !important;
}
.b2fore-merged__cs-dot {
  width: 9px !important;
  height: 9px !important;
}

.b2fore-merged__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem) !important;
  color: rgba(255,255,255,0.45) !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  font-family: var(--font-serif) !important;
}

/* Alt bant — özellik kartları */
.b2fore-merged__bottom {
  padding: 64px 0 96px !important;
  position: relative;
  z-index: 1;
}

/* B2FORE desc sol kısımda daha büyük */
.b2fore-merged .b2fore-section__desc {
  font-size: 1.05rem !important;
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.85 !important;
  margin-bottom: 36px !important;
}

/* Feature card başlıkları turuncu → beyaz accent */
.b2fore-feature-card__title {
  color: var(--white) !important;
}
.b2fore-feature-card__num {
  color: var(--accent) !important;
}

/* ── 3. BRIDGE — beyaz arka plan, temiz geçiş ── */
.hanch-bridge {
  background: var(--white) !important;
  position: relative;
  z-index: 3; /* b2fore gradient geçişinin üstünde */
  padding-top: 0 !important; /* gradient transition kapsar */
  margin-top: 0 !important;
}

/* ── 4. SOLUTIONS B2FORE LOGO — büyük ve okunabilir ── */
.sol-b2fore-featured__logo {
  height: 72px !important;
  width: auto !important;
  display: block !important;
  margin-bottom: 28px !important;
  max-width: 100% !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .b2fore-merged__top-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .b2fore-merged__top-right {
    padding-left: 0 !important;
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    padding-top: 32px !important;
  }
  .b2fore-merged__logo {
    width: clamp(160px, 50vw, 240px) !important;
  }
}


/* ── v12b: B2FORE new bottom layout ── */

/* Sub desc ve actions sağ kolonda */
.b2fore-merged__sub-desc {
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.48) !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

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

/* Feature cards — horizontal 3-col row */
.b2fore-merged__cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2px !important;
  margin-top: 0 !important;
  position: relative;
  z-index: 1;
}

/* Ensure feature cards look right in this context */
.b2fore-merged__cards .b2fore-feature-card {
  border: 1px solid rgba(255,255,255,0.07) !important;
  padding: 36px 32px !important;
  background: rgba(255,255,255,0.025) !important;
}
.b2fore-merged__cards .b2fore-feature-card:first-child {
  border-top-left-radius: 0;
}

/* Fade-to-white on the entire b2fore-merged section bottom */
.b2fore-merged {
  padding-bottom: 0 !important;
  overflow: visible !important;
}

/* Bridge section sits directly below with proper bg */
.hanch-bridge {
  background: var(--white) !important;
  padding-top: 80px !important;
}

@media (max-width: 768px) {
  .b2fore-merged__cards {
    grid-template-columns: 1fr !important;
  }
  .b2fore-merged__top-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .b2fore-merged__top-right {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    padding-top: 28px !important;
  }
}


/* ============================================================
   HANCH v13 — Soft transitions + Solutions logo fix
   ============================================================ */

/* ── HERO: siyahtan aşağıya yumuşak geçiş ── */
.hanch-hero {
  padding-bottom: 0 !important;
  position: relative;
}
.hanch-hero::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 180px !important;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(13,13,13,0.6) 40%,
    rgba(13,13,13,0.95) 80%,
    #0D0D0D 100%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  /* grid texture override — turn off */
  background-image: none !important;
  mask-image: none !important;
}
/* Make sure hero inner is above fade */
.hanch-hero__inner { z-index: 2 !important; }

/* ── HERO → B2FORE geçişi: kesintisiz siyah ── */
.b2fore-merged {
  background: var(--black) !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow: hidden !important;
}
/* Sadece en altta beyaza geçiş — uzun ve çok yumuşak */
.b2fore-merged::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 200px !important;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,0.05) 30%,
    rgba(255,255,255,0.35) 55%,
    rgba(255,255,255,0.75) 75%,
    #FFFFFF 100%
  ) !important;
  pointer-events: none !important;
  z-index: 2 !important;
  background-image: none !important;
}
/* Bridge section padding absorbs the gradient */
.hanch-bridge {
  background: var(--white) !important;
  padding-top: 60px !important;
  position: relative;
  z-index: 3 !important;
}

/* ── BRIDGE → METRICS (beyaz → antrasit): yumuşak ── */
.metrics-strip {
  position: relative;
}
.metrics-strip::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 80px !important;
  background: linear-gradient(to bottom, var(--white), transparent) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}
.metrics-strip > * { position: relative; z-index: 2; }

/* ── METRICS → sonraki section (antrasit → off-white): yumuşak ── */
.metrics-strip::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 80px !important;
  background: linear-gradient(to bottom, transparent, var(--off-white)) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  /* Metrics patch'teki bottom accent line'ı geçersiz kıl */
  background-image: none !important;
}

/* ── SOLUTIONS B2FORE LOGO — 3.5x büyük ── */
/* 72px * 3.5 ≈ 252px ama çok geniş olmasın, genişliğe göre ayarla */
.sol-b2fore-featured__logo {
  height: auto !important;
  width: clamp(180px, 40%, 260px) !important;
  display: block !important;
  margin-bottom: 28px !important;
  max-width: 100% !important;
}


/* ============================================================
   HANCH v14
   1. Metrics geçiş efektlerini kaldır
   2. (Solutions HTML'de yapılacak)
   ============================================================ */

/* Metrics üst/alt gradient geçişlerini tamamen kaldır */
.metrics-strip::before {
  display: none !important;
}
.metrics-strip::after {
  display: none !important;
}


/* ── B2FORE sol-card — dark, same size as others ── */
.sol-card--b2fore {
  background: var(--black) !important;
  position: relative;
  overflow: hidden;
}
.sol-card--b2fore::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 0% 0%, rgba(232,92,26,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.sol-card--b2fore::after {
  /* override hover underline color */
  background: var(--accent) !important;
}
.sol-card--b2fore:hover { background: #111 !important; }

.sol-card--b2fore .sol-card__num {
  color: var(--accent) !important;
}
.sol-card--b2fore .sol-card__desc {
  color: rgba(255,255,255,0.55) !important;
}
.sol-card--b2fore .sol-card__footer {
  border-top-color: rgba(255,255,255,0.1) !important;
}
.sol-card--b2fore .sol-card__cs-dot {
  background: var(--accent) !important;
}
.sol-card--b2fore .sol-card__cs-label {
  color: var(--accent) !important;
}

/* B2FORE logo inside sol-card */
.sol-card__b2fore-logo {
  width: clamp(100px, 55%, 160px);
  height: auto;
  display: block;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* b2fore.ai external link */
.sol-card__ext-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.sol-card__ext-link:hover { color: var(--accent); }

/* Make sure all sol-card children are above ::before pseudo */
.sol-card--b2fore > * { position: relative; z-index: 1; }


/* ============================================================
   HANCH v15
   1. Headline renk düzeltmesi: "Satışta..." beyaz, "Yapay Zeka." turuncu
   2. Sol-card eşit yükseklik / B2FORE logo boyutu sabit
   ============================================================ */

/* Headline: em → turuncu, normal metin → beyaz */
.b2fore-merged__headline {
  color: var(--white) !important;
}
.b2fore-merged__headline em {
  color: var(--accent) !important;
  font-style: italic !important;
}

/* JS data-key ile render edilen HTML içindeki em tag'i de yakala */
[data-key="b2fore_game_changer"] em {
  color: var(--accent) !important;
  font-style: italic !important;
}

/* Sol-card — tüm kartlar eşit min-height ile hizalanır */
.solutions-grid-uniform {
  align-items: stretch;
}
.sol-card {
  min-height: 280px;
}

/* B2FORE logo solutions kartında — net boyut */
.sol-card__b2fore-logo {
  width: 140px !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 20px !important;
}


/* ============================================================
   HANCH v16
   1. Headline — beyaz / turuncu split
   2. B2FORE ext link
   3. Sol-card eşit yükseklik (grid stretch)
   ============================================================ */

/* Headline iki renk */
.b2fore-merged__hl-white {
  color: var(--white);
  font-family: var(--font-serif);
  font-style: normal;
}
.b2fore-merged__hl-orange {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
}

/* b2fore.ai dış link — tanıtım bölümünde */
.b2fore-merged__ext-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.b2fore-merged__ext-link:hover {
  color: var(--accent);
}

/* ── Sol-card — kartlar tam eşit yükseklikte ── */
/* Grid'i stretch moduna al — tüm kartlar en uzun karta göre uzar */
.solutions-grid-uniform {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 3px !important;
  align-items: stretch !important;
}

/* Her kart flex column — içerik desc'i büyütsün, footer hep altta kalsın */
.sol-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: unset !important; /* otomatik uzasın */
  height: 100% !important;
  box-sizing: border-box !important;
}

/* desc flex-grow ile boşluğu doldursun */
.sol-card .sol-card__desc {
  flex: 1 !important;
}

/* Footer ve ext-link hep en altta */
.sol-card .sol-card__footer {
  margin-top: auto !important;
}

/* B2FORE kart logosunu dondur — boyut değişmesin */
.sol-card__b2fore-logo {
  width: 140px !important;
  height: auto !important;
  flex-shrink: 0 !important;
}

/* Responsive */
@media (max-width: 900px) {
  .solutions-grid-uniform {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .solutions-grid-uniform {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   HANCH v17
   1. service-card__number → process-step__num stiliyle eşit
   2. sol-card — 6 kart tam eşit yükseklik (grid row stretch)
   3. Logo dosya isimleri güncellendi (CSS'de referans varsa)
   ============================================================ */

/* ── Services numaraları — Nasıl Çalışıyoruz ile aynı stil ── */
.service-card__number {
  font-family: var(--font-mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.18em !important;
  color: var(--mid-gray) !important;
  margin-bottom: 20px !important;
}

/* ── Sol-card eşit yükseklik — kökten çözüm ──
   Grid her satırdaki kartları stretch ile eşit yüksekliğe getirir.
   Flex column + desc flex-grow ile footer hep altta kalır. */
.solutions-grid-uniform {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 3px !important;
  /* stretch: her hücre row yüksekliğini doldurur */
  align-items: stretch !important;
  /* Tüm 6 kart 2 row'a bölünür, her row kendi içinde eşit */
  grid-auto-rows: 1fr !important;
}

.sol-card {
  /* height: 100% ile grid hücresini tam doldur */
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 40px 36px !important;
  box-sizing: border-box !important;
  min-height: unset !important;
}

/* desc büyüsün — boşluğu doldursun */
.sol-card .sol-card__desc {
  flex: 1 1 auto !important;
  margin-bottom: 0 !important;
}

/* footer hep altta */
.sol-card .sol-card__footer {
  margin-top: 24px !important;
  flex-shrink: 0 !important;
}

/* B2FORE kartında ext-link de altta */
.sol-card--b2fore .sol-card__ext-link {
  margin-top: 12px !important;
  flex-shrink: 0 !important;
}

/* B2FORE logo — boyutu sabit tut, kart boyutunu zorlamasın */
.sol-card__b2fore-logo {
  width: 140px !important;
  height: auto !important;
  flex-shrink: 0 !important;
  margin-bottom: 16px !important;
}

/* Responsive */
@media (max-width: 900px) {
  .solutions-grid-uniform {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: auto !important;
  }
}
@media (max-width: 600px) {
  .solutions-grid-uniform {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
  }
}

/* ================================================================
   LOGO SYSTEM v20 — Tüm logo boyutları ve düzeltmeler
   SVG'ler artık şeffaf zemin: siyah mark, beyaz footer logo
   ================================================================ */

/* ── 1. NAV LOGO MARK (hanch-logo-mark-black.svg) ─────────────── */
/* Şeffaf zemin üzerinde siyah mark — nav beyaz bg'de mükemmel */
.nav__logo-img {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain !important;
  filter: none !important;
  display: block !important;
}

/* ── 2. FOOTER FULL LOGO (hanch-full-logo-white.svg) ──────────── */
/* Şeffaf zemin üzerinde beyaz mark — footer koyu bg'de mükemmel */
.footer-logo-img {
  height: 90px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
  display: block !important;
  margin-bottom: 20px !important;
}

/* ── 3. B2FORE HERO LOGO (b2fore-logo-white.svg) ───────────────── */
.b2fore-merged__logo {
  width: clamp(240px, 28vw, 360px) !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 28px !important;
}

/* ── 4. SOLUTIONS CARD B2FORE LOGO ─────────────────────────────── */
.sol-card__b2fore-logo,
.sol-card--b2fore .sol-card__b2fore-logo {
  width: clamp(110px, 60%, 160px) !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 14px !important;
  flex-shrink: 0 !important;
}

/* ── 5. ABOUT SNAPSHOT LOGO ────────────────────────────────────── */
.about-snapshot__full-logo {
  width: clamp(240px, 35vw, 380px) !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* ── 6. REFERENCES: KARBONSA ───────────────────────────────────── */
/* Şeffaf zemin + siyah logo — açık bg'de doğal görünür */
.ref-logo-item--karbonsa img {
  height: 72px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 0.75 !important;
  mix-blend-mode: normal !important;
  transition: opacity 0.25s !important;
}
.ref-logo-item--karbonsa:hover img,
.ref-logo-item:hover .ref-logo-item--karbonsa img {
  opacity: 1 !important;
}

/* ── 7. REFERENCES: DENER ──────────────────────────────────────── */
/* Siyah bg KALDIRILDI — şeffaf zemin + siyah logo */
.ref-logo-item--dener {
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.ref-logo-item--dener img {
  height: 72px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 0.75 !important;
  mix-blend-mode: normal !important;
  transition: opacity 0.25s !important;
}
.ref-logo-item--dener:hover img {
  opacity: 1 !important;
}

/* ── 8. SOLUTIONS GRID — Kare-ish küçük kartlar ────────────────── */
/* Hedef: viewport'ta tüm 6 kart görünsün (scroll olmadan)         */
/* 2 row × kart yüksekliği + gap ≤ ~760px available height         */
/* Her kart: ~340px yükseklik, 3 sütun                             */
.solutions-grid-uniform {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 3px !important;
  align-items: stretch !important;
  grid-auto-rows: minmax(300px, 340px) !important;
}

.sol-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 28px 28px !important;
  box-sizing: border-box !important;
  min-height: unset !important;
}

.sol-card .sol-card__desc {
  flex: 1 1 auto !important;
  font-size: 0.82rem !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

.sol-card .sol-card__footer {
  margin-top: auto !important;
  padding-top: 14px !important;
  flex-shrink: 0 !important;
}

.sol-card__title {
  font-size: 1.05rem !important;
  margin-bottom: 10px !important;
}

.sol-card__num {
  margin-bottom: 14px !important;
}

.sol-card--b2fore .sol-card__ext-link {
  margin-top: 10px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 900px) {
  .solutions-grid-uniform {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: auto !important;
  }
}
@media (max-width: 600px) {
  .solutions-grid-uniform {
    grid-template-columns: 1fr !important;
  }
}


/* ── 9. SOLUTIONS PAGE — kartlar viewport'a sığsın ─────────────── */
/* Page hero daha kompakt */
.solutions-page .page-hero,
section.page-hero + section .solutions-grid-uniform,
solutions-page .page-hero {
  padding-top: calc(var(--nav-height) + 40px) !important;
  padding-bottom: 40px !important;
}

/* Solutions section üst/alt padding azalt */
.solutions-grid-section {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.page-hero--compact {
  padding: calc(var(--nav-height) + 36px) 0 28px !important;
}

/* ── REFERENCES LOGO SIZE ×3 ────────────────────────────────────── */
.ref-logo-item--karbonsa img {
  height: 216px !important;
  max-width: 500px !important;
}
.ref-logo-item--dener img {
  height: 216px !important;
  max-width: 500px !important;
}
