/* ============================================================
   FONT IMPORTS & FONT SETTINGS
============================================================ */
@import url('https://fonts.cdnfonts.com/css/satoshi');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');
@import url('../fonts/Amazed.otf');

/* Özel font tanımı */
@font-face {
  font-family: 'Hellombah';
  src: url('/assets/fonts/hellombah/Hellombah.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* GLOBAL AYARLAR */
body {
  margin: 0;
  background: #ffffff;
  font-family: 'DM Sans', sans-serif;
}

body.page-about {
  position: relative;
  overflow-x: hidden;
}

body.page-about::after {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(40% 45% at 10% 20%, rgba(0, 82, 212, 0.12), transparent 70%),
    radial-gradient(35% 40% at 80% 10%, rgba(14, 165, 233, 0.12), transparent 70%),
    radial-gradient(30% 35% at 20% 75%, rgba(37, 99, 235, 0.12), transparent 70%),
    radial-gradient(28% 32% at 85% 70%, rgba(125, 211, 252, 0.12), transparent 72%);
  opacity: 0.85;
  filter: blur(30px);
  transform: translate3d(0, 0, 0);
  animation: aboutPageAurora 26s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

body.page-about > :not(.about-flow-bg):not(.navbar) {
  position: relative;
  z-index: 2;
}

body.page-about .about-flow-bg {
  position: fixed;
  inset: -8%;
  width: 116%;
  height: 116%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  animation: aboutFlowFloat 18s ease-in-out infinite;
}

body.page-about .about-flow-bg path {
  fill: none;
  stroke: rgba(0, 82, 212, 0.25);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 18 26;
  stroke-dashoffset: 0;
  animation: aboutFlowDash 14s linear infinite;
}

body.page-about .about-flow-bg path:nth-child(2) {
  stroke: rgba(14, 165, 233, 0.22);
  stroke-dasharray: 20 30;
  animation-duration: 18s;
}

body.page-about .about-flow-bg path:nth-child(3) {
  stroke: rgba(37, 99, 235, 0.2);
  stroke-dasharray: 16 24;
  animation-duration: 16s;
}

body.page-about .about-flow-bg path:nth-child(4) {
  stroke: rgba(125, 211, 252, 0.2);
  stroke-dasharray: 22 34;
  animation-duration: 20s;
}

body.page-about .about-flow-bg path:nth-child(5) {
  stroke: rgba(0, 82, 212, 0.18);
  stroke-dasharray: 14 20;
  animation-duration: 22s;
}

@keyframes aboutFlowDash {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes aboutFlowFloat {
  0% {
    transform: translate3d(-1%, -1%, 0);
  }
  50% {
    transform: translate3d(1%, 0, 0);
  }
  100% {
    transform: translate3d(-1%, 1%, 0);
  }
}

@keyframes aboutPageAurora {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -1%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-1%, 2%, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-about::after {
    animation: none;
  }
  body.page-about .about-flow-bg {
    animation: none;
  }
  body.page-about .about-flow-bg path {
    animation: none;
  }
}




/* ========================================================================
   # NAVBAR (ANA MENÜ ALANI)
   - Masaüstü: ortalanmış nav, hover ile mega menü
   - Mobil: hamburger, dokun-tık ile mega menü
   ======================================================================== */



/* ============================================================
   SLIDER – GENEL
============================================================ */
.ai-slider-section {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 80px 0;
}

.ai-slider-wrapper {
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.ai-slider {
  display: flex;
  gap: 26px;
  transition: transform 0.4s ease;
}



/* ============================================================
   SLIDER BUTONLARI
============================================================ */
.ai-slider-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-size: 22px;
  transition: 0.25s;
}

.ai-slider-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.12);
}



/* ============================================================
   SLIDER CARD (3D & ANİMASYONLU)
============================================================ */
.ai-slide-card {
  min-width: 260px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 24px;
  border-radius: 18px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
  transform-style: preserve-3d;
  animation: floatCard 4s ease-in-out infinite;
}

/* Hover 3D etkisi */
.ai-slide-card:hover {
  transform: translateY(-8px) rotateY(10deg);
  background: rgba(255,255,255,0.13);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* Yüzen animasyon */
@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}



/* ============================================================
   SLIDER ICON
============================================================ */
.card-icon {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon img {
  width: 60%;
  height: 60%;
  filter: brightness(1.3);
}



/* ============================================================
   SLIDER TEXTS
============================================================ */
.ai-slide-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 700;
}

.ai-slide-card p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}



/* ============================================================
   SLIDER BUTTON
============================================================ */
.card-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  color: #fff;
  background: #3b82f6;
  text-decoration: none;
  transition: 0.25s;
}

