/*
Theme Name: Albitat Et Theme
Theme URI: https://albitatet.com
Description: Albitat Et ve Et Ürünleri - Modern et entegre tesisi kurumsal web sitesi teması
Version: 1.0.0
Author: Albitat
Text Domain: albitat
*/

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #475569;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff
}

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

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

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

ul,
ol {
  list-style: none
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit
}


/* ===== CSS VARIABLES ===== */
:root {
  --primary-50: #fef2f2;
  --primary-100: #fee2e2;
  --primary-200: #fecaca;
  --primary-300: #fca5a5;
  --primary-400: #f87171;
  --primary-500: #ef4444;
  --primary-600: #dc2626;
  --primary-700: #b91c1c;
  --primary-800: #991b1b;
  --primary-900: #7f1d1d;
  --steel-50: #f8fafc;
  --steel-100: #f1f5f9;
  --steel-200: #e2e8f0;
  --steel-300: #cbd5e1;
  --steel-400: #94a3b8;
  --steel-500: #64748b;
  --steel-600: #475569;
  --steel-700: #334155;
  --steel-800: #1e293b;
  --steel-900: #0f172a;
  --amber-400: #fbbf24;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0/.1), 0 8px 10px -6px rgb(0 0 0/.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0/.25);
}

/* ===== TYPOGRAPHY ===== */
.font-heading {
  font-family: var(--font-heading)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1
}

/* ===== LAYOUT ===== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem
}

.container-sm {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem
}

/* ===== UTILITIES ===== */
.red-line {
  width: 3.5rem;
  height: 3px;
  background: var(--primary-600);
  border-radius: 9999px
}

.text-primary {
  color: var(--primary-600)
}

.text-primary-400 {
  color: var(--primary-400)
}

.text-primary-300 {
  color: var(--primary-300)
}

.text-primary-500 {
  color: var(--primary-500)
}

.bg-primary {
  background: var(--primary-600)
}

.text-steel-300 {
  color: var(--steel-300)
}

.text-steel-400 {
  color: var(--steel-400)
}

.text-steel-500 {
  color: var(--steel-500)
}

.text-steel-600 {
  color: var(--steel-600)
}

.text-steel-800 {
  color: var(--steel-800)
}

.text-white {
  color: #fff
}

.text-center {
  text-align: center
}

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

/* ===== GLASS EFFECTS ===== */
.glass-light {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06)
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
}

.site-nav.transparent {
  background: transparent;
  padding: 1.25rem 0;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: .75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  position: relative;
  display: inline-block;
  width: 190px;
  height: 68px;
  flex-shrink: 0;
}

.nav-logo .logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .35s ease;
}

.site-nav.transparent .logo-white {
  opacity: 1;
}

.site-nav.transparent .logo-dark {
  opacity: 0;
}

.site-nav.scrolled .logo-white {
  opacity: 0;
}

.site-nav.scrolled .logo-dark {
  opacity: 1;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .025em;
  transition: color .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  border-radius: 9999px;
  transition: width .3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.site-nav.transparent .nav-link {
  color: rgba(255, 255, 255, .92);
}

.site-nav.transparent .nav-link:hover,
.site-nav.transparent .nav-link.active {
  color: #fff;
}

.site-nav.scrolled .nav-link {
  color: var(--steel-600);
}

.site-nav.scrolled .nav-link:hover,
.site-nav.scrolled .nav-link.active {
  color: var(--primary-600);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: .5rem;
  transition: all .3s;
  letter-spacing: .025em;
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}

.site-nav.transparent .nav-cta {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}

.site-nav.transparent .nav-cta:hover {
  background: rgba(255, 255, 255, .2);
}

.site-nav.scrolled .nav-cta {
  background: var(--primary-600);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, .2);
}

.site-nav.scrolled .nav-cta:hover {
  background: var(--primary-700);
}

.mobile-toggle {
  color: #fff;
  transition: color .3s;
}

.site-nav.scrolled .mobile-toggle {
  color: var(--steel-700);
}

.mobile-menu {
  overflow: hidden;
  transition: max-height .5s, opacity .5s;
  max-height: 0;
  opacity: 0;
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

.mobile-menu-inner {
  background: #fff;
  margin: .75rem 1rem 0;
  padding: 1.5rem;
  border-radius: .75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--steel-100);
}

.mobile-menu a,
.mobile-menu button {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--steel-600);
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: all .2s;
  width: 100%;
  text-align: left;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.mobile-menu a.active {
  color: var(--primary-600);
  background: var(--primary-50);
}

.mobile-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--primary-600) !important;
  color: #fff !important;
  margin-top: 1rem;
  font-weight: 600 !important;
}

.mobile-cta:hover {
  background: var(--primary-700) !important;
}

@media(min-width:768px) {
  .nav-cta {
    display: inline-flex;
  }
}

@media(min-width:1024px) {
  .nav-links {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0
}


.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, .9), rgba(15, 23, 42, .7), rgba(15, 23, 42, .4))
}


.hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .6), transparent, rgba(15, 23, 42, .3))
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 8rem 0
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(220, 38, 38, .2);
  border: 1px solid rgba(220, 38, 38, .3);
  backdrop-filter: blur(4px);
  color: var(--primary-300);
  padding: .5rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 2rem
}

.hero-badge-dot {
  width: .5rem;
  height: .5rem;
  background: var(--primary-400);
  border-radius: 9999px;
  animation: pulse 2s infinite
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.1
}

.hero-title span {
  color: var(--primary-400);
  text-shadow: 0 0 20px rgba(255, 80, 80, 0.4);
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--steel-300);
  max-width: 36rem;
  line-height: 1.7
}

.hero-desc strong {
  color: #fff;
  font-weight: 500
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--primary-600);
  color: #fff;
  padding: 1rem 2rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .025em;
  border-radius: .5rem;
  transition: all .3s
}

.btn-primary:hover {
  background: var(--primary-700);
  box-shadow: 0 10px 25px rgba(220, 38, 38, .3)
}

.btn-primary svg {
  width: 1rem;
  height: 1rem;
  transition: transform .3s
}

.btn-primary:hover svg {
  transform: translateX(4px)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: 1rem 2rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .025em;
  border-radius: .5rem;
  transition: all .3s;
  backdrop-filter: blur(4px)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1)
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 5rem
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: .75rem
}

.hero-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(4px);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .1);
  flex-shrink: 0
}

.hero-feature-icon svg {
  color: var(--primary-400);
  width: 18px;
  height: 18px
}

.hero-feature-title {
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  display: block
}

.hero-feature-sub {
  color: var(--steel-400);
  font-size: .75rem;
  display: block
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .5);
  animation: float 3s ease-in-out infinite
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase
}

@media(min-width:640px) {
  .hero-buttons {
    flex-direction: row
  }
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1220;
  color: #fff;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, .9), rgba(15, 23, 42, .75), rgba(15, 23, 42, .5))
}

.page-hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 32, 0.88) 0%, rgba(8, 16, 32, 0.46) 58%, rgba(8, 16, 32, 0.18) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 2.5rem 0 2.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem
}

.page-hero-content-main {
  max-width: 680px;
}

.page-hero-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff5a5f;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 4.8vw, 3.5rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.page-hero-sub {
  margin-top: .5rem;
  color: var(--steel-300);
  font-size: 1.1rem;
  max-width: 36rem
}


.page-hero-line {
  margin-top: 1rem;
  height: 4px;
  width: 3.5rem;
  background: var(--primary-500);
  border-radius: 9999px
}

@media(min-width:768px) {
  .page-hero {
    height: 20.5rem
  }
}


.about-final-cta {
  padding: 110px 0 90px;
  background: linear-gradient(180deg, #0b1220 0%, #101a2d 100%);
  color: #fff;
  text-align: center;
}

.about-final-cta-inner {
  max-width: 860px;
  margin: 0 auto;
}

.about-final-cta h2 {
  margin: 0 auto 18px;
  max-width: 780px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.14;
  color: #fff;
}

.about-final-cta p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}

.about-final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-process {
  padding: 110px 0;
  background: #f7f7f8;
}

.about-process-head {
  max-width: 820px;
  margin-bottom: 48px;
}

.about-process-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #111827;
}

.about-process-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #4b5563;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  padding: 32px 26px;
  border-radius: 24px;
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.06);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.12);
  border-color: rgba(255, 90, 95, 0.16);
}



.process-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ff5a5f;
}

.process-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.3;
  color: #111827;
}

.process-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
}

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

@media (max-width: 767px) {
  .about-process {
    padding: 80px 0;
  }

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

.about-proof {
  padding: 110px 0;
  background: linear-gradient(180deg, #0b1220 0%, #111a2e 100%);
  color: #fff;
}

.about-proof-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.about-proof-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
}

.about-proof-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.74);
}

