/* responsive.css - Mobil ve Tüm Cihaz Uyumluluğu */

/* ===== BASE - Tüm cihazlar ===== */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-width: 320px;
}

/* Elite & Neutrino sayfaları - taşmayı önle */
#hero .container,
#features .container,
#pricing .container,
#screenshots .container,
#testimonials .container,
#faq .container,
#download .container,
#exchanges .container,
#how-it-works .container {
  max-width: 100%;
  box-sizing: border-box;
}

section {
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Touch hedefleri - butonlar ve tıklanabilir alanlar */
.btn, button, input[type="submit"], input[type="button"] {
  min-height: 44px;
}


/* ===== DROPDOWN — Viewport taşmasını önle ===== */
@media (min-width: 1025px) {
  /* Viewport'un sağ kenarına yakın dropdown'lar sola açılsın */
  .nav-links li:last-child .dropdown-menu,
  .nav-links li:nth-last-child(2) .dropdown-menu {
    right: 0;
    left: auto;
  }
}

/* ===== TABLET (1024px ve altı) ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: clamp(3rem, 6vw, 6rem);
    --container-padding: 0 clamp(1rem, 3vw, 4rem);
  }

  .container {
    padding: var(--container-padding);
  }

  h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  }

  h3 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  /* Tablet: Elite & Neutrino - sayfa sığsın */
  .phone-mockups {
    max-width: 100%;
    overflow: hidden;
  }

  .phone {
    width: 140px !important;
    height: 280px !important;
  }

  .neutrino-hero::before {
    background-size: 70% auto !important;
  }

  /* Tablet: Hamburger menü göster */
  .navbar .nav-links {
    display: none !important;
  }

  .navbar .btn-primary {
    display: none;
  }

  .navbar .hamburger {
    display: flex !important;
  }

  /* Tablet: Mobil menü - flat list, sıkı aralık, alt menü vurgusu */
  .mobile-menu-content {
    height: auto !important;
    min-height: 100%;
    justify-content: flex-start !important;
    padding: 1rem 1.25rem;
    padding-top: calc(3rem + env(safe-area-inset-top)); /* close buton için alan */
  }

  .mobile-menu-flat {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
  }

  .mobile-menu-flat li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(208, 208, 208, 0.08);
  }

  .mobile-menu-flat li:last-child {
    border-bottom: none;
  }

  .mobile-menu-flat a {
    padding: 0.5rem 0.75rem;
    min-height: 38px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }

  /* Ana menü: Home, About, Supermind, Contact */
  .mobile-menu-flat li:nth-child(1) a,
  .mobile-menu-flat li:nth-child(2) a,
  .mobile-menu-flat li:nth-child(3) a,
  .mobile-menu-flat li:nth-child(11) a {
    font-size: 0.95rem;
    font-weight: 600;
  }

  /* Alt menü: Scorient, Disclaimer, ... Neutrino AI Trader */
  .mobile-menu-flat li:nth-child(n+4):nth-child(-n+10) a {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    padding-left: 1rem;
  }

  .mobile-menu-flat li:nth-child(n+4):nth-child(-n+10) a:hover {
    color: var(--text-primary);
  }

  .mobile-menu-flat .btn-primary {
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #000 !important;
  }

  /* Tablet: Hero kartları kompakt */
  .hero-visual {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .floating-card {
    position: static !important;
    width: 160px !important;
    max-width: 180px;
    padding: 1rem !important;
    animation: none;
  }

  .hero-visual .card-logo,
  .hero-visual .card-logo-square {
    width: 48px !important;
    height: 48px !important;
  }

  .hero-visual .card-1 .card-logo {
    width: 64px !important;
    height: 64px !important;
  }

  .floating-card .card-content h3 {
    font-size: 0.85rem;
  }

  .floating-card .card-content p {
    font-size: 0.75rem;
  }

  .build-process {
    gap: 1rem;
  }

  .process-step {
    max-width: 200px;
  }

  .tech-stack-grid {
    grid-template-columns: repeat(3, 1fr);
    height: 300px;
  }

  .tech-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ===== MOBİL (768px ve altı) ===== */
@media (max-width: 768px) {
  :root {
    --navbar-height: 64px;
    --section-padding: clamp(2rem, 4vw, 4rem);
    --container-padding: 0 1rem;
  }

  body {
    font-size: 16px;
  }

  p, .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .container {
    padding: var(--container-padding);
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.35rem, 4vw, 2.25rem);
  }

  h3 {
    font-size: clamp(1rem, 3vw, 1.15rem);
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
  }

  /* ===== NAVBAR MOBİL ===== */
  .navbar {
    height: var(--navbar-height-mobile);
    padding: 0 1rem;
  }

  .navbar .logo img,
  .navbar .site-logo-img {
    height: 36px !important;
    max-width: 140px;
    width: auto;
  }

  .navbar .nav-links {
    display: none !important;
  }

  .navbar .btn-primary {
    display: none;
  }

  .navbar .hamburger {
    display: flex !important;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .navbar-content {
    gap: 0.5rem;
  }

  /* ===== MOBİL MENÜ - Flat list, üstten başlar, sıkı aralık ===== */
  .mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-content {
    padding: 1rem 1.25rem;
    padding-top: calc(3rem + env(safe-area-inset-top)); /* close buton için alan */
    height: auto !important;
    min-height: 100%;
    justify-content: flex-start !important;
    overflow-y: visible;
  }

  /* Mobil menü - flat list (tüm linkler tek sütunda, tıklanabilir) */
  .mobile-menu-flat {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
  }

  .mobile-menu-flat li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(208, 208, 208, 0.08);
  }

  .mobile-menu-flat li:last-child {
    border-bottom: none;
  }

  .mobile-menu-flat a {
    padding: 0.5rem 0.75rem;
    min-height: 38px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }

  /* Ana menü: Home, About, Supermind, Contact */
  .mobile-menu-flat li:nth-child(1) a,
  .mobile-menu-flat li:nth-child(2) a,
  .mobile-menu-flat li:nth-child(3) a,
  .mobile-menu-flat li:nth-child(11) a {
    font-size: 0.95rem;
    font-weight: 600;
  }

  /* Alt menü: Scorient, Disclaimer, ... Neutrino AI Trader */
  .mobile-menu-flat li:nth-child(n+4):nth-child(-n+10) a {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    padding-left: 1rem;
  }

  .mobile-menu-flat li:nth-child(n+4):nth-child(-n+10) a:hover {
    color: var(--text-primary);
  }

  .mobile-menu-flat .btn-primary {
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #000 !important;
  }

  /* ===== MAIN - fixed navbar için boşluk ===== */
  main {
    padding-top: var(--navbar-height-mobile);
  }

  /* ===== HERO MOBİL ===== */
  #hero {
    padding-top: 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-visual {
    height: auto !important;
    min-height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: stretch;
  }

  .floating-card {
    position: static !important;
    flex: 1 1 100px;
    width: auto !important;
    max-width: 120px;
    margin: 0 !important;
    padding: 0.75rem !important;
    animation: none;
  }

  .floating-card.card-1,
  .floating-card.card-2,
  .floating-card.card-3 {
    transform: none !important;
  }

  .floating-card .card-content h3 {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .floating-card .card-content p {
    font-size: 0.65rem;
    margin: 0;
    color: var(--text-muted);
  }

  .hero-visual .card-logo,
  .hero-visual .card-logo-square {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 0.5rem !important;
  }

  .hero-visual .card-1 .card-logo {
    width: 48px !important;
    height: 48px !important;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-scroll {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 2rem;
  }

  /* ===== ABOUT MOBİL ===== */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* ===== PRODUCTS MOBİL ===== */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .product-card .product-logo {
    max-width: 120px;
  }

  /* ===== DATA VIZ MOBİL ===== */
  .data-viz-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .chart-container {
    height: 200px;
  }

  .chart-container-bars {
    height: auto;
  }

  .data-viz-bars {
    height: 180px;
    gap: 1rem;
  }

  .bar-viz {
    width: 44px;
    height: 160px;
  }

  .chart-labels-inline {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .chart-labels-inline span {
    min-width: 70px;
    font-size: 0.65rem;
  }

  /* ===== PARTNERS MOBİL ===== */
  #partners {
    overflow: hidden;
  }

  .marquee-container {
    margin: 1rem 0;
    overflow: hidden;
  }

  .marquee-item {
    width: 90px;
    height: 38px;
  }

  .marquee-item img {
    height: 22px;
    max-width: 70px;
  }

  /* ===== SUPERMIND HERO MOBİL ===== */
  .supermind-hero-full {
    min-height: clamp(380px, 60vh, 80vh);
    padding: 0;
  }

  .supermind-hero-full .supermind-hero-content {
    padding: 2.5rem 1.25rem 2.5rem 1.5rem;
    max-width: 100%;
  }

  .supermind-hero-full .supermind-hero-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    max-width: 100%;
  }

  .supermind-hero-full .supermind-hero-subtitle,
  .supermind-hero-full .eco-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .supermind-hero-full .supermind-hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .eco-chip {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  /* ===== SUPERMIND SAYFA MOBİL ===== */
  .supermind-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .phone-mockups {
    height: 300px;
  }

  .phone-mockup {
    width: 150px;
    height: 300px;
  }

  .build-process {
    flex-direction: column;
    gap: 1rem;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-mockups {
    height: 300px;
  }

  .iphone-mockup {
    width: 150px;
    height: 300px;
  }

  .tech-stack-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1rem;
  }

  .tech-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .subscribe-form {
    flex-direction: column;
  }

  /* ===== ELITE FOOTBALL AI MOBİL ===== */
  #hero .hero-content {
    text-align: center;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
  }

  .download-buttons {
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn-app-store, .btn-google-play {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .phone-mockups {
    height: 280px;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }

  .phone {
    width: 120px !important;
    height: 240px !important;
  }

  .phone-left {
    left: 5%;
    opacity: 0.5;
  }

  .phone-right {
    right: 5%;
    opacity: 0.5;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step-card {
    min-width: 0;
    padding: 1.5rem;
  }

  .how-it-works-grid .step-description {
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    min-width: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .pricing-card {
    min-width: 0;
  }

  .screenshots-gallery,
  .gallery-container {
    max-width: 100%;
    overflow-x: auto;
  }

  .screenshot-item {
    flex: 0 0 200px;
  }

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

  .faq-accordion {
    max-width: 100%;
  }

  .btn-app-store-large, .btn-google-play-large {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* ===== ABOUT PAGE MOBİL ===== */
  .hero-compact {
    padding: 4rem 0;
    min-height: 40vh;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .timeline {
    padding-left: 1rem;
  }

  .timeline-item {
    padding-left: 2rem;
  }

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

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

  /* ===== CONTACT PAGE MOBİL ===== */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .map-placeholder {
    height: 300px;
  }

  /* ===== FOOTER MOBİL ===== */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    text-align: center;
  }

  /* ===== CTA MOBİL ===== */
  .cta-content .btn {
    width: 100%;
    max-width: 280px;
  }

  .cta-email {
    font-size: 0.9rem;
    word-break: break-all;
  }

  /* ===== NEUTRINO MOBİL ===== */
  .neutrino-hero {
    overflow-x: hidden;
  }

  .neutrino-hero::before {
    background-size: 80% auto !important;
    background-position: center !important;
    opacity: 0.25 !important;
  }

  .neutrino-hero .hero-content {
    text-align: center;
  }

  .neutrino-hero .hero-logo img {
    width: 64px !important;
    height: 64px !important;
  }

  .neutrino-hero .hero-visual {
    max-width: 100% !important;
    width: 100%;
  }

  .neutrino-hero .hero-visual img {
    max-width: 100% !important;
    width: 100%;
    height: auto;
  }

  .platform-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .platform-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .exchanges-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .exchange-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  /* ===== CODE EDITOR MOBİL ===== */
  .code-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .editor-content {
    font-size: 0.75rem;
  }
}

/* ===== KÜÇÜK MOBİL (480px ve altı) ===== */
@media (max-width: 480px) {
  :root {
    --section-padding: clamp(1.5rem, 3vw, 3rem);
  }

  .container {
    padding: 0 0.75rem;
  }

  h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  /* Elite & Neutrino - çok küçük ekranlar */
  .phone-mockups {
    height: 220px;
  }

  .phone {
    width: 100px !important;
    height: 200px !important;
  }

  .phone-left,
  .phone-right {
    opacity: 0.35;
  }

  .neutrino-hero::before {
    background-size: 100% auto !important;
    opacity: 0.15 !important;
  }

  .features-grid,
  .pricing-grid {
    gap: 1rem;
  }

  .feature-card,
  .pricing-card {
    padding: 1.25rem;
  }

  h2 {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .product-card {
    padding: 1rem;
  }

  .floating-card {
    padding: 0.6rem !important;
    max-width: 110px;
  }

  .floating-card .card-content h3 {
    font-size: 0.7rem;
  }

  .floating-card .card-content p {
    font-size: 0.6rem;
  }

  .hero-visual .card-logo,
  .hero-visual .card-logo-square {
    width: 32px !important;
    height: 32px !important;
  }

  .hero-visual .card-1 .card-logo {
    width: 44px !important;
    height: 44px !important;
  }

  .marquee-item {
    width: 80px;
    height: 34px;
  }

  .marquee-item img {
    height: 20px;
  }

  /* 3D Chart Küçük Mobil */
  .chart-3d {
    transform: rotateX(-5deg) rotateY(-10deg) scale(0.6);
  }

  .bar-3d {
    width: 30px;
  }

  .chart-labels span {
    width: 30px;
    font-size: 0.6rem;
  }

  .editor-content {
    font-size: 0.7rem;
  }

  .line-numbers {
    min-width: 30px;
    padding: 1rem 0.25rem 1rem 1rem;
  }

  .editor-tabs {
    display: none;
  }

  .supermind-hero-full .supermind-hero-title {
    font-size: 1.2rem;
  }

  .navbar .logo img,
  .navbar .site-logo-img {
    height: 32px !important;
    max-width: 120px;
  }
}

/* ===== BÜYÜK EKRANLAR ===== */
@media (min-width: 1400px) {
  .container {
    padding: 0 8rem;
  }

  .hero-content {
    gap: 6rem;
  }

  .phone-mockups {
    max-width: 500px;
    height: 700px;
  }

  .phone {
    width: 250px;
    height: 500px;
  }

  .chart-3d {
    transform: rotateX(-20deg) rotateY(-30deg) scale(1.2);
  }

  .bar-3d {
    width: 80px;
  }

  .chart-labels span {
    width: 80px;
    font-size: 0.8rem;
  }
}

/* Chat widget - mobile safe area */
@media (max-width: 768px) {
  .chat-widget {
    bottom: calc(1rem + env(safe-area-inset-bottom));
    right: calc(1rem + env(safe-area-inset-right));
  }

  .chat-widget-btn {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .chat-widget-panel {
    width: calc(100vw - 2rem);
    max-width: 320px;
    right: -0.5rem;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .newsletter-form input[type="email"] {
    min-width: 100%;
  }
}

/* ===== LANDSCAPE MOBİL ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-visual {
    min-height: 200px;
  }

  .supermind-hero-full {
    min-height: 100vh;
  }
}

/* ===== EXTRA SMALL — iPhone SE, Galaxy S8 (375px ve altı) ===== */
@media (max-width: 375px) {
  :root {
    --container-padding: 0 0.625rem;
  }

  .container {
    padding: 0 0.625rem;
  }

  h1 {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }

  h2 {
    font-size: clamp(1.1rem, 6vw, 1.5rem);
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.6rem 0.875rem;
  }

  .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 1.25rem;
  }

  .mission-card {
    padding: 1.5rem;
  }

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

  .trust-badges-inner {
    gap: 1rem;
  }

  /* Floating cards çok küçük ekranlarda gizle */
  .floating-card {
    max-width: 95px;
    padding: 0.5rem !important;
  }
}

/* ===== LARGE MOBILE (640px ve altı) ===== */
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .trust-badges-inner {
    gap: 1.25rem;
  }

  /* Breadcrumb küçük ekranda sarmalansın */
  .breadcrumb-list {
    font-size: 0.8rem;
  }

  /* Contact hero mobilde tek sütun */
  .contact-hero-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  .contact-hero-text {
    padding-left: 0;
  }
}

/* ===== LARGE DESKTOP (1440px ve üstü) ===== */
@media (min-width: 1440px) {
  :root {
    --container-padding: 0 clamp(6rem, 10vw, 12rem);
  }

  .hero-content {
    gap: 8rem;
  }
}

/* ===== TOUCH — Hover efektlerini touch cihazlarda kapat ===== */
@media (hover: none) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-outline:hover,
  .btn-mini:hover,
  .btn-app-store:hover,
  .btn-google-play:hover,
  .btn-app-store-large:hover,
  .btn-google-play-large:hover,
  .product-card:hover,
  .feature-card:hover,
  .step-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .value-card:hover,
  .mission-card:hover,
  .about-photo-item:hover,
  .team-card:hover,
  .robot-item:hover,
  .robot-inline:hover,
  .tech-item:hover,
  .screenshot-phone:hover,
  .demo-video-play:hover {
    transform: none;
    box-shadow: none;
  }

  .social-links a:hover {
    transform: none;
  }
}

/* ===== HOVER — Sadece pointer cihazlarda ===== */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold), 0 8px 24px rgba(208, 208, 208, 0.2);
  }

  .btn-outline:hover {
    transform: translateY(-1px);
  }

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

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

  .step-card:hover {
    transform: translateY(-5px);
  }

  .pricing-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .value-card:hover {
    transform: translateY(-5px);
  }

  .mission-card:hover {
    transform: translateY(-5px);
  }

  .about-photo-item:hover {
    transform: translateY(-5px);
  }

  .team-card:hover {
    transform: translateY(-5px);
  }

  .robot-item:hover {
    transform: translateY(-5px);
  }

  .robot-inline:hover {
    transform: translateY(-3px);
  }

  .tech-item:hover {
    transform: translateY(-5px);
  }

  .social-links a:hover {
    transform: scale(1.1);
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-outline:hover,
  .btn-mini:hover {
    transform: translateY(-2px);
  }

  .btn-app-store:hover,
  .btn-google-play:hover {
    transform: translateY(-2px);
  }

  .btn-app-store-large:hover,
  .btn-google-play-large:hover {
    transform: translateY(-3px);
  }

  .screenshot-phone:hover {
    transform: rotate(0deg) scale(1.05);
  }

  .demo-video-play:hover {
    transform: scale(1.05);
  }
}

/* ===== iOS / MOBILE INPUT ZOOM PREVENTION ===== */
input, textarea, select {
  font-size: 16px; /* iOS zoom önlemi — minimum 16px */
}

/* Özel boyutlandırma gerekiyorsa aşağıdaki kurallar override eder */
.form-group input,
.form-group select,
.form-group textarea,
.newsletter-form input,
.email-input {
  font-size: 1rem; /* = 16px */
}

/* ===== CROSS-BROWSER FIXES ===== */

/* line-clamp cross-browser */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* gradient-text cross-browser */
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* user-select cross-browser */
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* appearance reset cross-browser — sadece select için, checkbox/radio dokunma */
/* checkbox ve radio'ya appearance:none uygulamak layout sorunlarına yol açar */

/* select cross-browser */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ===== PRINT CSS ===== */
@media print {
  .navbar,
  .footer,
  .newsletter-signup,
  .chat-widget,
  .mobile-menu,
  .hero-scroll,
  .floating-card,
  .marquee-container,
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  [data-scroll] {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt;
  }

  a {
    color: #000 !important;
    text-decoration: underline;
  }

  h1, h2, h3, h4 {
    color: #000 !important;
    page-break-after: avoid;
  }

  p, li {
    orphans: 3;
    widows: 3;
  }

  section {
    page-break-inside: avoid;
    border-bottom: 1px solid #ccc !important;
  }
}