.card-btn:hover {
  background: #5a96ff;
}



/* ============================================================
   ABOUT PAGE – HERO & SECTIONS
============================================================ */
.about-page {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  padding-top: 120px;
}

/* Bölüm spacing */
.about-page section {
  max-width: 1180px;
  margin: 0 auto 120px;
  padding: 0 40px;
}

.about-page section:first-of-type {
  margin-top: 0;
}

/* HERO */
.hero {
  text-align: center;
  margin: 220px 0 220px 0;
}
.hero h1 {
  font-size: 120px;
  font-weight: 800;
  margin-bottom: 12px;
}
.hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 750px;
  margin: auto;
  color: #667085;
}



/* ============================================================
   NOTITEK HERO
============================================================ */
.notitek-hero {
  position: relative;
  border-radius: 32px;
  padding: 200px 24px;
  font-family: 'Satoshi', 'Space Grotesk', 'DM Sans', sans-serif;
  --mx: 50%;
  --my: 35%;
}

.notitek-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.notitek-hero-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(600px circle at var(--mx, 50%) var(--my, 35%), rgba(0, 82, 212, 0.12), transparent 60%),
    radial-gradient(420px circle at calc(var(--mx, 50%) + 20%) calc(var(--my, 35%) + 10%), rgba(0, 82, 212, 0.08), transparent 60%);
}


.notitek-hero-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.notitek-hero-shape.shape-one {
  top: -64px;
  right: 64px;
  width: 160px;
  height: 160px;
  border-radius: 28px;
}

.notitek-hero-shape.shape-two {
  bottom: 48px;
  left: 40px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
}