.about-proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.proof-stat {
  padding: 34px 24px;
  border-radius: 24px;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.proof-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.proof-stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.proof-stat span {
  display: block;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991px) {
  .about-proof {
    padding: 80px 0;
  }

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

@media (max-width: 575px) {
  .about-proof-stats {
    grid-template-columns: 1fr;
  }
}


.about-quote-cta {
  position: relative;
  padding: 110px 0 140px;
  background: #f7f7f8;
  overflow: hidden;
}

.about-quote-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom,
      rgba(247, 247, 248, 0) 0%,
      rgba(14, 24, 45, 0.18) 45%,
      #091326 100%);
  pointer-events: none;
}

.about-quote-cta-box {
  position: relative;
  z-index: 2;
  padding: 72px 32px;
  border-radius: 32px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 15, 30, 0.88) 0%, rgba(18, 30, 52, 0.82) 55%, rgba(159, 24, 24, 0.72) 100%),
    url('https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?w=1600&q=80') center/cover no-repeat;
  color: #fff;
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.22),
    0 8px 24px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-quote-cta-box::after {
  content: "";
  position: absolute;
  inset: auto 10% -80px 10%;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 90, 95, 0.18) 0%, rgba(255, 90, 95, 0) 70%);
  filter: blur(24px);
  z-index: -1;
}

.about-quote-mark {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.22);
}

.about-quote-cta-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff8a8e;
}

.about-quote-cta-box h2 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
  color: #fff;
}

.about-quote-cta-box h2 span {
  color: #ff8a8e;
}

.about-quote-cta-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84);
}

.about-quote-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.about-quote-cta-actions .btn-primary,
.about-quote-cta-actions .btn-outline {
  min-width: 180px;
}

@media (max-width: 767px) {
  .about-quote-cta {
    padding: 80px 0;
  }

  .about-quote-cta-box {
    padding: 56px 22px;
    border-radius: 24px;
  }
}



/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0
}

.section-lg {
  padding: 6rem 0
}

.section-label {
  color: var(--primary-600);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase
}

.section-label-light {
  color: var(--primary-400)
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  margin-top: .75rem
}

.section-title-light {
  color: #fff
}

/* ================================================================
   KALITE v2 — Final
   ================================================================ */

/* ──────── 1 · EDITORIAL INTRO ──────── */
.q2-editorial-intro {
  position: relative;
  padding: 7.5rem 0 6.5rem;
  background: linear-gradient(180deg, #fcfbf9 0%, #f6f3ee 100%);
}

.q2-editorial-intro__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: start;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(17, 24, 39, .08);
}

@media (min-width: 1024px) {
  .q2-editorial-intro__top {
    grid-template-columns: .88fr 1.12fr;
    gap: 5.5rem;
    padding-bottom: 3rem;
  }
}

.q2-editorial-intro__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  margin-top: 5rem;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-500)
}


.q2-editorial-intro__title {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: .97;
  letter-spacing: -.045em;
  color: #111827;
}

.q2-editorial-intro__title span {
  color: var(--primary-600);
}

.q2-editorial-intro__lead {
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.85;
  color: #1f2937;
  margin-bottom: 1rem;
}

.q2-editorial-intro__right p {
  max-width: 60ch;
  font-size: 1.03rem;
  line-height: 1.95;
  color: #4b5563;
}

.q2-editorial-intro__right p+p {
  margin-top: 1rem;
}

.q2-editorial-intro__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  padding-top: 2.2rem;
}

@media (min-width: 768px) {
  .q2-editorial-intro__bottom {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.q2-editorial-intro__item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.q2-editorial-intro__label {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-600);
}

.q2-editorial-intro__text {
  font-size: .97rem;
  line-height: 1.85;
  color: #4b5563;
}

.q2-editorial-intro__note {
  margin-top: 2.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(17, 24, 39, .06);
  font-size: .98rem;
  line-height: 1.85;
  color: #374151;
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .q2-editorial-intro {
    padding: 5rem 0 4.5rem;
  }

  .q2-editorial-intro__title {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .q2-editorial-intro__lead {
    font-size: 1.06rem;
  }

  .q2-editorial-intro__note {
    margin-top: 1.8rem;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

/* ──────── 2 · PILLARS ──────── */
.q2-pillars {
  position: relative;
  padding: 6.5rem 0 7rem;
  background: linear-gradient(172deg, #0d1526 0%, #131d33 48%, #1a1226 100%);
  overflow: hidden;
}

.q2-pillars__noise {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .28) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.q2-pillars__eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary-400);
  margin-bottom: .5rem;
}

.q2-pillars__head {
  margin-bottom: 3.5rem;
}

.q2-pillars__head h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-top: .2rem;
}

.q2-pillars__head h2 span {
  color: var(--primary-400);
}

.q2-pillars__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .q2-pillars__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.q2-pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 20.5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
  overflow: hidden;
}

.q2-pillar-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(220, 38, 38, .2);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .24);
}

.q2-pillar-card__stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.q2-pillar-card:hover .q2-pillar-card__stripe {
  transform: scaleX(1);
}

.q2-pillar-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.q2-pillar-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, .12);
  color: var(--primary-400);
  transition: background .3s, transform .3s;
}

.q2-pillar-card:hover .q2-pillar-card__icon {
  background: rgba(220, 38, 38, .22);
  transform: scale(1.08);
}

.q2-pillar-card__num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, .05);
}

.q2-pillar-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.q2-pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .7rem;
}

.q2-pillar-card p {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .58);
}

.q2-pillar-card__progress {
  margin-top: auto;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}

.q2-pillar-card__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
  border-radius: 999px;
  transition: width .6s ease;
}

.q2-pillar-card:hover .q2-pillar-card__progress span {
  width: 100%;
}

/* ──────── 3 · PROCESS ──────── */
.q2-process {
  position: relative;
  padding: 7rem 0 5rem;
  background: linear-gradient(180deg, #f9fafb 0%, #f4f2ee 100%);
  overflow: hidden;
}

.q2-process__deco-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.q2-process__head {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.q2-process__head h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
  margin-top: .5rem;
}

.q2-process__head h2 span {
  font-size: 1.3em;
  font-weight: 900;
  color: var(--primary-600);
}

.q2-process__head p {
  margin-top: .9rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #5b6472;
  max-width: 540px;
}

.q2-process__river {
  position: relative;
  margin-bottom: 3.25rem;
}



.q2-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 1.75rem;
}

.q2-step__dot {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(220, 38, 38, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  transition: all .35s ease;
  z-index: 2;
}

.q2-step__dot-icon {
  color: var(--primary-500);
  display: flex;
}

.q2-step:hover .q2-step__dot {
  background: var(--primary-600);
  border-color: var(--primary-500);
  box-shadow: 0 0 22px rgba(220, 38, 38, .25);
}

.q2-step:hover .q2-step__dot-icon {
  color: #fff;
}

.q2-step__body {
  flex: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .95) 100%);
  border: 1px solid rgba(17, 24, 39, .07);
  border-radius: 1.4rem;
  padding: 2rem 1.7rem;
  box-shadow: 0 18px 46px rgba(17, 24, 39, .08);
  transition: all .32s ease;
}

.q2-step:hover .q2-step__body {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(17, 24, 39, .12);
  border-color: rgba(220, 38, 38, .16);
}

.q2-step__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--primary-500);
  margin-bottom: .3rem;
}

.q2-step__body h3 {
  font-family: var(--font-heading);
  font-size: 1.14rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: .5rem;
}

.q2-step__body p {
  font-size: .92rem;
  line-height: 1.8;
  color: #5b6472;
}

@media (min-width: 1024px) {
  .q2-process__river {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .q2-process__line {
    display: block;
    position: absolute;
    left: 50%;
    top: 1rem;
    bottom: 1rem;
    width: 3px;
    background: linear-gradient(180deg,
        rgba(220, 38, 38, .10) 0%,
        rgba(220, 38, 38, .28) 20%,
        rgba(220, 38, 38, .22) 80%,
        rgba(220, 38, 38, .10) 100%);
    transform: translateX(-50%);
  }

  .q2-step {
    width: 50%;
    gap: 0;
    margin-bottom: 2.2rem;
  }

  .q2-step--left {
    align-self: flex-start;
    flex-direction: row-reverse;
    padding-right: 3rem;
  }

  .q2-step--right {
    align-self: flex-end;
    padding-left: 3rem;
  }


  .q2-step--left .q2-step__dot {
    right: -1.425rem;
  }

  .q2-step--right .q2-step__dot {
    left: -1.425rem;
  }

  .q2-step--left .q2-step__body {
    text-align: right;
  }
}

/* Guarantee */
.q2-guarantee {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf9 100%);
  border: 1px solid rgba(220, 38, 38, .12);
  border-radius: 1.35rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 40px rgba(17, 24, 39, .07);
  text-align: center;
}

@media (min-width: 768px) {
  .q2-guarantee {
    flex-direction: row;
    text-align: left;
  }
}

.q2-guarantee__icon {
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, .11), rgba(220, 38, 38, .05));
  border: 1px solid rgba(220, 38, 38, .16);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-500);
}

.q2-guarantee h4 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: .25rem;
}

.q2-guarantee p {
  color: #5b6472;
  font-size: .86rem;
  line-height: 1.75;
}

/* ──────── 4 · STATS ──────── */
.q2-stats {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.q2-stats__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 50%, #7f1d1d 100%);
}

