/* NETA Konteyner — style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@800&display=swap');
  @font-face {
    font-family: 'SF Pro Display';
    src: local('SF Pro Display'), local('.SFNSDisplay'), local('SFProDisplay-Regular');
    font-weight: 600;
  }
  @font-face {
    font-family: 'SF Pro Text';
    src: local('SF Pro Text'), local('.SFNSText'), local('SFProText-Regular');
    font-weight: 400;
  }

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

  :root {
    --red: #FF3B30;
    --black: #0a0a0a;
    --grey-mid: #86868b;
    --grey-line: #e5e5e7;
    --white: #ffffff;
  }

  html { font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

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

  body {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: var(--black);
  }

  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  }

  header.scrolled {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }

  /* Nav linkleri — hero üzerinde beyaz, scroll sonrası koyu */
  header nav a {
    transition: color 0.3s ease;
  }
  header:not(.scrolled) nav a {
    color: rgba(255,255,255,0.85);
  }
  header:not(.scrolled) nav a:hover {
    color: #fff;
  }

  /* Logo — hero üzerinde beyaz filtre */
  header:not(.scrolled) .logo img {
    filter: invert(1) brightness(2);
  }

  /* Hamburger — hero üzerinde beyaz */
  header:not(.scrolled) .hamburger span {
    background: rgba(255,255,255,0.9);
  }

  .header-inner {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
  }

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

  nav {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  nav a {
    font-size: 13.5px;
    font-weight: 400;
    color: var(--grey-mid);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 2px;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--red);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav a:hover { color: var(--black); }
  nav a:hover::after { width: 100%; }

  /* Hamburger butonu — sadece mobilde görünür */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s ease;
  }

  .hamburger:hover { background: rgba(0,0,0,0.05); }

  .hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

  /* Mobil menü drawer */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--grey-line);
    z-index: 99;
    padding: 12px 0 20px;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.15s ease;
  }

  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { background: rgba(0,0,0,0.03); }

  /* ── HERO ── */
  .hero {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100svh;
    background: #ffffff;
    z-index: 1;
    overflow: hidden;
  }

  .hero-sticky {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    position: relative;
  }

  /* Scroll alanı: hero fixed olduğu için placeholder lazım */
  .hero-placeholder {
    height: 100svh;
    pointer-events: none;
  }

  /* Metin bloğu */
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 48px 0;
    max-width: 680px;
  }

  .hero-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 20px;
  }

  .hero-title em {
    font-style: normal;
    color: var(--red);
  }

  .hero-desc {
    font-size: 18px;
    line-height: 1.5;
    color: var(--grey-mid);
    font-weight: 300;
    max-width: 460px;
  }

  /* Harita wrapper */
  .hero-map {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
  }

  .scroll-hint {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    transition: opacity 0.6s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .scroll-hint.hidden { opacity: 0; pointer-events: none; }

  .scroll-hint-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(134,134,139,0.6);
    border-radius: 11px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 5px;
  }

  .scroll-hint-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(134,134,139,0.8);
    animation: mouseDrop 2s ease-in-out infinite;
  }

  @keyframes mouseDrop {
    0%   { transform: translateY(0);  opacity: 1; }
    60%  { transform: translateY(10px); opacity: 0; }
    61%  { transform: translateY(0);  opacity: 0; }
    100% { transform: translateY(0);  opacity: 1; }
  }

  /* ── MARQUEE ── */
  .hero-marquee {
    position: absolute;
    bottom: 88px;
    left: 0; right: 0;
    overflow: hidden;
    /* kenarları soluyor */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .hero-marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
  }

  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .hero-marquee-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 0 28px;
    white-space: nowrap;
  }

  .hero-marquee-item::after {
    content: '·';
    color: rgba(0,0,0,0.15);
    font-size: 14px;
    margin-left: 28px;
  }

  .marquee-port {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0a0a0a;
  }

  .marquee-terminals {
    font-size: 11px;
    font-weight: 400;
    color: #b0b0b8;
    letter-spacing: 0.02em;
  }

  .why-marquee-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 0 28px;
    white-space: nowrap;
  }

  .why-marquee-item::after {
    content: '·';
    color: rgba(255,255,255,0.15);
    font-size: 14px;
    margin-left: 28px;
  }

  .why-mport {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }

  .why-mterm {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.02em;
  }

  /* ── RAIL SAĞ FADE ── */
  .services-rail-wrap {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  .services-rail-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 80px;
    background: linear-gradient(to right, transparent, rgba(10,10,10,0.95));
    pointer-events: none;
    z-index: 2;
  }

  /* Sağ ok işareti */
  .rail-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    cursor: pointer;
    animation: pulseRight 1.8s ease-in-out infinite;
    transition: opacity 0.3s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .rail-arrow:active {
    transform: translateY(-50%) scale(0.92);
  }

  .rail-arrow svg {
    width: 14px; height: 14px;
    color: #0a0a0a;
  }

  @keyframes pulseRight {
    0%, 100% { transform: translateY(-50%) translateX(0);   opacity: 0.75; }
    50%       { transform: translateY(-50%) translateX(4px); opacity: 1;   }
  }

  /* SVG — Marmara/Ege odaklı başlangıç */
  .hero-map svg {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: 28% 28%;  /* Marmara bölgesi merkez */
    will-change: transform;
  }

  /* İl path'leri */
  .hero-map svg path {
    fill: #EAECEF !important;
    stroke: #000;
    stroke-width: 0.5;
    opacity: 1;
  }

  /* Pin noktaları */
  /* Sabit nokta */
  .pin-dot {
    fill: #EF4444;
    opacity: 1;
  }

  /* Ripple — art arda 3 halka, su damlası gibi */
  .pin-ring {
    fill: none;
    stroke: #EF4444;
    stroke-width: 1;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: ripple 2.4s ease-out infinite;
  }

  /* Her pin için stagger */
  .pin-ring:nth-of-type(1)  { animation-delay: 0s; }
  .pin-ring:nth-of-type(2)  { animation-delay: 0.4s; }
  .pin-ring:nth-of-type(3)  { animation-delay: 0.8s; }
  .pin-ring:nth-of-type(4)  { animation-delay: 1.2s; }
  .pin-ring:nth-of-type(5)  { animation-delay: 1.6s; }
  .pin-ring:nth-of-type(6)  { animation-delay: 2.0s; }
  .pin-ring:nth-of-type(7)  { animation-delay: 2.4s; }

  @keyframes ripple {
    0%   { r: 5;  opacity: 0.6; stroke-width: 1.5; }
    40%  { r: 14; opacity: 0.3; stroke-width: 1; }
    100% { r: 24; opacity: 0;   stroke-width: 0.5; }
  }

  /* Etiketler */
  .pin-label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    fill: #1a1a1a;
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.9)) drop-shadow(0 0 12px rgba(255,255,255,0.9));
  }

  /* Rota çizgileri — kesik animasyonlu */
  .route-line {
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 0.7;
    stroke-linecap: round;
    stroke-dasharray: 4 8;
    opacity: 0;
  }

  @keyframes routeDraw {
    0%   { stroke-dashoffset: var(--len); opacity: 0; }
    10%  { opacity: 0.3; }
    70%  { stroke-dashoffset: 0; opacity: 0.3; }
    88%  { stroke-dashoffset: 0; opacity: 0.3; }
    100% { stroke-dashoffset: calc(var(--len) * -1); opacity: 0; }
  }

  /* Animasyonlar */
  .hero-content {
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
  }

  .hero-map {
    opacity: 0;
    animation: fadeIn 1.1s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* ── HİZMETLER ── */

  .hero          { background: #ffffff; }
  .hero-sticky   { background: #ffffff; }

  /* Services wrapper — why-neta üstüne kayar */
  .services-scene {
    position: relative;
    z-index: 30;
    background: linear-gradient(to bottom, #050505 0%, #080808 5%, #0a0a0a 15%, #0a0a0a 100%);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
    min-height: 100svh;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    isolation: isolate;
  }

  /* Panel: sticky, header altında durur */
  .services-panel {
    position: sticky;
    top: 60px;
    height: calc(100svh - 60px);
    z-index: 20;
    pointer-events: auto;
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
  }

  /* Bölüm başlığı — panelin tepesinde küçük */
  .services-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--grey-mid);
    flex-shrink: 0;
    padding-left: 4px;
  }

  /* Yatay rail */
  .services-rail {
    height: 100%;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    cursor: grab;
  }
  .services-rail::-webkit-scrollbar { display: none; }
  .services-rail:active              { cursor: grabbing; }

  /* Kart */
  .service-card {
    flex: 0 0 auto;
    width: calc(82vw - 24px);
    max-width: 420px;
    height: 100%;
    max-height: 420px;
    background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .service-card:not(:first-child) {
    width: calc(80vw - 24px);
    max-width: 400px;
  }

  .card-body {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  /* Üst görsel alan */
  .card-visual {
    width: 100%;
    height: 170px;
    flex-shrink: 0;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .card-visual svg {
    width: 100%;
    height: 100%;
    opacity: 0.9;
  }

  .card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 35%,
      rgba(255,59,48,0.06) 0%, transparent 65%);
    pointer-events: none;
  }

  .card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .card-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
    display: block;
  }

  .card-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .card-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    flex: 1;
    margin-bottom: 16px;
  }

  .card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .card-link svg {
    width: 14px; height: 14px;
    opacity: 0.45;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .card-link:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,59,48,0.4);
    color: var(--red);
  }

  .card-link:hover svg {
    opacity: 1;
    transform: translateX(3px);
  }

  .card-nav-hint {
    font-size: 10.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.03em;
    text-align: right;
    margin-top: 8px;
    display: block;
  }

  /* Normal akış — panel kapandıktan sonra */
  .services-rest {
    position: relative;
    z-index: 5;
    background: #ffffff;
    min-height: 20px;
  }

  /* ── NEDEN NETA ── */
  .why-neta {
    background: #0a0a0a;
    position: sticky;
    top: 60px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .why-neta-inner {
    display: flex;
    flex-direction: column;
    max-width: 560px;
    padding: 80px 32px 48px;
  }

  /* Sol — fotoğraf */
  .why-neta-photo {
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1200&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
  }

  /* Sağ — metin */
  .why-neta-right {
    display: flex;
    flex-direction: column;
  }

  .why-neta-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 32px;
  }

  .why-neta-quote {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 28px;
  }

  .why-neta-sub {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    max-width: 32ch;
    margin-bottom: 48px;
  }

  /* Why-neta scroll hint */
  .why-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 48px;
  }

  .why-scroll-hint-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  .why-scroll-hint-arrow {
    width: 20px; height: 20px;
    animation: bounceDown 1.8s ease-in-out infinite;
  }

  .why-marquee {
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .why-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
  }

  /* Mobil: alt alta */
  @media (max-width: 768px) {
    .why-neta-inner { grid-template-columns: 1fr; min-height: auto; }
    .why-neta-photo { height: 280px; }
    .why-neta-right { padding: 56px 24px; }
    .why-neta-quote { font-size: 28px; }
    .why-neta-sub { max-width: none; }
  }

  /* Mobile */
  @media (max-width: 768px) {
    header { padding: 8px 16px; }
    .header-cta { display: none; }
    .header-nav-box { padding: 0 16px; height: 48px; border-radius: 12px; }
    nav { display: none; }
    nav { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
    .hero-content { padding: 96px 24px 0; }
    .hero-map     { margin-top: 24px; }
    .pin-label { font-size: 18px; font-weight: 600; letter-spacing: 0.2px; }
    .pin-dot   { r: 7px; }
    .pin-ring  { r: 16px; }

    .services-panel { padding: 12px 16px 16px; }
    .service-card { width: calc(85vw); max-width: none; }
    .service-card:not(:first-child) { width: calc(85vw); max-width: none; }
  }

  /* Masaüstü: 3x2 grid */
  @media (min-width: 960px) {

    /* ── HERO ── */
    .hero { height: 100svh; }

    .hero-sticky {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      width: 100%;
      padding: 0;
      gap: 0;
      box-sizing: border-box;
      position: relative;
      margin-top: 0;
    }

    .hero-content {
      position: relative;
      top: auto;
      left: auto;
      padding: 0;
      width: 96%;
      max-width: 1040px;
      z-index: 2;
      margin-bottom: 24px;
    }

    .hero-title {
      font-size: clamp(32px, 3vw, 52px);
      margin-bottom: 16px;
      opacity: 0;
      animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
    }

    .hero-desc {
      font-size: 16px;
      max-width: 380px;
      opacity: 0;
      animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.25s forwards;
    }

    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-map {
      width: 96%;
      max-width: 1040px;
      margin-top: 0;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      animation: heroFadeIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
    }

    @keyframes heroFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .hero-content {
      padding: 0;
      width: 100%;
    }

    .hero-title {
      font-size: clamp(40px, 3.6vw, 60px);
      margin-bottom: 20px;
      opacity: 0;
      animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
    }

    .hero-desc {
      font-size: 17px;
      max-width: 380px;
      opacity: 0;
      animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.25s forwards;
    }

    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-map {
      width: 100%;
      margin-top: 0;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-right: 0;
      opacity: 0;
      animation: heroFadeIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
    }

    @keyframes heroFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .hero-map svg {
      width: 100%;
      height: auto;
      max-height: 82vh;
    }

    /* Logo desktop'ta %25 büyük */
    .header-inner .logo img,
    header .logo img {
      height: 44px !important;
    }

    /* ── WHY-NETA ── */
    .why-neta-inner {
      padding: 100px 64px 80px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ── HİZMETLER ── */
    .services-scene { min-height: auto; }
    .services-panel {
      position: relative;
      top: auto;
      height: auto;
      overflow: visible;
      padding: 64px 64px 80px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .services-rail-wrap { overflow: visible; }
    .services-rail-wrap::after { display: none; }
    .services-rail {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      overflow: visible;
      height: auto;
      cursor: default;
      scroll-snap-type: none;
    }
    .service-card {
      flex: none;
      width: 100%;
      max-width: none;
      height: auto;
      max-height: none;
      scroll-snap-align: none;
    }
    .service-card:not(:first-child) {
      width: 100%;
      max-width: none;
    }
    .rail-arrow { display: none; }

    /* ── TEKLİF FORMU ── */
    .quote-section {
      padding: 0;
      min-height: calc(100svh - 60px);
      display: flex;
      align-items: stretch;
    }
    .quote-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: start;
    }
    /* Sol — başlık + açıklama */
    .qf-header {
      position: sticky;
      top: 80px;
      padding: 100px 64px 80px 80px;
      margin-bottom: 0;
    }
    .qf-eyebrow {
      font-size: 11px;
      margin-bottom: 16px;
    }
    .qf-title {
      font-size: clamp(36px, 4vw, 56px);
      line-height: 1.08;
      margin-bottom: 24px;
    }
    .qf-desktop-desc {
      display: block;
      font-size: 16px;
      line-height: 1.7;
      color: #86868b;
      font-weight: 400;
      max-width: 36ch;
    }
    /* Sağ — form kartları */
    .qf-type-list {
      padding: 100px 80px 80px 64px;
      border-left: 1px solid #e5e5e7;
      gap: 14px !important;
      position: relative;
    }
    /* Overlay desktop — geniş ve büyük */
    .qf-overlay-inner {
      width: 720px;
      max-width: 720px;
      padding: 100px 64px;
    }
    .qf-overlay-close { position: fixed; top: 20px; right: 24px; }
    .qf-progress-wrap { margin-bottom: 32px; }
    .qf-bar { height: 3px; }
    .qf-step-label { font-size: 13px; }
    .qf-type-list { gap: 16px !important; }
    .qf-type-card { padding: 28px 28px; border-radius: 20px; gap: 22px; }
    .qf-tc-icon { width: 52px; height: 52px; }
    .qf-tc-icon svg { width: 32px; height: 32px; }
    .qf-tc-text b { font-size: 20px; }
    .qf-tc-text small { font-size: 14px; margin-top: 4px; }
    .qf-tc-arr { font-size: 20px; }
  }
    .qf-progress-wrap {
      margin-bottom: 28px;
    }
    .qf-bar { height: 2px; }
    .qf-step-label { font-size: 12px; }
    .qf-type-card {
      padding: 24px 22px;
      border-radius: 18px;
      gap: 18px;
    }
    .qf-tc-icon { width: 44px; height: 44px; }
    .qf-tc-icon svg { width: 28px; height: 28px; }
    .qf-tc-text b { font-size: 17px; }
    .qf-tc-text small { font-size: 13px; margin-top: 2px; }
    .qf-tc-arr { font-size: 18px; }
  }
  /* ══ TEKLİF FORMU ══ */
  .qf-overlay { display:none; position:fixed; inset:0; z-index:300; background:#ffffff; overflow-y:auto; overflow-x:hidden; }
  .qf-overlay.open { display:flex; flex-direction:column; align-items:center; animation:qfSlide .3s cubic-bezier(.4,0,.2,1); }
  @keyframes qfSlide { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  .qf-overlay-inner { width:100%; max-width:560px; padding:64px 24px 80px; box-sizing:border-box; }
  .qf-overlay-close { position:fixed; top:20px; right:20px; background:none; border:none; font-size:20px; color:#86868b; cursor:pointer; padding:8px; line-height:1; z-index:10; }
  .qf-overlay-close:hover { color:#0a0a0a; }
  .qf-overlay-progress { display:flex; align-items:center; gap:12px; margin-bottom:28px; }
  .qf-overlay.active ~ footer, body.qf-open footer { display: none; }
  .quote-section { background:#fff; padding:20px 24px 80px; position:relative; z-index:50; box-sizing:border-box; min-height:calc(100svh - 60px); }
  .quote-inner { max-width:520px; margin:0 auto; }
  .qf-header { margin-bottom:20px; }
  .qf-eyebrow { display:block; font-size:10px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--red); margin-bottom:10px; }
  .qf-title { font-size:clamp(22px,5vw,30px); font-weight:600; color:#0a0a0a; letter-spacing:-.02em; line-height:1.2; }
  .qf-progress-wrap { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
  .qf-bar { flex:1; height:2px; background:#e5e5e7; border-radius:2px; overflow:hidden; }
  .qf-fill { height:100%; background:var(--red); border-radius:2px; transition:width .4s cubic-bezier(.4,0,.2,1); }
  .qf-step-label { font-size:11px; font-weight:500; color:#86868b; min-width:28px; text-align:right; }
  .qf-type-list { display:flex; flex-direction:column; gap:10px; }
  .qf-type-card { display:flex; align-items:center; gap:14px; padding:16px; background:#f5f5f7; border:1.5px solid transparent; border-radius:14px; cursor:pointer; font-family:inherit; width:100%; box-sizing:border-box; transition:background .15s,border-color .15s,transform .1s; }
  .qf-type-card:active { transform:scale(.98); }
  .qf-type-card:hover { background:#ebebed; }
  .qf-tc-icon { width:32px; height:32px; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:#0a0a0a; }
  .qf-tc-icon svg { width:22px; height:22px; }
  .qf-tc-text { flex:1; display:flex; flex-direction:column; gap:2px; text-align:left; }
  .qf-tc-text b { font-size:14px; font-weight:600; color:#0a0a0a; }
  .qf-tc-text small { font-size:12px; color:#86868b; font-weight:400; }
  .qf-tc-arr { color:#86868b; font-size:15px; }
  .qf-desktop-desc { display: none; }
  .qf-panel { animation:qfIn .25s ease; }
  @keyframes qfIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
  .qf-block { display:flex; flex-direction:column; gap:5px; margin-bottom:10px; }
  .qf-lbl { font-size:10px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:#86868b; margin:0; }
  .qf-opt { font-weight:400; text-transform:none; letter-spacing:0; color:#adadb0; }
  .qf-chips { display:flex; flex-wrap:wrap; gap:6px; }
  .qfc { padding:6px 13px; background:#F2F2F2; border:1.5px solid transparent; border-radius:100px; font-size:12px; font-weight:500; color:#222; cursor:pointer; font-family:inherit; white-space:nowrap; transition:background .15s,color .15s,border-color .15s,transform .1s; user-select:none; }
  .qfc:active { transform:scale(.97); }
  .qfc:hover:not(.on) { background:#e8e8e8; }
  .qfc.on { background:#0B0B0B; color:#fff; border-color:#0B0B0B; }
  .qfi { width:100%; padding:10px 14px; background:#f5f5f7; border:1.5px solid transparent; border-radius:12px; font-size:16px; color:#0a0a0a; font-family:inherit; outline:none; box-sizing:border-box; transition:border-color .2s,background .2s; }
  .qfi::placeholder { color:#adadb0; }
  .qfi:focus { background:#fff; border-color:#0a0a0a; }
  .qf-ta { min-height:80px; resize:vertical; }
  .qf-toggle { display:flex; align-items:center; gap:12px; cursor:pointer; }
  .qf-toggle-track { width:46px; height:26px; background:#E5E5E5; border-radius:13px; position:relative; transition:background .2s; flex-shrink:0; }
  .qf-toggle-track::after { content:''; position:absolute; top:3px; left:3px; width:20px; height:20px; background:#fff; border-radius:50%; transition:transform .2s; box-shadow:0 1px 4px rgba(0,0,0,.18); }
  .qf-toggle input:checked + .qf-toggle-track { background:#FF3B30; }
  .qf-toggle input:checked + .qf-toggle-track::after { transform:translateX(20px); }
  .qf-toggle-txt { font-size:14px; font-weight:500; color:#0a0a0a; }
  .qf-overlay-actions { display:flex; flex-direction:row; gap:10px; margin-top:16px; padding-bottom:16px; }
  .qf-btn-back { flex:0 0 auto; padding:0 20px; height:54px; background:transparent; color:#86868b; border:1.5px solid #e5e5e7; border-radius:16px; font-size:14px; font-weight:500; font-family:inherit; cursor:pointer; white-space:nowrap; }
  .qf-btn-next,.qf-btn-send { flex:1; height:54px; background:#0B0B0B; color:#fff; border:none; border-radius:16px; font-size:15px; font-weight:600; font-family:inherit; cursor:pointer; transition:background .15s,transform .1s; user-select:none; }
  .qf-btn-next:active,.qf-btn-send:active { transform:scale(.98); }
  .qf-btn-next:hover { background:#1a1a1a; }
  .qf-btn-send { background:#FF3B30; }
  .qf-btn-send:hover { background:#e0352b; }
  .qf-btn-back { padding:14px; background:transparent; color:#86868b; border:none; font-size:14px; font-weight:500; font-family:inherit; cursor:pointer; }
  .qf-btn-back:hover { color:#0a0a0a; }
  .qf-success { display:flex; flex-direction:column; align-items:center; padding:60px 0; gap:16px; text-align:center; }
  .qf-success h3 { font-size:22px; font-weight:600; color:#0a0a0a; margin:0; }
  .qf-success p { font-size:14px; color:#86868b; margin:0; }


  /* ══ FOOTER RADAR ══ */
  .site-footer {
    font-family: inherit;
    position: relative;
    z-index: 50;
    background: #000;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .footer-map-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease 0.5s;
  }
  .site-footer.revealed .footer-map-wrap { opacity: 1; }

  .footer-map-wrap svg {
    width: 88%;
    max-width: 880px;
    height: auto;
    opacity: 0.2;
  }
  .footer-map-wrap svg path {
    fill: #ffffff;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 0.5;
  }

  .footer-radar-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .footer-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    padding: 0 40px 48px;
    min-height: 100svh;
  }

  .footer-tag {
    position: absolute;
    top: 36px; left: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 3px;
    opacity: 0;
    transition: opacity 0.8s ease 0.8s;
  }
  .site-footer.revealed .footer-tag { opacity: 1; }
  .footer-tag-label { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(232,0,29,0.55); font-family: monospace; }
  .footer-tag-value { font-size: 11px; font-weight: 400; letter-spacing: 0.12em; color: rgba(255,255,255,0.25); font-family: monospace; }

  .footer-status {
    position: absolute;
    top: 36px; right: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    transition: opacity 0.8s ease 1s;
  }
  .site-footer.revealed .footer-status { opacity: 1; }
  .footer-status-dot { width: 5px; height: 5px; border-radius: 50%; background: #E8001D; animation: radarPulse 2.5s ease-in-out infinite; }
  @keyframes radarPulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(232,0,29,0.3)} 50%{opacity:0.4;box-shadow:0 0 0 5px rgba(232,0,29,0)} }
  .footer-status-text { font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.18); font-family: monospace; }

  .footer-bottom-content { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px; }

  @media (min-width: 960px) {
    .footer-bottom-content { gap: 64px; }
  }

  .footer-phones { display: flex; flex-direction: column; align-items: center; gap: 4px; opacity: 0; transform: translateY(12px); transition: opacity 0.9s ease 1s, transform 0.9s ease 1s; }
  .site-footer.revealed .footer-phones { opacity: 1; transform: none; }
  .footer-phone { font-family: 'SF Pro Display', -apple-system, sans-serif; font-size: clamp(16px, 1.8vw, 22px); font-weight: 500; letter-spacing: 0.01em; color: rgba(255,255,255,0.75); text-decoration: none; line-height: 1.4; transition: color 0.2s; display: block; text-align: center; }
  .footer-phone:hover { color: #fff; }  .footer-location { font-size: 10px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-top: 10px; font-family: monospace; text-align: center; }

  .footer-right { display: flex; flex-direction: column; align-items: center; gap: 16px; opacity: 0; transition: opacity 0.9s ease 1.1s; }
  .site-footer.revealed .footer-right { opacity: 1; }
  .footer-social { display: flex; gap: 12px; }
  .footer-social-icon { width: 30px; height: 30px; border-radius: 50%; background: transparent; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
  .footer-social-icon:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); }
  .footer-copy { font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.1em; text-transform: uppercase; margin: 0; font-family: 'SF Pro Text', -apple-system, sans-serif; font-weight: 400; }

  .footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 28px; transform: scaleX(0); transform-origin: left; transition: transform 1s ease 0.8s; }
  .site-footer.revealed .footer-divider { transform: scaleX(1); }

  @media (max-width: 768px) {
    .footer-inner { padding: 0 24px 40px; }
    .footer-tag { left: 24px; top: 24px; }
    .footer-status { right: 24px; top: 24px; }
    .footer-bottom-content { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .footer-right { align-items: center; }
    .footer-phones { align-items: center; }
    .footer-phone { font-size: 15px; }
    .footer-map-wrap svg { width: 95%; opacity: 0.18; }
    .footer-divider { margin-bottom: 20px; }
  }

  /* ══ İLETİŞİM OVERLAY ══ */
  .contact-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
  }
  .contact-overlay.open { display: flex; animation: contactFadeIn 0.3s ease; }
  @keyframes contactFadeIn { from{opacity:0} to{opacity:1} }

  .contact-overlay-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
  }
  .contact-overlay-close:hover { background: rgba(255,255,255,0.25); color: #fff; }

  .contact-overlay-inner {
    width: 100%;
    max-width: 860px;
    background: rgba(15,15,20,0.75);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 0.5px rgba(255,255,255,0.08);
    padding: 44px 48px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    position: relative;
    animation: contactCardIn 0.35s cubic-bezier(0.16,1,0.3,1);
    max-height: 88svh;
    overflow-y: auto;
  }
  @keyframes contactCardIn { from{opacity:0;transform:translateY(14px) scale(0.98)} to{opacity:1;transform:none} }

  .contact-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
  }

  .contact-title {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 10px;
  }

  .contact-sub {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    margin: 0;
  }

  .contact-ol-right { display: flex; flex-direction: column; gap: 0; }

  .contact-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .contact-block:first-child { padding-top: 0; }
  .contact-block:last-of-type { border-bottom: none; }

  .contact-block-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 2px;
  }

  .contact-link-main {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.15s;
    display: block;
  }
  .contact-link-main:hover { color: rgba(255,255,255,0.6); }

  .contact-email-row {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .contact-email-row:last-child { border-bottom: none; padding-bottom: 0; }

  .contact-link-sub {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.15s;
    display: block;
  }
  .contact-link-sub:hover { color: #fff; }

  .contact-email-desc {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
  }

  .contact-text {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }

  .contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    background: #0a0a0a;
    color: #fff;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    align-self: flex-start;
    margin-top: 12px;
  }
  .contact-wa-btn:hover { background: #222; }
  .contact-wa-btn:active { transform: scale(0.98); }

  @media (min-width: 640px) {
    .contact-overlay-inner {
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
  }

  @media (max-width: 480px) {
    .contact-overlay-inner { padding: 28px 20px; border-radius: 20px; }
  }

  #yakindaModal.open { display: flex !important; animation: none; }
  @keyframes yakindaIn { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:none} }

  /* ── Hero kelime animasyonu ── */
  .hw {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .hw.visible {
    opacity: 1;
    transform: translateY(0);
  }


  /* ══ TIR SECTION ══ */
  .truck-section {
    background: #0a0a0a;
    position: relative;
    z-index: 30;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 520px;
    padding: 80px 72px;
    box-sizing: border-box;
    gap: 48px;
  }

  .truck-text {
    flex: 0 0 380px;
    z-index: 2;
  }

  .truck-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E8001D;
    display: block;
    margin-bottom: 20px;
  }

  .truck-title {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.06;
    color: #ffffff;
    margin: 0 0 20px;
  }

  .truck-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin: 0;
    max-width: 36ch;
  }

  .truck-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
  }

  .truck-img-wrap img {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.05);
    mix-blend-mode: screen;
  }

  @media (max-width: 768px) {
    .truck-section {
      flex-direction: column;
      padding: 60px 24px 40px;
      min-height: auto;
    }
    .truck-text { flex: none; }
    .truck-img-wrap { width: 100%; justify-content: center; }
    .truck-img-wrap img { max-width: 100%; }
  }

  /* ── Scroll Animasyonları ── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }