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

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--surface);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════════════
    MESH GRADİENT ARKAPLAN
    ══════════════════════════════════════════════════════════ */
.mesh-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background: var(--grad-surface);
}
.mesh-blob {
    position: absolute; border-radius: 50%;
    filter: blur(100px); mix-blend-mode: multiply;
    animation: blobDrift 25s infinite ease-in-out;
}
.blob-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(91,75,219,0.12), transparent 70%);
    top: -300px; left: -200px; animation-delay: 0s;
}
.blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(155,93,229,0.1), transparent 70%);
    top: 40%; right: -150px; animation-delay: 8s;
}
.blob-3 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(246,211,101,0.12), transparent 70%);
    bottom: -200px; left: 30%; animation-delay: 16s;
}
.blob-4 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(67,203,255,0.08), transparent 70%);
    top: 60%; left: 10%; animation-delay: 5s;
}
@keyframes blobDrift {
    0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
    25%  { transform: translate(40px,-60px) scale(1.08) rotate(5deg); }
    50%  { transform: translate(-30px,40px) scale(0.95) rotate(-3deg); }
    75%  { transform: translate(50px,30px) scale(1.04) rotate(7deg); }
}

/* ══════════════════════════════════════════════════════════
    NAVBAR
    ══════════════════════════════════════════════════════════ */