.q2-stats__pattern {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    repeating-linear-gradient(90deg,
      transparent,
      transparent 59px,
      rgba(255, 255, 255, .5) 59px,
      rgba(255, 255, 255, .5) 60px);
  pointer-events: none;
}

.q2-stats__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .q2-stats__row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.q2-stats__cell {
  position: relative;
}

.q2-stats__cell::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, .15);
}

.q2-stats__cell:last-child::after,
.q2-stats__cell:nth-child(2)::after {
  display: none;
}

@media (min-width: 768px) {
  .q2-stats__cell:nth-child(2)::after {
    display: block;
  }
}

.q2-stats__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.q2-stats__value--text {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: 0;
  line-height: 1.15;
}

.q2-stats__label {
  display: block;
  margin-top: .65rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}

/* ──────── 5 · CERTIFICATES ──────── */
.q2-certs {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfc 100%);
  border: 1px solid rgba(17, 24, 39, .05);
  border-radius: 1.5rem;
  padding: 2.6rem 1.6rem 2.05rem;
  text-align: center;
  box-shadow: 0 12px 36px rgba(17, 24, 39, .045);
  transition: all .35s ease;
  overflow: hidden;
}

.q2-certs__head {
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.q2-certs__head h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #111827;
  margin-top: .5rem;
  line-height: 1.1;
}

.q2-certs__head p {
  margin-top: .8rem;
  font-size: .96rem;
  line-height: 1.8;
  color: #5b6472;
}

.q2-certs__mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .q2-certs__mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .q2-certs__mosaic {
    grid-template-columns: repeat(4, 1fr);
  }
}

.q2-cert {
  position: relative;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .05);
  border-radius: 1.5rem;
  padding: 2.5rem 1.6rem 2rem;
  text-align: center;
  box-shadow: 0 10px 36px rgba(17, 24, 39, .04);
  transition: all .35s ease;
  overflow: hidden;
}

.q2-cert__top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}

.q2-cert:hover .q2-cert__top-accent {
  transform: scaleX(1);
}

.q2-cert:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(17, 24, 39, .1);
  border-color: rgba(220, 38, 38, .1);
}

.q2-cert__badge {
  position: relative;
  display: inline-flex;
  margin-bottom: 1.2rem;
}

.q2-cert__badge-inner {
  width: 4rem;
  height: 4rem;
  border-radius: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary-50), rgba(220, 38, 38, .08));
  color: var(--primary-600);
  position: relative;
  z-index: 1;
  transition: all .35s;
}

.q2-cert:hover .q2-cert__badge-inner {
  background: linear-gradient(145deg, var(--primary-100), rgba(220, 38, 38, .16));
  transform: scale(1.06);
}

.q2-cert__badge-ring {
  position: absolute;
  inset: -8px;
  border-radius: 1.5rem;
  background: radial-gradient(circle, rgba(220, 38, 38, .1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}

.q2-cert:hover .q2-cert__badge-ring {
  opacity: 1;
}

.q2-cert h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-600);
  margin-bottom: .15rem;
}

.q2-cert__sub {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--steel-500);
  margin-bottom: .85rem;
}

.q2-cert p {
  font-size: .84rem;
  line-height: 1.7;
  color: var(--steel-500);
}

/* ──────── 6 · CTA ──────── */
.q2-cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.q2-cta__visual {
  position: absolute;
  inset: 0;
}

.q2-cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.q2-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(8, 14, 28, .93) 0%,
      rgba(15, 23, 42, .84) 50%,
      rgba(127, 29, 29, .72) 100%);
}

.q2-cta__content {
  position: relative;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.q2-cta__quote {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .1);
  line-height: .5;
  margin-bottom: 1.25rem;
}

.q2-cta__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
}

.q2-cta__content h2 span {
  color: var(--primary-400);
}

.q2-cta__content p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .74);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.q2-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

/* ──────── RESPONSIVE POLISH ──────── */
@media (max-width: 767px) {
  .q2-manifesto {
    padding: 4.5rem 0 4rem;
  }

  .q2-pillars {
    padding: 4.5rem 0 5rem;
  }

  .q2-process {
    padding: 4.5rem 0 4rem;
  }

  .q2-certs {
    padding: 4.5rem 0 4rem;
  }

  .q2-cta {
    padding: 5rem 0;
  }

  .q2-manifesto__bg-word {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .q2-stats__value--text {
    font-size: 1.35rem;
  }
}

/* =========================================================
   ABOUT PAGE FINAL
   ========================================================= */
/* ===== About Intro ===== */

.about-intro {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding-bottom: 200px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-intro-left h2 {
  margin: 0 0 23px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  color: #111827;
}

.about-intro-left h2 span {
  color: var(--primary-600)
}

.about-intro-left p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.9;
  color: #4b5563;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-500)
}

.section-eyebrow2 {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-500)
}


.about-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: #111827;
}

.about-intro-right p:first-child {
  color: #3f4754;
}

.about-intro-right p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.95;
  color: #5b6472;
}

.about-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-intro-point {
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.about-intro-right p:last-child {
  margin-bottom: 0;
}

.about-intro-image-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 30px 30px 50px rgba(133, 124, 124, 0.3);
}


.about-intro-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}


@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-intro {
    padding: 80px 0;
  }
}

/* About Problem */

.about-problem-solution {
  padding: 110px 0;
  background: linear-gradient(to bottom right, var(--steel-800), var(--steel-900), #450a0a);
  padding: 6rem 0;
}

.about-problem-solution,
.about-proof {
  position: relative;
  overflow: hidden;
}

.about-problem-solution-head {
  max-width: 820px;
  margin-bottom: 48px;
}

.about-problem-solution-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  color: #fff;
}

.about-problem-solution-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.74);
}

.about-problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-problem-card,
.about-solution-card {
  padding: 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.about-problem-card h3,
.about-solution-card h3 {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
}

.about-problem-card ul,
.about-solution-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-problem-card li,
.about-solution-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.about-problem-card li::before,
.about-solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a5f;
}

.about-problem-card li:last-child,
.about-solution-card li:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-problem-solution {
    padding: 80px 0;
  }

  .about-problem-solution-grid {
    grid-template-columns: 1fr;
  }
}


/* About Page */
.aboutpage-main-section {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  overflow: hidden;
}

.aboutpage-main-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.06);
  filter: blur(40px);
  pointer-events: none;
}

.aboutpage-section-heading {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.aboutpage-center-line {
  margin: .75rem auto 0;
}

.aboutpage-left-line {
  margin: 1.25rem 0 1.5rem;
}

.aboutpage-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 4rem;
  align-items: center;
}

.aboutpage-image-wrap {
  position: relative;
}

.aboutpage-image {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.aboutpage-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.aboutpage-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .30), transparent 55%);
}

.aboutpage-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--steel-800);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

.aboutpage-exp {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  min-width: 140px;
  min-height: 140px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 16px 36px rgba(220, 38, 38, 0.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.aboutpage-exp-num {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.aboutpage-exp-label {
  margin-top: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  opacity: .95;
}

.aboutpage-deco {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 5rem;
  height: 5rem;
  border: 2px solid rgba(220, 38, 38, 0.20);
  border-radius: 1rem;
  z-index: -1;
}

.aboutpage-text .label {

  color: var(--primary-500);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
}



.aboutpage-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--steel-800);
  margin-top: .5rem;
  line-height: 1.2
}

.aboutpage-text h3 span {
  color: var(--primary-600);
}

.aboutpage-text p {
  margin-top: 1rem;
  color: var(--steel-500);
  line-height: 1.8;
  font-size: 1rem;
}

.aboutpage-text a {
  color: var(--primary-600);
  font-weight: 700;
  text-decoration: none;
}

.aboutpage-text a:hover {
  text-decoration: underline;
}

.aboutpage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.aboutpage-stat {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.aboutpage-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1;
}

.aboutpage-stat-label {
  display: block;
  margin-top: .5rem;
  font-size: .82rem;
  color: var(--steel-500);
  font-weight: 600;
}

/* ---------------------------------------------------------
   COMMON BLOCK HEADING
   --------------------------------------------------------- */
.section-block-heading {
  max-width: 760px;
  margin: 0 auto 3.2rem;

}

.section-block-desc {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--steel-500);
  line-height: 1.8;
  font-size: 1rem;
}

.section-block-desc-centered {
  max-width: 760px;
  margin: 1rem auto 0;
  text-align: center;
}


.section-title2 {
  font-family: var(--font-heading);
  color: #000000;
  font-size: clamp(1.875rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-top: .75rem
}

.section-title3 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: clamp(1.875rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-top: .75rem
}

/* ---------- 3. Mission & Vision ---------- */
.abt2-mv {
  background: linear-gradient(to bottom right, var(--steel-800), var(--steel-900), #450a0a);
  padding: 6rem 0;
}

.abt2-mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.abt2-mv-card {
  position: relative;
  background: var(--steel-50);
  border: 1px solid var(--steel-100);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  transition: all .35s ease;
  overflow: hidden;
}

.abt2-mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  border-radius: 0 0 4px 4px;
  transition: height .4s ease;
}

.abt2-mv-card:hover::before {
  height: 100%;
}

.abt2-mv-icon--mission+h3~p {}

/* specificity anchor */
.abt2-mv-card:nth-child(1)::before {
  background: linear-gradient(180deg, var(--primary-500), var(--primary-700));
}

.abt2-mv-card:nth-child(2)::before {
  background: linear-gradient(180deg, var(--steel-600), var(--steel-800));
}

.abt2-mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, .10);
  border-color: rgba(220, 38, 38, .12);
}

