.jahuu-ust-wrap :root{
  --bg-dark: #0a0a0f;
  --bg-card: #14141d;
  --bg-light: #f8fafc;
  --accent: #10b981;
  --accent-hover: #059669;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --border: #2e3545;
  --hdr-h: 80px;
  --font: "Plus Jakarta Sans", sans-serif;
  --trans: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jahuu-ust-wrap *{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.jahuu-ust-wrap html{
  scroll-behavior: smooth;
  scroll-padding-top: var(--hdr-h);
}

.jahuu-ust-wrap body{
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

.jahuu-ust-wrap a{
  color: inherit;
  text-decoration: none;
  transition: color var(--trans);
}

.jahuu-ust-wrap img, .jahuu-ust-wrap svg{
  max-width: 100%;
  display: block;
}

.jahuu-ust-wrap ul{
  list-style: none;
}

.jahuu-ust-wrap h1, .jahuu-ust-wrap h2, .jahuu-ust-wrap h3{
  font-weight: 700;
  line-height: 1.2;
}

.jahuu-ust-wrap h1{
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.jahuu-ust-wrap h2{
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.jahuu-ust-wrap p{
  color: var(--text-muted);
}

.jahuu-ust-wrap .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.jahuu-ust-wrap .section{
  padding: 6rem 0;
}

.jahuu-ust-wrap .section-light{
  background: var(--bg-light);
  color: var(--text-dark);
}

.jahuu-ust-wrap .section-light h2, .jahuu-ust-wrap .section-light h3{
  color: var(--text-dark);
}

.jahuu-ust-wrap .section-light p{
  color: #475569;
}

.jahuu-ust-wrap .text-center{
  text-align: center;
}

.jahuu-ust-wrap .section-header{
  margin-bottom: 4rem;
}

/* Buttons */
.jahuu-ust-wrap .btn{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
}

.jahuu-ust-wrap .btn:hover{
  transform: translateY(-2px);
}

.jahuu-ust-wrap .btn-primary{
  background: var(--accent);
  color: #fff;
}

.jahuu-ust-wrap .btn-primary:hover{
  background: var(--accent-hover);
  box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.5);
}

.jahuu-ust-wrap .btn-outline{
  border-color: var(--border);
  color: var(--text-dark);
}

.jahuu-ust-wrap .hero .btn-outline{
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.jahuu-ust-wrap .hero .btn-outline:hover{
  border-color: #fff;
  color: #000;
  background-color: #fff;
}

.jahuu-ust-wrap .section-light .btn-outline{
  border-color: #cbd5e1;
  color: var(--text-dark);
}

.jahuu-ust-wrap .section-light .btn-outline:hover{
  border-color: var(--text-dark);
}

.jahuu-ust-wrap .btn-large{
  padding: 1rem 2rem;
}

/* Header - Premium Floating Pill */
.jahuu-ust-wrap .header{
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  height: 70px;
  /* Biraz daha ince ve kibar */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  /* Hap (pill) görünümü */
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--trans);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.jahuu-ust-wrap .header.scrolled{
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.15);
  height: 64px;
  /* Scroll onrasında biraz daha küçülür */
}

.jahuu-ust-wrap .header .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1.5rem;
  /* Kenarlardan nefes payı */
}

.jahuu-ust-wrap .main-nav ul{
  display: flex;
  gap: 2rem;
  align-items: center;
}

.jahuu-ust-wrap .main-nav a{
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--trans);
  padding: 0.5rem;
  /* Tıklama alanı büyütüldü */
}

.jahuu-ust-wrap .main-nav a:hover{
  color: var(--accent);
}

.jahuu-ust-wrap .header-actions{
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.jahuu-ust-wrap .header-actions .btn{
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  height: 42px;
  /* Buton yüksekliğini başlığa göre uyumlu tutuyoruz */
}

.jahuu-ust-wrap .mobile-menu-toggle{
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

/* Hero */
.jahuu-ust-wrap .hero{
  padding: calc(var(--hdr-h) + 4rem) 0 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Ambient Glow Effects */
.jahuu-ust-wrap .glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  pointer-events: none;
}

.jahuu-ust-wrap .glow-1{
  top: 10%;
  left: 0%;
  width: 50vw;
  height: 50vw;
  background: rgba(16, 185, 129, 0.08);
  /* slightly stronger */
  animation-name: float1;
  animation-duration: 15s;
  /* faster */
}

.jahuu-ust-wrap .glow-2{
  bottom: 0%;
  right: 0%;
  width: 50vw;
  height: 50vw;
  background: rgba(16, 185, 129, 0.06);
  /* slightly stronger */
  animation-name: float2;
  animation-duration: 18s;
  /* faster */
}

.jahuu-ust-wrap .glow-3{
  top: 40%;
  left: 30%;
  width: 40vw;
  height: 40vw;
  background: rgba(255, 255, 255, 0.02);
  /* slightly stronger */
  animation-name: float3;
  animation-duration: 16s;
  /* faster */
}

@keyframes float1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 80px) scale(1.2);
  }
}

@keyframes float2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-100px, -50px) scale(1.1);
  }
}