.notitek-hero-shape.shape-three {
  top: 64px;
  left: 96px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.notitek-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.notitek-hero-copy {
  text-align: left;
}

.notitek-hero-title {
  margin: 0;
  font-size: clamp(2.75rem, 5.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b1a35;
  line-height: 1.05;
}

.staggered-text {
  display: inline-block;
  white-space: pre-wrap;
}

.staggered-text .char-word {
  display: inline-block;
  white-space: nowrap;
}

.staggered-text .char-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  filter: blur(4px);
  animation: charEntrance 0.7s ease forwards;
  animation-play-state: paused;
  will-change: opacity, transform, filter;
}

.staggered-text.is-staggered-visible .char-reveal {
  animation-play-state: running;
}

@keyframes charEntrance {
  0% {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .staggered-text .char-reveal {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.notitek-hero-lead {
  margin: 20px 0 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
}

.notitek-hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.notitek-hero-blob {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 144px;
  height: 144px;
  border-radius: 999px;
  background: rgba(0, 82, 212, 0.2);
  filter: blur(48px);
}

.notitek-hero-frost {
  position: absolute;
  left: -32px;
  bottom: 16px;
  width: 96px;
  height: 96px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.notitek-hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.7);
  padding: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.notitek-hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.notitek-hero-panel-kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #94a3b8;
}

.notitek-hero-panel-lights {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notitek-hero-light {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.notitek-hero-light.is-active {
  width: 10px;
  height: 10px;
  background: #34d399;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.notitek-hero-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.notitek-hero-stat-card {
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.05);
  padding: 16px;
}

.notitek-hero-stat-label {
  margin: 0;
  font-size: 12px;
  color: #94a3b8;
}

.notitek-hero-stat-value {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 600;
  color: #0b1a35;
}

.notitek-hero-progress {
  margin-top: 12px;
  height: 6px;
  width: 100%;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.notitek-hero-progress-bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #0052d4;
}

.notitek-hero-progress-bar.is-soft {
  background: rgba(0, 82, 212, 0.8);
}

.notitek-hero-stream {
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);
  padding: 16px;
}

.notitek-hero-stream-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notitek-hero-stream-title {
  margin: 0;
  font-size: 12px;
  color: #94a3b8;
}

.notitek-hero-stream-live {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #0052d4;
}

.notitek-hero-chart {
  margin-top: 16px;
  width: 100%;
  height: 80px;
}

.notitek-hero-orb {
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: 160px;
  height: 160px;
}

.notitek-hero-orb-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0052d4, #7cb7ff);
  opacity: 0.4;
  filter: blur(32px);
}

.notitek-hero-orb-core {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 82, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notitek-hero-orb-ring {
  position: absolute;
  inset: 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 82, 212, 0.4);
}

.notitek-hero-orb-ring.ring-inner {
  inset: 32px;
  border-color: rgba(0, 82, 212, 0.2);
}

.notitek-hero-orb-center {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #0052d4;
  box-shadow: 0 0 30px rgba(0, 82, 212, 0.6);
}

@media (min-width: 640px) {
  .why-us {
    padding: 72px 32px;
  }
}

@media (min-width: 1024px) {
  .notitek-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .notitek-hero-copy {
    text-align: left;
  }

  .notitek-hero-lead {
    margin-left: 0;
    margin-right: auto;
  }

  .why-us {
    padding: 80px 56px;
  }
}


/* ============================================================
   ABOUT – 2 SÜTUNLU BÖLÜM
============================================================ */
.about-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  justify-items: start;
  gap: 64px;
  margin: 200px 0 200px 0;
}
.about-row .col {
  flex: 1;
  min-width: 0;
}
.about-row .text {
  max-width: 560px;
}
.about-row .visual {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
}
.about-row h2 {
  font-size: 34px;
  margin-bottom: 16px;
}
.about-row p {
  font-size: 18px;
  line-height: 1.75;
  color: #667085;
}

/* Görsel placeholder */
.img-ph {
  width: min(100%, 480px);
  aspect-ratio: 2 / 3;
  background: #ffffff;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: none;
}
.img-ph::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.img-ph img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.img-ph img:hover{
  transform: scale(1.03);
}



/* ============================================================
   PROJECTS
============================================================ */
.projects {
  text-align: center;
  margin: 220px 0 220px 0;
}

.projects:not(.sector-ecosystem) {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.projects h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.proj-desc {
  font-size: 18px;
  max-width: 760px;
  margin: auto;
  color: #667085;
}

.sector-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 22px;
}

.sector-card {
  padding: 22px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}



/* ============================================================
   WHY US - STRATEGIC EXCELLENCE
============================================================ */
.why-us {
  position: relative;
  background: #ffffff;
  border-radius: 40px;
  padding: 64px 24px;
  font-family: 'Satoshi', 'Space Grotesk', 'DM Sans', sans-serif;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.whyus-header {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}


.whyus-header .whyus-title {
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 600;
  color: #000000;
}

.whyus-header .whyus-lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
}

.whyus-grid {
  perspective: 1400px;
  margin-top: 40px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.whyus-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  opacity: 0;
  transform: perspective(1200px) translateY(26px) rotateX(12deg) rotateY(-6deg);
  transition: transform 0.85s ease, opacity 0.85s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transition-delay: var(--delay, 0ms);
  padding: 32px 28px;
}

.whyus-card > * {
  position: relative;
  z-index: 1;
}

.whyus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(0, 82, 212, 0.06));
  opacity: 0.9;
  pointer-events: none;
}

.whyus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 80% 0%, rgba(0, 82, 212, 0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.whyus-card.is-visible {
  opacity: 1;
  transform: perspective(1200px) translateY(0) rotateX(0) rotateY(0);
}

.whyus-card:hover {
  border-color: rgba(0, 82, 212, 0.25);
  box-shadow: 0 0 50px rgba(0, 82, 212, 0.15), 0 24px 70px rgba(15, 23, 42, 0.12);
}

.whyus-card h3 {
  margin: 24px 0 0;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

.whyus-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
}

.whyus-icon {
  --accent: 0, 82, 212;
  --accent-soft: 124, 183, 255;
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 82, 212, 0.16);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 18px rgba(0, 82, 212, 0.12);
  transform-style: preserve-3d;
  transform: translateZ(14px);
  transition: transform 1.6s ease;
}

.whyus-card:hover .whyus-icon {
  transform: translateZ(14px) rotate(360deg);
}

.whyus-orb {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(var(--accent), 0.95), rgba(var(--accent), 0.18));
  animation: whyusFloat 7s ease-in-out infinite;
}

.whyus-orb.orb-a {
  width: 42px;
  height: 42px;
  top: -8px;
  left: -6px;
}

.whyus-orb.orb-b {
  width: 36px;
  height: 36px;
  bottom: -10px;
  right: -4px;
  background: radial-gradient(circle at 60% 30%, rgba(var(--accent-soft), 0.9), rgba(var(--accent-soft), 0.2));
  animation-duration: 8.5s;
  animation-delay: -2s;
}

.whyus-orb.orb-c {
  width: 18px;
  height: 18px;
  top: 12px;
  right: 10px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(var(--accent), 0.2));
  animation-duration: 6s;
  animation-delay: -1s;
}

.whyus-core {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--accent), 1), rgba(var(--accent-soft), 1));
  box-shadow: 0 14px 28px rgba(var(--accent), 0.35);
  transform: translateZ(18px) rotate(12deg);
}

.whyus-icon--compass {
  --accent: 0, 110, 255;
  --accent-soft: 148, 211, 255;
}

.whyus-icon--compass .whyus-core {
  border-radius: 999px;
  background: conic-gradient(from 120deg, rgba(var(--accent), 1), rgba(var(--accent-soft), 1), rgba(var(--accent), 1));
  transform: translateZ(18px);
}

.whyus-icon--matrix {
  --accent: 0, 82, 212;
  --accent-soft: 170, 210, 255;
}

.whyus-icon--shield {
  --accent: 0, 82, 212;
  --accent-soft: 124, 183, 255;
}

.whyus-icon--matrix .whyus-core {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  transform: translateZ(18px) rotate(-8deg);
}




@keyframes whyusFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whyus-card,
  .whyus-icon,
  .whyus-orb {
    animation: none !important;
    transition: none !important;
  }

  .whyus-card {
    opacity: 1;
    transform: none;
  }

  .sector-ecosystem .sector-card {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .mission-text,
  .mission-visual {
    transform: none;
    transition: none;
  }

  .mission-node svg {
    transform: none;
  }
}



/* ============================================================
   HERO BAŞLIK & RESPONSIVE
============================================================ */
.about-page .hero h1 {
  font-size: 120px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
}

.about-page .hero p {
  font-size: 22px;
  margin-top: 18px;
  color: #475569;
}

.about-page h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 24px;
}

.about-page h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .about-page .hero h1 {
    font-size: 42px;
  }
  .about-page h2 {
    font-size: 36px;
  }
}


/* === MOBILE FIXES === */
@media (max-width: 1024px) {
  .about-page {
    padding-top: 104px;
  }
  .about-page section {
    margin-bottom: 100px;
    padding: 0 32px;
  }

  .about-page section:first-of-type {
    margin-top: 0;
  }

  .hero {
    margin: 160px 0;
  }

  .about-row {
    gap: 48px;
    margin: 160px 0;
  }

  .img-ph {
    width: min(100%, 420px);
  }

  .projects {
    margin: 160px 0;
  }

  .whyus-header {
    max-width: 640px;
  }

  .whyus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-page {
    padding-top: 92px;
  }
  .about-page section {
    margin-bottom: 80px;
    padding: 0 24px;
  }

  .about-page section:first-of-type {
    margin-top: 0;
  }

  .hero {
    margin: 120px 0;
  }

  .hero p {
    font-size: 16px;
  }

  .about-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
    margin: 120px 0;
  }

  .about-row .col {
    width: 100%;
  }

  .about-row h2 {
    font-size: 28px;
  }

  .about-row p {
    font-size: 16px;
  }

  .about-row .visual {
    justify-content: center;
  }

  .img-ph {
    width: min(100%, 360px);
  }

  .projects {
    margin: 120px 0;
  }

  .projects h2 {
    font-size: 28px;
  }

  .proj-desc {
    font-size: 16px;
  }

  .sector-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sector-card {
    font-size: 15px;
    padding: 18px;
  }

  .notitek-hero {
    padding: 120px 16px;
    border-radius: 24px;
    overflow: hidden;
  }

  .notitek-hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .notitek-hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .notitek-hero-grid {
    gap: 32px;
  }

  .notitek-hero-copy {
    text-align: center;
  }

  .notitek-hero-lead {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .notitek-hero-visual {
    max-width: 420px;
  }

  .notitek-hero-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .notitek-hero-stat-value {
    font-size: 20px;
  }

  .notitek-hero-stream {
    padding: 12px;
  }

  .notitek-hero-chart {
    height: 64px;
  }

  .notitek-hero-shape,
  .notitek-hero-blob,
  .notitek-hero-frost {
    display: none;
  }

  .notitek-hero-orb {
    display: none;
  }

  .sector-ecosystem {
    margin: 140px 0;
  }

  .sector-ecosystem h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .sector-ecosystem .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .sector-ecosystem .sector-card {
    min-height: 76px;
    padding: 16px 18px;
    font-size: 14.5px;
    line-height: 1.35;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .sector-ecosystem .sector-card.sector-illustration {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .why-us {
    padding: 48px 20px;
  }

  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .whyus-card {
    border-radius: 28px;
  }

}

@media (max-width: 640px) {
  .notitek-hero {
    padding: 110px 16px;
  }

  .notitek-hero-title {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .notitek-hero-panel {
    padding: 16px;
  }

  .notitek-hero-chart {
    height: 56px;
  }

  .mission-orbit {
    width: 240px;
    height: 240px;
  }

  .mission-core {
    width: 160px;
    height: 160px;
  }

  .mission-node {
    width: 44px;
    height: 44px;
  }

  .core-title {
    font-size: 30px;
  }
}

/* =========================
   ABOUT HERO (REFERENCE STYLE)
========================= */
.about-hero {
  position: relative;
  margin: 0;
  padding: 160px 20px 120px;
  text-align: center;
  overflow: hidden;
  font-family: 'Satoshi', 'Space Grotesk', 'DM Sans', sans-serif;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 940px;
  height: 940px;
  left: 50%;
  top: -320px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(15, 23, 42, 0.08), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: calc(50% - 420px);
  top: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0) 70%);
  opacity: 0.6;
  filter: blur(4px);
  pointer-events: none;
}

.about-hero .hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  z-index: 1;
}