.abt2-mv-icon-wrap {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.abt2-mv-icon--mission {
  background: rgba(220, 38, 38, .1);
  color: var(--primary-600);
}

.abt2-mv-icon--vision {
  background: rgba(30, 41, 59, .08);
  color: var(--steel-700);
}

.abt2-mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--steel-800);
  margin-bottom: .75rem;
}

.abt2-mv-card p {
  color: var(--steel-500);
  line-height: 1.8;
  font-size: .95rem;
}

@media(min-width:768px) {
  .abt2-mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ---------------------------------------------------------
   WHY US 
   --------------------------------------------------------- */
.why-us-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}


.info-card {
  display: grid;
  height: 100%;
  min-height: 260px;
  position: relative;
  background: #fff;
  border: 1px solid rgba(42, 15, 15, 0.06);
  border-radius: 1.2rem;
  padding: 2rem 2rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}



.info-card:hover {
  transform: translateX(-8px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
  border-color: rgba(220, 38, 38, 0.14);

}

.info-card:hover::before {
  opacity: 1;
}

/* Çizgi */
.info-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(180deg, var(--primary-500), var(--primary-700));
  transition: width .4s ease;
  border-radius: 999px;
}

/* Hover animasyonu */
.info-card:hover::after {
  width: 100%;
}

.info-card-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.08);
  color: var(--primary-600);
  margin-bottom: 1rem;
}

.info-card h3 {
  margin: 0 0 .8rem;
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--steel-800);
}

.info-card p {
  margin: 0;
  color: var(--steel-500);
  line-height: 1.75;
}


/* ---------------------------------------------------------
   SECTORS
   --------------------------------------------------------- */
.sectors-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}


.sector-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-top: 2rem;
}

.section2-label {
  color: var(--primary-600);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase
}

.section2-label-light {
  color: var(--primary-400)
}

.sector-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: var(--steel-50);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--steel-700);
  font-size: .95rem;
  font-weight: 600;
  transition: all .28s ease;
}

.sector-pill:hover {
  background: #fff;
  border-color: rgba(220, 38, 38, 0.20);
  color: var(--primary-700);
  transform: translateY(-2px);
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */
.about-cta-section {
  padding: 2rem 0 6rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-cta-box {
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 1.6rem;
  padding: 3.5rem 2.25rem;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 23, 52, 0.90), rgba(220, 38, 38, 0.85)),
    url('https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?w=1400&q=80') center/cover;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.about-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .18));
  pointer-events: none;
}

.about-cta-box>* {
  position: relative;
  z-index: 1;
}

.about-cta-box .section-label {
  color: rgba(255, 255, 255, 0.80);
}

.about-cta-box h2 {
  margin: .8rem 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.about-cta-box p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
  font-size: 1rem;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-cta-actions .btn-primary {
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.30);
}

.btn-outline-dark {
  min-height: 54px;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .9rem;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  transition: all .28s ease;
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}


/* ---------- 6. Full-Bleed Quote ---------- */


.v3-quote {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.v3-quote-bg {
  padding: 2rem 0 6rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.v3-quote-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .25) 1px, transparent 0);
  background-size: 32px 32px;
}

.v3-quote-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.v3-quote-mark {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  color: var(--primary-700);
  line-height: .6;
  opacity: .35;
  margin-bottom: -1rem;
}

.v3-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.v3-quote-text h2 {
  margin: .8rem 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.v3-quote-text em {
  font-style: normal;
  color: var(--primary-400);
}

.v3-quote-meta {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.v3-quote-line {
  width: 2.5rem;
  height: 2px;
  background: var(--primary-500);
  border-radius: 999px;
}

.v3-quote-meta span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--steel-400);
}


/*/////////*

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  gap: 5rem;
  align-items: center
}

.about-image-wrap {
  position: relative
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl)
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .3), transparent)
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(4px);
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--steel-800)
}

.about-exp {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--primary-600);
  color: #fff;
  padding: 1.5rem;
  border-radius: .75rem;
  box-shadow: 0 10px 25px rgba(220, 38, 38, .3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.about-exp-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700
}

.about-exp-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9
}

.about-deco {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 5rem;
  height: 5rem;
  border: 2px solid var(--primary-200);
  border-radius: 1rem;
  z-index: -1
}

.about-text .label {
  color: var(--primary-500);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .025em
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--steel-800);
  margin-top: .5rem;
  line-height: 1.2
}

.about-text h3 span {
  color: var(--primary-600)
}

.about-text p {
  color: var(--steel-500);
  line-height: 1.7;
  margin-top: 1rem
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem
}

.about-stat {
  background: var(--steel-50);
  border-radius: .75rem;
  padding: 1rem;
  text-align: center
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-600)
}

.about-stat-label {
  font-size: .75rem;
  color: var(--steel-500);
  margin-top: .25rem;
  font-weight: 500;
  display: block
}

@media(min-width:1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-exp {
    right: -1.5rem
  }
}

/* ===== STATS COUNTER ===== */
.stats-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--steel-800), var(--steel-900), #450a0a)
}

.stats-dots {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .15) 1px, transparent 0);
  background-size: 40px 40px
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem
}

.stat-item {
  text-align: center
}

.stat-icon {
  font-size: 1.875rem;
  margin-bottom: .75rem
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff
}

.stat-line {
  width: 2rem;
  height: 2px;
  background: var(--primary-500);
  margin: .75rem auto;
  border-radius: 9999px
}

.stat-label {
  color: var(--steel-300);
  font-size: .75rem;
  letter-spacing: .1em;
  font-weight: 500
}

@media(min-width:768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1024px) {
  .stats-grid {
    grid-template-columns: repeat(6, 1fr)
  }
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--steel-50);
  border-radius: 1rem;
  padding: 2rem 3rem 3rem;
  text-align: center;
  border: 1px solid var(--steel-100)
}

.testimonial-quote {
  color: var(--primary-200);
  margin-bottom: 1.5rem
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: .25rem;
  margin-bottom: 1.5rem
}

.testimonial-stars svg {
  color: var(--amber-400);
  fill: var(--amber-400);
  width: 18px;
  height: 18px
}

.testimonial-text {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--steel-600);
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 300;
  font-style: italic
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto .75rem;
  box-shadow: 0 4px 14px rgba(220, 38, 38, .2)
}

.testimonial-avatar span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--steel-800)
}

.testimonial-role {
  color: var(--primary-600);
  font-size: .875rem;
  margin-top: .25rem;
  font-weight: 500
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem
}

.testimonial-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--steel-200);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-500);
  transition: all .3s
}

.testimonial-btn:hover {
  background: var(--primary-600);
  color: #fff;
  border-color: var(--primary-600)
}

.testimonial-dots {
  display: flex;
  gap: .5rem
}

.testimonial-dot {
  height: .625rem;
  border-radius: 9999px;
  transition: all .3s;
  background: var(--steel-200)
}

.testimonial-dot.active {
  width: 2rem;
  background: var(--primary-600)
}

.testimonial-dot:not(.active) {
  width: .625rem
}

.testimonial-dot:hover {
  background: var(--steel-300)
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden
}

.cta-bg {
  position: absolute;
  inset: 0
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, .9), rgba(15, 23, 42, .8), rgba(69, 10, 10, .8))
}

.cta-content {
  position: relative;
  text-align: center
}

.cta-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-top: 1rem;
  line-height: 1.2
}

.cta-title span {
  color: var(--primary-400)
}

.cta-desc {
  margin-top: 1.25rem;
  color: var(--steel-300);
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--primary-600);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .025em;
  border-radius: .5rem;
  transition: all .3s;
  box-shadow: 0 10px 25px rgba(220, 38, 38, .3)
}

.btn-cta-primary:hover {
  background: var(--primary-700)
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .025em;
  border-radius: .5rem;
  transition: all .3s;
  backdrop-filter: blur(4px)
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, .2)
}

@media(min-width:640px) {
  .cta-buttons {
    flex-direction: row
  }
}

/* ===== FEATURE CARDS ===== */

.feature-cards-section {
  background: #fff;
  padding: 5rem 0;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 5rem
}

.feature-card {
  background: #fff;
  border: 1px solid var(--steel-100);
  border-radius: .75rem;
  padding: 1.75rem;
  transition: all .3s
}

.feature-card:hover {
  border-color: var(--primary-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl)
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-50);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .3s
}

.feature-card:hover .feature-icon {
  background: var(--primary-100)
}

.feature-icon svg {
  color: var(--primary-600);
  width: 26px;
  height: 26px
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--steel-800);
  margin-bottom: .5rem
}

.feature-card p {
  color: var(--steel-500);
  font-size: .875rem;
  line-height: 1.6
}