@keyframes float3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-80px, 50px) scale(1.3);
  }
}

.jahuu-ust-wrap .hero-container{
  position: relative;
  z-index: 10;
  /* Content guaranteed higher than glows and overlays */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.jahuu-ust-wrap .subline{
  font-size: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}

.jahuu-ust-wrap .hero-buttons{
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.jahuu-ust-wrap .trust-row{
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.jahuu-ust-wrap .trust-row li{
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 500;
}

.jahuu-ust-wrap .hero-img{
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--trans);
  animation: float-bonus 6s ease-in-out infinite;
}

.jahuu-ust-wrap .hero-img:hover{
  transform: perspective(1000px) rotateY(0deg);
}

/* Plugin Slot */
.jahuu-ust-wrap .repairplugin-slot{
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid #e2e8f0;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.jahuu-ust-wrap .plugin-placeholder{
  color: #94a3b8;
  font-style: italic;
}

/* Grids */
.jahuu-ust-wrap .grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.jahuu-ust-wrap .grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Cards */
.jahuu-ust-wrap .card{
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.jahuu-ust-wrap .card:hover{
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.3);
}

.jahuu-ust-wrap .card-icon{
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.jahuu-ust-wrap .card:hover .card-icon{
  transform: scale(1.05) translateY(-5px);
}

.jahuu-ust-wrap .card-icon svg{
  width: 42px;
  height: 42px;
}

.jahuu-ust-wrap .card h3{
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.jahuu-ust-wrap .card p{
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Workflow */
.jahuu-ust-wrap .workflow-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
}

.jahuu-ust-wrap .workflow-grid::before{
  content: "";
  position: absolute;
  top: 20px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: #cbd5e1;
  z-index: 1;
}

.jahuu-ust-wrap .step{
  text-align: center;
  position: relative;
  z-index: 2;
}

.jahuu-ust-wrap .step-num{
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.jahuu-ust-wrap .step-icon{
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Bonus */
.jahuu-ust-wrap .bonus-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-card);
  padding: 4rem;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.jahuu-ust-wrap .bonus-list{
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jahuu-ust-wrap .bonus-list li{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.jahuu-ust-wrap .bonus-list svg{
  flex-shrink: 0;
  margin-top: 4px;
}

.jahuu-ust-wrap .bonus-img{
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: scale(1.15);
  /* Enlarge slightly across all screens */
  transform-origin: center;
  animation: float-bonus 6s ease-in-out infinite;
}

@keyframes float-bonus {

  0%,
  100% {
    transform: translateY(0) scale(1.15);
  }

  50% {
    transform: translateY(-12px) scale(1.15);
  }
}

.jahuu-ust-wrap .akku-img{
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: scale(1);
  animation: float-akku 6s ease-in-out infinite;
}

@keyframes float-akku {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1);
  }
}

/* Locations */
.jahuu-ust-wrap .location-card{
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.jahuu-ust-wrap .loc-head{
  background: var(--bg-dark);
  padding: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jahuu-ust-wrap .loc-head h3{
  color: #fff;
}

.jahuu-ust-wrap .badge{
  background: var(--accent);
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .75rem;
  color: #fff;
}

.jahuu-ust-wrap .loc-body{
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.jahuu-ust-wrap .contact-line{
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #475569;
}

.jahuu-ust-wrap .contact-line svg{
  flex-shrink: 0;
}

.jahuu-ust-wrap .contact-line a{
  font-weight: 500;
  color: var(--text-dark);
}

.jahuu-ust-wrap .contact-line a:hover{
  color: var(--accent);
}

.jahuu-ust-wrap .opening{
  font-size: .9rem;
  line-height: 1.8;
  color: #475569;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.jahuu-ust-wrap .actions-bottom{
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* FAQ */
.jahuu-ust-wrap .faq-container{
  max-width: 800px;
  margin: 0 auto;
}

.jahuu-ust-wrap details{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 1rem;
}

.jahuu-ust-wrap summary{
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.jahuu-ust-wrap summary::-webkit-details-marker{
  display: none;
}

.jahuu-ust-wrap details[open] summary svg{
  transform: rotate(180deg);
  transition: var(--trans);
}

.jahuu-ust-wrap .faq-ans{
  padding: 0 1.5rem 1.5rem;
}

/* Footer */
.jahuu-ust-wrap .footer{
  background: #050508;
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--border);
}

.jahuu-ust-wrap .footer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.jahuu-ust-wrap .footer-col h4{
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.jahuu-ust-wrap .footer-links{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jahuu-ust-wrap .footer-links li{
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.jahuu-ust-wrap .footer-links a{
  color: var(--text-muted);
  transition: var(--trans);
}

.jahuu-ust-wrap .footer-links a:hover{
  color: var(--accent);
}

.jahuu-ust-wrap .footer-links strong{
  display: block;
  color: #cbd5e1;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.jahuu-ust-wrap .footer-logo{
  height: 40px;
  margin-bottom: 1.5rem;
  opacity: .7;
  filter: grayscale(1);
  transition: var(--trans);
}

.jahuu-ust-wrap .footer-logo:hover{
  opacity: 1;
  filter: grayscale(0);
}

.jahuu-ust-wrap .social-links{
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.jahuu-ust-wrap .social-links a{
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jahuu-ust-wrap .social-links a:hover{
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.jahuu-ust-wrap .footer-bot{
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
}

/* Brands Marquee */
.jahuu-ust-wrap .brands-section{
  padding: 4rem 0;
  overflow: hidden;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

.jahuu-ust-wrap .brands-sec-title{
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.jahuu-ust-wrap .brands-track{
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.jahuu-ust-wrap .brand-item{
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.5;
  transition: var(--trans);
}

.jahuu-ust-wrap .brand-item:hover{
  opacity: 1;
  color: var(--accent);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Visibility */
.jahuu-ust-wrap .desktop-only{
  display: block;
}

.jahuu-ust-wrap .mobile-only{
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .jahuu-ust-wrap .desktop-only{
    display: none !important;
  }

  .jahuu-ust-wrap .mobile-only{
    display: block !important;
  }

  .jahuu-ust-wrap .hero-container, .jahuu-ust-wrap .grid-3, .jahuu-ust-wrap .grid-2, .jahuu-ust-wrap .bonus-container{
    grid-template-columns: 1fr;
  }

  .jahuu-ust-wrap #reparaturbonus.section, .jahuu-ust-wrap #premium-akku.section{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .jahuu-ust-wrap .bonus-container{
    padding: 2.5rem 1.5rem 1.5rem;
    /* Alt padding azaltıldı */
    overflow: hidden;
  }

  .jahuu-ust-wrap .bonus-content{
    margin-bottom: 2rem;
  }

  .jahuu-ust-wrap .bonus-img{
    margin-top: -2.5rem;
    /* Butona daha da çok yakınlaştırıldı */
    margin-bottom: 0;
    /* Artık alttan boşluk padding ile sağlanıyor */
    transform: scale(1.15);
    width: 110%;
    max-width: none;
    margin-left: -5%;
    /* Ortalamak için */
  }

  .jahuu-ust-wrap .akku-img{
    margin-top: -1.5rem;
    margin-bottom: 0;
    width: 80%;
    max-width: 250px;
  }

  .jahuu-ust-wrap .hero-container{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .jahuu-ust-wrap .header{
    width: calc(100% - 2rem);
    top: 1rem;
    height: 60px;
    padding: 0;
  }

  .jahuu-ust-wrap .header .container{
    padding: 0 1rem;
  }

  .jahuu-ust-wrap .header-actions .btn-outline{
    display: none;
    /* Mobilde whatsapp butonunu gizleyelim ki sığsın */
  }

  .jahuu-ust-wrap .mobile-menu-toggle{
    display: block;
  }

  .jahuu-ust-wrap .main-nav{
    display: none;
    /* Gizli başlar, sadece toggle edilince açılır */
  }

  /* Since HTML is updated, we don't need order trick on hero-visual anymore */
  .jahuu-ust-wrap .hero-visual{
    margin-top: 2rem;
  }

  .jahuu-ust-wrap .hero-buttons, .jahuu-ust-wrap .trust-row{
    justify-content: center;
  }

  @media (max-width: 768px) {
    .hero-buttons {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .hero-buttons .btn {
      width: 100%;
      justify-content: center;
      padding: 1.2rem;
      font-size: 1.1rem;
      border-radius: 50px;
    }
  }

  /* Animated Vertical Timeline for Workflow */
  .jahuu-ust-wrap .workflow-grid{
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    padding-left: 20px;
    padding-top: 10px;
  }

  .jahuu-ust-wrap .workflow-grid::before{
    display: block;
    content: "";
    position: absolute;
    top: 10px;
    left: 40px;
    /* Center of the 40px step-num (20+20) */
    width: 2px;
    height: 0;
    bottom: auto;
    background: var(--accent);
    z-index: 1;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  }

  .jahuu-ust-wrap .workflow-grid.in-view::before{
    height: calc(100% - 20px);
  }

  .jahuu-ust-wrap .step{
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 1.5rem;
    text-align: left;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .jahuu-ust-wrap .workflow-grid.in-view .step{
    opacity: 1;
    transform: translateY(0);
  }

  .jahuu-ust-wrap .workflow-grid.in-view .step:nth-child(1){
    transition-delay: 0.2s;
  }

  .jahuu-ust-wrap .workflow-grid.in-view .step:nth-child(2){
    transition-delay: 0.6s;
  }

  .jahuu-ust-wrap .workflow-grid.in-view .step:nth-child(3){
    transition-delay: 1.0s;
  }

  .jahuu-ust-wrap .workflow-grid.in-view .step:nth-child(4){
    transition-delay: 1.4s;
  }

  .jahuu-ust-wrap .step-num{
    margin: 0;
    grid-column: 1;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--bg-light);
    /* Hide the line underneath the circle */
  }

  .jahuu-ust-wrap .step-content-mobile{
    grid-column: 2;
  }

  .jahuu-ust-wrap .step-icon{
    justify-content: flex-start;
    margin-bottom: 0.8rem;
  }

  .jahuu-ust-wrap .step-icon svg{
    width: 48px;
    height: 48px;
    color: var(--accent);
  }

  .jahuu-ust-wrap .step h3{
    font-size: 1.25rem;
  }

  .jahuu-ust-wrap .footer-grid{
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .jahuu-ust-wrap .footer-col{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .jahuu-ust-wrap .footer-col h4{
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

  .jahuu-ust-wrap .footer-col h4::after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
  }

  .jahuu-ust-wrap .footer-links{
    align-items: center;
    gap: 1.25rem;
  }

  .jahuu-ust-wrap .footer-links li{
    font-size: 1.05rem;
  }

  .jahuu-ust-wrap .footer-logo{
    margin: 0 auto 1.5rem;
    height: 50px;
  }

  .jahuu-ust-wrap .social-links{
    justify-content: center;
    margin-top: 1rem;
  }

  .jahuu-ust-wrap .main-nav, .jahuu-ust-wrap .header-actions{
    display: none;
  }

  .jahuu-ust-wrap .mobile-menu-toggle{
    display: block;
  }

  .jahuu-ust-wrap .header.menu-open{
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    top: 0;
    width: 100%;
    align-items: flex-start;
    padding-top: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: none;
    border: none;
  }

  .jahuu-ust-wrap .header.menu-open .main-nav{
    display: flex;
    position: absolute;
    top: 80px;
    /* Below the logo */
    left: 0;
    width: 100%;
    height: calc(100dvh - 80px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 2rem 4rem;
    background: transparent;
  }

  .jahuu-ust-wrap .header.menu-open .header-actions{
    display: none;
    /* We hide the top level actions, they move to footer */
  }

  .jahuu-ust-wrap .header.menu-open .main-nav ul{
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .jahuu-ust-wrap .header.menu-open .main-nav ul a{
    font-size: 1.25rem;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    width: 200px;
    /* Sadece merkeze küçük bir çizgi atacak şekilde */
    margin: 0 auto;
    text-align: center;
    color: var(--text-dark);
  }

  .jahuu-ust-wrap .header.menu-open .main-nav ul li:last-child a{
    border-bottom: none;
  }

  /* Footer Styling Mobile Menu */
  .jahuu-ust-wrap .mobile-menu-footer{
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-grow: 1;
    /* Consume remaining space */
  }

  .jahuu-ust-wrap .mobile-menu-buttons{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
    /* Stay right underneath the nav links & protect from info */
  }

  .jahuu-ust-wrap .mobile-menu-buttons .btn{
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    width: auto;
    margin: 0;
  }

  .jahuu-ust-wrap .mobile-menu-info{
    display: flex;
    justify-content: space-between;
    text-align: center;
    color: #475569;
    font-size: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
    margin-top: auto;
    /* Push down to the bottom */
  }

  .jahuu-ust-wrap .mobile-menu-info .loc-short{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .jahuu-ust-wrap .mobile-menu-info strong{
    color: var(--text-dark);
    font-size: 0.95rem;
  }

  .jahuu-ust-wrap .loc-phone{
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 4px;
    display: block;
  }
}

/* -- PROBLEM 1: Logo Boyutlandırma ve Hizalama -- */
.jahuu-ust-wrap .logo{
  height: auto;
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .jahuu-ust-wrap .logo{
    max-height: 40px;
  }
}

@media (max-width: 768px) {
  .jahuu-ust-wrap .logo{
    max-height: 46px;
  }
}

/* Removed dark overlay as requested to cleanly show animated glows */

.jahuu-ust-wrap .hero h1{
  color: #FFFFFF;
}

.jahuu-ust-wrap .hero .subline{
  color: rgba(255, 255, 255, 0.85);
}

/* -- PROBLEM 3: Yol Tarifi Butonu Mobil Düzeni -- */
.jahuu-ust-wrap .loc-btn{
  width: 100%;
  justify-content: center;
}

.jahuu-ust-wrap .loc-action{
  margin-top: auto;
  padding-top: 1.5rem;
}

@media (max-width: 768px) {

  /* Scale up Background Glows for Mobile Portrait */
  .jahuu-ust-wrap .glow-1{
    width: 110vw;
    height: 110vw;
    top: -5%;
    left: -10%;
  }

  .jahuu-ust-wrap .glow-2{
    width: 120vw;
    height: 120vw;
    bottom: -5%;
    right: -10%;
  }

  .jahuu-ust-wrap .glow-3{
    width: 80vw;
    height: 80vw;
    top: 50%;
    left: 0%;
  }

  .jahuu-ust-wrap .hero{
    padding-bottom: 3rem;
  }

  .jahuu-ust-wrap .brands-section{
    padding: 2rem 0 3rem;
  }

  .jahuu-ust-wrap .hero-buttons{
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .jahuu-ust-wrap .hero-buttons .btn{
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 50px;
  }

  /* Glassmorphism Trust Row Grid */
  .jahuu-ust-wrap .trust-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: left;
    margin-top: 1rem;
  }

  .jahuu-ust-wrap .trust-row li{
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .jahuu-ust-wrap .trust-row li svg{
    flex-shrink: 0;
  }

  /* Parallax / Floating Phone Entry Anim */
  .jahuu-ust-wrap .mobile-hero-img{
    animation: mobileHeroFloat 5s ease-in-out infinite alternate, fadeUpEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: bottom center;
    width: 95%;
    /* Bir tık büyütüldü */
    max-width: 380px;
    margin: 1.5rem auto 1rem;
    display: block;
  }

  /* Marquee Refinements */
  .jahuu-ust-wrap .brands-sec-title{
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-bottom: 1.5rem;
  }

  .jahuu-ust-wrap .brands-track .brand-item{
    font-size: 1.25rem;
    font-weight: 600;
  }
}

@keyframes mobileHeroFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

@keyframes fadeUpEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}