/* ── MOBILE RESPONSIVE ── */

/* Mobile showcase varsayılan olarak gizli */
.mobile-showcase {
  display: none;
}

/* Tablet: 768px ve altı */
@media (max-width: 768px) {

  /* Desktop showcase gizle, mobile showcase göster */
  .showcase-sticky {
    display: none !important;
  }
  #showcase {
    height: auto !important;
  }
  .mobile-showcase {
    display: flex;
    flex-direction: column;
    background: var(--cobalt);
  }
  .showcase-block {
    width: 100%;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border-bottom: 0.5px solid rgba(201,169,110,0.1);
  }
  .showcase-block:last-child {
    border-bottom: none;
  }
  .showcase-block .showcase-text {
    position: relative !important;
    opacity: 1 !important;
    max-width: 100% !important;
    text-align: left !important;
  }
  .showcase-block .showcase-eyebrow::before {
    display: block;
  }

  /* ── NAV ── */
  nav {
    padding: 1.2rem 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .nav-logo {
    font-size: 13px;
    letter-spacing: 0.2em;
  }
  .nav-links {
    gap: 1.2rem;
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .nav-links a {
    font-size: 9px;
  }
  .nav-cta {
    font-size: 9px;
    padding: 0.5rem 1rem;
  }

  /* ── HERO ── */
  #hero {
    padding: 1.5rem 1.5rem 3rem;
    justify-content: flex-end;
    min-height: 100vh;
  }
  .spline-container {
    width: 100%;
    height: 55%;
    top: 0;
    right: 0;
    opacity: 0.5;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    z-index: 10;
  }
  .hero-title {
    font-size: clamp(38px, 10vw, 60px);
    margin-bottom: 1.5rem;
  }
  .hero-sub {
    font-size: 11px;
    margin-bottom: 2rem;
  }

  .hero-actions-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 0.5px solid rgba(201,169,110,0.2);
    padding-top: 1.5rem;
  }
  .stat-num {
    font-size: 16px;
  }
  .stat-label {
    font-size: 8px;
  }

  /* Hero eyebrow ve Boutique stat gizle */
  .hero-eyebrow {
    display: none;
  }
  .hero-stats > div:nth-child(3) {
    display: none;
  }

  /* ── SHOWCASE ── */
  #showcase {
    height: auto;
  }
  .showcase-sticky {
    position: relative;
    height: auto;
    flex-direction: column;
    padding: 4rem 1.5rem;
    gap: 3rem;
  }
  .device-stage {
    position: relative;
    height: 420px;
    inset: auto;
  }
  .phone-mockup {
    position: relative;
    transform: scale(1) !important;
    display: none;
  }
  .phone-mockup.active-device {
    display: block;
  }
  .laptop-mockup {
    position: relative;
    transform: scale(1) !important;
    display: none;
  }
  .showcase-text {
    position: relative;
    opacity: 1 !important;
    left: auto;
    right: auto;
    max-width: 100%;
    text-align: left;
  }
  .showcase-text.right {
    text-align: left;
  }
  .showcase-text.right .showcase-eyebrow {
    justify-content: flex-start;
  }
  .showcase-text.right .showcase-eyebrow::before {
    display: block;
  }
  .showcase-text.right .showcase-eyebrow::after {
    display: none;
  }
  .showcase-text.right .showcase-tags {
    justify-content: flex-start;
  }
  .showcase-title {
    font-size: 32px;
  }
  .phone-img {
    height: 380px !important;
    width: auto !important;
    margin: 0 auto;
  }
  .macbook-img {
    height: auto !important;
    width: 100% !important;
  }

  /* ── PHILOSOPHY ── */
  #philosophy {
    grid-template-columns: 1fr;
  }
  .philosophy-left {
    padding: 4rem 1.5rem 2rem;
    border-right: none;
    border-bottom: 0.5px solid rgba(201,169,110,0.15);
  }
  .philosophy-right {
    padding: 2rem 1.5rem 4rem;
  }
  .philosophy-quote {
    font-size: clamp(18px, 4vw, 24px);
  }

  /* ── TECH ── */
  #tech {
    padding: 4rem 1.5rem;
  }
  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tech-col {
    padding: 1.5rem 1.2rem;
  }

  /* ── PORTFOLIO ── */
  #portfolio {
    padding: 4rem 1.5rem;
  }
  .portfolio-header {
    margin-bottom: 2rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .case-card {
    padding: 1.8rem;
  }
  .case-title {
    font-size: 28px;
  }

  /* ── ABOUT ── */
  #about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }

  /* ── CONTACT ── */
  #contact {
    padding: 4rem 1.5rem;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-lead {
    font-size: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ── FOOTER ── */
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
  .footer-links {
    gap: 1.2rem;
    flex-wrap: wrap;
  }
}

/* ── SHOWCASE MOBILE OVERRIDE ── */
/* Showcase'i mobilde scroll animasyonu olmadan düz listele */
@media (max-width: 768px) {
  #showcase {
    height: auto !important;
  }

  .showcase-sticky {
    position: static !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    overflow: visible;
  }

  /* Her cihazı kendi metin bloğuyla göster */
  .showcase-block {
    width: 100%;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border-bottom: 0.5px solid rgba(201,169,110,0.1);
  }
  .showcase-block:last-child {
    border-bottom: none;
  }
}