@media(min-width:640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

/* ===== PRODUCT CARDS ===== */
.product-group-grid {
  display: grid;
  gap: 1.25rem
}

.product-group-card {
  position: relative;
  height: 18rem;
  border-radius: 1rem;
  overflow: hidden;
  display: block
}

.product-group-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1)
}

.product-group-card:hover img {
  transform: scale(1.08)
}

.product-group-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .95), rgba(15, 23, 42, .4), transparent);
  transition: all .5s
}

.product-group-card:hover .overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, .9), rgba(15, 23, 42, .4), rgba(69, 10, 10, .2))
}

.product-group-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem
}

.product-group-card .badge {
  display: inline-block;
  background: rgba(220, 38, 38, .8);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .25rem .625rem;
  border-radius: .375rem;
  margin-bottom: .75rem
}

.product-group-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  transition: color .3s
}

.product-group-card:hover h3 {
  color: var(--primary-300)
}

.product-group-card .desc {
  color: var(--steel-300);
  font-size: .875rem;
  margin-top: .5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 20rem
}

.product-group-card .link {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  color: var(--primary-400);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .025em;
  transition: color .2s
}

.product-group-card:hover .link {
  color: var(--primary-300)
}

.product-group-card .link-arrow {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: rgba(220, 38, 38, .4);
  border: 1px solid rgba(220, 38, 38, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s
}

.product-group-card:hover .link-arrow {
  background: var(--primary-600);
  border-color: var(--primary-600)
}

.product-group-card .num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
  transition: color .5s
}

.product-group-card:hover .num {
  color: rgba(255, 255, 255, .1)
}

@media(min-width:640px) {
  .product-group-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .product-group-card {
    height: 20rem
  }
}

/* ===== PRODUCT DETAIL GRID ===== */
.product-detail-section {
  min-height: 60vh;
  padding: 4rem 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%)
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem
}

.product-item {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  cursor: pointer
}

.product-item .thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--steel-800)
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.product-item:hover img {
  transform: scale(1.1)
}

.product-item .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(69, 10, 10, 0);
  transition: all .4s;
  display: flex;
  align-items: center;
  justify-content: center
}

.product-item:hover .hover-overlay {
  background: rgba(69, 10, 10, .5)
}

.product-item .zoom-icon {
  opacity: 0;
  transition: all .3s;
  transform: scale(.75)
}

.product-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1)
}

.product-item .zoom-icon span {
  width: 2.75rem;
  height: 2.75rem;
  background: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl)
}

.product-item .name-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem;
  background: linear-gradient(to top, var(--steel-900), rgba(15, 23, 42, .85), transparent)
}

.product-item .name-bar p {
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.2;
  transition: color .2s
}

.product-item:hover .name-bar p {
  color: var(--primary-300)
}

@media(min-width:640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
  }
}

@media(min-width:1280px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr)
  }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--steel-900);
  border-bottom: 1px solid var(--steel-800);
  padding: .75rem 0
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem
}

.breadcrumb a {
  color: var(--steel-400);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .375rem
}

.breadcrumb a:hover {
  color: var(--primary-400)
}

.breadcrumb .sep {
  color: var(--steel-600)
}

.breadcrumb .current {
  color: #fff;
  font-weight: 500
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .96);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s
}

.lightbox.active {
  display: flex
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .2s;
  z-index: 51
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .2)
}

.lightbox-counter {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .15em
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s;
  z-index: 51
}

.lightbox-prev {
  left: 1rem
}

.lightbox-next {
  right: 1rem
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-600);
  border-color: var(--primary-600)
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
  opacity: .3;
  cursor: default
}

.lightbox-prev:disabled:hover,
.lightbox-next:disabled:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .15)
}

.lightbox-img {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: .75rem;
  box-shadow: var(--shadow-2xl)
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center
}

.lightbox-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff
}

.lightbox-caption .line {
  margin: .5rem auto 0;
  height: 2px;
  width: 2.5rem;
  background: var(--primary-500);
  border-radius: 9999px
}

@media(min-width:768px) {
  .lightbox-prev {
    left: 2rem
  }

  .lightbox-next {
    right: 2rem
  }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  auto-rows: 180px
}

.gallery-item {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  cursor: pointer
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.gallery-item:hover img {
  transform: scale(1.1)
}

.gallery-item .gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0);
  transition: all .5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(1rem)
}

.gallery-item:hover .gallery-hover {
  background: rgba(15, 23, 42, .6);
  opacity: 1;
  transform: translateY(0)
}

.gallery-item .gallery-hover h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-top: .75rem
}

.gallery-item .gallery-hover span {
  color: var(--primary-300);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500
}

.gallery-item.span-2 {
  grid-column: span 2
}

.gallery-item.span-r2 {
  grid-row: span 2
}

@media(min-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    auto-rows: 220px
  }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  gap: 3rem
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.contact-item {
  display: flex;
  gap: 1rem
}

.contact-item-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-50);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s
}

.contact-item:hover .contact-item-icon {
  background: var(--primary-100)
}

.contact-item-icon svg {
  color: var(--primary-600);
  width: 20px;
  height: 20px
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  color: var(--steel-800);
  margin-bottom: .125rem
}

.contact-item p {
  color: var(--steel-500);
  font-size: .875rem
}

.contact-form {
  background: var(--steel-50);
  border-radius: 1rem;
  border: 1px solid var(--steel-100);
  padding: 2rem
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem
}

.form-group label {
  display: block;
  font-size: .75rem;
  letter-spacing: .025em;
  color: var(--steel-600);
  margin-bottom: .375rem;
  font-weight: 600
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: .5rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  color: var(--steel-800);
  transition: all .2s;
  outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .1)
}

.form-group textarea {
  resize: none
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--steel-400)
}

.btn-submit {
  width: 100%;
  background: var(--primary-600);
  color: #fff;
  padding: 1rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .025em;
  border-radius: .5rem;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: none;
  cursor: pointer
}

.btn-submit:hover {
  background: var(--primary-700);
  box-shadow: 0 4px 14px rgba(220, 38, 38, .3)
}

@media(min-width:768px) {
  .form-row {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr
  }
}

/* ===== QUALITY PROCESS ===== */
.process-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #0f172a 100%)
}

.process-grid {
  display: grid;
  gap: 2rem
}

.process-step {
  display: flex;
  gap: 1.25rem
}

.process-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3)
}

.process-icon svg {
  color: #fff;
  width: 24px;
  height: 24px
}

.process-num {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 800;
  color: var(--primary-500);
  letter-spacing: .15em
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-top: .25rem;
  margin-bottom: .5rem
}

.process-step p {
  color: var(--steel-400);
  font-size: .875rem;
  line-height: 1.6
}

.process-guarantee {
  margin-top: 3.5rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  backdrop-filter: blur(4px)
}

.process-guarantee-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(220, 38, 38, .2);
  border: 1px solid rgba(220, 38, 38, .3);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.process-guarantee h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem
}

.process-guarantee p {
  color: var(--steel-400);
  font-size: .875rem;
  line-height: 1.6
}

@media(min-width:768px) {
  .process-guarantee {
    flex-direction: row
  }
}

@media(min-width:1024px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem
  }
}

/* ===== QUALITY STATS BAR ===== */
.quality-stats {
  padding: 4rem 0;
  background: var(--primary-600);
  position: relative;
  overflow: hidden
}

.quality-stats-dots {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .3) 1px, transparent 0);
  background-size: 28px 28px
}

.quality-stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center
}

.quality-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff
}

.quality-stat-line {
  width: 2rem;
  height: 2px;
  background: rgba(255, 255, 255, .4);
  border-radius: 9999px;
  margin: .75rem auto
}

.quality-stat-label {
  color: rgba(255, 255, 255, .8);
  font-size: .75rem;
  letter-spacing: .1em;
  font-weight: 500
}

@media(min-width:768px) {
  .quality-stats-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

/* ===== CERTIFICATES ===== */
.cert-grid {
  display: grid;
  gap: 1.5rem
}

.cert-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--steel-100);
  transition: all .3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05)
}

.cert-card:hover {
  border-color: var(--primary-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl)
}

.cert-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-50);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background .3s
}

.cert-card:hover .cert-icon {
  background: var(--primary-100)
}

.cert-icon svg {
  color: var(--primary-600);
  width: 28px;
  height: 28px
}

.cert-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-600);
  margin-bottom: .25rem
}

.cert-card p {
  color: var(--steel-500);
  font-size: .75rem;
  line-height: 1.5
}

@media(min-width:640px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .cert-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

/* ===== QUALITY CTA BANNER ===== */
.quality-cta {
  margin-top: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  height: 14rem
}

.quality-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.quality-cta .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, .92), rgba(15, 23, 42, .6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  text-align: center
}

.quality-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2
}

.quality-cta h3 span {
  color: var(--primary-400)
}

.quality-cta p {
  color: var(--steel-300);
  font-size: .875rem
}

@media(min-width:768px) {
  .quality-cta .overlay {
    flex-direction: row;
    justify-content: space-between;
    text-align: left
  }
}

/* ===== PRODUCT COUNT BAR ===== */
.product-count-bar {
  margin-top: 2.5rem;
  border-radius: .75rem;
  border: 1px solid rgba(100, 116, 139, .5);
  background: rgba(30, 41, 59, .3);
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

.product-count-bar p {
  color: var(--steel-300);
  font-size: .875rem
}

.product-count-bar strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-400);
  margin-right: .5rem
}

