  :root {
    --ice: #FBEAEA;
    --ice-mid: #F0C9C9;
    --ice-blue: #E0A3A8;
    --steel-blue: #B84A52;
    --deep-steel: #8A1F2E;
    --navy: #4A0E14;
    --white: #FFFFFF;
    --off-white: #FBF5F5;
    --gray-light: #F4EDED;
    --gray-mid: #CEB0B3;
    --gray-text: #8A6B6E;
    --dark: #2B1A1D;
    --accent: #D4002E;
    --accent-glow: rgba(212,0,46,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ice-mid);
    padding: 0 48px;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 24px rgba(138,31,46,0.08);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .nav-logo-mark {
    height: 44px; width: auto;
    display: flex; align-items: center;
    flex-shrink: 0;
    background: #111111;
    border-radius: 6px;
    padding: 5px 10px;
  }

  .nav-logo-mark img {
    height: 100%; width: auto; display: block;
  }

  /* Logo image replaces the text brand mark; hide the redundant text label
     next to it while keeping it in the DOM for accessibility/SEO. */
  .nav-logo .nav-brand {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  .nav-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 22px; letter-spacing: 3px;
    color: var(--navy); text-transform: uppercase;
  }

  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }

  .nav-links a {
    position: relative;
    font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gray-text);
    text-decoration: none;
    transition: color 0.35s cubic-bezier(.65,0,.35,1);
  }

  .nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute; left: 0; right: 100%; bottom: -8px;
    height: 2px; border-radius: 2px;
    background: var(--accent);
    transition: right 0.4s cubic-bezier(.65,0,.35,1);
  }

  .nav-links a:not(.nav-cta):hover { color: var(--accent); }
  .nav-links a:not(.nav-cta):hover::after { right: 0; }

  .nav-cta {
    background: var(--accent); color: white !important;
    padding: 9px 22px; border-radius: 4px;
    transition: background 0.35s cubic-bezier(.65,0,.35,1),
                transform 0.35s cubic-bezier(.65,0,.35,1),
                box-shadow 0.35s cubic-bezier(.65,0,.35,1);
  }

  .nav-cta:hover {
    background: var(--deep-steel) !important; color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(212,0,46,0.32);
  }

  .nav-links a.nav-active:not(.nav-cta) { color: var(--accent); }
  .nav-links a.nav-active:not(.nav-cta)::after { right: 0; }

  /* LANG SWITCH */
  .nav-lang {
    display: flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
    margin-left: 8px;
  }
  .nav-lang a {
    color: var(--gray-text); text-decoration: none;
    padding: 4px 6px; border-radius: 3px;
    transition: color 0.25s, background 0.25s;
  }
  .nav-lang a:hover { color: var(--accent); background: var(--ice); }
  .nav-lang a.lang-active { color: var(--accent); }
  .nav-lang-sep { color: var(--gray-mid); }

  /* NAV TOGGLE (hamburger) */
  .nav-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    padding: 0; flex-shrink: 0;
    z-index: 110;
  }
  .nav-toggle-bar {
    position: relative;
    width: 22px; height: 2px;
    background: var(--navy);
    transition: background 0.25s;
  }
  .nav-toggle-bar::before,
  .nav-toggle-bar::after {
    content: '';
    position: absolute; left: 0;
    width: 22px; height: 2px;
    background: var(--navy);
    transition: transform 0.3s cubic-bezier(.65,0,.35,1), top 0.3s cubic-bezier(.65,0,.35,1), opacity 0.2s;
  }
  .nav-toggle-bar::before { top: -7px; }
  .nav-toggle-bar::after { top: 7px; }
  .nav-toggle.is-open .nav-toggle-bar { background: transparent; }
  .nav-toggle.is-open .nav-toggle-bar::before { top: 0; transform: rotate(45deg); }
  .nav-toggle.is-open .nav-toggle-bar::after { top: 0; transform: rotate(-45deg); }

  /* PAGE TRANSITION CURTAIN */
  .page-transition {
    position: fixed; inset: 0; z-index: 9999;
    background: linear-gradient(135deg, var(--navy), var(--deep-steel) 55%, var(--accent));
    transform: scaleX(1);
    transform-origin: left;
    pointer-events: none;
  }

  .page-transition.enter {
    transition: transform 0.6s cubic-bezier(.65,0,.35,1);
    transform: scaleX(0);
  }

  .page-transition.exit {
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(.65,0,.35,1);
    transform: scaleX(1);
  }

  @media (prefers-reduced-motion: reduce) {
    .page-transition { display: none; }
  }

  .section-more-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 20px; font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--accent); text-decoration: none;
    transition: gap 0.2s, color 0.2s;
  }

  .section-more-link:hover { gap: 12px; color: var(--deep-steel); }
  .section-more-link svg { width: 14px; height: 14px; }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--navy) 0%, #5C0F16 40%, #7A1A24 70%, var(--deep-steel) 100%);
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 120px 80px 80px;
    position: relative; overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 55%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23A3D4E8' stop-opacity='0.08'/%3E%3Cstop offset='1' stop-color='%2300A8D4' stop-opacity='0.04'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='600' height='600' fill='url(%23g)'/%3E%3C/svg%3E") center/cover;
    opacity: 0.5;
  }

  /* Hexagon grid bg */
  .hero::after {
    content: '';
    position: absolute; top: 0; right: -100px; bottom: 0;
    width: 60%;
    background-image: 
      radial-gradient(circle at 70% 30%, rgba(212,0,46,0.12) 0%, transparent 50%),
      radial-gradient(circle at 30% 70%, rgba(224,163,168,0.08) 0%, transparent 40%);
    pointer-events: none;
  }

  .hero-grid {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    opacity: 0.04;
    background-image: 
      linear-gradient(rgba(224,163,168,1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(224,163,168,1) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-content { position: relative; z-index: 2; max-width: 620px; }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--ice-blue);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block; width: 40px; height: 2px;
    background: var(--accent);
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 900; line-height: 0.92;
    letter-spacing: -1px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .hero-title .accent-line {
    color: transparent;
    -webkit-text-stroke: 2px var(--ice-blue);
    display: block;
  }

  .hero-desc {
    font-size: 17px; font-weight: 300; line-height: 1.7;
    color: var(--ice-mid); margin-bottom: 44px;
    max-width: 480px;
  }

  .hero-actions { display: flex; gap: 16px; align-items: center; }

  .btn-primary {
    background: var(--accent); color: white;
    padding: 14px 36px; font-size: 13px;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    border: none; border-radius: 4px; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(212,0,46,0.35);
  }

  .btn-primary:hover {
    background: var(--white); color: var(--navy);
    box-shadow: 0 6px 28px rgba(212,0,46,0.2);
    transform: translateY(-1px);
  }

  .btn-outline {
    background: transparent; color: var(--ice-blue);
    padding: 14px 36px; font-size: 13px;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    border: 1.5px solid rgba(224,163,168,0.4); border-radius: 4px;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: all 0.25s;
  }

  .btn-outline:hover {
    border-color: var(--ice-blue); color: var(--white);
    background: rgba(224,163,168,0.08);
  }

  /* STATS BAR */
  .stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--ice-mid);
    padding: 0 80px;
    display: flex; gap: 0;
  }

  .stat-item {
    flex: 1; padding: 36px 40px;
    border-right: 1px solid var(--ice-mid);
    display: flex; flex-direction: column; gap: 4px;
  }

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

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px; font-weight: 900; color: var(--navy);
    line-height: 1;
  }

  .stat-num span { color: var(--accent); }

  .stat-label {
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gray-text);
  }

  /* SECTION BASE */
  section { padding: 100px 80px; }

  .section-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 52px); font-weight: 800;
    color: var(--navy); line-height: 1.05; text-transform: uppercase;
    letter-spacing: -0.5px;
  }

  .section-subtitle {
    font-size: 16px; font-weight: 300; line-height: 1.7;
    color: var(--gray-text); margin-top: 16px; max-width: 560px;
  }

  /* HAKKIMIZDA */
  .about {
    background: var(--off-white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .about-visual {
    position: relative; height: 480px;
  }

  .about-card-main {
    position: absolute; top: 0; left: 0; right: 0; bottom: 60px;
    background: linear-gradient(135deg, var(--navy), var(--deep-steel));
    border-radius: 8px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .about-hex-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 60% 40%, rgba(212,0,46,0.2) 0%, transparent 60%);
  }

  .about-hex-icon {
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(224,163,168,0.2);
    position: relative; z-index: 1;
  }

  .about-hex-icon svg { width: 48px; height: 48px; opacity: 0.8; }

  .about-float-card {
    position: absolute; bottom: 0; right: -20px;
    background: var(--white);
    border-radius: 8px; padding: 24px 28px;
    box-shadow: 0 8px 40px rgba(138,31,46,0.15);
    border-left: 4px solid var(--accent);
  }

  .about-float-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900; color: var(--navy);
  }

  .about-float-sub {
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gray-text); margin-top: 4px;
  }

  .about-text { }

  .about-body {
    font-size: 16px; font-weight: 300; line-height: 1.8;
    color: #724A50; margin-top: 24px;
  }

  .about-missions {
    margin-top: 40px; display: flex; flex-direction: column; gap: 20px;
  }

  .mission-item {
    display: flex; gap: 16px; align-items: flex-start;
  }

  .mission-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--ice); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--ice-mid);
  }

  .mission-icon svg { width: 20px; height: 20px; color: var(--accent); }

  .mission-head {
    font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 4px;
    letter-spacing: 0.5px;
  }

  .mission-body {
    font-size: 14px; font-weight: 300; color: var(--gray-text); line-height: 1.6;
  }

  /* HİZMETLER */
  .services { background: var(--white); }

  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: var(--ice-mid);
    border: 2px solid var(--ice-mid); border-radius: 12px; overflow: hidden;
  }

  .service-card {
    background: var(--white); padding: 44px 36px;
    position: relative; overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    display: block; text-decoration: none;
  }

  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--ice-blue));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover { background: var(--off-white); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px; font-weight: 900;
    color: var(--ice-mid); line-height: 1;
    margin-bottom: 20px; letter-spacing: -2px;
  }

  .service-icon {
    width: 52px; height: 52px; margin-bottom: 20px;
    background: var(--ice); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--ice-mid);
    transition: all 0.3s;
  }

  .service-card:hover .service-icon {
    background: var(--accent); border-color: var(--accent);
  }

  .service-card:hover .service-icon svg { color: white; }

  .service-icon svg { width: 24px; height: 24px; color: var(--deep-steel); transition: color 0.3s; }

  .service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px;
  }

  .service-text {
    font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--gray-text);
  }

  .service-tags {
    margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px;
  }

  .tag {
    background: var(--ice); color: var(--deep-steel);
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
    border: 1px solid var(--ice-mid);
  }

  /* MİSYON VİZYON */
  .mission-vision {
    background: linear-gradient(135deg, var(--navy) 0%, #5C0F16 50%, var(--deep-steel) 100%);
    position: relative; overflow: hidden;
  }

  .mission-vision::before {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(212,0,46,0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(224,163,168,0.08) 0%, transparent 40%);
  }

  .mv-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    position: relative; z-index: 1;
  }

  .mv-card {
    padding: 48px; border-radius: 12px;
    border: 1px solid rgba(224,163,168,0.15);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
    position: relative; overflow: hidden;
  }

  .mv-card::before {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 120px; height: 120px;
    background: rgba(212,0,46,0.08);
    border-radius: 50%;
  }

  .mv-icon {
    width: 56px; height: 56px; margin-bottom: 24px;
    background: rgba(212,0,46,0.15); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(212,0,46,0.3);
  }

  .mv-icon svg { width: 26px; height: 26px; color: var(--ice-blue); }

  .mv-label {
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
  }

  .mv-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900; color: var(--white);
    text-transform: uppercase; margin-bottom: 20px;
  }

  .mv-text {
    font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--ice-mid);
  }

  /* KALİTE */
  .quality { background: var(--off-white); }

  .quality-inner {
    display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: center;
  }

  .quality-points {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
  }

  .quality-point {
    padding: 28px; background: var(--white); border-radius: 8px;
    border: 1px solid var(--ice-mid);
    border-top: 3px solid var(--accent);
    transition: all 0.3s;
  }

  .quality-point:hover {
    box-shadow: 0 8px 32px rgba(138,31,46,0.12);
    transform: translateY(-2px);
  }

  .quality-point-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 900; color: var(--ice-mid);
    line-height: 1; margin-bottom: 8px;
  }

  .quality-point-title {
    font-size: 13px; font-weight: 700; color: var(--navy);
    letter-spacing: 0.5px; margin-bottom: 8px;
  }

  .quality-point-text {
    font-size: 13px; font-weight: 300; color: var(--gray-text); line-height: 1.6;
  }

  .quality-cert {
    background: linear-gradient(135deg, var(--navy), var(--deep-steel));
    border-radius: 12px; padding: 48px 40px;
    display: flex; flex-direction: column; gap: 32px;
  }

  .cert-item {
    display: flex; gap: 20px; align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(224,163,168,0.15);
  }

  .cert-item:last-child { border-bottom: none; padding-bottom: 0; }

  .cert-badge {
    width: 60px; height: 60px; flex-shrink: 0;
    background: rgba(212,0,46,0.15); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(212,0,46,0.3);
  }

  .cert-badge svg { width: 28px; height: 28px; color: var(--accent); }

  .cert-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800; color: var(--white);
    text-transform: uppercase;
  }

  .cert-sub {
    font-size: 13px; color: var(--ice-mid); margin-top: 4px; font-weight: 300;
  }

  /* SEKTÖRLER */
  .sectors { background: var(--white); }

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

  .sector-card {
    padding: 36px 28px; border-radius: 10px;
    border: 1.5px solid var(--ice-mid);
    background: var(--off-white);
    position: relative; overflow: hidden;
    transition: all 0.3s;
    display: block; text-decoration: none;
  }

  .sector-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy), var(--deep-steel));
    opacity: 0; transition: opacity 0.3s;
  }

  .sector-card:hover::after { opacity: 1; }
  .sector-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(138,31,46,0.2); }

  .sector-content { position: relative; z-index: 1; }

  .sector-icon {
    width: 52px; height: 52px; margin-bottom: 20px;
    background: var(--ice-mid); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }

  .sector-card:hover .sector-icon { background: rgba(224,163,168,0.2); }

  .sector-icon svg { width: 24px; height: 24px; color: var(--deep-steel); transition: color 0.3s; }
  .sector-card:hover .sector-icon svg { color: var(--ice-blue); }

  .sector-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800; text-transform: uppercase;
    color: var(--navy); margin-bottom: 8px;
    transition: color 0.3s; letter-spacing: 0.5px;
  }

  .sector-card:hover .sector-title { color: var(--white); }

  .sector-text {
    font-size: 13px; font-weight: 300; color: var(--gray-text); line-height: 1.6;
    transition: color 0.3s;
  }

  .sector-card:hover .sector-text { color: var(--ice-mid); }

  /* İLETİŞİM */
  .contact {
    background: var(--off-white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }

  .contact-info { }

  .contact-items {
    margin-top: 36px; display: flex; flex-direction: column; gap: 24px;
  }

  .contact-item {
    display: flex; gap: 16px; align-items: flex-start;
  }

  .contact-item-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--ice); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--ice-mid);
  }

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

  .contact-item-label {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gray-text); margin-bottom: 4px;
  }

  .contact-item-val {
    font-size: 15px; font-weight: 400; color: var(--navy);
  }

  .contact-form {
    background: var(--white); border-radius: 12px; padding: 48px;
    box-shadow: 0 4px 32px rgba(138,31,46,0.08);
    border: 1px solid var(--ice-mid);
  }

  .form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 800; color: var(--navy);
    text-transform: uppercase; margin-bottom: 28px; letter-spacing: 0.5px;
  }

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

  .form-group { margin-bottom: 16px; }

  .form-group label {
    display: block; font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gray-text); margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--ice-mid); border-radius: 6px;
    font-family: 'Barlow', sans-serif; font-size: 14px;
    color: var(--dark); background: var(--off-white);
    outline: none; transition: border-color 0.2s, background 0.2s;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent); background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,0,46,0.08);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%; padding: 14px; margin-top: 8px;
    background: var(--navy); color: white;
    border: none; border-radius: 6px; cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; transition: all 0.25s;
  }

  .form-submit:hover {
    background: var(--accent);
    box-shadow: 0 4px 20px rgba(212,0,46,0.3);
  }

  /* FOOTER */
  footer {
    background: var(--dark);
    padding: 64px 80px 40px;
  }

  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(224,163,168,0.1);
    margin-bottom: 32px;
  }

  .footer-brand { }

  .footer-logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  }

  .footer-logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--deep-steel), var(--accent));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }

  .footer-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700; letter-spacing: 3px;
    color: var(--white); text-transform: uppercase;
  }

  .footer-desc {
    font-size: 14px; font-weight: 300; line-height: 1.7;
    color: rgba(224,163,168,0.6); max-width: 280px;
  }

  .footer-col-title {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gray-mid);
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-links a {
    font-size: 14px; font-weight: 300; color: rgba(224,163,168,0.6);
    text-decoration: none; transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--accent); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
  }

  .footer-copy {
    font-size: 12px; color: rgba(224,163,168,0.4);
    font-weight: 300; letter-spacing: 0.5px;
  }

  .footer-copy span { color: var(--accent); }

  .footer-iso {
    font-size: 12px; color: rgba(224,163,168,0.4);
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  }

  /* SCROLL ANIMATION */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1; transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    nav { padding: 0 32px; }
    section { padding: 80px 40px; }
    .stats-bar { padding: 0 40px; }
    .hero { padding: 120px 40px 80px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    footer { padding: 48px 40px 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about { padding: 80px 40px; }
    .contact { padding: 80px 40px; }
  }

  @media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
      position: fixed;
      top: 72px; left: 0; right: 0;
      flex-direction: column;
      gap: 0;
      background: var(--white);
      border-bottom: 1px solid var(--ice-mid);
      box-shadow: 0 16px 24px rgba(138,31,46,0.1);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.35s cubic-bezier(.65,0,.35,1), opacity 0.25s ease;
    }
    .nav-links.is-open {
      max-height: 480px;
      opacity: 1;
    }
    .nav-links li {
      width: 100%;
      border-bottom: 1px solid var(--ice);
    }
    .nav-links a {
      display: block;
      padding: 16px 24px;
      font-size: 14px;
    }
    .nav-links a:not(.nav-cta)::after { display: none; }
    .nav-links .nav-cta {
      display: inline-block;
      margin: 16px 24px;
    }
    .nav-links .nav-lang {
      padding: 14px 24px;
      justify-content: flex-start;
      margin-left: 0;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    .footer-copy {
      line-height: 1.5;
    }

    section { padding: 60px 24px; }
    .stats-bar { padding: 0 24px; flex-wrap: wrap; }
    .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--ice-mid); }
    .hero { padding: 100px 24px 60px; }
    .services-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .quality-inner { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; }
    .about { grid-template-columns: 1fr; }
    .about-visual { height: 300px; }
    footer { padding: 40px 24px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ============================================
     İÇ SAYFALAR (Detay Sayfaları) İÇİN EK STİLLER
     ============================================ */

  .page-hero {
    min-height: 46vh;
    background: linear-gradient(160deg, var(--navy) 0%, #5C0F16 40%, #7A1A24 70%, var(--deep-steel) 100%);
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 140px 80px 64px;
    position: relative; overflow: hidden;
  }

  .page-hero::after {
    content: '';
    position: absolute; top: 0; right: -100px; bottom: 0;
    width: 60%;
    background-image:
      radial-gradient(circle at 70% 30%, rgba(212,0,46,0.12) 0%, transparent 50%),
      radial-gradient(circle at 30% 70%, rgba(224,163,168,0.08) 0%, transparent 40%);
    pointer-events: none;
  }

  .page-hero-grid {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    opacity: 0.04;
    background-image:
      linear-gradient(rgba(224,163,168,1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(224,163,168,1) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .breadcrumb {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--ice-mid);
    margin-bottom: 22px;
  }

  .breadcrumb a { color: var(--ice-blue); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb span { opacity: 0.5; }

  .page-hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--ice-blue);
    margin-bottom: 18px; position: relative; z-index: 2;
    display: flex; align-items: center; gap: 12px;
  }

  .page-hero-eyebrow::before {
    content: ''; display: inline-block; width: 40px; height: 2px;
    background: var(--accent);
  }

  .page-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 900; line-height: 0.98;
    letter-spacing: -1px; color: var(--white);
    text-transform: uppercase;
    max-width: 780px;
    position: relative; z-index: 2;
    margin-bottom: 18px;
  }

  .page-hero-desc {
    font-size: 16px; font-weight: 300; line-height: 1.7;
    color: var(--ice-mid); max-width: 620px;
    position: relative; z-index: 2;
  }

  .content-section { background: var(--white); }

  .content-layout {
    display: grid; grid-template-columns: 2.1fr 1fr; gap: 64px; align-items: start;
  }

  .article-block { margin-bottom: 44px; }
  .article-block:last-child { margin-bottom: 0; }

  .article-block-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 10px;
  }

  .article-block-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(24px, 2.6vw, 30px); font-weight: 800;
    color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.2px; margin-bottom: 16px; line-height: 1.15;
  }

  .article-block-text {
    font-size: 15.5px; font-weight: 300; line-height: 1.85;
    color: #724A50;
  }

  .article-block-text + .article-block-text { margin-top: 14px; }

  .article-list {
    margin-top: 20px; display: flex; flex-direction: column; gap: 14px;
  }

  .article-list-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px 20px; background: var(--off-white);
    border-radius: 8px; border: 1px solid var(--ice-mid);
    border-left: 3px solid var(--accent);
  }

  .article-list-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 20px; color: var(--accent);
    flex-shrink: 0; line-height: 1.3;
  }

  .article-list-title {
    font-weight: 700; font-size: 14.5px; color: var(--navy);
    margin-bottom: 4px; letter-spacing: 0.2px;
  }

  .article-list-text {
    font-size: 13.5px; font-weight: 300; color: var(--gray-text); line-height: 1.65;
  }

  .stat-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: var(--ice-mid); border: 1px solid var(--ice-mid);
    border-radius: 10px; overflow: hidden; margin: 32px 0;
  }

  .stat-strip-item {
    background: var(--white); padding: 26px 22px; text-align: center;
  }

  .stat-strip-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1;
  }

  .stat-strip-num span { color: var(--accent); }

  .stat-strip-label {
    font-size: 11px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gray-text); margin-top: 6px;
  }

  .pull-quote {
    margin: 32px 0; padding: 28px 32px;
    background: var(--ice); border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
  }

  .pull-quote-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px; font-weight: 700; color: var(--navy);
    line-height: 1.4; letter-spacing: 0.2px;
  }

  .side-panel {
    display: flex; flex-direction: column; gap: 24px;
    position: sticky; top: 96px;
  }

  .side-card {
    background: var(--off-white); border: 1px solid var(--ice-mid);
    border-radius: 10px; padding: 28px;
  }

  .side-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 800; color: var(--navy);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 18px; padding-bottom: 14px;
    border-bottom: 1px solid var(--ice-mid);
  }

  .side-fact { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
  .side-fact:last-child { margin-bottom: 0; }

  .side-fact-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    background: var(--ice); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--ice-mid);
  }

  .side-fact-icon svg { width: 16px; height: 16px; color: var(--accent); }

  .side-fact-label {
    font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gray-text); margin-bottom: 3px;
  }

  .side-fact-val { font-size: 13.5px; color: var(--navy); font-weight: 500; line-height: 1.4; }

  .side-card-dark {
    background: linear-gradient(135deg, var(--navy), var(--deep-steel));
    border: none; color: white;
  }

  .side-card-dark .side-card-title {
    color: white; border-bottom-color: rgba(224,163,168,0.15);
  }

  .side-card-dark-text {
    font-size: 13.5px; font-weight: 300; line-height: 1.7;
    color: var(--ice-mid); margin-bottom: 20px;
  }

  .side-nav-list { display: flex; flex-direction: column; gap: 2px; }

  .side-nav-list a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; border-radius: 6px;
    font-size: 13.5px; font-weight: 600; color: var(--gray-text);
    text-decoration: none; transition: all 0.2s;
  }

  .side-nav-list a:hover { background: var(--ice); color: var(--deep-steel); }
  .side-nav-list a.active { background: var(--accent); color: white; }
  .side-nav-list a svg { width: 14px; height: 14px; opacity: 0.6; flex-shrink: 0; }

  .page-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #5C0F16 50%, var(--deep-steel) 100%);
    padding: 64px 80px; text-align: center;
    position: relative; overflow: hidden;
  }

  .page-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(212,0,46,0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(224,163,168,0.08) 0%, transparent 40%);
  }

  .page-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

  .page-cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(26px, 3.2vw, 36px); font-weight: 800;
    color: var(--white); text-transform: uppercase;
    margin-bottom: 14px; letter-spacing: 0.2px;
  }

  .page-cta-text {
    font-size: 15px; font-weight: 300; color: var(--ice-mid);
    line-height: 1.7; margin-bottom: 30px;
  }

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

  .related-pages { background: var(--off-white); }

  .related-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 44px;
  }

  .related-card {
    background: var(--white); border: 1px solid var(--ice-mid);
    border-radius: 10px; padding: 32px 28px; text-decoration: none;
    display: block; transition: all 0.3s; position: relative; overflow: hidden;
  }

  .related-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--ice-blue));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }

  .related-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(138,31,46,0.14); }
  .related-card:hover::before { transform: scaleX(1); }

  .related-card-icon {
    width: 48px; height: 48px; margin-bottom: 18px;
    background: var(--ice); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--ice-mid);
  }

  .related-card-icon svg { width: 22px; height: 22px; color: var(--deep-steel); }

  .related-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 8px;
  }

  .related-card-text {
    font-size: 13.5px; font-weight: 300; color: var(--gray-text); line-height: 1.6;
  }

  .related-card-link {
    margin-top: 16px; font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; color: var(--accent);
  }

  .process-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }

  .process-step {
    display: grid; grid-template-columns: 56px 1fr; gap: 24px;
    padding-bottom: 32px; position: relative;
  }

  .process-step:not(:last-child)::before {
    content: ''; position: absolute; left: 27px; top: 56px; bottom: 0;
    width: 1.5px; background: var(--ice-mid);
  }

  .process-step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--ice); border: 1.5px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 20px; color: var(--deep-steel);
    flex-shrink: 0; z-index: 1;
  }

  .process-step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 6px;
    padding-top: 12px;
  }

  .process-step-text {
    font-size: 14px; font-weight: 300; color: var(--gray-text); line-height: 1.7;
  }

  @media (max-width: 1100px) {
    .page-hero { padding: 130px 40px 56px; }
    .content-layout { grid-template-columns: 1fr; gap: 48px; }
    .side-panel { position: static; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .page-cta { padding: 56px 40px; }
  }

  @media (max-width: 768px) {
    .page-hero { padding: 110px 24px 48px; min-height: 38vh; }
    .stat-strip { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .page-cta { padding: 48px 24px; }
    .page-cta-actions { flex-direction: column; }
    .page-cta-actions a { width: 100%; text-align: center; }
    .process-step { grid-template-columns: 44px 1fr; gap: 16px; }
    .process-step-num { width: 44px; height: 44px; font-size: 16px; }
    .process-step:not(:last-child)::before { left: 21px; }
  }

  /* WHATSAPP FLOATING BUTTON */
  .whatsapp-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 998;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(.65,0,.35,1), box-shadow 0.3s cubic-bezier(.65,0,.35,1);
  }
  .whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,0.55); }
  .whatsapp-float svg { width: 30px; height: 30px; fill: white; }
  .whatsapp-float::before {
    content: '';
    position: absolute; inset: 0; border-radius: 50%;
    background: #25D366; opacity: 0.55;
    animation: wa-pulse 2.2s ease-out infinite;
    z-index: -1;
  }
  @keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
  }
  @media (max-width: 768px) {
    .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .whatsapp-float::before { animation: none; }
  }

  /* TESTIMONIALS */
  .testimonials {
    padding: 100px 64px;
    background: var(--off-white);
  }
  .testimonials-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
  .testimonials-header .section-eyebrow { justify-content: center; display: flex; }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    max-width: 1240px; margin: 0 auto;
  }
  .testimonial-card {
    background: var(--white); border: 1px solid var(--ice-mid); border-radius: 12px;
    padding: 32px; display: flex; flex-direction: column; gap: 18px;
    transition: transform 0.35s cubic-bezier(.65,0,.35,1), box-shadow 0.35s cubic-bezier(.65,0,.35,1);
  }
  .testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(74,14,20,0.1); }
  .testimonial-quote-mark { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; opacity: 0.5; }
  .testimonial-text { font-size: 14.5px; line-height: 1.75; color: var(--dark); font-weight: 400; }
  .testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--ice-mid); }
  .testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-steel), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; flex-shrink: 0;
  }
  .testimonial-name { font-size: 13.5px; font-weight: 700; color: var(--navy); }
  .testimonial-role { font-size: 12px; color: var(--gray-text); }
  .testimonials-note {
    text-align: center; margin-top: 28px; font-size: 12.5px; color: var(--gray-mid);
  }

  /* MAP EMBED */
  .map-card {
    border-radius: 14px; overflow: hidden; border: 1px solid var(--ice-mid);
    box-shadow: 0 12px 30px rgba(74,14,20,0.08);
  }
  .map-card iframe { display: block; width: 100%; height: 320px; border: 0; filter: grayscale(0.15) contrast(1.02); }
  .map-directions {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px; background: var(--off-white);
    font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
    color: var(--accent); text-decoration: none;
    border-top: 1px solid var(--ice-mid);
    transition: background 0.25s, color 0.25s;
  }
  .map-directions:hover { background: var(--accent); color: white; }
  .map-directions svg { width: 15px; height: 15px; flex-shrink: 0; }

  /* KVKK CHECKBOX */
  .form-consent {
    display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 4px;
  }
  .form-consent input[type="checkbox"] {
    margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent); flex-shrink: 0; cursor: pointer;
  }
  .form-consent label {
    font-size: 12.5px; line-height: 1.6; color: var(--gray-text); font-weight: 400; cursor: pointer;
  }
  .form-consent a { color: var(--accent); text-decoration: underline; }
  .form-error {
    font-size: 12px; color: #C4003D; margin-top: -8px; display: none;
  }
  .form-error.show { display: block; }

  @media (max-width: 1100px) {
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .testimonials { padding: 64px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
  }

  /* ============================================
     RTL SUPPORT (Arabic / Persian)
     ============================================ */
  html[dir="rtl"] body { direction: rtl; text-align: right; }

  html[dir="rtl"] .nav-links a:not(.nav-cta)::after {
    left: 100%; right: 0;
    transition: left 0.4s cubic-bezier(.65,0,.35,1);
  }
  html[dir="rtl"] .nav-links a:not(.nav-cta):hover::after,
  html[dir="rtl"] .nav-links a.nav-active:not(.nav-cta)::after { left: 0; }

  html[dir="rtl"] .nav-lang { margin-left: 0; margin-right: 8px; }

  html[dir="rtl"] .hero::before,
  html[dir="rtl"] .hero::after,
  html[dir="rtl"] .page-hero::after {
    right: auto; left: 0;
  }
  html[dir="rtl"] .hero::after,
  html[dir="rtl"] .page-hero::after { left: -100px; right: auto; }

  html[dir="rtl"] .stat-item { border-right: none; border-left: 1px solid var(--ice-mid); }
  html[dir="rtl"] .stat-item:last-child { border-left: none; }

  html[dir="rtl"] .about-float-card {
    right: auto; left: -20px;
    border-left: none; border-right: 4px solid var(--accent);
  }

  html[dir="rtl"] .mv-card::before { right: auto; left: -30px; }

  html[dir="rtl"] .article-list-item { border-left: none; border-right: 3px solid var(--accent); }

  html[dir="rtl"] .pull-quote {
    border-left: none; border-right: 4px solid var(--accent);
    border-radius: 8px 0 0 8px;
  }

  html[dir="rtl"] .process-step { grid-template-columns: 1fr 56px; }
  html[dir="rtl"] .process-step-num { order: 2; }
  html[dir="rtl"] .process-step-text,
  html[dir="rtl"] .process-step-title { order: 1; }
  html[dir="rtl"] .process-step:not(:last-child)::before { left: auto; right: 27px; }

  html[dir="rtl"] .whatsapp-float { right: auto; left: 24px; }

  html[dir="rtl"] .quality-card,
  html[dir="rtl"] .quality-inner,
  html[dir="rtl"] .form-consent { text-align: right; }

  @media (max-width: 768px) {
    html[dir="rtl"] .nav-links .nav-lang { margin-right: 0; }
    html[dir="rtl"] .stat-item { border-left: none; border-right: none; }
    html[dir="rtl"] .whatsapp-float { left: 16px; right: auto; }
    html[dir="rtl"] .process-step { grid-template-columns: 1fr 44px; }
    html[dir="rtl"] .process-step:not(:last-child)::before { right: 21px; left: auto; }
  }
