/* ══════════════════════════════════════════════════════════
   HIRDAVATSAN — KURUMSAL TEKNİK HIRDAVAT TEMASI
   Industrial Precision — Lacivert × Gümüş × Turuncu
   ══════════════════════════════════════════════════════════ */

   @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   html { scroll-behavior: smooth; }
   
   :root {
       /* Ana Renkler */
       --navy:          #0A1628;
       --navy-mid:      #0F2040;
       --navy-light:    #1A3258;
       --navy-pale:     #243B5E;
   
       /* Gümüş / Çelik */
       --steel:         #8A9BB5;
       --steel-light:   #B8C5D6;
       --steel-pale:    #E8EDF4;
       --steel-ultra:   #F4F6F9;
   
       /* Turuncu Aksan */
       --orange:        #E8620A;
       --orange-light:  #F07830;
       --orange-pale:   #FFF0E6;
       --orange-glow:   rgba(232, 98, 10, 0.22);
   
       /* Yüzeyler */
       --surface:       #F4F6F9;
       --surface-card:  #FFFFFF;
       --surface-dark:  #0A1628;
       --border:        #DDE3EC;
       --border-strong: #C4CEDB;
   
       /* Metin */
       --text-primary:   #0A1628;
       --text-secondary: #3D5278;
       --text-muted:     #8A9BB5;
       --text-invert:    #FFFFFF;
   
       /* Gradyanlar */
       --grad-navy:     linear-gradient(135deg, #0A1628 0%, #1A3258 100%);
       --grad-orange:   linear-gradient(135deg, #E8620A 0%, #F59E0B 100%);
       --grad-steel:    linear-gradient(135deg, #8A9BB5 0%, #B8C5D6 100%);
       --grad-surface:  linear-gradient(160deg, #F4F6F9 0%, #E8EDF4 100%);
   
       /* Gölgeler */
       --shadow-sm:     0 2px 8px rgba(10,22,40,0.08);
       --shadow-md:     0 8px 32px rgba(10,22,40,0.12);
       --shadow-lg:     0 20px 60px rgba(10,22,40,0.18);
       --shadow-xl:     0 40px 100px rgba(10,22,40,0.22);
       --shadow-orange: 0 8px 32px rgba(232,98,10,0.25);
   }
   
   body {
       font-family: 'Barlow', -apple-system, sans-serif;
       background: var(--surface);
       color: var(--text-primary);
       overflow-x: hidden;
       line-height: 1.65;
       -webkit-font-smoothing: antialiased;
   }
   
   /* ── Arkaplan Dokusu ── */
   .mesh-bg {
       position: fixed; inset: 0; z-index: 0; pointer-events: none;
       background: var(--grad-surface);
   }
   .mesh-blob { display: none; } /* Sanayi temada blob yok */
   
   /* Metal doku overlay — tüm sayfada ince çelik his */
   body::before {
       content: '';
       position: fixed; inset: 0; z-index: 0; pointer-events: none;
       background-image:
           repeating-linear-gradient(
               0deg,
               transparent,
               transparent 2px,
               rgba(10,22,40,0.018) 2px,
               rgba(10,22,40,0.018) 4px
           );
       mix-blend-mode: multiply;
   }
   
   /* ══════════════════════════════════════════════════════════
      NAVBAR — Solid kurumsal bar
      ══════════════════════════════════════════════════════════ */
   .navbar-light-custom {
       position: fixed; top: 0; left: 0; right: 0;
       width: 100%; max-width: 100%;
       z-index: 1000; border-radius: 0;
       background: var(--navy);
       border-bottom: 3px solid var(--orange);
       box-shadow: 0 4px 24px rgba(10,22,40,0.35);
       transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
       padding: 0 2rem;
       transform: none;
       left: 0 !important;
   }
   .navbar-light-custom.scrolled {
       background: rgba(10,22,40,0.98);
       box-shadow: 0 8px 40px rgba(10,22,40,0.45);
   }
   
   .brand-custom {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: 1.7rem; font-weight: 800;
       color: white !important;
       text-decoration: none;
       letter-spacing: 0.04em;
       display: flex; align-items: center; gap: 0.6rem;
       background: none;
       -webkit-text-fill-color: white;
   }
   
   .nav-link-l {
       color: rgba(255,255,255,0.7) !important;
       font-family: 'Barlow', sans-serif;
       font-weight: 600; font-size: 0.88rem;
       padding: 1.5rem 1rem !important;
       border-radius: 0;
       transition: all 0.2s ease; text-decoration: none;
       letter-spacing: 0.03em;
       text-transform: uppercase;
       border-bottom: 3px solid transparent;
       margin-bottom: -3px;
   }
   .nav-link-l:hover, .nav-link-l.active {
       color: var(--orange) !important;
       background: transparent !important;
       border-bottom-color: var(--orange);
   }
   
   .nav-item-l.dropdown .nav-link-l { display: inline-flex; align-items: center; gap: 0.25rem; }
   .nav-item-l .dropdown-menu {
       border-radius: 0; padding: 0.5rem 0; margin-top: 0;
       box-shadow: 0 12px 40px rgba(10,22,40,0.25);
       border: none; border-top: 3px solid var(--orange);
       background: var(--navy);
   }
   .nav-item-l .dropdown-item {
       border-radius: 0; padding: 0.65rem 1.5rem;
       font-weight: 600; font-size: 0.85rem;
       color: rgba(255,255,255,0.7) !important;
       text-transform: uppercase; letter-spacing: 0.03em;
       transition: all 0.2s ease;
   }
   .nav-item-l .dropdown-item:hover {
       background: rgba(232,98,10,0.15) !important;
       color: var(--orange) !important;
       padding-left: 2rem;
   }
   
   .nav-item-l .dropdown-submenu { position: relative; }
   .nav-item-l .dropdown-submenu > .dropdown-menu {
       left: 100%; top: 0; margin: 0; display: none;
   }
   .nav-item-l .dropdown-submenu:hover > .dropdown-menu { display: block; }
   .nav-item-l .dropdown-submenu .dropdown-toggle::after { display: none; }
   
   /* ══════════════════════════════════════════════════════════
      BUTONLAR — Köşeli, sanayi karakteri
      ══════════════════════════════════════════════════════════ */
   .btn-l {
       display: inline-flex; align-items: center; gap: 0.6rem;
       padding: 0.85rem 2rem; font-weight: 700; font-size: 0.88rem;
       border-radius: 4px; border: none; cursor: pointer;
       transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
       text-decoration: none; white-space: nowrap;
       font-family: 'Barlow Condensed', sans-serif;
       letter-spacing: 0.08em; text-transform: uppercase;
       position: relative; overflow: hidden;
   }
   .btn-l::before {
       content: '';
       position: absolute; inset: 0;
       background: rgba(255,255,255,0.1);
       transform: translateX(-101%);
       transition: transform 0.3s ease;
   }
   .btn-l:hover::before { transform: translateX(0); }
   
   .btn-l-primary {
       background: var(--orange); color: white;
       box-shadow: var(--shadow-orange);
       clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
   }
   .btn-l-primary:hover {
       background: var(--orange-light);
       box-shadow: 0 12px 40px rgba(232,98,10,0.4);
       color: white; transform: translateY(-2px);
   }
   .btn-l-ghost {
       background: transparent;
       border: 2px solid rgba(255,255,255,0.35);
       color: white;
   }
   .btn-l-ghost:hover {
       background: rgba(255,255,255,0.08);
       border-color: var(--orange);
       color: var(--orange);
   }
   .btn-l-white {
       background: white; color: var(--navy); font-weight: 800;
       box-shadow: 0 8px 32px rgba(0,0,0,0.2);
   }
   .btn-l-white:hover {
       transform: translateY(-2px);
       box-shadow: 0 16px 40px rgba(0,0,0,0.25);
       color: var(--orange);
   }
   .btn-l-outline-white {
       background: rgba(255,255,255,0.08);
       border: 2px solid rgba(255,255,255,0.4);
       color: white;
   }
   .btn-l-outline-white:hover {
       background: rgba(255,255,255,0.15);
       color: white; transform: translateY(-1px);
   }
   .btn-l-navy {
       background: var(--navy); color: white;
       clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
   }
   .btn-l-navy:hover {
       background: var(--navy-light);
       color: white; transform: translateY(-2px);
   }
   
   /* ══════════════════════════════════════════════════════════
      SECTION ORTAK
      ══════════════════════════════════════════════════════════ */
   .sec { padding: 7rem 0; position: relative; z-index: 1; }
   .sec-sm { padding: 4rem 0; position: relative; z-index: 1; }
   .sec-alt {
       background: white;
       border-top: 1px solid var(--border);
       border-bottom: 1px solid var(--border);
   }
   
   /* Eyebrow — köşeli rozet */
   .sec-eyebrow {
       display: inline-flex; align-items: center; gap: 0.5rem;
       padding: 0.4rem 1rem; border-radius: 0;
       background: var(--orange-pale);
       border-left: 3px solid var(--orange);
       color: var(--orange); font-size: 0.78rem; font-weight: 700;
       text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem;
       font-family: 'Barlow Condensed', sans-serif;
   }
   
   .sec-title {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: clamp(2.2rem, 5vw, 3.8rem);
       font-weight: 800; line-height: 1.1;
       color: var(--text-primary); margin-bottom: 1.25rem;
       letter-spacing: -0.01em; text-transform: uppercase;
   }
   .sec-subtitle {
       font-size: 1.05rem; color: var(--text-secondary);
       max-width: 640px; margin: 0 auto; line-height: 1.8;
       font-weight: 400;
   }
   .sec-header { text-align: center; margin-bottom: 4.5rem; }
   
   /* Dekoratif bölücü çizgi */
   .sec-header::after {
       content: '';
       display: block;
       width: 60px; height: 4px;
       background: var(--orange);
       margin: 1.5rem auto 0;
   }
   
   .gradient-text {
       color: var(--orange);
       -webkit-text-fill-color: var(--orange);
   }
   .gradient-text-warm {
       color: var(--orange);
       -webkit-text-fill-color: var(--orange);
   }
   
   /* ══════════════════════════════════════════════════════════
      HERO — Tam ekran, sanayi görseli ile
      ══════════════════════════════════════════════════════════ */
   .hero-l {
       min-height: 100vh; display: flex; align-items: center;
       padding-top: 80px; position: relative; z-index: 1;
       background: var(--navy);
       overflow: hidden;
   }
   
   /* Arka plan desen — çelik ızgara */
   .hero-l::before {
       content: '';
       position: absolute; inset: 0;
       background-image:
           linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
           linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
       background-size: 40px 40px;
       z-index: 0;
   }
   
   /* Turuncu köşe aksanı */
   .hero-l::after {
       content: '';
       position: absolute;
       top: 0; left: 0;
       width: 600px; height: 600px;
       background: radial-gradient(ellipse at 0% 0%, rgba(232,98,10,0.18) 0%, transparent 65%);
       z-index: 0;
   }
   
   .hero-l .container { position: relative; z-index: 1; }
   
   .hero-title-l {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: clamp(3rem, 7vw, 6.5rem);
       font-weight: 900; line-height: 1.0;
       letter-spacing: 0.01em; margin-bottom: 1.5rem;
       color: white; text-transform: uppercase;
   }
   .hero-title-l em {
       font-style: normal; color: var(--orange);
       display: block;
   }
   
   .hero-subtitle-l {
       font-size: clamp(1rem, 1.5vw, 1.15rem);
       color: rgba(255,255,255,0.65); margin-bottom: 2.5rem;
       max-width: 520px; line-height: 1.8;
   }
   
   .hero-trust {
       display: flex; align-items: center; gap: 1.25rem;
       margin-top: 2rem; flex-wrap: wrap;
   }
   .hero-trust-item {
       display: flex; align-items: center; gap: 0.5rem;
       font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 600;
       font-family: 'Barlow Condensed', sans-serif;
       letter-spacing: 0.05em; text-transform: uppercase;
   }
   .hero-trust-item i { color: var(--orange); }
   
   /* Hero istatistikler */
   .hero-l .d-flex.gap-4 > div { min-width: 90px; }
   .hero-l .d-flex.gap-4 .hfc-num-inline {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: 2.5rem; font-weight: 900;
       color: var(--orange); line-height: 1;
   }
   .hero-l .d-flex.gap-4 .hfc-lbl-inline {
       font-size: 0.75rem; color: rgba(255,255,255,0.5);
       font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
       margin-top: 2px;
   }
   
   /* Hero görsel kutu */
   .hero-img-wrap { position: relative; }
   .hero-img-card {
       border-radius: 4px; overflow: hidden;
       box-shadow: var(--shadow-xl);
       border: 1px solid rgba(255,255,255,0.08);
       transform: none;
       transition: transform 0.5s ease;
   }
   .hero-img-card:hover { transform: scale(1.01); }
   
   /* Hero yüzen istatistik kartlar */
   .hero-float-card {
       position: absolute;
       background: var(--navy-mid);
       border-radius: 4px;
       padding: 1rem 1.25rem;
       box-shadow: var(--shadow-lg);
       border: 1px solid rgba(255,255,255,0.1);
       border-left: 3px solid var(--orange);
       animation: floatUp 5s ease-in-out infinite;
       display: flex; align-items: center; gap: 0.75rem;
       min-width: 170px;
   }
   .hero-float-card .hfc-icon {
       width: 40px; height: 40px; border-radius: 2px;
       display: flex; align-items: center; justify-content: center;
       font-size: 1.1rem; flex-shrink: 0;
       background: rgba(232,98,10,0.15);
   }
   .hero-float-card .hfc-num {
       font-family: 'Barlow Condensed', sans-serif;
       font-weight: 900; font-size: 1.5rem;
       line-height: 1; color: white;
   }
   .hero-float-card .hfc-lbl {
       font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 600;
       text-transform: uppercase; letter-spacing: 0.04em;
   }
   .hfc-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
   .hfc-2 { top: 30px; right: -20px; animation-delay: 2.5s; }
   
   @keyframes floatUp {
       0%,100% { transform: translateY(0px); }
       50% { transform: translateY(-10px); }
   }
   
   /* ══════════════════════════════════════════════════════════
      LOGO BANDI
      ══════════════════════════════════════════════════════════ */
   .logo-band-l {
       padding: 3.5rem 0; position: relative; z-index: 1;
       background: var(--navy); border-top: none; border-bottom: none;
   }
   .logo-scroll-l {
       display: flex; gap: 4rem; align-items: center;
       animation: scrollLogosL 30s linear infinite;
   }
   .logo-item-l {
       min-width: 130px; height: 50px;
       display: flex; align-items: center; justify-content: center;
       opacity: 0.3; filter: brightness(10);
       transition: all 0.3s ease; flex-shrink: 0;
   }
   .logo-item-l:hover { opacity: 0.7; filter: brightness(10); }
   @keyframes scrollLogosL { to { transform: translateX(-50%); } }
   
   /* ══════════════════════════════════════════════════════════
      FEATURE KARTLAR — Hexagon stil ikonlar
      ══════════════════════════════════════════════════════════ */
   .feat-card-l {
       background: white;
       border: 1px solid var(--border);
       border-top: 3px solid transparent;
       border-radius: 4px; padding: 2.5rem;
       height: 100%;
       transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
       position: relative; overflow: hidden;
   }
   .feat-card-l::before {
       content: '';
       position: absolute; top: 0; left: 0; right: 0;
       height: 3px; background: var(--orange);
       transform: scaleX(0);
       transform-origin: left;
       transition: transform 0.3s ease;
   }
   .feat-card-l:hover::before { transform: scaleX(1); }
   .feat-card-l:hover {
       transform: translateY(-6px);
       box-shadow: var(--shadow-lg);
       border-color: var(--border-strong);
   }
   
   /* Köşegen süsleme */
   .feat-card-l::after {
       content: '';
       position: absolute; bottom: -20px; right: -20px;
       width: 80px; height: 80px;
       border: 2px solid var(--steel-pale);
       border-radius: 50%;
       opacity: 0.5;
       transition: all 0.3s ease;
   }
   .feat-card-l:hover::after { border-color: var(--orange-pale); }
   
   .feat-icon-l {
       width: 64px; height: 64px;
       border-radius: 4px;
       display: flex; align-items: center; justify-content: center;
       font-size: 1.6rem; margin-bottom: 1.5rem;
       position: relative;
       clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
   }
   .feat-title-l {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: 1.35rem; font-weight: 800;
       margin-bottom: 0.75rem; color: var(--text-primary);
       letter-spacing: 0.02em; text-transform: uppercase;
   }
   .feat-desc-l { color: var(--text-secondary); line-height: 1.8; font-size: 0.95rem; }
   
   /* ══════════════════════════════════════════════════════════
      PROBLEM / ÇÖZÜM
      ══════════════════════════════════════════════════════════ */
   .ps-card-l {
       background: white;
       border: 1px solid var(--border);
       border-radius: 4px; padding: 3rem; height: 100%;
       box-shadow: var(--shadow-sm);
   }
   .ps-card-l.prob { border-top: 4px solid #D64545; }
   .ps-card-l.sol  { border-top: 4px solid var(--orange); }
   
   .ps-tag-l {
       display: inline-flex; align-items: center; gap: 0.5rem;
       padding: 0.4rem 1rem; border-radius: 0;
       font-weight: 700; font-size: 0.78rem; margin-bottom: 1.5rem;
       text-transform: uppercase; letter-spacing: 0.08em;
       font-family: 'Barlow Condensed', sans-serif;
   }
   .ps-tag-l.prob { background: rgba(214,69,69,0.08); color: #D64545; border-left: 3px solid #D64545; }
   .ps-tag-l.sol  { background: var(--orange-pale); color: var(--orange); border-left: 3px solid var(--orange); }
   
   .ps-title-l {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: 1.9rem; font-weight: 800;
       margin-bottom: 2rem; letter-spacing: 0.01em;
       text-transform: uppercase;
   }
   .ps-item-l { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
   .ps-dot-l {
       width: 26px; height: 26px; border-radius: 2px;
       display: flex; align-items: center; justify-content: center;
       flex-shrink: 0; font-size: 0.85rem; margin-top: 0.2rem;
   }
   .ps-dot-l.prob { background: rgba(214,69,69,0.12); color: #D64545; }
   .ps-dot-l.sol  { background: var(--orange-pale); color: var(--orange); }
   .ps-item-text-l { color: var(--text-secondary); line-height: 1.7; }
   .ps-item-text-l strong { color: var(--text-primary); font-weight: 700; }
   
   /* ══════════════════════════════════════════════════════════
      İSTATİSTİKLER
      ══════════════════════════════════════════════════════════ */
   .stats-l {
       background: var(--navy);
       position: relative; z-index: 1; padding: 5rem 0; overflow: hidden;
   }
   
   /* Çelik ızgara arka plan */
   .stats-l::before {
       content: ''; position: absolute; inset: 0;
       background-image:
           linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
           linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
       background-size: 50px 50px;
   }
   .stats-l::after {
       content: '';
       position: absolute; top: 0; left: 0; right: 0;
       height: 3px; background: var(--orange);
   }
   
   .stat-l { text-align: center; position: relative; z-index: 1; }
   .stat-num-l {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: clamp(3rem, 5.5vw, 4.5rem); font-weight: 900;
       color: var(--orange); line-height: 1; margin-bottom: 0.5rem;
       letter-spacing: 0.01em;
   }
   .stat-lbl-l {
       color: rgba(255,255,255,0.55); font-weight: 600; font-size: 0.88rem;
       text-transform: uppercase; letter-spacing: 0.08em;
       font-family: 'Barlow Condensed', sans-serif;
   }
   .stat-divider-l {
       width: 1px; background: rgba(255,255,255,0.1);
       align-self: stretch; margin: 0.5rem 0;
   }
   
   /* ══════════════════════════════════════════════════════════
      TESTİMONİALS
      ══════════════════════════════════════════════════════════ */
   .tcard-l {
       background: white;
       border: 1px solid var(--border);
       border-radius: 4px; padding: 2.5rem; height: 100%;
       box-shadow: var(--shadow-sm);
       transition: all 0.3s ease;
       position: relative;
       border-bottom: 3px solid transparent;
   }
   .tcard-l:hover {
       transform: translateY(-6px);
       box-shadow: var(--shadow-lg);
       border-bottom-color: var(--orange);
   }
   .tcard-l::before {
       content: '\201C'; position: absolute;
       top: 1.25rem; right: 1.75rem;
       font-family: 'Barlow Condensed', sans-serif;
       font-size: 5rem; font-weight: 900;
       color: var(--steel-pale); line-height: 1;
   }
   .tcard-stars-l { display: flex; gap: 0.2rem; margin-bottom: 1.25rem; color: var(--orange); font-size: 0.95rem; }
   .tcard-text-l { color: var(--text-secondary); font-size: 0.97rem; line-height: 1.8; margin-bottom: 2rem; }
   .tcard-author-l { display: flex; align-items: center; gap: 1rem; }
   .tcard-avatar-l { width: 52px; height: 52px; border-radius: 2px; border: 2px solid var(--orange-pale); }
   .tcard-name-l { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.02em; }
   .tcard-role-l { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
   
   /* ══════════════════════════════════════════════════════════
      FAQ ACCORDION
      ══════════════════════════════════════════════════════════ */
   .faq-l .accordion-item {
       background: white;
       border: 1px solid var(--border);
       border-radius: 0; margin-bottom: 4px; overflow: hidden;
       box-shadow: none;
       border-left: 3px solid transparent;
       transition: all 0.3s ease;
   }
   .faq-l .accordion-item:has(.accordion-button:not(.collapsed)) {
       border-left-color: var(--orange);
       box-shadow: var(--shadow-sm);
   }
   .faq-l .accordion-button {
       background: transparent; color: var(--text-primary);
       font-weight: 700; font-size: 0.97rem;
       padding: 1.35rem 1.75rem; border: none;
       font-family: 'Barlow', sans-serif;
   }
   .faq-l .accordion-button:not(.collapsed) {
       color: var(--navy); background: rgba(232,98,10,0.04);
   }
   .faq-l .accordion-button:focus { box-shadow: none; }
   .faq-l .accordion-button::after {
       background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8620A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
   }
   .faq-l .accordion-body {
       padding: 0 1.75rem 1.5rem; color: var(--text-secondary); line-height: 1.8;
   }
   
   /* ══════════════════════════════════════════════════════════
      CTA BÖLÜMÜ
      ══════════════════════════════════════════════════════════ */
   .cta-l { position: relative; z-index: 1; padding: 7rem 0; }
   .cta-card-l {
       border-radius: 4px; padding: 5rem 3rem;
       text-align: center; overflow: hidden; position: relative;
       background: var(--navy);
       border-top: 4px solid var(--orange);
   }
   .cta-card-l::before {
       content: ''; position: absolute; inset: 0;
       background-image:
           linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
           linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
       background-size: 40px 40px;
   }
   .cta-card-l::after {
       content: '';
       position: absolute; bottom: 0; right: 0;
       width: 400px; height: 400px;
       background: radial-gradient(ellipse at 100% 100%, rgba(232,98,10,0.15) 0%, transparent 70%);
   }
   .cta-inner-l { position: relative; z-index: 1; }
   .cta-title-l {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
       color: white; margin-bottom: 1.25rem;
       letter-spacing: 0.01em; text-transform: uppercase;
   }
   .cta-sub-l { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 2.5rem; }
   .cta-badges-l { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
   .cta-badge-l {
       display: flex; align-items: center; gap: 0.4rem;
       background: rgba(255,255,255,0.07);
       border: 1px solid rgba(255,255,255,0.15);
       border-radius: 2px; padding: 0.4rem 1rem;
       color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 600;
       font-family: 'Barlow Condensed', sans-serif;
       letter-spacing: 0.05em; text-transform: uppercase;
   }
   
   /* ══════════════════════════════════════════════════════════
      CONTACT
      ══════════════════════════════════════════════════════════ */
   .cinfo-card-l {
       background: white; border: 1px solid var(--border);
       border-radius: 4px; padding: 2.5rem; height: 100%;
       text-align: center; box-shadow: var(--shadow-sm);
       transition: all 0.3s ease;
       border-bottom: 3px solid transparent;
   }
   .cinfo-card-l:hover {
       transform: translateY(-6px);
       box-shadow: var(--shadow-lg);
       border-bottom-color: var(--orange);
   }
   .cinfo-icon-l {
       width: 64px; height: 64px;
       clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
       background: var(--navy);
       display: flex; align-items: center; justify-content: center;
       font-size: 1.5rem; color: var(--orange); margin: 0 auto 1.5rem;
   }
   .cinfo-title-l {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: 1.2rem; font-weight: 800;
       margin-bottom: 0.5rem; text-transform: uppercase;
       letter-spacing: 0.04em;
   }
   .cinfo-desc-l  { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0.75rem; }
   .cinfo-link-l  { color: var(--orange); font-weight: 700; text-decoration: none; font-size: 0.95rem; }
   .cinfo-link-l:hover { text-decoration: underline; }
   
   /* Form */
   .form-control-l, .form-select-l {
       background: var(--steel-ultra); border: 1.5px solid var(--border);
       color: var(--text-primary); padding: 0.85rem 1.25rem;
       border-radius: 2px; font-family: 'Barlow', sans-serif; font-size: 0.95rem;
       transition: all 0.2s ease; width: 100%;
   }
   textarea.form-control-l { border-radius: 2px; resize: vertical; }
   .form-control-l:focus, .form-select-l:focus {
       outline: none; border-color: var(--orange);
       box-shadow: 0 0 0 3px rgba(232,98,10,0.12);
       background: white;
   }
   .form-control-l::placeholder { color: var(--text-muted); }
   .form-label-l {
       font-weight: 700; font-size: 0.82rem; color: var(--text-secondary);
       margin-bottom: 0.5rem; display: block;
       text-transform: uppercase; letter-spacing: 0.06em;
       font-family: 'Barlow Condensed', sans-serif;
   }
   .form-check-label-l { color: var(--text-secondary); font-size: 0.9rem; }
   .form-check-input:checked { background-color: var(--orange); border-color: var(--orange); }
   
   /* ══════════════════════════════════════════════════════════
      PRICING
      ══════════════════════════════════════════════════════════ */
   .price-card-l {
       background: white; border: 1.5px solid var(--border);
       border-radius: 4px; padding: 2.5rem; height: 100%;
       transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
       box-shadow: var(--shadow-sm);
       position: relative;
   }
   .price-card-l:hover {
       border-color: var(--orange);
       transform: translateY(-8px);
       box-shadow: var(--shadow-lg);
   }
   .price-card-l.featured {
       background: var(--navy);
       border-color: var(--orange);
       box-shadow: var(--shadow-xl);
       transform: scale(1.04);
       color: white;
   }
   .price-card-l.featured::before {
       content: '';
       position: absolute; top: 0; left: 0; right: 0;
       height: 3px; background: var(--orange);
   }
   .price-card-l.featured:hover { transform: scale(1.06) translateY(-6px); }
   
   .price-name-l {
       font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
       letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 0.75rem;
       font-family: 'Barlow Condensed', sans-serif;
   }
   .price-card-l.featured .price-name-l { color: rgba(255,255,255,0.5); }
   .price-amount-l {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: 3.5rem; font-weight: 900;
       line-height: 1; color: var(--text-primary);
   }
   .price-card-l.featured .price-amount-l { color: var(--orange); }
   .price-period-l { color: var(--text-muted); font-size: 0.95rem; }
   .price-card-l.featured .price-period-l { color: rgba(255,255,255,0.5); }
   .price-desc-l { color: var(--text-secondary); font-size: 0.9rem; margin: 1rem 0 1.75rem; }
   .price-card-l.featured .price-desc-l { color: rgba(255,255,255,0.6); }
   .price-feat-l { list-style: none; padding: 0; margin: 0 0 2rem; }
   .price-feat-l li {
       display: flex; align-items: center; gap: 0.75rem;
       padding: 0.6rem 0; font-size: 0.92rem; color: var(--text-secondary);
       border-bottom: 1px solid var(--border);
   }
   .price-feat-l li:last-child { border-bottom: none; }
   .price-feat-l li.disabled { opacity: 0.35; }
   .price-card-l.featured .price-feat-l li {
       color: rgba(255,255,255,0.75);
       border-color: rgba(255,255,255,0.08);
   }
   .price-feat-l li i { font-size: 1rem; flex-shrink: 0; }
   
   /* ══════════════════════════════════════════════════════════
      TABLE
      ══════════════════════════════════════════════════════════ */
   .tbl-l {
       background: white; border-radius: 0; overflow: hidden;
       box-shadow: var(--shadow-sm); border: 1px solid var(--border);
       border-top: 3px solid var(--orange);
   }
   .tbl-l thead th {
       background: var(--navy); color: white;
       font-weight: 700; padding: 1.25rem 1.5rem;
       border-bottom: none; font-family: 'Barlow Condensed', sans-serif;
       text-transform: uppercase; letter-spacing: 0.06em;
   }
   .tbl-l tbody td {
       padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
       color: var(--text-secondary); vertical-align: middle;
   }
   .tbl-l tbody tr:last-child td { border-bottom: none; }
   .tbl-l tbody tr:hover td { background: var(--steel-ultra); }
   .tbl-l tbody td:first-child { font-weight: 700; color: var(--text-primary); }
   
   /* ══════════════════════════════════════════════════════════
      FOOTER
      ══════════════════════════════════════════════════════════ */
   footer {
       background: var(--navy);
       color: rgba(255,255,255,0.55);
       padding: 5rem 0 2.5rem; position: relative; z-index: 1;
       border-top: 3px solid var(--orange);
   }
   footer::before {
       content: '';
       position: absolute; inset: 0;
       background-image:
           linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
           linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
       background-size: 40px 40px;
       pointer-events: none;
   }
   footer .container { position: relative; z-index: 1; }
   
   .footer-brand-l {
       font-family: 'Barlow Condensed', sans-serif;
       font-size: 1.8rem; font-weight: 900;
       color: white; display: inline-block; margin-bottom: 1rem;
       letter-spacing: 0.06em;
       -webkit-text-fill-color: white;
       background: none;
   }
   .footer-desc-l {
       color: rgba(255,255,255,0.45); line-height: 1.8;
       margin-bottom: 2rem; max-width: 320px; font-size: 0.9rem;
   }
   .footer-social-l { display: flex; gap: 0.65rem; }
   .soc-btn-l {
       width: 42px; height: 42px; border-radius: 2px;
       background: rgba(255,255,255,0.06);
       border: 1px solid rgba(255,255,255,0.1);
       display: flex; align-items: center; justify-content: center;
       color: rgba(255,255,255,0.5); font-size: 1rem;
       transition: all 0.3s ease; text-decoration: none;
   }
   .soc-btn-l:hover {
       background: var(--orange);
       border-color: var(--orange);
       color: white; transform: translateY(-3px);
   }
   .footer-heading-l {
       font-weight: 800; color: white; margin-bottom: 1.25rem;
       font-size: 0.8rem; text-transform: uppercase;
       letter-spacing: 0.1em; font-family: 'Barlow Condensed', sans-serif;
   }
   .footer-link-l {
       display: block; color: rgba(255,255,255,0.45); text-decoration: none;
       margin-bottom: 0.6rem; font-size: 0.88rem; transition: all 0.2s ease;
   }
   .footer-link-l:hover {
       color: var(--orange); padding-left: 6px;
   }
   .footer-bottom-l {
       border-top: 1px solid rgba(255,255,255,0.08);
       margin-top: 3.5rem; padding-top: 2rem;
       color: rgba(255,255,255,0.3); font-size: 0.83rem;
   }
   
   /* ══════════════════════════════════════════════════════════
      ANİMASYONLAR
      ══════════════════════════════════════════════════════════ */
   @keyframes fadeInUp    { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
   @keyframes fadeInDown  { from{opacity:0;transform:translateY(-28px)} to{opacity:1;transform:translateY(0)} }
   @keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
   .anim-up    { animation: fadeInUp    0.65s ease both; }
   .anim-down  { animation: fadeInDown  0.65s ease both; }
   .anim-right { animation: fadeInRight 0.85s ease 0.35s both; }
   .delay-1 { animation-delay: 0.1s; }
   .delay-2 { animation-delay: 0.2s; }
   .delay-3 { animation-delay: 0.35s; }
   .delay-4 { animation-delay: 0.5s;  }
   
   /* ══════════════════════════════════════════════════════════
      RESPONSIVE
      ══════════════════════════════════════════════════════════ */
   @media (max-width: 991px) {
       .navbar-light-custom {
           padding: 0 1rem;
       }
       .nav-link-l { padding: 0.75rem 1rem !important; border-bottom: none; }
       .hero-img-card { transform: none; }
       .hfc-1, .hfc-2 { display: none; }
       .price-card-l.featured { transform: scale(1); }
       .hero-l { min-height: auto; padding: 120px 0 60px; }
   }
   @media (max-width: 768px) {
       .sec { padding: 4.5rem 0; }
       .sec-title { font-size: 2.2rem; }
       .hero-title-l { font-size: 3rem; }
       .cta-card-l { padding: 3.5rem 1.5rem; }
   }
   
   /* ══════════════════════════════════════════════════════════
      EK YARDIMCI SINIFLAR
      ══════════════════════════════════════════════════════════ */
   
   /* Turuncu çizgi divider */
   .divider-orange {
       height: 3px; background: var(--orange);
       border: none; opacity: 1; margin: 0;
   }
   
   /* Köşeli etiket */
   .badge-steel {
       display: inline-flex; align-items: center; gap: 0.4rem;
       padding: 0.3rem 0.75rem; background: var(--navy);
       color: var(--orange); font-family: 'Barlow Condensed', sans-serif;
       font-size: 0.75rem; font-weight: 700;
       text-transform: uppercase; letter-spacing: 0.08em;
       clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
   }
   
   /* İkon kutu — vurgu */
   .icon-box-orange {
       width: 48px; height: 48px;
       background: var(--orange-pale);
       border: 1px solid rgba(232,98,10,0.2);
       border-radius: 2px;
       display: flex; align-items: center; justify-content: center;
       color: var(--orange); font-size: 1.25rem;
   }
   
   /* Section çizgi ayırıcı */
   .section-rule {
       border: none;
       border-top: 1px solid var(--border);
       margin: 0;
   }