/* ═══════════════════════════════════════════════
   ASISTAN.ART — style.css
   ═══════════════════════════════════════════════ */

:root {
    --yellow: #FFD200;
    --black: #000;
    --white: #fff;
    --shadow: 6px 6px 0px 0px rgba(0,0,0,1);
    --shadow-sm: 4px 4px 0px 0px rgba(0,0,0,1);
}

/* ── Temel ── */
body { font-family: 'Inter', sans-serif; }

.font-comic {
    font-family: 'Bangers', cursive;
    letter-spacing: 0.05em;
}

/* ── Logo ── */
.logo {
    font-family: 'Bangers', cursive;
    font-size: 1.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-2deg);
    display: inline-block;
    background: white;
    padding: 2px 10px;
    border: 3px solid black;
    box-shadow: 4px 4px 0px 0px black;
}

/* ── Comic efektler ── */
.comic-border { border: 4px solid black; }

.comic-shadow {
    box-shadow: var(--shadow);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.comic-shadow:active {
    transform: translate(2px, 2px);
    box-shadow: var(--shadow-sm);
}

.callout-bubble {
    position: relative;
    background: #fff;
    border: 3px solid #000;
    padding: 10px;
    border-radius: 12px;
}

.bg-yellow-brand { background-color: var(--yellow); }
.panel-tilt-left  { transform: rotate(-1deg); }
.panel-tilt-right { transform: rotate(1deg); }

/* ── Animasyon ── */
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-scroll {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* ════════════════════════════════════
   KARAKTER ŞERİDİ
   ════════════════════════════════════ */
.char-item {
    position: relative;
    flex-shrink: 0;
    border-right: 4px solid black;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    width: calc(100vw / 12);
    min-width: 110px;
}
.char-item-last {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    width: calc(100vw / 12);
    min-width: 110px;
}
.char-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}
.char-item:hover .char-img,
.char-item-last:hover .char-img { transform: scale(1.05); }

.char-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: white;
    border-top: 2px solid black;
    padding: 4px 2px;
    transition: background-color 0.2s;
}
.char-item:hover .char-label,
.char-item-last:hover .char-label { background-color: #facc15; }

.char-name {
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ════════════════════════════════════
   EKİP KARTLARI
   ════════════════════════════════════ */
.team-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.team-photo {
    width: 10rem;
    height: 10rem;
    flex-shrink: 0;
    background: white;
    border: 4px solid black;
    box-shadow: var(--shadow);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.team-photo:active {
    transform: translate(2px,2px);
    box-shadow: var(--shadow-sm);
}
.team-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-bubble {
    flex-grow: 1;
    position: relative;
    background: #fff;
    border: 3px solid #000;
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.team-bubble:active {
    transform: translate(2px,2px);
    box-shadow: var(--shadow-sm);
}
.team-name {
    font-family: 'Bangers', cursive;
    letter-spacing: 0.05em;
    font-size: 1.5rem;
    text-transform: uppercase;
}
.team-quote {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ════════════════════════════════════
   GÜNLÜK KART
   ════════════════════════════════════ */
.day-card {
    border: 4px solid black;
    box-shadow: var(--shadow);
    overflow: hidden;
    background: black;
    position: relative;
    height: 260px;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.day-img {
    opacity: 0.7;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.day-img-hi { opacity: 0.9; }
.day-overlay {
    position: absolute;
    bottom: 0;
    padding: 1rem;
    color: white;
    background: rgba(0,0,0,0.6);
    width: 100%;
}
.day-time {
    font-family: 'Bangers', cursive;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    text-transform: uppercase;
}
.day-desc {
    font-size: 0.875rem;
    font-weight: 700;
}

/* ════════════════════════════════════
   SSS KARTLARI
   ════════════════════════════════════ */
.faq-card {
    background: white;
    padding: 2rem;
    border: 4px solid black;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, color 0.15s, transform 0.1s, box-shadow 0.1s;
    overflow: hidden;
    cursor: pointer;
}
.faq-card:hover { background-color: #FFD200; color: black; }
.faq-card:active { transform: translate(2px,2px); box-shadow: var(--shadow-sm); }
.faq-title {
    font-weight: 900;
    font-size: 1.125rem;
    margin-bottom: 0;
    text-transform: uppercase;
    transition: margin-bottom 0.3s;
}
.faq-card:hover .faq-title {
    margin-bottom: 0.75rem;
}

/* Cevap: varsayılan gizli, hover'da açılır */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
}
.faq-card:hover .faq-answer {
    max-height: 200px;
    opacity: 1;
}
.faq-answer p {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 2px;
}

/* ════════════════════════════════════
   BUTONLAR
   ════════════════════════════════════ */
.btn-nav {
    background: black;
    color: white;
    padding: 0.25rem 1rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.1em;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    border: 2px solid black;
    transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.1s;
    cursor: pointer;
}
.btn-nav:hover { background: white; color: black; }
.btn-nav:active { transform: translate(2px,2px); box-shadow: var(--shadow-sm); }

.btn-hero {
    background: #FFD200;
    border: 4px solid black;
    color: black;
    padding: 1.25rem 4rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.1em;
    font-size: 1.875rem;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.1s;
    cursor: pointer;
}
.btn-hero:hover { background: black; color: white; }
.btn-hero:active { transform: translate(3px,3px); box-shadow: var(--shadow-sm); }

.btn-team {
    background: white;
    border: 4px solid black;
    padding: 1.5rem 4rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.1em;
    font-size: 1.875rem;
    text-transform: uppercase;
    box-shadow: var(--shadow);
    transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.1s;
    cursor: pointer;
}
.btn-team:hover { background: black; color: white; }
.btn-team:active { transform: translate(3px,3px); box-shadow: var(--shadow-sm); }

.btn-cta {
    background: black;
    color: white;
    padding: 1.5rem 4rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.1em;
    font-size: 1.875rem;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    border: 4px solid black;
    margin-bottom: 4rem;
    transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.1s;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover { background: white; color: black; }
.btn-cta:active { transform: translate(3px,3px); box-shadow: var(--shadow-sm); }

.btn-contact {
    margin-top: 1rem;
    background: #FFD200;
    border: 2px solid black;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
}
.btn-contact:hover { background: white; color: black; }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.footer-heading {
    font-family: 'Bangers', cursive;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li + li { margin-top: 0.75rem; }
.footer-links a {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
}
.footer-links a:hover { color: #eab308; }

/* ════════════════════════════════════
   DİYAGONAL GEÇİŞ (Sorun → Ekip)
   ════════════════════════════════════ */
.section-sorun {
    padding-bottom: 80px; /* diagonal için alan bırak */
}

.section-ekip {
    position: relative;
    margin-top: -60px;
    padding-top: 80px;
    padding-bottom: 80px;
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);  /* üst diyagonal */
    z-index: 1;
}

/* Alt diyagonal: sarı bölümün altında beyaz üçgen */
.section-ekip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);  /* sağdan sola inen üçgen */
    z-index: 2;
}

/* Günlük hayat — sarı kesimin üzerine biner */
.section-gunluk {
    position: relative;
    margin-top: -4px;
    padding-top: 60px;
    z-index: 3;
    background: white;
}

/* ════════════════════════════════════
   DEMO BÖLÜMÜ — Telefon Mockup
   ════════════════════════════════════ */
.demo-section {
    background: #f9f9f9;
    padding: 80px 40px;
}
.demo-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Sol panel */
.demo-left {
    flex: 1;
    position: relative;
}
.demo-step-badge {
    display: inline-block;
    background: black;
    color: #FFD200;
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 2px 12px;
    border: 2px solid black;
    margin-bottom: 16px;
}
.demo-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
    color: black;
}
.demo-desc {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 32px;
    line-height: 1.5;
}
.demo-btn {
    background: #FFD200;
    border: 4px solid black;
    color: black;
    padding: 1rem 2.5rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.12em;
    font-size: 1.6rem;
    box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.1s;
    display: inline-block;
}
.demo-btn:hover { background: black; color: #FFD200; }
.demo-btn:active { transform: translate(3px,3px); box-shadow: 2px 2px 0px 0px rgba(0,0,0,1); }

.demo-arrow {
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: 100px;
    height: 80px;
    opacity: 0.5;
    pointer-events: none;
}

/* Sağ panel — Telefon */
.demo-right {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.demo-phone {
    width: 300px;
    background: #1a1a1a;
    border-radius: 40px;
    border: 6px solid #111;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), inset 0 0 0 2px #333;
    overflow: hidden;
    position: relative;
}
.phone-top-bar {
    background: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
}
.phone-time {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}
.phone-icons {
    color: white;
    font-size: 0.65rem;
    letter-spacing: 2px;
}
.phone-screen {
    position: relative;
    background: #222;
    height: 500px;
    overflow: hidden;
}
.phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.phone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFD200;
    padding: 16px;
    border-top: 3px solid black;
}
.phone-overlay p {
    font-size: 0.85rem;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
    line-height: 1.4;
}
.phone-next-btn {
    background: black;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.phone-next-btn:hover { background: #333; }

.phone-bottom-bar {
    background: #1a1a1a;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-bottom-bar::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #555;
    border-radius: 2px;
}

/* İlerleme noktaları */
.demo-dots {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
}
.demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: 2px solid black;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.demo-dot.active {
    background: #FFD200;
    transform: scale(1.3);
}
.demo-dot:hover { background: #999; }

/* Responsive */
@media (max-width: 768px) {
    .demo-inner { flex-direction: column; }
    .demo-right { flex: none; width: 100%; }
    .demo-arrow { display: none; }
}

/* ════════════════════════════════════
   CTA — Masa/Sandalye Sahnesi
   ════════════════════════════════════ */
.section-cta {
    background: #FFD200;
    overflow: hidden;
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: flex-end;
    min-height: 520px;
    padding-top: 80px;
}

/* Sol: yazı + buton */
.cta-content {
    flex: 0 0 40%;
    padding: 0 0 60px 8%;
    position: relative;
    z-index: 10;
    align-self: center;
}
.cta-title {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 24px;
    color: black;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.03em;
    text-align: left;
}

/* Sağ: masa + sandalye */
.cta-scene {
    flex: 0 0 60%;
    position: relative;
    align-self: flex-end;
    line-height: 0;
    overflow: hidden;
}

.cta-desk {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.cta-chair-wrap {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cta-chair {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.section-cta:hover .cta-chair-wrap {
    transform: translateX(0);
}

/* ════════════════════════════════════
   NAV DROPDOWN — 12 Ajan
   ════════════════════════════════════ */
/* Nav linkleri dropdown (z-index:200) acikken de tiklanabilir olmali */
nav > div > a,
nav > div > .btn-nav {
    position: relative;
    z-index: 201;
}

.nav-dropdown-wrap {
    position: relative;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    color: black;
    transition: color 0.15s;
}
.nav-dropdown-btn:hover { color: #FFD200; }
.nav-arrow { font-size: 0.7rem; transition: transform 0.2s; }
.nav-dropdown-wrap:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: white;
    border: 3px solid black;
    box-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
    padding: 24px;
    width: 780px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.nav-agent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: black;
    border-radius: 4px;
    transition: background 0.15s;
    border: 2px solid transparent;
}
.nav-agent-item:hover {
    background: #FFD200;
    border-color: black;
}
.nav-agent-item img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border: 2px solid black;
    border-radius: 10px;
    flex-shrink: 0;
}
.nav-agent-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.nav-agent-item strong {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.nav-agent-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.nav-agent-item:hover span { color: #333; }

/* ════════════════════════════════════
   HAMBURGER + MOBILE MENU
   ════════════════════════════════════ */
.hamburger-btn {
    display: none;
    background: none;
    border: 3px solid var(--black);
    border-radius: 4px;
    font-size: 1.5rem;
    line-height: 1;
    padding: 4px 10px;
    cursor: pointer;
    font-weight: 800;
    transition: background 0.15s;
}
.hamburger-btn:hover {
    background: var(--yellow);
}

@media (max-width: 767px) {
    .hamburger-btn { display: block; }
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #0A0A0A;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 18px 24px;
}
.mobile-menu-close {
    background: none;
    border: 3px solid var(--yellow);
    border-radius: 4px;
    color: var(--yellow);
    font-size: 1.5rem;
    line-height: 1;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 800;
    transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover {
    background: var(--yellow);
    color: #0A0A0A;
}
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0;
    padding: 0 24px;
}
.mobile-menu-links a {
    display: block;
    padding: 18px 0;
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: color 0.15s;
}
.mobile-menu-links a:hover {
    color: var(--yellow);
}
.mobile-menu-links .mobile-cta {
    margin-top: 24px;
    background: var(--yellow);
    color: #0A0A0A;
    border: 3px solid var(--yellow);
    border-radius: 4px;
    padding: 14px 48px;
    font-size: 1.6rem;
    box-shadow: 4px 4px 0 rgba(255,210,0,0.3);
}
.mobile-menu-links .mobile-cta:hover {
    background: #fff;
    color: #0A0A0A;
    border-color: #fff;
}

/* Mobile menu accordion - Yapay Zeka Çalışanları submenu */
.mobile-submenu-toggle {
    background: none;
    border: none;
    padding: 18px 0;
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: color 0.15s;
    display: block;
}
.mobile-submenu-toggle:hover {
    color: var(--yellow);
}
.mobile-submenu-toggle .submenu-arrow {
    display: inline-block;
    font-size: 0.8em;
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.mobile-submenu-toggle.open .submenu-arrow {
    transform: rotate(180deg);
}
.mobile-submenu-list {
    display: none;
    width: 100%;
}
.mobile-submenu-list.open {
    display: block;
}
.mobile-menu-links .mobile-submenu-list a {
    display: block;
    padding: 8px 0 8px 20px !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    color: var(--yellow) !important;
    text-decoration: none;
    transition: color 0.15s;
}
.mobile-menu-links .mobile-submenu-list a:hover {
    color: #fff !important;
}

/* ════════════════════════════════════════════════
   GLOBAL MOBİL RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 767px) {

    /* ── Logo ── */
    .logo {
        font-size: 1.2rem;
        padding: 1px 6px;
        box-shadow: 2px 2px 0 black;
    }

    /* ── Nav ── */
    nav { padding: 10px 16px; }

    /* ── Karakter Şeridi ── */
    .char-item, .char-item-last {
        min-width: 80px;
        width: calc(100vw / 4);
    }
    .char-name { font-size: 8px !important; }
    .char-label { padding: 2px 1px; }

    /* ── Genel Başlık Küçültme (Tailwind override) ── */
    .text-5xl { font-size: 1.8rem !important; }
    .text-6xl { font-size: 2rem !important; }
    .text-4xl { font-size: 1.5rem !important; }

    /* ── Team Row (Ekip kartları) ── */
    .team-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    .team-photo {
        width: 5rem;
        height: 5rem;
        transform: none !important;
    }
    .team-bubble { box-shadow: 3px 3px 0 black; }
    .team-name { font-size: 1.1rem; }
    .team-quote { font-size: 0.8rem; }

    /* ── Günlük Kartlar (mobil carousel) ── */
    #dayGrid.day-carousel {
        display: flex !important;
        gap: 0 !important;
        will-change: transform;
    }
    #dayGrid.day-carousel .day-card {
        flex-shrink: 0;
        width: 75vw;
        height: auto;
        aspect-ratio: 4/3;
        margin-right: 12px;
        border: 3px solid black;
    }
    .day-time { font-size: 1rem; }
    .day-desc { font-size: 0.75rem; }

    /* ── Butonlar ── */
    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 1.4rem;
        border-width: 3px;
    }
    .btn-team, .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 1.4rem;
        border-width: 3px;
        margin-bottom: 2rem;
    }
    .btn-nav {
        font-size: 1rem;
        padding: 0.15rem 0.6rem;
        box-shadow: 2px 2px 0 black;
    }

    /* ── CTA Section (Masa/Sandalye) ── */
    .section-cta {
        flex-direction: column;
        min-height: auto;
        clip-path: none;
        padding-top: 40px;
    }
    .cta-content {
        flex: none;
        width: 100%;
        padding: 0 24px 24px;
        text-align: center;
        align-self: auto;
    }
    .cta-title { text-align: center; }
    .cta-scene {
        flex: none;
        width: 100%;
    }

    /* ── Demo Section ── */
    .demo-section { padding: 40px 16px; }
    .demo-title { font-size: 1.5rem; }
    .demo-desc { font-size: 0.95rem; }
    .demo-btn { font-size: 1.2rem; padding: 0.7rem 1.5rem; }
    .demo-phone { width: 260px; }
    .phone-screen { height: 400px; }

    /* ── Demo Hero (demo.html inline flex override) ── */
    .demo-hero-flex {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 40px 20px 0 !important;
    }
    .demo-hero-flex > div:first-child {
        flex: none !important;
    }
    .demo-hero-flex > div:last-child {
        flex: none !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .demo-hero-flex > div:last-child img {
        max-height: 300px !important;
    }

    /* ── Pricing (fiyatlandirma.html inline flex override) ── */
    .pricing-flex {
        flex-direction: column !important;
        gap: 24px !important;
    }
    .pricing-flex > div:first-child {
        flex: none !important;
        width: 100% !important;
    }
    .pricing-flex > div:last-child {
        flex: none !important;
        width: 100% !important;
    }
    .pricing-flex > div:last-child img {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* ── Story Items (calismalar.html) ── */
    .story-item {
        flex-direction: column;
        gap: 16px;
    }
    .story-thumb {
        width: 100%;
        height: 180px;
    }

    /* ── SSS ── */
    .faq-card { padding: 1.2rem; }
    .faq-title { font-size: 0.95rem; }
    .faq-answer p { font-size: 0.8rem; }

    /* ── Footer ── */
    .footer-heading { font-size: 1rem; margin-bottom: 0.75rem; }

    /* ── Diyagonal Geçiş ── */
    .section-sorun { padding-bottom: 40px; }
    .section-ekip {
        clip-path: none;
        margin-top: 0;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-ekip::after { display: none; }
    .section-gunluk { margin-top: 0; padding-top: 40px; overflow: hidden; }

    /* ── Genel Section Padding ── */
    .py-20 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .py-24 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .py-35 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .mb-16 { margin-bottom: 2rem !important; }
    .mb-10 { margin-bottom: 1.5rem !important; }
    .gap-12 { gap: 1.5rem !important; }
}