@media(min-width:640px) {
  .product-count-bar {
    flex-direction: row
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--steel-900);
  position: relative;
  overflow: hidden
}



.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 2.5rem 0
}

.footer-about p {
  color: var(--steel-400);
  line-height: 1.7;
  font-size: .875rem;
  max-width: 25rem;
  margin-top: 1rem
}

.footer-logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--steel-800);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
  font-size: .75rem;
  font-weight: 700;
  transition: all .3s
}

.footer-social a:hover {
  background: var(--primary-600);
  color: #fff
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .025em;
  margin-bottom: 1.25rem
}

.footer-col a {
  display: block;
  color: var(--steel-400);
  font-size: .875rem;
  padding: .375rem 0;
  transition: color .3s
}

.footer-col a:hover {
  color: var(--primary-400)
}

.footer-bottom {
  border-top: 1px solid var(--steel-800);
  padding: 1.25rem 0
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

.footer-bottom p {
  color: var(--steel-500);
  font-size: .75rem
}

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

.footer-legal a {
  color: var(--steel-500);
  font-size: .75rem;
  transition: color .3s
}

.footer-legal a:hover {
  color: var(--primary-400)
}

@media(min-width:768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr
  }

  .footer-bottom-inner {
    flex-direction: row
  }
}

@media(min-width:1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr
  }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary-600);
  color: #fff;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  box-shadow: 0 4px 14px rgba(220, 38, 38, .3);
  z-index: 40;
  opacity: 0;
  pointer-events: none
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto
}

.scroll-top:hover {
  background: var(--primary-700)
}

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem
}

.page-404-bg {
  position: absolute;
  inset: 0
}

.page-404-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.page-404-card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--steel-100);
  padding: 3rem;
  max-width: 36rem;
  width: 100%;
  text-align: center
}

.page-404-code {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary-600);
  letter-spacing: -.025em
}

.page-404-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--steel-800);
  margin-top: 1rem
}

.page-404-desc {
  color: var(--steel-500);
  font-size: .875rem;
  margin-top: .75rem;
  line-height: 1.6
}

.page-404-line {
  width: 3rem;
  height: 4px;
  background: var(--primary-600);
  margin: 1.5rem auto;
  border-radius: 9999px
}

.page-404-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem
}

@media(min-width:640px) {
  .page-404-buttons {
    flex-direction: row
  }
}


/* ==========================================================================
   MASTER MOBILE RESPONSIVE SYSTEM
   Covers all pages: Home, About, Quality, Products, Gallery, Contact, 404
   ========================================================================== */

/* ─────────────────────────────────────────────
   TABLET — max-width: 1024px
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* ── Global Section Spacing ── */
  .section,
  .section-lg {
    padding: 4.5rem 0;
  }

  /* ── Nav Logo ── */
  .nav-logo {
    width: 155px;
    height: 56px;
  }

  /* ── Hero Features ── */
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
  }

  /* ── About Page Grids ── */
  .aboutpage-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .aboutpage-image img {
    height: 380px;
  }

  .about-image img {
    height: 380px;
  }

  /* ── Why Us Grid ── */
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .info-card {
    min-height: 220px;
    padding: 1.5rem;
  }

  /* ── Quality Page Process (zigzag) ── */
  .q2-step__body {
    padding: 1.5rem 1.25rem;
  }

  /* ── About Final CTA ── */
  .about-final-cta {
    padding: 80px 0 60px;
  }

  /* ── About Process ── */
  .about-process {
    padding: 80px 0;
  }
}


