  :root {
    --blue: #1b2a55;
    --blue-dark: #121d3d;
    --blue-soft: #eef1f8;
    --accent: #c8a04a;
    --accent-dark: #a9853a;
    --dark: #2b2f36;
    --dark-2: #23272d;
    --text-dark: #2b2f36;
    --text-muted: #8a909a;
    --light-bg: #f2f4f7;
    --card-bg: #ffffff;
    --footer-bg: #23272d;
    --footer-muted: #9aa0aa;
    --white: #ffffff;
    --border: #e2e6eb;
    --radius: 2px;
    --radius-lg: 6px;
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 18px 50px rgba(20, 26, 40, 0.10);
    --transition: all 0.25s ease;
    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --header-h: 74px;
    --hero-h: 720px;
    --hero-fold: 150px; /* ilk ekranda hero altında görünecek kart payı */
    --section-pad: 84px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }

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

  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Section heading shared */
  .sec-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
  .sec-head__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 14px;
  }
  .sec-head__title {
    font-family: var(--font);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.5px;
    font-variant-ligatures: none;
    -webkit-font-feature-settings: "liga" 0, "dlig" 0;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .sec-head__sub { margin-top: 14px; font-size: 15px; color: var(--text-muted); }

  /* Reveal animation */
  [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

  /* ---------------- HEADER ---------------- */
  .header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease;
  }
  .header.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07); }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    width: 100%;
    padding: 0 0 0 28px;
  }
  .logo { display: flex; align-items: center; flex-shrink: 0; height: 100%; padding-left: 4px; position: relative; z-index: 2; }
  .logo__img { height: 220px; width: auto; max-width: 220px; object-fit: contain; display: block; }
  .nav { display: flex; gap: 30px; margin-right: 28px; }
  .nav__item { position: relative; }
  .nav__item > a {
    font-size: 14px; font-weight: 600; letter-spacing: 0.6px; color: #3a4049;
    text-transform: uppercase; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 5px; height: var(--header-h); position: relative;
  }
  .nav__item > a:hover { color: var(--blue); }
  .nav__item > a::after {
    content: ""; position: absolute; left: 0; bottom: 18px; width: 0; height: 2px;
    background: var(--blue); transition: width 0.25s ease;
  }
  .nav__item:hover > a::after { width: 100%; }
  .nav__item .caret { width: 9px; height: 9px; opacity: 0.6; transition: transform 0.25s ease; }
  .nav__item:hover .caret { transform: rotate(180deg); }

  /* ---------------- MEGA MENU ---------------- */
  .mega {
    position: fixed; left: 0; right: 0; top: var(--header-h); background: #fff;
    border-top: 1px solid var(--border); box-shadow: 0 24px 40px rgba(0, 0, 0, 0.10);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s; z-index: 45;
  }
  .nav__item:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
  .mega__inner {
    display: grid; grid-template-columns: 1fr 320px; gap: 40px;
    max-width: 1180px; margin: 0 auto; padding: 36px 20px; align-items: stretch;
  }
  .mega__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; align-content: start; }
  .mega__link { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; border-radius: 10px; border: 1px solid transparent; transition: var(--transition); }
  .mega__link:hover { background: #f5f6ff; border-color: #e2e5ff; transform: translateY(-2px); }
  .mega__link .ico { width: 42px; height: 42px; flex-shrink: 0; background: var(--light-bg); color: var(--blue); border-radius: 10px; display: grid; place-items: center; transition: var(--transition); }
  .mega__link:hover .ico { background: var(--blue); color: #fff; }
  .mega__link .ico svg { width: 20px; height: 20px; }
  .mega__link strong { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
  .mega__link span { font-size: 12px; color: var(--text-muted); line-height: 1.45; text-transform: none; letter-spacing: 0; }
  .mega__promo { background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%); border-radius: 12px; padding: 28px 26px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
  .mega__promo .ico { width: 46px; height: 46px; background: rgba(255,255,255,0.15); border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px; }
  .mega__promo .ico svg { width: 24px; height: 24px; }
  .mega__promo h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .mega__promo p { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
  .mega__promo .mega__cta { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: #fff; color: var(--blue); font-size: 12.5px; font-weight: 600; letter-spacing: 0.4px; padding: 11px 20px; border-radius: 6px; text-transform: uppercase; transition: var(--transition); }
  .mega__promo .mega__cta:hover { transform: translateX(3px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }
  .mega__promo .mega__cta svg { width: 14px; height: 14px; }

  .header__search { width: var(--header-h); height: var(--header-h); align-self: stretch; border: none; background: var(--blue); color: #fff; cursor: pointer; display: grid; place-items: center; transition: var(--transition); flex-shrink: 0; }
  .header__search:hover { background: var(--blue-dark); }
  .burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; margin-right: 16px; z-index: 70; }
  .burger span { width: 24px; height: 2px; background: var(--dark); display: block; transition: transform 0.3s ease, opacity 0.3s ease; }
  body.drawer-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.drawer-open .burger span:nth-child(2) { opacity: 0; }
  body.drawer-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ---------------- MOBILE DRAWER (PREMIUM) ---------------- */
  .drawer-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(12,18,38,0.55); backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s; }
  .drawer-overlay.open { opacity: 1; visibility: visible; }
  .drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 340px; max-width: 88vw; z-index: 95; background: #fff; box-shadow: -18px 0 60px rgba(12,18,38,0.32); transform: translateX(100%); transition: transform 0.45s cubic-bezier(.16,1,.3,1); display: flex; flex-direction: column; overflow-y: auto; }
  .drawer.open { transform: translateX(0); }

  /* Başlık — navy gradient + altın alt çizgi, logo yok */
  .drawer__head { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 22px 22px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); }
  .drawer__head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%); }
  .drawer__head-label { display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.92); padding-left: 14px; position: relative; }
  .drawer__head-label::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 16px; border-radius: 3px; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%); }
  .drawer__close { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.08); border-radius: 10px; cursor: pointer; display: grid; place-items: center; color: #fff; transition: var(--transition); }
  .drawer__close:hover { background: var(--accent); border-color: var(--accent); color: var(--blue-dark); transform: rotate(90deg); }
  .drawer__close svg { width: 18px; height: 18px; pointer-events: none; }

  /* Arama tetikleyici — belirgin, altın ikon */
  .drawer__search { display: flex; align-items: center; gap: 12px; margin: 18px 20px 10px; padding: 0 16px; height: 50px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--light-bg); color: var(--text-muted); cursor: pointer; transition: var(--transition); width: calc(100% - 40px); box-shadow: inset 0 1px 2px rgba(0,0,0,0.03); }
  .drawer__search:hover { border-color: var(--accent); background: #fff; color: var(--blue); box-shadow: 0 6px 18px rgba(27,42,85,0.10); }
  .drawer__search svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--accent); }
  .drawer__search span { font-size: 14px; font-weight: 500; }

  .drawer__nav { list-style: none; padding: 10px 0 4px; margin: 0; flex: 1; }
  .drawer__nav > li { border-bottom: 1px solid var(--border); }
  /* Drawer açıldığında linkler sırayla belirir */
  .drawer.open .drawer__nav > li { opacity: 0; transform: translateX(16px); animation: drawerItemIn 0.4s cubic-bezier(.16,1,.3,1) forwards; }
  .drawer.open .drawer__nav > li:nth-child(1) { animation-delay: 0.10s; }
  .drawer.open .drawer__nav > li:nth-child(2) { animation-delay: 0.16s; }
  .drawer.open .drawer__nav > li:nth-child(3) { animation-delay: 0.22s; }
  .drawer.open .drawer__nav > li:nth-child(4) { animation-delay: 0.28s; }
  .drawer.open .drawer__nav > li:nth-child(5) { animation-delay: 0.34s; }
  @keyframes drawerItemIn { to { opacity: 1; transform: translateX(0); } }
  .drawer__link { position: relative; display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 20px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: #2b3340; background: none; border: none; cursor: pointer; font-family: var(--font); text-align: left; transition: var(--transition); }
  /* Sol kenarda altın accent çizgisi */
  .drawer__link::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scaleY(0); width: 3px; height: 60%; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%); border-radius: 0 3px 3px 0; transition: transform 0.25s ease; }
  .drawer__link:hover { color: var(--blue); background: linear-gradient(90deg, var(--blue-soft) 0%, rgba(238,241,248,0) 100%); padding-left: 24px; }
  .drawer__link:hover::before { transform: translateY(-50%) scaleY(1); }
  .drawer__item.open > .drawer__link { color: var(--blue); background: var(--blue-soft); }
  .drawer__item.open > .drawer__link::before { transform: translateY(-50%) scaleY(1); }
  .drawer__link .chev { width: 16px; height: 16px; transition: transform 0.3s ease; flex-shrink: 0; }
  .drawer__item.open .drawer__link .chev { transform: rotate(180deg); color: var(--accent); }
  .drawer__sub { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; background: var(--light-bg); transition: max-height 0.4s ease; }
  .drawer__item.open .drawer__sub { max-height: 320px; }
  .drawer__sub a { position: relative; display: block; padding: 12px 20px 12px 36px; font-size: 13px; color: #5a616b; border-top: 1px solid var(--border); transition: var(--transition); }
  .drawer__sub a::before { content: ""; position: absolute; left: 22px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0; transition: var(--transition); }
  .drawer__sub a:hover { color: var(--blue); padding-left: 42px; background: #fff; }
  .drawer__sub a:hover::before { opacity: 1; }

  /* Footer — premium iletişim + altın WhatsApp CTA */
  .drawer__foot { padding: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%); }
  .drawer__foot a { display: flex; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; color: var(--dark); transition: var(--transition); }
  .drawer__foot a:not(.drawer__cta):hover { color: var(--blue); }
  .drawer__foot a svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
  .drawer__cta { justify-content: center; height: 50px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--blue-dark) !important; font-weight: 700; letter-spacing: 0.3px; border-radius: 12px; margin-top: 4px; box-shadow: 0 8px 20px rgba(200,160,74,0.30); transition: var(--transition); }
  .drawer__cta svg { color: var(--blue-dark) !important; }
  .drawer__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,160,74,0.42); }

  /* ---------------- HERO ---------------- */
  .hero {
    position: relative;
    background:
      linear-gradient(90deg, rgba(20,24,30,0.90) 0%, rgba(24,28,36,0.62) 38%, rgba(35,39,45,0.12) 70%, rgba(35,39,45,0) 100%),
      url('../img/hero-reverse.webp') center top/cover no-repeat;
    height: calc(100vh - var(--header-h) - var(--header-h));
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero__content { margin-right: auto; width: 100%; max-width: 1180px; padding: 0 20px 0 160px; text-align: left; color: #fff; }
  .hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
  .hero__eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); display: inline-block; }
  .hero__eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--accent); display: inline-block; }
  .hero__title { font-family: var(--font-display); font-size: 60px; font-weight: 600; letter-spacing: -0.5px; line-height: 1.08; text-shadow: 0 2px 16px rgba(0,0,0,0.32); }
  .hero__subtitle { font-size: 18px; font-weight: 400; margin-top: 20px; max-width: 540px; color: rgba(255,255,255,0.9); text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
  .hero__actions { display: flex; gap: 14px; justify-content: flex-start; margin-top: 34px; }
  .hero__trust { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
  .hero__trust-item { display: flex; align-items: center; gap: 12px; }
  .hero__trust-item svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
  .hero__trust-item span { font-size: 13px; line-height: 1.35; color: rgba(255,255,255,0.92); }
  .hero__trust-item strong { display: block; font-size: 15px; font-weight: 700; color: #fff; }

  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 48px; padding: 0 32px; font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: var(--radius); cursor: pointer; transition: var(--transition); }
  .btn svg { width: 15px; height: 15px; }
  .btn--primary { background: var(--blue); color: #fff; border: 2px solid var(--blue); }
  .btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
  .btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.85); }
  .btn--outline:hover { background: rgba(255,255,255,0.15); }
  .btn--gold { background: var(--accent); color: #fff; border: 2px solid var(--accent); }
  .btn--gold:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

  /* Side rail — fixed; header altından viewport dibine. WhatsApp (en alt 74px) sağ-alt köşeye sabit; üst kenarı hero altıyla hizalı (hero = 100vh - 2*header) */
  .side-rail { position: fixed; right: 0; top: var(--header-h); bottom: 0; width: var(--header-h); z-index: 45; background: #fff; box-shadow: -1px 0 0 rgba(0, 0, 0, 0.06); display: flex; flex-direction: column; align-items: center; }
  .side-rail__icons { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
  .side-rail__icons a { width: var(--header-h); height: 66px; color: var(--blue); display: grid; place-items: center; transition: var(--transition); }
  .side-rail__icons a:hover { background: #f2f4f7; }
  .side-rail__icons a svg { width: 24px; height: 24px; }

  /* Telefon ikonu hover titreme */
  @keyframes phoneShake {
    0%,100% { transform: rotate(0); }
    15% { transform: rotate(-14deg); }
    30% { transform: rotate(11deg); }
    45% { transform: rotate(-9deg); }
    60% { transform: rotate(7deg); }
    75% { transform: rotate(-4deg); }
  }
  .side-rail__icons a.has-phone:hover svg { animation: phoneShake 0.55s ease-in-out; transform-origin: 50% 50%; }

  /* ---------------- TELEFON MODAL ---------------- */
  .phone-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(18, 24, 40, 0.55); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s; }
  .phone-modal.open { opacity: 1; visibility: visible; }
  .phone-modal__card { position: relative; width: 100%; max-width: 380px; background: #fff; border-radius: var(--radius-lg); padding: 40px 34px 32px; text-align: center; box-shadow: 0 30px 70px rgba(15, 20, 35, 0.35); transform: translateY(16px) scale(0.96); transition: transform 0.35s cubic-bezier(.2,.8,.2,1); overflow: hidden; }
  .phone-modal.open .phone-modal__card { transform: translateY(0) scale(1); }
  .phone-modal__top { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); }
  .phone-modal__close { position: absolute; top: 14px; right: 14px; z-index: 6; width: 34px; height: 34px; border: 1px solid var(--border); background: #fff; border-radius: 8px; cursor: pointer; display: grid; place-items: center; color: var(--text-muted); transition: var(--transition); }
  .phone-modal__close:hover { background: var(--light-bg); color: var(--blue); border-color: var(--blue); }
  .phone-modal__close svg { width: 16px; height: 16px; pointer-events: none; }
  .phone-modal__icon { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; display: grid; place-items: center; position: relative; }
  .phone-modal__icon svg { width: 32px; height: 32px; }
  .phone-modal__icon::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid var(--blue); opacity: 0.35; animation: phonePulse 1.8s ease-out infinite; }
  @keyframes phonePulse { 0% { transform: scale(0.9); opacity: 0.5; } 100% { transform: scale(1.35); opacity: 0; } }
  .phone-modal__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 8px; }
  .phone-modal__title { font-family: var(--font); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
  .phone-modal__number { display: block; font-size: 28px; font-weight: 700; color: var(--blue); letter-spacing: 0.5px; margin-bottom: 8px; transition: var(--transition); }
  .phone-modal__number:hover { color: var(--blue-dark); }
  .phone-modal__note { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; }
  .phone-modal__actions { display: flex; gap: 12px; }
  .phone-modal__actions .btn { flex: 1; height: 48px; padding: 0; }
  .phone-modal__actions .btn--ghost { background: transparent; color: var(--text-muted); border: 2px solid var(--border); }
  .phone-modal__actions .btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

  /* Harita (konum) modal — telefon modalını paylaşır + harita eklentileri */
  .map-modal__card { max-width: 520px; padding: 0; text-align: left; overflow: hidden; }
  .map-modal__body { padding: 38px 40px 36px; position: relative; }
  .map-modal__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
  .map-modal__pin { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; display: grid; place-items: center; }
  .map-modal__pin svg { width: 24px; height: 24px; }
  .map-modal__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 4px; }
  .map-modal__title { font-family: var(--font); font-size: 20px; font-weight: 700; color: var(--dark); line-height: 1.25; }
  .map-modal__frame { width: 100%; height: 280px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(15,20,35,0.10); margin-bottom: 22px; }
  .map-modal__map { width: 100%; height: 100%; border: 0; display: block; background: var(--light-bg); }
  .map-modal__address { font-size: 14.5px; line-height: 1.7; color: var(--text-dark); margin-bottom: 26px; }
  .map-modal__actions { display: flex; gap: 12px; }
  .map-modal__actions .btn { flex: 1; height: 50px; padding: 0; }
  .map-modal__actions .btn--ghost { background: transparent; color: var(--text-muted); border: 2px solid var(--border); }
  .map-modal__actions .btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
  .side-rail__social { margin-top: auto; margin-bottom: 16px; display: flex; flex-direction: column-reverse; align-items: center; gap: 14px; }
  .side-rail__social a { writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); font-size: 10px; font-weight: 800; letter-spacing: 1px; color: #606369; transition: var(--transition); }
  .side-rail__social a:hover { color: var(--blue); }
  .side-rail__bottom { width: 100%; }
  .side-rail__bottom a { width: 100%; height: var(--header-h); background: var(--blue); color: #fff; display: grid; place-items: center; transition: var(--transition); }
  .side-rail__bottom a:hover { background: var(--blue-dark); }
  .side-rail__bottom a svg { width: 20px; height: 20px; }

  /* ---------------- SERVICE CARDS ---------------- */
  .models { margin-top: -40px; position: relative; z-index: 10; padding-bottom: var(--section-pad); }
  .models__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .model-card { position: relative; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; transition: var(--transition); height: 500px; display: flex; flex-direction: column; background: #fff; }
  .model-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); z-index: 4; transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
  .model-card:hover::before { transform: scaleX(1); }
  .model-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.14); }
  .model-card:hover .model-card__img { transform: scale(1.06); }
  /* Görsel kartın tamamını kaplar (arka plan), alt %65 görünür */
  .model-card__media { order: 1; position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; }
  .model-card__img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05) contrast(1.03); transition: transform 0.5s ease; }
  /* Metin üstte — opak beyaz, altı görsele saydam geçişli (panel görselin üzerine biner) */
  .model-card__body { order: 0; position: relative; z-index: 2; height: 43%; width: 100%; padding: 23px 26px 40px; background: linear-gradient(to top, rgba(255,255,255,0) 0, rgba(255,255,255,0.3) 12px, rgba(255,255,255,0.7) 26px, rgba(255,255,255,0.92) 38px, #fff 48px, #fff 100%); display: flex; flex-direction: column; justify-content: flex-start; }
  .model-card__num { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--accent-dark); letter-spacing: 1px; margin-bottom: 10px; }
  .model-card__title { font-family: var(--font-display); font-size: 25px; font-weight: 600; color: #1c222b; margin-bottom: 10px; }
  .model-card__desc { font-size: 13.5px; font-weight: 500; color: #3a414c; line-height: 1.6; }
  .model-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.6px; color: var(--blue); text-transform: uppercase; transition: var(--transition); }
  .model-card__link svg { width: 14px; height: 14px; }
  .model-card__link:hover { color: var(--blue-dark); gap: 10px; }

  /* ---------------- WHY US ---------------- */
  .why { padding: var(--section-pad) 0; background: var(--white); border-top: 1px solid var(--border); }
  .why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .why__item { padding: 32px 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); background: #fff; }
  .why__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: transparent; }
  .why__ico { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 20px; transition: var(--transition); }
  .why__item:hover .why__ico { background: var(--blue); color: #fff; }
  .why__ico svg { width: 28px; height: 28px; }
  .why__item h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
  .why__item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

  /* ---------------- PROCESS ---------------- */
  .process { padding: var(--section-pad) 0; background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%); }
  .process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
  .process__step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
  .process__step:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
  .process__no { font-family: var(--font-display); font-size: 44px; font-weight: 500; line-height: 1; color: var(--blue-soft); -webkit-text-stroke: 1px #c8cdf5; margin-bottom: 16px; }
  .process__step:hover .process__no { color: var(--accent); -webkit-text-stroke: 0; }
  .process__step h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
  .process__step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

  /* ---------------- SIRKULER ---------------- */
  .dealer { background: linear-gradient(180deg, #eef3fb 0%, #f6f9fd 100%); padding: var(--section-pad) 0; position: relative; overflow: hidden; }
  .dealer__inner { position: relative; z-index: 2; }
  .circular-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; text-align: left; }
  .dealer__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 36px; font-size: 13px; font-weight: 600; letter-spacing: 0.6px; color: var(--blue); text-transform: uppercase; }
  .dealer__center { text-align: center; }
  .dealer__more:hover { color: var(--blue-dark); }

  .circ-item { display: flex; align-items: center; gap: 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 26px; transition: var(--transition); position: relative; overflow: hidden; }
  .circ-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%); transform: scaleY(0); transform-origin: top; transition: transform 0.3s ease; }
  .circ-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: transparent; }
  .circ-item:hover::before { transform: scaleY(1); }
  .circ-item__no { flex-shrink: 0; width: 110px; text-align: center; border-right: 1px solid var(--border); padding-right: 20px; }
  .circ-item__badge { display: inline-block; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--blue); background: var(--blue-soft); border-radius: 8px; padding: 6px 12px; }
  .circ-item__date { display: block; font-size: 11.5px; color: var(--text-muted); margin-top: 8px; }
  .circ-item__body { flex: 1; min-width: 0; }
  .circ-item__title { font-size: 15.5px; font-weight: 600; color: var(--dark); line-height: 1.5; }
  .circ-item__sub { display: block; margin-top: 5px; font-size: 12px; color: var(--text-muted); }

  /* ---------------- CTA BANNER (Full-Width Rounded Card) ---------------- */
  .cta-banner-section { padding: var(--section-pad) 0; background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%); }
  .cta-banner { position: relative; overflow: hidden; border-radius: 24px; padding: 54px 50px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); box-shadow: 0 18px 44px rgba(27, 42, 85, 0.30); }
  .cta-banner__bg { position: absolute; inset: 0; pointer-events: none; }
  .cta-banner__bg::before { content: ""; position: absolute; top: -90px; right: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.06); filter: blur(60px); }
  .cta-banner__bg::after { content: ""; position: absolute; bottom: -120px; left: -40px; width: 280px; height: 280px; border-radius: 50%; background: rgba(200,160,74,0.12); filter: blur(70px); }
  .cta-banner__content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
  .cta-banner__body { flex: 1; min-width: 260px; }
  .cta-banner__eyebrow { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; margin-bottom: 16px; background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); border-radius: 20px; font-size: 12px; font-weight: 600; color: #fff; letter-spacing: 0.5px; text-transform: uppercase; }
  .cta-banner__title { font-size: 30px; font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: 0.3px; margin-bottom: 12px; }
  .cta-banner__desc { font-size: 15px; color: rgba(255,255,255,0.88); line-height: 1.65; max-width: 640px; }
  .cta-banner__action { flex-shrink: 0; }
  .cta-banner__btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; background: #fff; color: var(--blue); border-radius: 12px; font-size: 15px; font-weight: 600; letter-spacing: 0.3px; transition: var(--transition); box-shadow: 0 8px 20px rgba(15,23,42,0.18); white-space: nowrap; }
  .cta-banner__btn:hover { background: var(--dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,23,42,0.28); }
  @media (max-width: 991px) { .cta-banner__content { flex-direction: column; text-align: center; } .cta-banner__desc { margin: 0 auto; } .cta-banner__action { width: 100%; display: flex; justify-content: center; } }
  @media (max-width: 768px) { .cta-banner { padding: 36px 26px; border-radius: 18px; } .cta-banner__title { font-size: 24px; } }

  /* ---------------- BLOG CARDS (Anasayfa Son Yazılar) ---------------- */
  .blog-cards { padding: var(--section-pad) 0; background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%); border-top: 1px solid var(--border); }
  .blog-cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
  .blog-card:hover { box-shadow: 0 8px 24px rgba(15,23,42,0.08); transform: translateY(-4px); }
  .blog-card__media { display: block; position: relative; overflow: hidden; height: 200px; }
  .blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .blog-card:hover .blog-card__media img { transform: scale(1.05); }
  .blog-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #abb9d8 0%, #e8edf5 100%); display: grid; place-items: center; color: var(--blue); }
  .blog-card__placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
  .blog-card__cat { position: absolute; top: 12px; left: 12px; display: inline-block; padding: 3px 10px; background: #fff; color: var(--accent-dark); border-radius: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px; z-index: 2; }
  .blog-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
  .blog-card__title { margin-bottom: 10px; }
  .blog-card__title a { font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--dark); line-height: 24px; letter-spacing: 0.02rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: var(--transition); }
  .blog-card__title a:hover { color: var(--accent-dark); }
  .blog-card__excerpt { font-size: 13px; color: var(--text-muted); line-height: 22px; font-weight: 300; letter-spacing: 0.02rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 16px; }
  .blog-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
  .blog-card__date { font-size: 13px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 5px; }
  .blog-card__link { font-size: 13px; font-weight: 600; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
  .blog-card__link:hover { color: var(--blue); }
  .blog-cards__more { text-align: center; margin-top: 40px; }
  @media (max-width: 991px) { .blog-cards__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 575px) { .blog-cards__grid { grid-template-columns: 1fr; } }
  .circ-item__download { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 22px; background: var(--blue); color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px; border-radius: var(--radius); transition: var(--transition); }
  .circ-item__download:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(27,42,85,0.22); }
  .circ-item__download svg { width: 15px; height: 15px; }

  @media (max-width: 768px) {
    .circ-item { flex-wrap: wrap; gap: 16px; }
    .circ-item__no { width: auto; border-right: none; padding-right: 0; display: flex; align-items: center; gap: 12px; }
    .circ-item__date { margin-top: 0; }
    .circ-item__download { width: 100%; justify-content: center; }
  }

  /* ---------------- STATS ---------------- */
  .stats { padding: var(--section-pad) 0; background: linear-gradient(150deg, var(--dark-2) 0%, #2f3b52 100%); color: #fff; }
  .stats__wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
  .stats__intro h2 { font-family: var(--font-display); font-size: 34px; font-weight: 600; line-height: 1.2; margin-bottom: 18px; }
  .stats__intro .sec-head__eyebrow { color: var(--accent); }
  .stats__intro p { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.8; }
  .stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .stat { padding: 28px 26px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); }
  .stat__num { font-family: var(--font-display); font-size: 46px; font-weight: 600; line-height: 1; color: #fff; }
  .stat__num .suffix { color: var(--accent); }
  .stat__label { font-size: 13px; color: rgba(255,255,255,0.72); margin-top: 10px; letter-spacing: 0.3px; }

  /* ---------------- TESTIMONIAL ---------------- */
  .testimonial { padding: var(--section-pad) 0; background: #fff; }
  .testimonial__inner { max-width: 820px; margin: 0 auto; text-align: center; }
  .testimonial__quote-mark { font-family: var(--font-display); font-size: 80px; line-height: 0.6; color: var(--blue-soft); -webkit-text-stroke: 1px #c8cdf5; }
  .testimonial__text { font-family: var(--font-display); font-size: 26px; font-weight: 500; line-height: 1.5; color: var(--dark); margin: 10px 0 28px; letter-spacing: -0.3px; }
  .testimonial__author { font-size: 14px; font-weight: 700; color: var(--dark); }
  .testimonial__role { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

  /* ---------------- PROMO TILES ---------------- */
  .promo { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
  .promo__grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 24px; }
  .promo-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 220px; display: flex; align-items: flex-end; color: #fff; transition: var(--transition); }
  .promo-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 0.45s ease; }
  .promo-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,26,34,0.10) 0%, rgba(20,26,34,0.78) 100%); z-index: 2; }
  .promo-tile__text { position: relative; z-index: 3; padding: 28px; }
  .promo-tile__title { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
  .promo-tile__sub { font-size: 13px; font-weight: 400; margin-top: 6px; opacity: 0.92; }
  .promo-tile:hover img { transform: scale(1.05); }
  .promo-tile--tall { grid-row: span 2; min-height: 464px; }

  /* ---------------- CTA BAND ---------------- */
  .cta-band { padding: 92px 0; background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%); position: relative; overflow: hidden; }
  .cta-band__inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; color: #fff; }
  .cta-band h2 { font-family: var(--font-display); font-size: 38px; font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
  .cta-band p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
  .cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-band .btn--light { background: #fff; color: var(--blue); border: 2px solid #fff; }
  .cta-band .btn--light:hover { background: rgba(255,255,255,0.9); }

  /* ---------------- FOOTER ---------------- */
  .footer { background: var(--footer-bg); color: var(--footer-muted); padding: 56px 0 22px; }
  .footer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer__logo { color: #fff; font-weight: 700; letter-spacing: 0.5px; font-size: 14px; }
  .footer__totop { width: 42px; height: 42px; background: var(--blue); color: #fff; border: none; border-radius: var(--radius); cursor: pointer; display: grid; place-items: center; transition: var(--transition); }
  .footer__totop:hover { background: var(--blue-dark); }
  .footer__cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; padding: 40px 0; }
  .footer__col h4 { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 18px; }
  .footer__col li { margin-bottom: 11px; }
  .footer__col a { font-size: 12.5px; color: var(--footer-muted); transition: var(--transition); }
  .footer__col a:hover { color: #fff; padding-left: 3px; }
  .footer__col p { font-size: 12.5px; line-height: 1.7; }
  .footer__col p strong { color: #fff; }
  .footer__col--contact { grid-column: span 2; }
  .footer__sub { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
  .newsletter { display: flex; align-items: center; gap: 12px; }
  .newsletter input { height: 44px; width: 280px; border: 1px solid rgba(255,255,255,0.18); background: transparent; border-radius: var(--radius); padding: 0 14px; color: #fff; font-family: var(--font); font-size: 12.5px; outline: none; }
  .newsletter input::placeholder { color: var(--footer-muted); }
  .newsletter input:focus { border-color: var(--blue); }
  .newsletter button { height: 44px; padding: 0 24px; background: var(--blue); color: #fff; border: none; border-radius: var(--radius); font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: 0.6px; cursor: pointer; transition: var(--transition); }
  .newsletter button:hover { background: var(--blue-dark); }
  .footer__social { display: flex; gap: 14px; }
  .footer__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: grid; place-items: center; color: #fff; transition: var(--transition); }
  .footer__social a:hover { background: var(--blue); border-color: var(--blue); }
  .footer__social svg { width: 16px; height: 16px; }
  .footer__copy { text-align: left; font-size: 11px; color: var(--footer-muted); padding-top: 24px; }

  /* ---------------- RESPONSIVE ---------------- */
  @media (max-width: 992px) {
    :root { --section-pad: 72px; }
    .nav { display: none; }
    .burger { display: flex; }
    .header__search { display: none; }
    .hero__content { padding: 0 20px 0 80px; }
    .hero__title { font-size: 44px; }
    .models__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .process__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__wrap { grid-template-columns: 1fr; gap: 36px; }
    .footer__cols { grid-template-columns: repeat(3, 1fr); }
    .sec-head__title { font-size: 32px; }
  }
  @media (max-width: 768px) {
    .hero { min-height: 540px; }
    .logo__img { height: 190px; }
    .hero__content { text-align: center; padding: 0 20px; }
    .hero__eyebrow { justify-content: center; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions, .hero__trust { justify-content: center; flex-wrap: wrap; }
    .hero__title { font-size: 34px; }
    .why__grid { grid-template-columns: 1fr; }
    .process__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr; }
    .circular { flex-wrap: wrap; }
    .circular__no { border-right: none; text-align: left; padding-right: 0; }
    .promo__grid { grid-template-columns: 1fr; }
    .promo-tile--tall { grid-row: auto; min-height: 220px; }
    .side-rail { display: none; }
    .footer__cols { grid-template-columns: repeat(2, 1fr); }
    .footer__col--contact { grid-column: span 1; }
    .footer__sub { flex-direction: column; align-items: flex-start; }
    .newsletter { width: 100%; }
    .newsletter input { flex: 1; width: auto; }
    .testimonial__text { font-size: 21px; }
  }
  @media (max-width: 480px) {
    .hero__title { font-size: 28px; }
    .footer__cols { grid-template-columns: 1fr; }
    .cta-band h2 { font-size: 28px; }
  }

  /* ---------------- SEARCH OVERLAY (PREMIUM / AÇIK) ---------------- */
  .search-overlay { position: fixed; inset: 0; z-index: 100; background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(244,246,250,0.99) 100%); backdrop-filter: blur(12px); display: flex; flex-direction: column; align-items: center; padding: 56px 20px; overflow-y: auto; opacity: 0; visibility: hidden; transform: scale(1.03); transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s; }
  .search-overlay.open { opacity: 1; visibility: visible; transform: scale(1); }
  body.search-open { overflow: hidden; }
  .search-box { width: 100%; max-width: 920px; }
  /* Arama çubuğu — altın gradient focus kenar + yumuşak premium gölge */
  .search-bar { position: relative; display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 0 18px; height: 66px; box-shadow: 0 18px 44px rgba(27,42,85,0.12); }
  .search-bar::before { content: ""; position: absolute; inset: -2px; border-radius: 16px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); z-index: -1; opacity: 0; transition: opacity 0.25s ease; }
  .search-bar:focus-within { border-color: transparent; box-shadow: 0 20px 50px rgba(200,160,74,0.22); }
  .search-bar:focus-within::before { opacity: 1; }
  .search-bar svg.search-ico { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
  .search-bar input { flex: 1; border: none; outline: none; font-family: var(--font); font-size: 18px; color: var(--text-dark); background: transparent; }
  .search-bar input::placeholder { color: var(--text-muted); }
  .search-close { width: 42px; height: 42px; border: 1px solid var(--border); background: var(--light-bg); border-radius: 10px; cursor: pointer; display: grid; place-items: center; color: var(--text-muted); transition: var(--transition); flex-shrink: 0; }
  .search-close:hover { background: var(--accent); border-color: var(--accent); color: var(--blue-dark); transform: rotate(90deg); }
  .search-close svg { width: 18px; height: 18px; }
  .search-hints { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
  .search-hints span { font-size: 11px; color: var(--text-muted); background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 5px 10px; }
  .search-hints span b { color: var(--accent-dark); font-weight: 700; }
  .search-section { margin-top: 38px; }
  .search-section__title { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
  .search-section__title .badge { width: 26px; height: 26px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: #fff; border-radius: 8px; display: grid; place-items: center; box-shadow: 0 4px 10px rgba(200,160,74,0.30); }
  .search-section__title .badge svg { width: 14px; height: 14px; }
  .search-section__title small { font-weight: 500; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
  .search-pills { display: flex; flex-wrap: wrap; gap: 10px; }
  .search-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-dark); background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 9px 17px; box-shadow: 0 2px 8px rgba(27,42,85,0.05); transition: var(--transition); }
  .search-pill:hover { border-color: var(--accent); color: var(--blue-dark); background: linear-gradient(135deg, #fff 0%, #fdf7ea 100%); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(200,160,74,0.20); }
  .search-pill svg { width: 13px; height: 13px; color: var(--accent); }
  .search-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .search-col__head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px; }
  .search-col__head svg { width: 14px; height: 14px; }
  .search-result { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 13px 15px; margin-bottom: 10px; box-shadow: 0 2px 10px rgba(27,42,85,0.04); transition: var(--transition); }
  .search-result:hover { border-color: var(--accent); box-shadow: 0 12px 28px rgba(27,42,85,0.12); transform: translateY(-2px); }
  .search-result__ico { width: 38px; height: 38px; background: var(--blue-soft); border-radius: 10px; display: grid; place-items: center; color: var(--blue); flex-shrink: 0; transition: var(--transition); }
  .search-result:hover .search-result__ico { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: #fff; }
  .search-result__ico svg { width: 18px; height: 18px; }
  .search-result__body { flex: 1; min-width: 0; }
  .search-result__tag { display: inline-block; font-size: 10px; font-weight: 600; color: var(--accent-dark); background: rgba(200,160,74,0.12); border-radius: 5px; padding: 2px 8px; margin-bottom: 4px; }
  .search-result__title { font-size: 13.5px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .search-result__sub { font-size: 11.5px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .search-result__arrow { color: var(--text-muted); flex-shrink: 0; transition: var(--transition); }
  .search-result:hover .search-result__arrow { color: var(--accent); transform: translateX(3px); }
  .search-result__arrow svg { width: 16px; height: 16px; }
  .search-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); border: none; border-radius: 14px; padding: 22px 24px; margin-top: 32px; flex-wrap: wrap; box-shadow: 0 16px 40px rgba(27,42,85,0.22); }
  .search-cta__text { display: flex; align-items: center; gap: 14px; }
  .search-cta__text .ico { width: 40px; height: 40px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--blue-dark); border-radius: 10px; display:grid; place-items:center; flex-shrink:0; }
  .search-cta__text .ico svg { width: 18px; height: 18px; }
  .search-cta__text strong { display: block; font-size: 14px; color: #fff; }
  .search-cta__text span { font-size: 12.5px; color: rgba(255,255,255,0.7); }
  .search-cta .btn { height: 44px; padding: 0 26px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--blue-dark); border: none; box-shadow: 0 8px 20px rgba(200,160,74,0.30); }
  .search-cta .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,160,74,0.42); }
  .search-empty { display: none; text-align: center; color: var(--text-muted); font-size: 14px; padding: 40px 0; }
  @media (max-width: 768px) { .search-cols { grid-template-columns: 1fr; gap: 26px; } .search-overlay { padding: 28px 16px; } .search-bar { height: 58px; } }

  /* helpers */
  .mt-10 { margin-top: 10px; }

  /* Broken image fallback */
  img.img-broken {
    display: none;
  }

/* ============================================================
   POPUP BANNER
   ============================================================ */
.popup-banner { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.popup-banner__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(2px); cursor: pointer; }
.popup-banner__card { position: relative; z-index: 1; background: #fff; border-radius: 16px; box-shadow: 0 24px 80px rgba(0,0,0,0.35); max-width: 600px; width: 100%; overflow: hidden; animation: popup-in 0.35s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popup-in { from { opacity: 0; transform: scale(0.88) translateY(30px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.popup-banner__close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.45); border: none; display: grid; place-items: center; cursor: pointer; transition: background 0.2s; }
.popup-banner__close:hover { background: rgba(0,0,0,0.7); }
.popup-banner__close svg { width: 16px; height: 16px; color: #fff; }
.popup-banner__img { width: 100%; height: auto; display: block; max-height: 80vh; object-fit: contain; }
.popup-banner__video { position: relative; padding-top: 56.25%; }
.popup-banner__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.popup-banner__html { padding: 28px 32px; }
.popup-banner__content { padding: 28px 32px; text-align: center; }
.popup-banner__title { font-size: 1.4rem; font-weight: 700; color: #1a1a2e; margin: 0 0 10px; }
.popup-banner__desc { font-size: 0.95rem; color: #555; line-height: 1.6; margin: 0 0 20px; }
.popup-banner__btn { display: inline-block; padding: 12px 28px; background: #1a1a2e; color: #fff; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.popup-banner__btn:hover { background: #2d2d5e; color: #fff; }
@media (max-width: 640px) { .popup-banner__card { max-width: 100%; border-radius: 12px; } .popup-banner__html { padding: 20px; } .popup-banner__content { padding: 20px; } }

/* ============================================================
   PROCESS — List Variant
   ============================================================ */
.process--list .process__list { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.process__list-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.process__list-item:last-child { border-bottom: none; }
.process__list-num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--blue); color: #fff; font-size: 16px; font-weight: 700; display: grid; place-items: center; }
.process__list-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.process__list-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .process__list-item { gap: 14px; } .process__list-num { width: 40px; height: 40px; font-size: 14px; } }