.about-hero-title {
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 800;
  line-height: 1.05;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.title-underline {
  display: block;
  width: 110px;
  height: 6px;
  background: #2f5bff;
  border-radius: 999px;
  margin: 16px auto 0;
}

.about-hero-lead {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.65;
  color: #6b7280;
  margin: 0 auto 18px;
  max-width: 720px;
}

.about-hero-lead .accent {
  color: #2f5bff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.about-hero-quote {
  font-size: 14px;
  color: #9aa3b2;
  font-style: italic;
  margin: 6px auto 26px;
  max-width: 560px;
}

.about-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.about-hero-cta:hover {
  color: #2f5bff;
  transform: translateY(-1px);
}

.cta-arrow {
  font-size: 16px;
  line-height: 1;
  transform: translateY(1px);
}

.about-hero-scroll {
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.about-hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  margin: 12px auto 0;
  background: #d6dbe6;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 16px 90px;
  }
  .about-hero::before {
    width: 720px;
    height: 720px;
    top: -260px;
  }
  .about-hero::after {
    width: 240px;
    height: 240px;
    left: calc(50% - 260px);
    top: 60px;
  }
  .title-underline {
    width: 88px;
  }
}

/* ============================================================
   MISSION SECTION (REFERENCE STYLE)
============================================================ */
.mission-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 36px;
  margin: 200px 0;
  justify-items: center;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.mission-text {
  text-align: left;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
  will-change: transform;
}

.mission-text h2 {
  font-size: 44px;
  margin-bottom: 14px;
}

.mission-underline {
  display: inline-block;
  width: 64px;
  height: 4px;
  background: #0052d4;
  border-radius: 999px;
  margin-top: 20px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.mission-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  max-width: 520px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}


.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #0052d4;
  text-decoration: none;
  font-weight: 700;
}

.mission-arrow {
  font-size: 16px;
}

.mission-visual {
  display: flex;
  justify-content: center;
  position: relative;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
  will-change: transform;
}

.mission-orbit {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-orbit::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 0 0 10px rgba(0, 82, 212, 0.06);
}

.mission-orbit::after {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 212, 0.12), rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}

.mission-core {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1d4ed8, #0b1f4d 70%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.08), 0 25px 60px rgba(15, 23, 42, 0.2);
  text-align: center;
}