/* ─────────────────────────────────────────────
   MOBILE — max-width: 768px
   ───────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Global Section Spacing ── */
  .section,
  .section-lg {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .container-sm {
    padding: 0 1.25rem;
  }

  /* ── Navigation ── */
  .nav-logo {
    width: 140px;
    height: 50px;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta {
    padding: .5rem;
    min-width: auto;
  }

  /* ── Page Hero Banner ── */
  .page-hero {
    min-height: 320px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }

  .page-hero-content {
    padding: 2rem 0;
  }

  /* ── Home Hero ── */
  .hero-content {
    padding: 7rem 0 5rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .hero-feature {
    gap: .6rem;
  }

  .hero-feature-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .hero-scroll {
    display: none;
  }

  .hero-buttons {
    margin-top: 2rem;
  }

  .btn-primary,
  .btn-outline {
    padding: .875rem 1.5rem;
    font-size: .8125rem;
    width: 100%;
    justify-content: center;
  }

  /* ── About Section (Homepage) ── */
  .about-grid {
    gap: 3rem;
  }

  .about-image img {
    height: 300px;
  }

  .about-exp {
    right: 0;
    bottom: -1rem;
    padding: 1rem;
  }

  .about-exp-num {
    font-size: 2rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
  }

  .about-stat {
    padding: .75rem .5rem;
  }

  .about-stat-num {
    font-size: 1.25rem;
  }

  .about-text h3 {
    font-size: 1.35rem;
  }

  /* ── Stats Section ── */
  .stats-section {
    padding: 3.5rem 0;
  }

  .stat-value {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .stat-icon {
    font-size: 1.5rem;
  }

  /* ── Testimonials ── */
  .testimonial-card {
    padding: 1.75rem 1.5rem 2rem;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .testimonial-nav {
    gap: 1rem;
  }

  /* ── CTA Section ── */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-desc {
    font-size: 1rem;
  }

  /* ── Section Headings ── */
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  .section-title2,
  .section-title3 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  /* ═══════════════════════════════
     HAKKIMIZDA PAGE
     ═══════════════════════════════ */

  /* ── About Intro ── */
  .about-intro {
    padding: 60px 0;
    padding-bottom: 60px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-intro-left h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .about-intro-left p {
    font-size: 15px;
  }

  .about-intro-image-wrap img {
    height: 320px;
  }

  .about-intro-image-wrap {
    box-shadow: 15px 15px 30px rgba(133, 124, 124, 0.2);
  }

  .about-intro-points {
    gap: 8px;
  }

  .about-intro-point {
    font-size: 13px;
    padding: 10px 14px;
  }

  /* ── Problem/Solution ── */
  .about-problem-solution {
    padding: 3.5rem 0;
  }

  .about-problem-solution-head h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .about-problem-solution-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-problem-card,
  .about-solution-card {
    padding: 1.75rem 1.25rem;
  }

  .about-problem-card h3,
  .about-solution-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .about-problem-card li,
  .about-solution-card li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* ── Process Grid ── */
  .about-process {
    padding: 60px 0;
  }

  .about-process-head {
    margin-bottom: 32px;
  }

  .about-process-head h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .about-process-head p {
    font-size: 15px;
  }

  .about-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .process-card h3 {
    font-size: 20px;
  }

  .process-card p {
    font-size: 14px;
  }

  /* ── Proof Stats ── */
  .about-proof {
    padding: 60px 0;
  }

  .about-proof-head h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .about-proof-head p {
    font-size: 15px;
  }

  .about-proof-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .proof-stat {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .proof-stat strong {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .proof-stat span {
    font-size: 13px;
  }

  /* ── Final CTA ── */
  .about-final-cta {
    padding: 60px 0 50px;
  }

  .about-final-cta h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .about-final-cta p {
    font-size: 15px;
  }

  .about-final-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-final-cta-actions .btn-primary,
  .about-final-cta-actions .btn-outline {
    width: 100%;
    max-width: 320px;
  }

  /* ── Quote CTA ── */
  .about-quote-cta {
    padding: 50px 0;
  }

  .about-quote-cta-box {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .about-quote-cta-box h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .about-quote-cta-text {
    font-size: 15px;
  }

  .about-quote-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-quote-cta-actions .btn-primary,
  .about-quote-cta-actions .btn-outline {
    width: 100%;
    max-width: 320px;
    min-width: auto;
  }

  /* ── Aboutpage (v2) Grid ── */
  .aboutpage-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aboutpage-image img {
    height: 300px;
  }

  .aboutpage-exp {
    right: .5rem;
    bottom: -.75rem;
    min-width: 110px;
    min-height: 110px;
    padding: .75rem;
  }

  .aboutpage-exp-num {
    font-size: 2.2rem;
  }

  .aboutpage-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
  }

  .aboutpage-stat {
    padding: 1rem .75rem;
  }

  .aboutpage-stat-num {
    font-size: 1.5rem;
  }

  /* ── Mission & Vision ── */
  .abt2-mv {
    padding: 3.5rem 0;
  }

  .abt2-mv-card {
    padding: 2rem 1.5rem;
  }

  /* ── Why Us ── */
  .why-us-section {
    padding: 3.5rem 0;
  }

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

  .info-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: .875rem;
  }

  /* ── Sectors ── */
  .sectors-section {
    padding: 3.5rem 0;
  }

  .sector-pill {
    min-height: 42px;
    padding: 0 .9rem;
    font-size: .85rem;
  }

  /* ── About CTA ── */
  .about-cta-section {
    padding: 1.5rem 0 3.5rem;
  }

  .about-cta-box {
    padding: 2.5rem 1.5rem;
    border-radius: 1.25rem;
  }

  .about-cta-box h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

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

  .about-cta-actions .btn-primary,
  .about-cta-actions .btn-outline-dark {
    width: 100%;
    max-width: 320px;
  }

  /* ── V3 Quote ── */
  .v3-quote {
    padding: 4rem 0;
  }

  .v3-quote-meta {
    gap: 2rem;
  }

  /* ═══════════════════════════════
     KALİTE PAGE
     ═══════════════════════════════ */

  /* ── Editorial Intro ── */
  .q2-editorial-intro {
    padding: 3.5rem 0 3rem;
  }

  .q2-editorial-intro__eyebrow {
    margin-top: 2rem;
  }

  .q2-editorial-intro__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .q2-editorial-intro__lead {
    font-size: 1rem;
  }

  .q2-editorial-intro__right p {
    font-size: .95rem;
  }

  .q2-editorial-intro__note {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: .9rem;
  }

  .q2-editorial-intro__bottom {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* ── Pillars ── */
  .q2-pillars {
    padding: 3.5rem 0 4rem;
  }

  .q2-pillars__head {
    margin-bottom: 2.5rem;
  }

  .q2-pillars__head h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .q2-pillars__track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .q2-pillar-card {
    min-height: auto;
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .q2-pillar-card__num {
    font-size: 2rem;
  }

  /* ── Process ── */
  .q2-process {
    padding: 3.5rem 0 3rem;
  }

  .q2-process__head {
    margin-bottom: 2.5rem;
  }

  .q2-process__head h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .q2-step {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .q2-step__dot {
    width: 2.5rem;
    height: 2.5rem;
  }

  .q2-step__body {
    padding: 1.5rem 1.25rem;
    border-radius: 1rem;
  }

  .q2-step__body h3 {
    font-size: 1rem;
  }

  .q2-step__body p {
    font-size: .85rem;
  }

  .q2-guarantee {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  /* ── Stats ── */
  .q2-stats {
    padding: 3rem 0;
  }

  .q2-stats__value {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .q2-stats__value--text {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
  }

  .q2-stats__label {
    font-size: .68rem;
  }

  /* ── Certificates ── */
  .q2-certs {
    padding: 3.5rem 1rem 3rem;
    border-radius: 0;
  }

  .q2-certs__head {
    margin-bottom: 2.5rem;
  }

  .q2-certs__head h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .q2-certs__mosaic {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .q2-cert {
    padding: 2rem 1.25rem 1.75rem;
  }

  .q2-cert h3 {
    font-size: 1.25rem;
  }

  /* ── CTA ── */
  .q2-cta {
    padding: 4rem 0;
  }

  .q2-cta__quote {
    font-size: 3.5rem;
  }

  .q2-cta__content h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .q2-cta__content p {
    font-size: .9rem;
  }

  .q2-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .q2-cta__actions .btn-primary,
  .q2-cta__actions .btn-outline {
    width: 100%;
    max-width: 320px;
  }

  /* ═══════════════════════════════
     ÜRÜNLER PAGE
     ═══════════════════════════════ */
  .product-group-card {
    height: 16rem;
  }

  .product-group-card .content {
    padding: 1.25rem;
  }

  .product-group-card h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }

  .product-group-card .desc {
    font-size: .8125rem;
    margin-top: .375rem;
  }

  .product-group-card .link {
    margin-top: 1rem;
    font-size: .8125rem;
  }

  .product-group-card .num {
    font-size: 3rem;
  }

  /* ── Product Detail ── */
  .product-detail-section {
    padding: 2.5rem 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }

  .product-item .name-bar {
    padding: .5rem .75rem;
  }

  .product-item .name-bar p {
    font-size: .6875rem;
  }

  /* ── Product Count Bar ── */
  .product-count-bar {
    padding: 1rem 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .product-count-bar strong {
    font-size: 1.25rem;
  }

  /* ═══════════════════════════════
     GALERİ PAGE
     ═══════════════════════════════ */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
  }

  .gallery-item.span-2 {
    grid-column: span 1;
  }

  .gallery-item.span-r2 {
    grid-row: span 1;
  }

  .gallery-item .gallery-hover h4 {
    font-size: .875rem;
  }

  .gallery-item .gallery-hover span {
    font-size: .625rem;
  }

  /* ═══════════════════════════════
     İLETİŞİM PAGE
     ═══════════════════════════════ */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

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

  /* ═══════════════════════════════
     FOOTER
     ═══════════════════════════════ */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .footer-about p {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: .75rem;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* ═══════════════════════════════
     FEATURE CARDS
     ═══════════════════════════════ */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  /* ═══════════════════════════════
     LIGHTBOX
     ═══════════════════════════════ */
  .lightbox-img {
    max-width: 95vw;
    max-height: 60vh;
    border-radius: .5rem;
  }

  .lightbox-prev {
    left: .5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .lightbox-next {
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .lightbox-close {
    top: .75rem;
    right: .75rem;
    width: 2.25rem;
    height: 2.25rem;
  }

  .lightbox-caption {
    bottom: 1rem;
  }

  .lightbox-caption h3 {
    font-size: 1rem;
  }

  /* ═══════════════════════════════
     QUALITY PROCESS (old)
     ═══════════════════════════════ */
  .process-section {
    padding: 3.5rem 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ═══════════════════════════════
     QUALITY STATS BAR (old)
     ═══════════════════════════════ */
  .quality-stats {
    padding: 2.5rem 0;
  }

  /* ═══════════════════════════════
     QUALITY CTA BANNER (old)
     ═══════════════════════════════ */
  .quality-cta {
    margin-top: 2.5rem;
    height: auto;
    min-height: 12rem;
  }

  .quality-cta .overlay {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  /* ═══════════════════════════════
     CERTIFICATE CARDS (old)
     ═══════════════════════════════ */
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* ═══════════════════════════════
     MISC / 404
     ═══════════════════════════════ */
  .page-404-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .page-404-code {
    font-size: 3.5rem;
  }

  .page-404-title {
    font-size: 1.25rem;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .5rem;
  }

  /* ═══════════════════════════════
     SECTION BLOCK HEADINGS
     ═══════════════════════════════ */
  .section-block-heading {
    margin-bottom: 2.5rem;
  }

  .section-block-desc {
    font-size: .9rem;
  }
}


/* ─────────────────────────────────────────────
   SMALL MOBILE — max-width: 480px
   ───────────────────────────────────────────── */
@media (max-width: 480px) {

  /* ── Global ── */
  .container,
  .container-sm {
    padding: 0 1rem;
  }

  /* ── Navigation ── */
  .nav-logo {
    width: 120px;
    height: 44px;
  }

  .mobile-menu-inner {
    margin: .5rem .5rem 0;
    padding: 1.25rem;
  }

  /* ── Hero ── */
  .hero-content {
    padding: 6.5rem 0 4rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero-desc {
    font-size: .9rem;
    margin-top: 1rem;
  }

  .hero-badge {
    font-size: .75rem;
    padding: .375rem .75rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    margin-top: 1.5rem;
    gap: .75rem;
  }

  .hero-features {
    gap: .75rem;
    margin-top: 2rem;
  }

  .hero-feature-title {
    font-size: .8125rem;
  }

  .hero-feature-sub {
    font-size: .6875rem;
  }

  /* ── Page Hero ── */
  .page-hero {
    min-height: 260px;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.1;
  }

  .page-hero-sub {
    font-size: .875rem;
    line-height: 1.6;
  }

  .page-hero-label {
    font-size: 11px;
  }

  .page-hero-content {
    padding: 1.5rem 0;
  }

  /* ── Section Titles ── */
  .section-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    margin-top: .5rem;
  }

  .section-label {
    font-size: .6875rem;
  }

  /* ── About Section (Homepage) ── */
  .about-image img {
    height: 240px;
  }

  .about-exp {
    padding: .75rem;
  }

  .about-exp-num {
    font-size: 1.75rem;
  }

  .about-exp-label {
    font-size: .625rem;
  }

  .about-deco {
    width: 3.5rem;
    height: 3.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
  }

  .about-stat {
    padding: .625rem .375rem;
    border-radius: .5rem;
  }

  .about-stat-num {
    font-size: 1.125rem;
  }

  .about-stat-label {
    font-size: .625rem;
  }

  .about-text p {
    font-size: .875rem;
  }

  /* ── Stats Section ── */
  .stats-section {
    padding: 2.5rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: .625rem;
  }

  /* ── Testimonials ── */
  .testimonial-card {
    padding: 1.25rem 1rem 1.5rem;
  }

  .testimonial-text {
    font-size: .9rem;
  }

  .testimonial-quote {
    margin-bottom: 1rem;
  }

  .testimonial-quote svg {
    width: 32px;
    height: 32px;
  }

  .testimonial-avatar {
    width: 3rem;
    height: 3rem;
    margin: 1rem auto .5rem;
  }

  .testimonial-name {
    font-size: .875rem;
  }

  .testimonial-role {
    font-size: .75rem;
  }

  .testimonial-btn {
    width: 2.25rem;
    height: 2.25rem;
  }

  /* ── CTA Section ── */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .cta-desc {
    font-size: .875rem;
  }

  .cta-buttons {
    margin-top: 2rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: .875rem 1.5rem;
    font-size: .8125rem;
    width: 100%;
  }

  /* ═══════════════════════════════
     HAKKIMIZDA (Small Phone)
     ═══════════════════════════════ */
  .about-intro {
    padding: 40px 0;
  }

  .about-intro-left h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .about-intro-left p {
    font-size: 14px;
    line-height: 1.75;
  }

  .about-intro-image-wrap img {
    height: 240px;
  }

  .about-intro-point {
    font-size: 12px;
    padding: 8px 12px;
  }

  .about-problem-solution {
    padding: 2.5rem 0;
  }

  .about-problem-solution-head h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .about-problem-solution-head p {
    font-size: 14px;
  }

  .about-problem-card,
  .about-solution-card {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  .about-problem-card h3,
  .about-solution-card h3 {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .about-problem-card li,
  .about-solution-card li {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 18px;
  }

  .about-problem-card li::before,
  .about-solution-card li::before {
    width: 6px;
    height: 6px;
    top: 10px;
  }

  .about-process {
    padding: 40px 0;
  }

  .about-process-head h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .about-process-head p {
    font-size: 14px;
  }

  .process-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .process-card h3 {
    font-size: 17px;
  }

  .process-card p {
    font-size: 13px;
    line-height: 1.8;
  }

  .about-proof {
    padding: 40px 0;
  }

  .about-proof-head h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .about-proof-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .proof-stat {
    padding: 20px 12px;
    border-radius: 14px;
  }

  .about-final-cta {
    padding: 40px 0 35px;
  }

  .about-final-cta h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .about-final-cta p {
    font-size: 14px;
  }

  /* ── Aboutpage (v2) ── */
  .aboutpage-image img {
    height: 240px;
  }

  .aboutpage-exp {
    min-width: 90px;
    min-height: 90px;
  }

  .aboutpage-exp-num {
    font-size: 1.8rem;
  }

  .aboutpage-exp-label {
    font-size: .625rem;
  }

  .aboutpage-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
  }

  .aboutpage-stat {
    padding: .75rem .5rem;
  }

  .aboutpage-stat-num {
    font-size: 1.25rem;
  }

  .aboutpage-stat-label {
    font-size: .7rem;
  }

  .abt2-mv-card {
    padding: 1.5rem 1.25rem;
  }

  .abt2-mv-card h3 {
    font-size: 1.1rem;
  }

  .abt2-mv-card p {
    font-size: .85rem;
  }

  .about-cta-box {
    padding: 2rem 1.25rem;
  }

  .about-cta-box h2 {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
  }

  .about-cta-box p {
    font-size: .875rem;
  }

  /* ═══════════════════════════════
     KALİTE (Small Phone)
     ═══════════════════════════════ */
  .q2-editorial-intro {
    padding: 2.5rem 0 2rem;
  }

  .q2-editorial-intro__eyebrow {
    margin-top: 1rem;
    font-size: 13px;
  }

  .q2-editorial-intro__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .q2-editorial-intro__lead {
    font-size: .95rem;
  }

  .q2-editorial-intro__right p {
    font-size: .875rem;
  }

  .q2-editorial-intro__label {
    font-size: .72rem;
  }

  .q2-editorial-intro__text {
    font-size: .875rem;
  }

  .q2-editorial-intro__note {
    font-size: .85rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .q2-pillars {
    padding: 2.5rem 0 3rem;
  }

  .q2-pillars__head h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .q2-pillar-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .q2-pillar-card h3 {
    font-size: 1rem;
  }

  .q2-pillar-card p {
    font-size: .8rem;
  }

  .q2-process {
    padding: 2.5rem 0;
  }

  .q2-process__head h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .q2-process__head p {
    font-size: .875rem;
  }

  .q2-step {
    gap: .75rem;
    margin-bottom: 1rem;
  }

  .q2-step__dot {
    width: 2.25rem;
    height: 2.25rem;
  }

  .q2-step__body {
    padding: 1.25rem 1rem;
    border-radius: .875rem;
  }

  .q2-step__body h3 {
    font-size: .95rem;
  }

  .q2-step__body p {
    font-size: .8rem;
  }

  .q2-guarantee {
    padding: 1.25rem 1rem;
    border-radius: 1rem;
    gap: 1rem;
  }

  .q2-guarantee h4 {
    font-size: .95rem;
  }

  .q2-guarantee p {
    font-size: .8rem;
  }

  .q2-stats {
    padding: 2.5rem 0;
  }

  .q2-stats__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .q2-stats__cell:nth-child(2)::after {
    display: none;
  }

  .q2-certs {
    padding: 2.5rem .75rem 2rem;
  }

  .q2-certs__head h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .q2-certs__head p {
    font-size: .85rem;
  }

  .q2-cert {
    padding: 1.5rem 1rem 1.25rem;
    border-radius: 1.15rem;
  }

  .q2-cert h3 {
    font-size: 1.15rem;
  }

  .q2-cert__sub {
    font-size: .7rem;
  }

  .q2-cert p {
    font-size: .78rem;
  }

  .q2-cert__badge-inner {
    width: 3.25rem;
    height: 3.25rem;
  }

  .q2-cta {
    padding: 3rem 0;
  }

  .q2-cta__quote {
    font-size: 2.5rem;
  }

  .q2-cta__content h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .q2-cta__content p {
    font-size: .8rem;
  }

  /* ═══════════════════════════════
     ÜRÜNLER (Small Phone)
     ═══════════════════════════════ */
  .product-group-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-group-card {
    height: 14rem;
  }

  .product-group-card h3 {
    font-size: 1.25rem;
  }

  .product-group-card .badge {
    font-size: 9px;
    padding: .2rem .5rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
  }

  .product-item .zoom-icon span {
    width: 2.25rem;
    height: 2.25rem;
  }

  .product-count-bar {
    padding: .875rem 1rem;
  }

  .product-count-bar p {
    font-size: .8125rem;
  }

  .product-count-bar strong {
    font-size: 1.125rem;
  }

  /* ═══════════════════════════════
     GALERİ (Small Phone)
     ═══════════════════════════════ */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: .375rem;
  }

  .gallery-item .gallery-hover svg {
    width: 20px;
    height: 20px;
  }

  .gallery-item .gallery-hover h4 {
    font-size: .75rem;
    margin-top: .5rem;
  }

  .gallery-item .gallery-hover span {
    font-size: .5625rem;
  }

  /* ═══════════════════════════════
     İLETİŞİM (Small Phone)
     ═══════════════════════════════ */
  .contact-form {
    padding: 1.25rem 1rem;
  }

  .contact-item-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contact-item h4 {
    font-size: .8125rem;
  }

  .contact-item p {
    font-size: .8125rem;
  }

  .btn-submit {
    padding: .875rem;
    font-size: .8125rem;
  }

  /* ═══════════════════════════════
     FOOTER (Small Phone)
     ═══════════════════════════════ */
  .footer-grid {
    gap: 1.75rem;
    padding: 1.75rem 0;
  }

  .footer-col h4 {
    margin-bottom: 1rem;
    font-size: .8125rem;
  }

  .footer-col a {
    font-size: .8125rem;
    padding: .3rem 0;
  }

  .footer-about p {
    font-size: .8125rem;
  }

  .footer-logo img {
    height: 2.5rem;
  }

  .footer-social a {
    width: 2.25rem;
    height: 2.25rem;
  }

  .footer-bottom {
    padding: 1rem 0;
  }

  .footer-bottom p {
    font-size: .6875rem;
  }

  .footer-legal a {
    font-size: .6875rem;
  }

  /* ═══════════════════════════════
     BREADCRUMB (Small Phone)
     ═══════════════════════════════ */
  .breadcrumb-inner {
    font-size: .75rem;
  }

  /* ═══════════════════════════════
     404 (Small Phone)
     ═══════════════════════════════ */
  .page-404-card {
    padding: 1.75rem 1.25rem;
  }

  .page-404-code {
    font-size: 3rem;
  }

  .page-404-title {
    font-size: 1.125rem;
  }

  .page-404-desc {
    font-size: .8125rem;
  }
}


/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-10px)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(.8, 0, 1, 1)
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, .2, 1)
  }
}

.animate-fade-in {
  animation: fadeIn .6s ease forwards
}

.animate-fade-in-up {
  animation: fadeInUp .6s ease forwards
}

.animate-slide-left {
  animation: slideLeft .6s ease forwards
}

.animate-slide-right {
  animation: slideRight .6s ease forwards
}

.animate-scale-in {
  animation: scaleIn .4s ease forwards
}

.delay-200 {
  animation-delay: .2s
}

.delay-300 {
  animation-delay: .3s
}

.delay-400 {
  animation-delay: .4s
}

.delay-500 {
  animation-delay: .5s
}

.delay-700 {
  animation-delay: .7s
}

.delay-800 {
  animation-delay: .8s
}

.hidden-anim {
  opacity: 0
}

.visible-anim {
  animation: fadeInUp .6s ease forwards
}