.navbar-light-custom {
    position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 48px); max-width: 1280px;
    z-index: 1000; border-radius: 20px;
    backdrop-filter: blur(24px) saturate(180%);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 8px 32px rgba(91,75,219,0.1), 0 1px 0 rgba(255,255,255,0.8) inset;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    padding: 0.75rem 1.5rem;
}
.navbar-light-custom.scrolled {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 40px rgba(91,75,219,0.15);
}
.brand-custom {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem; font-weight: 900;
    font-style: italic;
    background: var(--grad-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: -0.03em;
    text-decoration: none;
}
.nav-link-l {
    color: var(--text-secondary); font-weight: 600; font-size: 0.9rem;
    padding: 0.5rem 1rem; border-radius: 10px;
    transition: all 0.25s ease; text-decoration: none;
}
.nav-link-l:hover, .nav-link-l.active {
    color: var(--accent); background: var(--accent-ultra);
}
.nav-item-l.dropdown .nav-link-l { display: inline-flex; align-items: center; gap: 0.25rem; }
.nav-item-l .dropdown-menu {
    border-radius: 14px; padding: 0.5rem; margin-top: 0.5rem;
    box-shadow: 0 12px 40px rgba(91,75,219,0.12); border: 1px solid var(--border);
}
.nav-item-l .dropdown-item {
    border-radius: 10px; padding: 0.5rem 1rem; font-weight: 500;
}
.nav-item-l .dropdown-submenu { position: relative; }
.nav-item-l .dropdown-submenu > .dropdown-menu {
    left: 100%; top: 0; margin: 0 0 0 0.25rem; display: none;
}
.nav-item-l .dropdown-submenu:hover > .dropdown-menu { display: block; }
.nav-item-l .dropdown-submenu .dropdown-toggle::after { display: none; }
.nav-item-l .dropdown-submenu .dropdown-toggle .bi-chevron-right { font-size: 0.75em; margin-left: auto; }

/* ══════════════════════════════════════════════════════════
    BUTONLAR
    ══════════════════════════════════════════════════════════ */
.btn-l {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem; font-weight: 700; font-size: 0.9rem;
    border-radius: 14px; border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none; white-space: nowrap;
}
.btn-l-primary {
    background: var(--grad-primary); color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-l-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(91,75,219,0.35);
    color: white;
}
.btn-l-ghost {
    background: transparent;
    border: 1.5px solid var(--border-strong);
    color: var(--text-primary);
}
.btn-l-ghost:hover {
    background: var(--surface-hover);
    border-color: var(--accent-light);
    color: var(--accent); transform: translateY(-1px);
}
.btn-l-white {
    background: white; color: var(--accent); font-weight: 800;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.btn-l-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    color: var(--accent);
}
.btn-l-outline-white {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: white;
}
.btn-l-outline-white:hover {
    background: rgba(255,255,255,0.25);
    color: white; transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
    SECTION ORTAK
    ══════════════════════════════════════════════════════════ */
.sec { padding: 7rem 0; position: relative; z-index: 1; }
.sec-sm { padding: 4rem 0; position: relative; z-index: 1; }
.sec-alt { background: var(--surface-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.sec-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem; border-radius: 50px;
    background: var(--accent-ultra); border: 1px solid rgba(91,75,219,0.2);
    color: var(--accent); font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem;
}
.sec-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 900; line-height: 1.15;
    color: var(--text-primary); margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.sec-subtitle {
    font-size: 1.15rem; color: var(--text-secondary);
    max-width: 640px; margin: 0 auto; line-height: 1.8;
}
.sec-header { text-align: center; margin-bottom: 4.5rem; }

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-warm {
    background: var(--grad-warm);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════════════════════════════════
    HERO
    ══════════════════════════════════════════════════════════ */
.hero-l {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 110px; position: relative; z-index: 1;
}
.hero-title-l {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900; line-height: 1.08;
    letter-spacing: -0.04em; margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.hero-subtitle-l {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-secondary); margin-bottom: 2.5rem;
    max-width: 580px; line-height: 1.85;
}
.hero-trust {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 2rem; flex-wrap: wrap;
}
.hero-trust-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; color: var(--text-muted); font-weight: 600;
}
.hero-trust-item i { color: var(--accent); }

.hero-img-wrap {
    position: relative;
}
.hero-img-card {
    border-radius: 28px; overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.hero-img-card:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

/* Hero'daki yüzen küçük istatistik kartlar */
.hero-float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    animation: floatUp 5s ease-in-out infinite;
    display: flex; align-items: center; gap: 0.75rem;
    min-width: 170px;
}
.hero-float-card .hfc-icon {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.hero-float-card .hfc-num {
    font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.4rem;
    line-height: 1; color: var(--text-primary);
}
.hero-float-card .hfc-lbl {
    font-size: 0.75rem; color: var(--text-muted); font-weight: 600;
}
.hfc-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.hfc-2 { top: 30px; right: -20px; animation-delay: 2.5s; }

@keyframes floatUp {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* ══════════════════════════════════════════════════════════
    LOGO BANDI
    ══════════════════════════════════════════════════════════ */
.logo-band-l {
    padding: 4rem 0; position: relative; z-index: 1;
    background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.logo-scroll-l {
    display: flex; gap: 3.5rem; align-items: center;
    animation: scrollLogosL 28s linear infinite;
}
.logo-item-l {
    min-width: 130px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.35; filter: grayscale(1);
    transition: all 0.3s ease; flex-shrink: 0;
}
.logo-item-l:hover { opacity: 0.8; filter: grayscale(0); }
@keyframes scrollLogosL { to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════
    FEATURE KARTLAR
    ══════════════════════════════════════════════════════════ */
.feat-card-l {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 24px; padding: 2.25rem;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden;
}
.feat-card-l::after {
    content: '';
    position: absolute; inset: 0; border-radius: 24px;
    background: var(--grad-primary); opacity: 0;
    transition: opacity 0.35s ease; z-index: 0;
}
.feat-card-l:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(91,75,219,0.2);
}
.feat-card-l:hover::after { opacity: 0.03; }
.feat-card-l > * { position: relative; z-index: 1; }

.feat-icon-l {
    width: 60px; height: 60px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(91,75,219,0.2);
}
.feat-title-l {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem; font-weight: 700;
    margin-bottom: 0.75rem; color: var(--text-primary);
    letter-spacing: -0.02em;
}
.feat-desc-l { color: var(--text-secondary); line-height: 1.8; font-size: 0.97rem; }

/* ══════════════════════════════════════════════════════════
    PROBLEM / ÇÖZÜM
    ══════════════════════════════════════════════════════════ */
.ps-card-l {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 28px; padding: 3rem; height: 100%;
    box-shadow: var(--shadow-card);
}
.ps-card-l.prob { border-top: 4px solid #F77062; }
.ps-card-l.sol  { border-top: 4px solid #0BA360; }

.ps-tag-l {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 1rem; border-radius: 50px;
    font-weight: 700; font-size: 0.8rem; margin-bottom: 1.5rem;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.ps-tag-l.prob { background: rgba(247,112,98,0.1); color: #E54E3E; }
.ps-tag-l.sol  { background: rgba(11,163,96,0.1);  color: #0A8F55; }

.ps-title-l {
    font-family: 'Fraunces', serif;
    font-size: 1.7rem; font-weight: 800;
    margin-bottom: 2rem; letter-spacing: -0.02em;
}
.ps-item-l { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.ps-dot-l {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.85rem; margin-top: 0.2rem;
}
.ps-dot-l.prob { background: rgba(247,112,98,0.15); color: #E54E3E; }
.ps-dot-l.sol  { background: rgba(11,163,96,0.15);  color: #0A8F55; }
.ps-item-text-l { color: var(--text-secondary); line-height: 1.7; }
.ps-item-text-l strong { color: var(--text-primary); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
    İSTATİSTİKLER
    ══════════════════════════════════════════════════════════ */
.stats-l { background: var(--grad-primary); position: relative; z-index: 1; padding: 5rem 0; overflow: hidden; }
.stats-l::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-l { text-align: center; position: relative; z-index: 1; }
.stat-num-l {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 900;
    color: white; line-height: 1; margin-bottom: 0.5rem;
}
.stat-lbl-l { color: rgba(255,255,255,0.75); font-weight: 600; font-size: 1rem; }
.stat-divider-l {
    width: 1px; background: rgba(255,255,255,0.2);
    align-self: stretch; margin: 1rem 0;
}

/* ══════════════════════════════════════════════════════════
    TESTIMONIALS
    ══════════════════════════════════════════════════════════ */
.tcard-l {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 24px; padding: 2.5rem; height: 100%;
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
    position: relative;
}
.tcard-l:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tcard-l::before {
    content: '\201C'; position: absolute;
    top: 1.25rem; right: 1.75rem;
    font-family: 'Fraunces', serif; font-size: 5rem;
    color: var(--accent-ultra); line-height: 1;
}
.tcard-stars-l { display: flex; gap: 0.2rem; margin-bottom: 1.25rem; color: #FBBF24; font-size: 1rem; }
.tcard-text-l { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.tcard-author-l { display: flex; align-items: center; gap: 1rem; }
.tcard-avatar-l { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--accent-ultra); }
.tcard-name-l { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.tcard-role-l { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════
    FAQ ACCORDION
    ══════════════════════════════════════════════════════════ */
.faq-l .accordion-item {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 18px; margin-bottom: 0.75rem; overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}
.faq-l .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(91,75,219,0.25);
    box-shadow: 0 4px 24px rgba(91,75,219,0.1);
}
.faq-l .accordion-button {
    background: transparent; color: var(--text-primary);
    font-weight: 700; font-size: 1rem; padding: 1.5rem 1.75rem; border: none;
}
.faq-l .accordion-button:not(.collapsed) { color: var(--accent); background: var(--accent-ultra); }
.faq-l .accordion-button:focus { box-shadow: none; }
.faq-l .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235B4BDB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-l .accordion-body {
    padding: 0 1.75rem 1.5rem; color: var(--text-secondary); line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
    CTA BÖLÜMÜ
    ══════════════════════════════════════════════════════════ */
.cta-l {
    position: relative; z-index: 1; padding: 7rem 0;
}
.cta-card-l {
    border-radius: 40px; padding: 5rem 3rem;
    text-align: center; overflow: hidden; position: relative;
    background: var(--grad-primary);
}
.cta-card-l::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.cta-inner-l { position: relative; z-index: 1; }
.cta-title-l {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
    color: white; margin-bottom: 1.25rem; letter-spacing: -0.03em;
}
.cta-sub-l { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 2.5rem; }
.cta-badges-l { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
.cta-badge-l {
    display: flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px; padding: 0.4rem 1rem;
    color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
    CONTACT
    ══════════════════════════════════════════════════════════ */
.cinfo-card-l {
    background: var(--surface-card); border: 1px solid var(--border);
    border-radius: 24px; padding: 2.5rem; height: 100%;
    text-align: center; box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.cinfo-card-l:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(91,75,219,0.2); }
.cinfo-icon-l {
    width: 64px; height: 64px; border-radius: 20px;
    background: var(--grad-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white; margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px var(--accent-glow);
}
.cinfo-title-l { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.cinfo-desc-l  { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0.75rem; }
.cinfo-link-l  { color: var(--accent); font-weight: 700; text-decoration: none; font-size: 0.95rem; }
.cinfo-link-l:hover { text-decoration: underline; }

/* Form light tema */
.form-control-l, .form-select-l {
    background: var(--surface-card); border: 1.5px solid var(--border);
    color: var(--text-primary); padding: 0.85rem 1.25rem;
    border-radius: 14px; font-family: inherit; font-size: 0.95rem;
    transition: all 0.2s ease; width: 100%;
}
textarea.form-control-l { border-radius: 18px; resize: vertical; }
.form-control-l:focus, .form-select-l:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
    background: white;
}
.form-control-l::placeholder { color: var(--text-muted); }
.form-label-l { font-weight: 700; font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.5rem; display: block; text-transform: uppercase; letter-spacing: 0.04em; }
.form-check-label-l { color: var(--text-secondary); font-size: 0.9rem; }
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }

/* ══════════════════════════════════════════════════════════
    PRICING
    ══════════════════════════════════════════════════════════ */
.price-card-l {
    background: var(--surface-card); border: 1.5px solid var(--border);
    border-radius: 28px; padding: 2.5rem; height: 100%;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-sm);
}
.price-card-l:hover { border-color: rgba(91,75,219,0.3); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card-l.featured {
    background: var(--grad-primary); border-color: transparent;
    box-shadow: var(--shadow-xl); transform: scale(1.04);
    color: white;
}
.price-card-l.featured:hover { transform: scale(1.06) translateY(-6px); }
.price-name-l { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.75rem; }
.price-card-l.featured .price-name-l { color: rgba(255,255,255,0.7); }
.price-amount-l {
    font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 900;
    line-height: 1; color: var(--text-primary);
}
.price-card-l.featured .price-amount-l { color: white; }
.price-period-l { color: var(--text-muted); font-size: 0.95rem; }
.price-card-l.featured .price-period-l { color: rgba(255,255,255,0.65); }
.price-desc-l { color: var(--text-secondary); font-size: 0.9rem; margin: 1rem 0 1.75rem; }
.price-card-l.featured .price-desc-l { color: rgba(255,255,255,0.75); }
.price-feat-l { list-style: none; padding: 0; margin: 0 0 2rem; }
.price-feat-l li { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; font-size: 0.92rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.price-feat-l li:last-child { border-bottom: none; }
.price-feat-l li.disabled { opacity: 0.4; }
.price-card-l.featured .price-feat-l li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.price-feat-l li i { font-size: 1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
    TABLE
    ══════════════════════════════════════════════════════════ */
.tbl-l { background: var(--surface-card); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.tbl-l thead th { background: var(--surface-alt); color: var(--text-primary); font-weight: 700; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.tbl-l tbody td { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); color: var(--text-secondary); vertical-align: middle; }
.tbl-l tbody tr:last-child td { border-bottom: none; }
.tbl-l tbody tr:hover td { background: var(--surface-alt); }
.tbl-l tbody td:first-child { font-weight: 700; color: var(--text-primary); }

/* ══════════════════════════════════════════════════════════
    FOOTER
    ══════════════════════════════════════════════════════════ */
footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.65);
    padding: 5rem 0 2.5rem; position: relative; z-index: 1;
}
.footer-brand-l {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 2rem; font-weight: 900;
    background: var(--grad-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; display: inline-block; margin-bottom: 1rem;
}
.footer-desc-l { color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 2rem; max-width: 320px; }
.footer-social-l { display: flex; gap: 0.75rem; }
.soc-btn-l {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 1.1rem;
    transition: all 0.3s ease; text-decoration: none;
}
.soc-btn-l:hover { background: var(--grad-primary); border-color: transparent; color: white; transform: translateY(-3px); }
.footer-heading-l { font-weight: 800; color: white; margin-bottom: 1.25rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-link-l {
    display: block; color: rgba(255,255,255,0.5); text-decoration: none;
    margin-bottom: 0.65rem; font-size: 0.9rem; transition: all 0.25s ease;
}
.footer-link-l:hover { color: white; padding-left: 4px; }
.footer-bottom-l {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3.5rem; padding-top: 2rem;
    color: rgba(255,255,255,0.35); font-size: 0.85rem;
}

/* ══════════════════════════════════════════════════════════
    ANİMASYONLAR
    ══════════════════════════════════════════════════════════ */
@keyframes fadeInUp    { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
.anim-up    { animation: fadeInUp    0.7s ease both; }
.anim-down  { animation: fadeInDown  0.7s ease both; }
.anim-right { animation: fadeInRight 0.9s ease 0.4s both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s;  }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s;  }

/* ══════════════════════════════════════════════════════════
    RESPONSIVE
    ══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .navbar-light-custom {
        width: calc(100% - 24px); top: 8px; border-radius: 16px;
    }
    .hero-img-card { transform: none; }
    .hfc-1, .hfc-2 { display: none; }
    .price-card-l.featured { transform: scale(1); }
}
@media (max-width: 768px) {
    .sec { padding: 4.5rem 0; }
    .sec-title { font-size: 2rem; }
    .hero-title-l { font-size: 2.5rem; }
}