.core-title {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.core-sub {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.mission-node {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.mission-node svg {
  width: 26px;
  height: 26px;
  stroke: #64748b;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.6s ease, stroke 0.4s ease;
}

.mission-visual:hover .mission-node {
  box-shadow: 0 0 26px rgba(0, 82, 212, 0.22);
  border-color: rgba(0, 82, 212, 0.35);
}

.mission-visual:hover .mission-node svg {
  transform: rotate(360deg);
  stroke: #0052d4;
}

.node-top {
  top: -6px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.node-left-top {
  top: 26%;
  left: -8px;
  transform: translate(-50%, -50%);
}

.node-left-bottom {
  bottom: 26%;
  left: -8px;
  transform: translate(-50%, 50%);
}

.node-right-top {
  top: 26%;
  right: -8px;
  transform: translate(50%, -50%);
}

.node-right-bottom {
  bottom: 26%;
  right: -8px;
  transform: translate(50%, 50%);
}

.node-bottom {
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 50%);
}

@media (max-width: 1024px) {
  .mission-section {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .mission-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .mission-section {
    margin: 120px 0;
    gap: 32px;
  }

  .mission-text {
    text-align: center;
  }

  .mission-text h2 {
    font-size: 32px;
  }

  .mission-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .mission-text p {
    font-size: 16px;
  }


  .mission-orbit {
    width: 280px;
    height: 280px;
  }

  .mission-core {
    width: 180px;
    height: 180px;
  }

  .core-title {
    font-size: 34px;
  }

  .mission-node {
    width: 50px;
    height: 50px;
  }
}

/* ============================================================
   SECTOR GRID (BENTO ECOSYSTEM)
============================================================ */
.sector-ecosystem {
  text-align: center;
  margin: 220px 0;
  position: relative;
}

.sector-ecosystem .sector-header {
  max-width: 960px;
  margin: 0 auto 40px;
}

.sector-ecosystem h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.sector-ecosystem .headline-line {
  display: block;
}

.sector-ecosystem .accent-blue {
  color: #0052d4;
}

.sector-ecosystem .proj-desc {
  margin-top: 18px;
  font-size: 18px;
  max-width: 720px;
  color: #64748b;
  margin-left: auto;
  margin-right: auto;
}

.sector-ecosystem .sector-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding: 0;
  justify-items: center;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.sector-ecosystem .sector-grid::before,
.sector-ecosystem .sector-grid::after {
  content: none;
}

.sector-ecosystem .sector-card {
  min-height: 96px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.6s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  transition-delay: var(--delay, 0ms);
}

.sector-ecosystem .sector-card.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.sector-ecosystem .sector-card.sector-illustration {
  padding: 0;
  overflow: hidden;
  background: #f8fafc;
}

.sector-ecosystem .sector-illustration-svg {
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 120px;
}

.sector-ecosystem .sector-card.sector-illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 45%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-120%);
  animation: sectorShimmer 1.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sectorShimmer {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.sector-ecosystem .sector-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  background: #f5f8ff;
}

.sector-ecosystem .sector-grid.is-visible .sector-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  background: #f5f8ff;
}


.sector-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 8px;
}

.sector-grid::before {
  content: "";
  position: absolute;
  inset: -24px -12px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 82, 212, 0.12), transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(0, 82, 212, 0.08), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.sector-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(0, 82, 212, 0.08) 0 6px, transparent 6px 20px),
    repeating-linear-gradient(0deg, rgba(0, 82, 212, 0.06) 0 6px, transparent 6px 24px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.sector-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 26px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.3s ease, background 0.3s ease;
  transition-delay: var(--delay, 0ms);
}

.sector-grid.is-animated .sector-card {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
}

.sector-grid.is-animated.is-visible .sector-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sector-grid.is-visible .sector-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
  background: linear-gradient(135deg, rgba(0, 82, 212, 0.08), rgba(0, 82, 212, 0.02));
}

.sector-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.sector-icon svg {
  width: 24px;
  height: 24px;
  stroke: #94a3b8;
  stroke-width: 1.8;
  fill: none;
  transition: stroke 0.3s ease;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sector-card:hover .sector-icon {
  background: rgba(0, 82, 212, 0.08);
  border-color: rgba(0, 82, 212, 0.25);
  transform: translateY(-2px);
}

.sector-card:hover .sector-icon svg {
  stroke: #0052d4;
}

.sector-content {
  transition: transform 0.3s ease;
}

.sector-card:hover .sector-content {
  transform: translateY(-4px);
}

.sector-content h3 {
  font-size: 18px;
  margin: 0;
  color: #0f172a;
}

.sector-content p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.6;
}

.span-2 {
  grid-column: span 2;
}

.center-span {
  grid-column: 2 / span 2;
}

@media (min-width: 1025px) {
  .sector-ecosystem .span-2 {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 1024px) {
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .span-2,
  .center-span {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .sector-ecosystem .sector-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sector-ecosystem .sector-card {
    min-height: 72px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.35;
  }

  .sector-ecosystem .sector-illustration-svg {
    max-width: 180px;
    max-height: 100px;
  }

  .span-2,
  .center-span {
    grid-column: span 1;
  }
}

