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

    :root {
      --bg:        #05081a;
      --bg2:       #080d20;
      --bg3:       #0c1530;
      --card:      rgba(12, 21, 48, 0.6);
      --gold:      #c9a85c;
      --gold-lt:   #e2c47a;
      --gold-dim:  rgba(201, 168, 92, 0.12);
      --gold-glow: rgba(201, 168, 92, 0.25);
      --white:     #f0f2ff;
      --muted:     #6a7a9e;
      --border:    rgba(201, 168, 92, 0.18);
      --radius:    12px;
      --ff-head:   'Cormorant Garamond', Georgia, serif;
      --ff-body:   'Inter', system-ui, sans-serif;
      --ease:      cubic-bezier(0.4, 0, 0.2, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--ff-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

    /* ─── SCROLL PROGRESS ─── */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
      background-size: 200% 100%;
      animation: shimmer 3s linear infinite;
      z-index: 1001;
      box-shadow: 0 0 12px var(--gold-glow), 0 0 24px rgba(201,168,92,0.15);
    }
    @keyframes shimmer {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* ─── CURSOR GLOW ─── */
    #cursor-glow {
      position: fixed;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,92,0.055) 0%, transparent 65%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9997;
      opacity: 0;
      will-change: transform;
      transition: opacity 0.4s;
    }

    /* ─── HERO SHAPES ─── */
    .hero-shapes {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 1;
    }

    /* Base shape — referans component ile birebir aynı stil */
    .h-shape {
      position: absolute;
      border-radius: 50%;
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      border: 2px solid rgba(255,255,255,0.15);
      box-shadow: 0 8px 32px 0 rgba(255,255,255,0.1);
      opacity: 0;
    }
    .h-shape::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent 70%);
    }

    /* Shape 1 — indigo, büyük, sol üst, 12° */
    .h-shape-1 {
      width: 600px; height: 140px;
      background: linear-gradient(to right, rgba(99,102,241,0.15), transparent);
      left: -10%; top: 20%;
      animation: enter1 2.4s cubic-bezier(0.23,0.86,0.39,0.96) 0.3s forwards,
                 float1 12s ease-in-out 2.8s infinite;
    }
    /* Shape 2 — rose, orta, sağ alt, -15° */
    .h-shape-2 {
      width: 500px; height: 120px;
      background: linear-gradient(to right, rgba(244,63,94,0.15), transparent);
      right: -5%; top: 75%;
      animation: enter2 2.4s cubic-bezier(0.23,0.86,0.39,0.96) 0.5s forwards,
                 float2 12s ease-in-out 3.0s infinite;
    }
    /* Shape 3 — violet, küçük-orta, sol alt, -8° */
    .h-shape-3 {
      width: 300px; height: 80px;
      background: linear-gradient(to right, rgba(139,92,246,0.15), transparent);
      left: 10%; bottom: 10%;
      animation: enter3 2.4s cubic-bezier(0.23,0.86,0.39,0.96) 0.4s forwards,
                 float3 12s ease-in-out 2.9s infinite;
    }
    /* Shape 4 — amber, küçük, sağ üst, 20° */
    .h-shape-4 {
      width: 200px; height: 60px;
      background: linear-gradient(to right, rgba(245,158,11,0.15), transparent);
      right: 20%; top: 15%;
      animation: enter4 2.4s cubic-bezier(0.23,0.86,0.39,0.96) 0.6s forwards,
                 float4 12s ease-in-out 3.1s infinite;
    }
    /* Shape 5 — cyan, ufak, sol üst, -25° */
    .h-shape-5 {
      width: 150px; height: 40px;
      background: linear-gradient(to right, rgba(6,182,212,0.15), transparent);
      left: 25%; top: 10%;
      animation: enter5 2.4s cubic-bezier(0.23,0.86,0.39,0.96) 0.7s forwards,
                 float5 12s ease-in-out 3.2s infinite;
    }

    /* Giriş animasyonları — yukarıdan düşme + rotasyon oturma */
    @keyframes enter1 {
      from { opacity: 0; transform: translateY(-150px) rotate(-3deg);  }
      to   { opacity: 1; transform: translateY(0px) rotate(12deg); }
    }
    @keyframes enter2 {
      from { opacity: 0; transform: translateY(-150px) rotate(-30deg); }
      to   { opacity: 1; transform: translateY(0px) rotate(-15deg); }
    }
    @keyframes enter3 {
      from { opacity: 0; transform: translateY(-150px) rotate(-23deg); }
      to   { opacity: 1; transform: translateY(0px) rotate(-8deg); }
    }
    @keyframes enter4 {
      from { opacity: 0; transform: translateY(-150px) rotate(5deg);   }
      to   { opacity: 1; transform: translateY(0px) rotate(20deg); }
    }
    @keyframes enter5 {
      from { opacity: 0; transform: translateY(-150px) rotate(-40deg); }
      to   { opacity: 1; transform: translateY(0px) rotate(-25deg); }
    }

    /* Sürekli yüzme animasyonları */
    @keyframes float1 {
      0%,100% { transform: translateY(0px)   rotate(12deg);  }
      50%      { transform: translateY(15px)  rotate(12deg);  }
    }
    @keyframes float2 {
      0%,100% { transform: translateY(0px)   rotate(-15deg); }
      50%      { transform: translateY(15px)  rotate(-15deg); }
    }
    @keyframes float3 {
      0%,100% { transform: translateY(0px)   rotate(-8deg);  }
      50%      { transform: translateY(15px)  rotate(-8deg);  }
    }
    @keyframes float4 {
      0%,100% { transform: translateY(0px)   rotate(20deg);  }
      50%      { transform: translateY(15px)  rotate(20deg);  }
    }
    @keyframes float5 {
      0%,100% { transform: translateY(0px)   rotate(-25deg); }
      50%      { transform: translateY(15px)  rotate(-25deg); }
    }

    /* ─── CARD GLOW ─── */
    .card-glow {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      transition: background 0.25s;
      z-index: 0;
    }
    .svc-exp-card > *:not(.card-glow),
    .svc-lic-card > *:not(.card-glow),
    .who-card    > *:not(.card-glow):not(.who-ring-wrap),
    .who-ring-wrap,
    .why-item    > *:not(.card-glow):not(.why-spotlight) { position: relative; z-index: 1; }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 5%;
      height: 78px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
    }
    nav.scrolled {
      background: rgba(5, 8, 26, 0.88);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      justify-self: start;
    }
    .nav-logo img {
      height: 70px;
      width: auto;
      filter: drop-shadow(0 0 10px rgba(201,168,92,0.35));
    }
    .nav-logo-text {
      font-family: var(--ff-head);
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .nav-logo-text span { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      justify-self: center;
    }

    .nav-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 16px;
    }
    .nav-links a {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.3s var(--ease);
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      padding: 9px 22px;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      border-radius: 4px;
      font-size: 0.8rem !important;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s, color 0.3s !important;
    }
    .nav-cta:hover { background: var(--gold) !important; color: var(--bg) !important; }
    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s var(--ease);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      top: 72px;
      background: rgba(5, 8, 26, 0.97);
      backdrop-filter: blur(20px);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--ff-head);
      font-size: 2rem;
      font-weight: 600;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }

    /* ─── SECTION BASE ─── */
    section {
      position: relative;
      z-index: 1;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 5% 80px;
      position: relative;
    }
    /* Referans component: from-indigo-500/[0.05] via-transparent to-rose-500/[0.05] blur-3xl */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 120% 80% at 20% 30%, rgba(99,102,241,0.05), transparent 60%),
                  radial-gradient(ellipse 100% 70% at 80% 80%, rgba(244,63,94,0.05), transparent 60%);
      filter: blur(40px);
      pointer-events: none;
      z-index: 0;
    }
    /* Alt ve üst vignette — referans: from-[#030303] via-transparent to-[#030303]/80 */
    #hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        var(--bg) 0%,
        transparent 25%,
        rgba(5,8,26,0.8) 100%
      );
      pointer-events: none;
      z-index: 1;
    }
    #hero > *:not(.hero-shapes) { position: relative; z-index: 2; }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s var(--ease) 0.2s forwards;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: '';
      display: block;
      width: 32px; height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }

    .hero-logo-wrap {
      margin-bottom: 14px;
      opacity: 0;
      transform: translateY(20px) scale(0.95);
      animation: fadeUp 1s var(--ease) 0.1s forwards;
    }
    .hero-logo-wrap img {
      height: 200px;
      width: auto;
      filter: drop-shadow(0 0 36px rgba(201,168,92,0.38));
    }

    h1 {
      font-family: var(--ff-head);
      font-size: clamp(2.8rem, 6.5vw, 5.2rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.01em;
      color: var(--white);
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 1s var(--ease) 0.35s forwards;
    }
    h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--muted);
      max-width: 640px;
      margin: 0 auto 16px;
      line-height: 1.7;
      opacity: 0;
      animation: fadeUp 1s var(--ease) 0.5s forwards;
    }

    .hero-tagline {
      font-family: var(--ff-head);
      font-size: clamp(1rem, 1.8vw, 1.25rem);
      font-style: italic;
      color: var(--gold-lt);
      margin-bottom: 44px;
      opacity: 0;
      animation: fadeUp 1s var(--ease) 0.65s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1s var(--ease) 0.8s forwards;
    }

    .btn-primary {
      padding: 14px 36px;
      background: var(--gold);
      color: var(--bg);
      font-family: var(--ff-body);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0.55s ease;
    }
    .btn-primary:hover::before { transform: translateX(100%); }
    .btn-primary:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(201,168,92,0.4);
    }

    .btn-secondary {
      padding: 13px 36px;
      background: transparent;
      color: var(--white);
      font-family: var(--ff-body);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid rgba(240,242,255,0.2);
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.3s, color 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }
    .btn-secondary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(201,168,92,0.08) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0.55s ease;
    }
    .btn-secondary:hover::before { transform: translateX(100%); }
    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeUp 1s var(--ease) 1.2s forwards;
    }
    .hero-scroll span {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    /* ─── DIVIDER ─── */
    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
      margin: 0 5%;
    }

    /* ─── SECTION HEADER ─── */
    .section-header {
      text-align: center;
      margin-bottom: 64px;
      opacity: 0;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-label::before, .section-label::after {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--gold);
      opacity: 0.4;
    }

    h2 {
      font-family: var(--ff-head);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 16px;
    }
    h2 em { font-style: italic; color: var(--gold); }

    .section-desc {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ─── SERVICES (sticky scroll) ─── */
    #services { padding: 80px 0 0; }

    .svc-intro { text-align: center; padding-bottom: 64px; }
    .svc-sticky-wrap { border-top: 1px solid var(--border); }

    .svc-section {
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    /* Sticky label — nav altına (72px) yapışır */
    .svc-header {
      position: sticky;
      top: 77px;
      z-index: 9;
      background: rgba(10, 16, 38, 0.98);
      backdrop-filter: blur(28px);
      -webkit-backdrop-filter: blur(28px);
      border-top: 1px solid rgba(201,168,92,0.22);
      border-bottom: 1px solid rgba(201,168,92,0.12);
      box-shadow: 0 4px 32px rgba(0,0,0,0.55);
    }
    /* Thin gold shimmer bar across the top */
    .svc-header::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent 0%, rgba(201,168,92,0.55) 30%, rgba(201,168,92,0.8) 50%, rgba(201,168,92,0.55) 70%, transparent 100%);
      pointer-events: none;
    }
    .svc-header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 5%;
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative;
    }
    .svc-num {
      font-size: 1.5rem;
      font-family: var(--ff-head);
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--gold);
      flex-shrink: 0;
      opacity: 0.85;
      line-height: 1;
    }
    .svc-h-sep { width: 1px; height: 28px; background: rgba(201,168,92,0.25); flex-shrink: 0; }
    .svc-h-title {
      font-family: var(--ff-head);
      font-size: clamp(1.05rem, 2vw, 1.65rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin: 0;
      flex: 1;
    }
    .svc-h-icon {
      width: 28px; height: 28px;
      color: var(--gold);
      opacity: 0.5;
      flex-shrink: 0;
    }

    /* İçerik alanı */
    .svc-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 72px 5% 96px;
    }

    /* Büyük lead cümlesi */
    .svc-lead {
      font-family: var(--ff-head);
      font-size: clamp(1.15rem, 2vw, 1.65rem);
      font-weight: 400;
      line-height: 1.65;
      color: rgba(240,242,255,0.75);
      max-width: 680px;
      margin-bottom: 56px;
      padding-left: 22px;
      border-left: 2px solid var(--gold);
    }

    /* Alt-bölüm etiketi */
    .svc-sub-label {
      font-size: 0.67rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .svc-sub-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
      max-width: 180px;
    }

    /* Network tags — Servis 01 */
    .svc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 52px;
    }
    .svc-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 15px;
      background: transparent;
      border: 1px solid rgba(201,168,92,0.18);
      border-radius: 6px;
      font-size: 0.8rem;
      color: rgba(240,242,255,0.6);
      letter-spacing: 0.03em;
      transition: all 0.25s var(--ease);
      cursor: default;
    }
    .svc-tag::before {
      content: '';
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.65;
      flex-shrink: 0;
    }
    .svc-tag:hover {
      background: rgba(201,168,92,0.07);
      border-color: rgba(201,168,92,0.38);
      color: var(--white);
    }

    /* Deliver list — 2 kolon grid */
    .svc-deliver {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .svc-deliver-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(201,168,92,0.07);
    }
    .svc-deliver-item:nth-child(odd)  { padding-right: 48px; border-right: 1px solid rgba(201,168,92,0.07); }
    .svc-deliver-item:nth-child(even) { padding-left: 48px; }
    .svc-deliver-icon { color: var(--gold); font-size: 0.95rem; flex-shrink: 0; margin-top: 4px; }
    .svc-deliver-text {
      font-family: var(--ff-head);
      font-size: 1.05rem;
      color: var(--white);
      line-height: 1.4;
    }

    /* Expertise grid 2x2 — Servis 02 */
    .svc-exp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: rgba(201,168,92,0.1);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .svc-exp-card {
      background: var(--bg);
      padding: 40px 36px;
      transition: background 0.3s;
    }
    .svc-exp-card:hover { background: var(--card); }
    .svc-exp-title {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .svc-exp-title::before { content: ''; width: 18px; height: 1px; background: var(--gold); opacity: 0.45; }
    .svc-exp-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .svc-exp-list li {
      font-size: 0.87rem;
      color: var(--muted);
      padding-left: 16px;
      position: relative;
      line-height: 1.45;
    }
    .svc-exp-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.35; font-size: 0.7rem; }

    /* M&A — Servis 03 */
    .svc-ma-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 72px;
      margin-bottom: 44px;
    }
    .svc-ma-col-title {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .svc-ma-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .svc-ma-list li {
      font-family: var(--ff-head);
      font-size: 1.05rem;
      color: var(--white);
      line-height: 1.35;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .svc-ma-list li::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.5;
      flex-shrink: 0;
      margin-top: 7px;
    }
    .svc-ma-note {
      font-family: var(--ff-head);
      font-style: italic;
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.65;
      padding: 24px 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(201,168,92,0.02);
    }

    /* Licensing — Servis 04 */
    .svc-lic-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .svc-lic-card {
      padding: 32px 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(201,168,92,0.02);
      transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
    }
    .svc-lic-card:hover {
      border-color: rgba(201,168,92,0.35);
      background: rgba(201,168,92,0.05);
      transform: translateY(-4px);
    }
    .svc-lic-card-title {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }
    .svc-lic-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .svc-lic-list li {
      font-size: 0.87rem;
      color: var(--muted);
      padding-left: 16px;
      position: relative;
      line-height: 1.4;
      transition: color 0.2s;
    }
    .svc-lic-card:hover .svc-lic-list li { color: rgba(240,242,255,0.72); }
    .svc-lic-list li::before { content: '·'; position: absolute; left: 4px; color: var(--gold); font-size: 1.3rem; line-height: 1; top: -2px; }

    /* h3 global (diğer yerlerde kullanılır) */
    h3 {
      font-family: var(--ff-head);
      font-size: 1.65rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    /* ─── WHY US ─── */
    #why {
      padding: 110px 0;
      background: linear-gradient(180deg, transparent, rgba(12,21,48,0.5), transparent);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .why-item {
      padding: 36px 32px;
      /* glass sheen top-left + dark gradient — matches GradientCard base */
      background:
        linear-gradient(135deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0) 44%),
        linear-gradient(180deg, #0d1428 0%, #060a15 100%);
      border: 1px solid rgba(201,168,92,0.1);
      border-bottom: none;          /* bottom edge handled by ::after glow line */
      border-radius: 22px;
      transition: border-color 0.4s, box-shadow 0.4s;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform-style: preserve-3d;
      will-change: transform;
      display: flex;
      flex-direction: column;
      /* upward shadow — mirrors original "0 -10px 100px rgba(purple,0.25)" */
      box-shadow:
        0 -5px 52px 3px rgba(201,168,92,0.07),
        0 6px 28px rgba(0,0,0,0.5);
    }
    .why-item:hover {
      border-color: rgba(201,168,92,0.22);
      box-shadow:
        0 -9px 72px 6px rgba(201,168,92,0.14),
        0 6px 28px rgba(0,0,0,0.5);
    }

    /* Bottom gold glow — radial pools from the two corners + center */
    .why-item::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 64%;
      background:
        radial-gradient(ellipse at bottom right, rgba(201,168,92,0.28) -10%, transparent 60%),
        radial-gradient(ellipse at bottom left,  rgba(201,168,92,0.18) -10%, transparent 60%),
        radial-gradient(ellipse at bottom center, rgba(201,168,92,0.22) -15%, transparent 52%);
      filter: blur(22px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.72;
      transition: opacity 0.4s;
    }
    .why-item:hover::before { opacity: 1; }

    /* Glowing bottom border line */
    .why-item::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg,
        rgba(255,255,255,0.02) 0%,
        rgba(201,168,92,0.72) 50%,
        rgba(255,255,255,0.02) 100%
      );
      box-shadow:
        0 0 10px 2px rgba(201,168,92,0.55),
        0 0 22px 4px rgba(180,140,60,0.35),
        0 0 36px 6px rgba(160,120,40,0.2);
      z-index: 1;
      transition: box-shadow 0.4s;
    }
    .why-item:hover::after {
      box-shadow:
        0 0 14px 3px rgba(201,168,92,0.78),
        0 0 28px 5px rgba(180,140,60,0.52),
        0 0 46px 8px rgba(160,120,40,0.3);
    }

    /* Icon badge box */
    .why-icon-wrap {
      width: 48px; height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(225deg, #171c2c 0%, #0e1220 100%);
      border: 1px solid rgba(201,168,92,0.18);
      margin-bottom: 24px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.4s, border-color 0.4s;
      box-shadow:
        inset 1px 1px 3px rgba(255,255,255,0.08),
        inset -2px -2px 4px rgba(0,0,0,0.5),
        0 4px 12px rgba(0,0,0,0.3);
    }
    /* top-left highlight inside icon circle */
    .why-icon-wrap::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 60%; height: 60%;
      background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 75%);
      pointer-events: none;
      filter: blur(6px);
    }
    .why-item:hover .why-icon-wrap {
      border-color: rgba(201,168,92,0.4);
      box-shadow:
        inset 1px 1px 4px rgba(255,255,255,0.12),
        inset -2px -2px 5px rgba(0,0,0,0.6),
        0 6px 18px rgba(0,0,0,0.4),
        0 0 20px rgba(201,168,92,0.12);
    }

    .why-icon {
      width: 22px; height: 22px;
      color: var(--gold);
      flex-shrink: 0;
    }

    .why-title {
      font-family: var(--ff-head);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.25;
    }

    .why-text {
      font-size: 0.87rem;
      color: var(--muted);
      line-height: 1.72;
    }

    /* Spotlight overlay (driven by JS) */
    .why-spotlight {
      pointer-events: none;
      position: absolute;
      inset: 0;
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.35s;
      z-index: 0;
    }

    /* ─── WHO ─── */
    #who { padding: 110px 0; }

    .who-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* Spinning gold ring — ai-loader loaderCircle translated to brand gold */
    @keyframes who-ring-spin {
      0% {
        transform: rotate(90deg);
        box-shadow:
          0 5px 10px 0 rgba(201,168,92,0.8) inset,
          0 10px 16px 0 rgba(170,130,50,0.6) inset,
          0 28px 28px 0 rgba(130,100,25,0.5) inset,
          0 0 3px 1px rgba(201,168,92,0.22),
          0 0 7px 2px rgba(180,140,60,0.14);
      }
      50% {
        transform: rotate(270deg);
        box-shadow:
          0 5px 10px 0 rgba(220,188,100,0.7) inset,
          0 10px 5px 0 rgba(180,140,60,0.6) inset,
          0 20px 28px 0 rgba(201,168,92,0.5) inset,
          0 0 3px 1px rgba(201,168,92,0.22),
          0 0 7px 2px rgba(180,140,60,0.14);
      }
      100% {
        transform: rotate(450deg);
        box-shadow:
          0 5px 10px 0 rgba(201,168,92,0.8) inset,
          0 10px 16px 0 rgba(170,130,50,0.6) inset,
          0 28px 28px 0 rgba(130,100,25,0.5) inset,
          0 0 3px 1px rgba(201,168,92,0.22),
          0 0 7px 2px rgba(180,140,60,0.14);
      }
    }

    /* Container keeps the number centred while .who-ring rotates inside */
    .who-ring-wrap {
      width: 54px; height: 54px;
      border-radius: 50%;
      margin: 0 auto 22px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .who-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      animation: who-ring-spin 5s linear infinite;
    }

    /* Stagger each card's ring so they're out of phase */
    .who-card:nth-child(1) .who-ring { animation-delay:  0s;    }
    .who-card:nth-child(2) .who-ring { animation-delay: -0.83s; }
    .who-card:nth-child(3) .who-ring { animation-delay: -1.66s; }
    .who-card:nth-child(4) .who-ring { animation-delay: -2.5s;  }
    .who-card:nth-child(5) .who-ring { animation-delay: -3.33s; }
    .who-card:nth-child(6) .who-ring { animation-delay: -4.16s; }

    .who-ring-num {
      font-family: var(--ff-head);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--gold);
      position: relative;
      z-index: 1;
    }

    .who-card {
      padding: 36px 28px 32px;
      text-align: center;
      /* glass morphism */
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(28px) saturate(1.6);
      -webkit-backdrop-filter: blur(28px) saturate(1.6);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      border-left: 1px solid rgba(255, 255, 255, 0.07);
      border-right: 1px solid rgba(255, 255, 255, 0.07);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
      transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform-style: preserve-3d;
      will-change: transform;
    }
    .who-card:hover {
      background: rgba(255, 255, 255, 0.07);
      border-top-color: rgba(201,168,92,0.35);
      border-left-color: rgba(201,168,92,0.14);
      border-right-color: rgba(201,168,92,0.14);
      box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 28px rgba(201,168,92,0.07), inset 0 1px 0 rgba(255,255,255,0.1);
    }
    /* Slow the ring on hover for a "focus" feel */
    .who-card:hover .who-ring {
      animation-duration: 8s;
    }

    .who-title {
      font-family: var(--ff-head);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }

    .who-text {
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ─── MISSION ─── */
    #mission {
      padding: 120px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #mission::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(201,168,92,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    #mission .reveal { opacity: 0; }

    .mission-quote {
      font-family: var(--ff-head);
      font-size: clamp(1.6rem, 3.5vw, 2.8rem);
      font-style: italic;
      font-weight: 600;
      line-height: 1.3;
      color: var(--white);
      max-width: 860px;
      margin: 0 auto;
    }
    .mission-quote strong { color: var(--gold); font-style: normal; }

    /* ─── CONTACT ─── */
    #contact {
      padding: 110px 0;
      background: linear-gradient(180deg, transparent, rgba(12,21,48,0.4), transparent);
    }

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

    .contact-left { opacity: 0; }
    .contact-left h2 { text-align: left; margin-bottom: 20px; }
    .contact-left .section-label { justify-content: flex-start; }
    .contact-left p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 36px;
    }

    .contact-right { opacity: 0; }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .contact-detail svg {
      width: 18px; height: 18px;
      color: var(--gold);
      flex-shrink: 0;
    }
    .contact-detail span {
      font-size: 0.9rem;
      color: var(--muted);
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

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

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

    label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    input, textarea, select {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 13px 16px;
      color: var(--white);
      font-family: var(--ff-body);
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
      backdrop-filter: blur(8px);
    }
    input::placeholder, textarea::placeholder { color: rgba(106,122,158,0.6); }
    input:focus, textarea:focus, select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px var(--gold-dim);
    }
    textarea { min-height: 130px; resize: vertical; }

    .form-note {
      font-size: 0.78rem;
      color: var(--muted);
      opacity: 0.7;
    }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 48px 5% 32px;
      position: relative;
      z-index: 1;
      opacity: 0;
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand img {
      height: 82px;
      margin-bottom: 12px;
      filter: drop-shadow(0 0 8px rgba(201,168,92,0.25));
    }
    .footer-brand p {
      font-size: 0.83rem;
      color: var(--muted);
      max-width: 260px;
      line-height: 1.6;
    }
    .footer-brand-name {
      font-family: var(--ff-head);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }
    .footer-brand-name span { color: var(--gold); }

    .footer-links h4 {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      font-size: 0.85rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid rgba(201,168,92,0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .footer-bottom p {
      font-size: 0.78rem;
      color: var(--muted);
      opacity: 0.7;
    }

    /* ─── KEYFRAMES ─── */
    @keyframes fadeUp {
      to { opacity: 1; transform: none; }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }

    /* ─── GOLD LINE ACCENT ─── */
    .gold-line {
      width: 48px; height: 2px;
      background: var(--gold);
      margin: 0 auto 24px;
    }
    .gold-line.left { margin: 0 0 24px; }

    /* ─── TAGS ─── */
    .tags-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }

    .stat-row {
      display: flex;
      gap: 40px;
      padding: 32px 0 0;
      border-top: 1px solid var(--border);
      margin-top: 32px;
      flex-wrap: wrap;
    }
    .stat { display: flex; flex-direction: column; gap: 4px; }
    .stat-num {
      font-family: var(--ff-head);
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.78rem;
      color: var(--muted);
      letter-spacing: 0.05em;
    }

    /* ─── CTA BEAMS ─── */
    #cta { padding: 80px 0 100px; }

    .beams-wrap {
      position: relative;
      max-width: 858px;
      margin: 0 auto;
    }

    .beams-svg {
      width: 100%;
      height: auto;
      display: block;
      overflow: visible;
    }

    .beam-base {
      stroke: rgba(201,168,92,0.12);
      stroke-width: 1;
    }

    .beam-animated {
      stroke: var(--gold);
      stroke-width: 2.5;
      stroke-linecap: round;
      filter:
        drop-shadow(0 0 4px rgba(201,168,92,0.9))
        drop-shadow(0 0 12px rgba(201,168,92,0.5));
    }

    .beam-dot {
      fill: rgba(201,168,92,0.15);
      stroke: rgba(201,168,92,0.5);
      stroke-width: 1.5;
    }

    /* CTA button — SVG üzerinde ortada absolute */
    .beams-cta {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
    }

    .beams-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 200px;
      height: 68px;
      background: rgba(5,8,26,0.92);
      border: 1px solid var(--gold);
      border-radius: 8px;
      color: var(--gold);
      font-family: var(--ff-head);
      font-size: 1.35rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
      box-shadow: 0 0 0 1px rgba(201,168,92,0.08), 0 8px 32px rgba(0,0,0,0.5);
    }
    .beams-btn-shine {
      position: absolute;
      inset: 0;
      background: radial-gradient(75% 100% at 50% 0%, rgba(201,168,92,0.18) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .beams-btn:hover .beams-btn-shine { opacity: 1; }
    .beams-btn:hover {
      background: var(--gold);
      color: var(--bg);
      box-shadow:
        0 0 40px rgba(201,168,92,0.5),
        0 0 80px rgba(201,168,92,0.2),
        0 8px 32px rgba(0,0,0,0.4);
    }
    .beams-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0.55s ease;
    }
    .beams-btn:hover::before { transform: translateX(100%); }

    @media (max-width: 768px) {
      .beams-btn { width: 140px; height: 50px; font-size: 1rem; }
    }

    /* ─── SUCCESS MESSAGE ─── */
    .form-success {
      display: none;
      text-align: center;
      padding: 40px;
      background: var(--gold-dim);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .form-success svg {
      width: 48px; height: 48px;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .form-success h3 { margin-bottom: 8px; font-size: 1.4rem; }
    .form-success p { color: var(--muted); font-size: 0.9rem; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      nav { grid-template-columns: 1fr auto; }
      .nav-right .nav-cta { display: none; }
      .why-grid { grid-template-columns: 1fr; gap: 12px; }
      .who-grid { grid-template-columns: 1fr; }
      .footer-top { flex-direction: column; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .stat-row { gap: 24px; }
      .h-shape-1 { width: 280px; height: 70px; }
      .h-shape-2 { width: 220px; height: 55px; }
      .h-shape-3, .h-shape-4, .h-shape-5 { display: none; }
      /* svc responsive */
      .svc-deliver { grid-template-columns: 1fr; }
      .svc-deliver-item:nth-child(odd) { padding-right: 0; border-right: none; }
      .svc-deliver-item:nth-child(even) { padding-left: 0; }
      .svc-exp-grid { grid-template-columns: 1fr; }
      .svc-ma-grid { grid-template-columns: 1fr; gap: 40px 0; }
      .svc-lic-grid { grid-template-columns: 1fr; }
      .svc-h-title { font-size: 1.05rem; }
    }

    @media (max-width: 480px) {
      h1 { font-size: 2.4rem; }
      .hero-actions { flex-direction: column; align-items: center; }
    }
