/* ============================================================
   MARINECOS — Kurumsal tanıtım (welcome) sayfası stilleri
   Bu dosya yalnızca resources/views/welcome.blade.php tarafından
   kullanılır. Uygulama geneli stiller: public/css/styles.css.
   ============================================================ */

:root {
    /* Tanıtım sayfası paleti */
    --l-bg: #f8fafc;
    --l-surface: #ffffff;
    --l-navy: #0f2a4a;
    --l-navy-deep: #0a1e38;
    --l-blue: #2563eb;
    --l-blue-dark: #1d4ed8;
    --l-blue-soft: #eff6ff;
    --l-text: #0f172a;
    --l-muted: #64748b;
    --l-faint: #94a3b8;
    --l-border: #e2e8f0;
    --l-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
    --l-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--l-bg);
    color: var(--l-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ------------------------------------------------------------
   Butonlar
   ------------------------------------------------------------ */
.l-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.l-btn-primary {
    background: var(--l-blue);
    color: #fff;
}

.l-btn-primary:hover {
    background: var(--l-blue-dark);
}

.l-btn-ghost {
    background: transparent;
    color: var(--l-text);
    border-color: var(--l-border);
}

.l-btn-ghost:hover {
    border-color: var(--l-blue);
    color: var(--l-blue);
}

.l-btn-navy {
    background: var(--l-navy);
    color: #fff;
}

.l-btn-navy:hover {
    background: var(--l-navy-deep);
}

.l-btn-white {
    background: #fff;
    color: var(--l-navy);
}

.l-btn-white:hover {
    background: #e8eef5;
}

.l-btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--l-border);
    transition:
        background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.l-header--overlay:not(.is-scrolled):not(.is-menu-open) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

.l-header--overlay:not(.is-scrolled):not(.is-menu-open) .l-brand {
    color: #fff;
}

.l-header--overlay:not(.is-scrolled):not(.is-menu-open) .l-nav a.l-nav-link {
    color: rgba(255, 255, 255, 0.88);
}

.l-header--overlay:not(.is-scrolled):not(.is-menu-open) .l-nav a.l-nav-link:hover {
    color: #fff;
}

.l-header--overlay:not(.is-scrolled):not(.is-menu-open) .l-btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.l-header--overlay:not(.is-scrolled):not(.is-menu-open) .l-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.75);
}

.l-header--overlay:not(.is-scrolled):not(.is-menu-open) .locale-switcher {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.l-header--overlay:not(.is-scrolled):not(.is-menu-open) .locale-switcher button.is-active {
    background: rgba(255, 255, 255, 0.2);
}

.l-header--overlay:not(.is-scrolled):not(.is-menu-open) .l-menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.l-header.is-scrolled,
.l-header.is-menu-open {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom-color: var(--l-border);
}

.l-brand,
.l-nav a.l-nav-link,
.l-btn-ghost,
.l-menu-toggle {
    transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.l-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}

.l-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--l-text);
    flex-shrink: 0;
}

.l-brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.l-brand span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.l-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.l-nav a.l-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--l-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.l-nav a.l-nav-link:hover {
    color: var(--l-text);
}

.l-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.l-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--l-border);
    border-radius: 10px;
    background: #fff;
    color: var(--l-text);
    font-size: 17px;
    cursor: pointer;
}

/* Mobil menü paneli */
.l-mobile-menu {
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--l-border);
    padding: 12px 24px 20px;
}

.l-mobile-menu.open {
    display: block;
}

.l-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--l-text);
    text-decoration: none;
    border-bottom: 1px solid var(--l-border);
}

.l-mobile-menu a:last-child {
    border-bottom: none;
}

.l-mobile-menu a i {
    width: 20px;
    color: var(--l-blue);
    text-align: center;
}

/* ------------------------------------------------------------
   Bölüm başlıkları
   ------------------------------------------------------------ */
.l-section {
    padding: 88px 0;
}

.l-section-alt {
    background: var(--l-surface);
    border-top: 1px solid var(--l-border);
    border-bottom: 1px solid var(--l-border);
}

.l-section-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.l-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.l-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--l-blue);
    margin-bottom: 12px;
}

.l-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--l-text);
    margin-bottom: 12px;
}

.l-lead {
    font-size: 16px;
    color: var(--l-muted);
}

.l-section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.l-section-head-row .l-title {
    margin-bottom: 6px;
}

.l-all-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--l-blue);
    text-decoration: none;
    padding-bottom: 4px;
}

.l-all-link:hover {
    color: var(--l-blue-dark);
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.l-hero {
    position: relative;
}

.l-hero--cover {
    padding: 0;
    border-bottom: none;
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(160deg, #12355b, #0a1e38);
    overflow: hidden;
}

.l-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--l-hero-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.03);
    transform-origin: center center;
    will-change: transform;
}

.l-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 30, 56, 0.88) 0%,
        rgba(10, 30, 56, 0.55) 45%,
        rgba(10, 30, 56, 0.25) 100%
    );
    pointer-events: none;
}

.l-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 96px 0 72px;
}

.l-hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    pointer-events: none;
    animation: l-hero-hint-bounce 2.4s ease-in-out infinite;
}

.l-hero-scroll-hint i {
    font-size: 14px;
}

@keyframes l-hero-hint-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

.l-hero--cover h1.l-hero-title {
    font-size: clamp(40px, 5.2vw, 58px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: #fff;
    margin: 16px 0 22px;
    max-width: 640px;
    text-shadow: 0 2px 20px rgba(10, 30, 56, 0.45);
}

.l-hero-title-line {
    display: block;
}

.l-hero-title-accent {
    color: #a8d4ff;
    margin-top: 4px;
}

.l-hero h1 {
    font-size: clamp(34px, 4.2vw, 50px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: var(--l-text);
    margin: 16px 0 20px;
}

.l-hero p {
    font-size: 17px;
    color: var(--l-muted);
    max-width: 520px;
    margin-bottom: 32px;
}

.l-hero--cover p {
    color: rgba(255, 255, 255, 0.82);
}

.l-hero--cover .l-eyebrow {
    color: rgba(126, 184, 255, 0.95);
}

.l-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.l-hero--cover .l-btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.l-hero--cover .l-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.75);
}

.l-hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.l-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    color: var(--l-muted);
}

.l-hero--cover .l-hero-trust span {
    color: rgba(255, 255, 255, 0.82);
}

.l-hero-trust i {
    color: var(--l-blue);
    font-size: 14px;
}

.l-hero--cover .l-hero-trust i {
    color: #7eb8ff;
}

/* Fotoğraf kapları: görsel yüklenemezse lacivert zemin + ikon görünür */
.l-photo {
    position: relative;
    border-radius: var(--l-radius);
    overflow: hidden;
    background: linear-gradient(160deg, #12355b, #0a1e38);
    box-shadow: var(--l-shadow);
}

.l-photo::before {
    content: '\f13d'; /* fa-anchor */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.25);
}

.l-photo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------------------------
   Ürün modülleri — Swiper coverflow carousel
   ------------------------------------------------------------ */
.l-module-stage {
    position: relative;
    margin-top: 8px;
    padding: 0 56px 8px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.l-module-swiper {
    overflow: hidden;
    padding: 20px 0 16px;
    min-height: 440px;
}

.l-module-swiper .swiper-wrapper {
    align-items: center;
}

.l-module-swiper .swiper-slide {
    width: min(360px, 76vw);
    height: auto;
    box-sizing: border-box;
    will-change: transform, opacity;
}

.l-module-card {
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--l-shadow);
    transition:
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.l-module-swiper.is-dragging .l-module-card,
.l-module-swiper.is-navigating .l-module-card {
    transition: none;
}

.swiper-slide-active .l-module-card {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.14), 0 4px 12px rgba(15, 23, 42, 0.07);
    border-color: rgba(37, 99, 235, 0.25);
}

.l-module-swiper .swiper-slide-active {
    z-index: 3;
}

.l-module-swiper .swiper-slide-prev,
.l-module-swiper .swiper-slide-next {
    z-index: 1;
}

.l-module-card-media {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #12355b, #0a1e38);
}

.l-module-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.l-module-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.l-module-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.l-module-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--l-blue-soft);
    color: var(--l-blue);
    font-size: 17px;
    flex-shrink: 0;
}

.l-module-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--l-faint);
}

.l-module-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--l-text);
    margin: 0;
}

.l-module-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--l-muted);
    margin: 0;
}

.l-module-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--l-blue);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.l-module-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.l-module-link:hover {
    color: var(--l-blue-dark);
    gap: 10px;
}

.l-module-link:hover i {
    transform: translateX(2px);
}

.l-module-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--l-border);
    background: var(--l-surface);
    color: var(--l-text);
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--l-shadow);
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.l-module-nav:hover {
    border-color: var(--l-blue);
    color: var(--l-blue);
    background: var(--l-blue-soft);
}

.l-module-nav--prev {
    left: 0;
}

.l-module-nav--next {
    right: 0;
}

.l-module-nav.swiper-button-disabled {
    opacity: 0.5;
    cursor: pointer;
    pointer-events: auto;
}

.l-module-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.l-module-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--l-border);
    cursor: pointer;
    transition:
        background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.l-module-dot.is-active {
    width: 24px;
    background: var(--l-blue);
}

.l-module-dot:hover {
    background: var(--l-faint);
}

.l-module-dot.is-active:hover {
    background: var(--l-blue-dark);
}

/* Swiper yüklenmezse: kartlar dikey listelenir */
.l-module-swiper:not(.swiper-initialized) .swiper-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.l-module-swiper:not(.swiper-initialized) .swiper-slide {
    width: min(400px, 100%);
}

.l-module-swiper:not(.swiper-initialized) .l-module-card {
    opacity: 1;
    transform: none;
    filter: none;
}

/* Modül bölümü scroll reveal */
[data-reveal] .l-section-head,
[data-reveal] .l-module-stage {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible .l-section-head {
    opacity: 1;
    transform: none;
}

[data-reveal].is-visible .l-module-stage {
    opacity: 1;
    transform: none;
    transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
    .l-hero-scroll-hint {
        animation: none;
    }

    [data-reveal] .l-section-head,
    [data-reveal] .l-module-stage {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .l-module-card,
    .swiper-slide-active .l-module-card {
        transform: none;
        transition: none;
    }

    .l-module-dot {
        transition: background-color 0.2s ease;
    }
}

/* ------------------------------------------------------------
   Son eklenen ilanlar (gerçek veri)
   ------------------------------------------------------------ */
.l-ads {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.l-ad {
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: var(--l-radius);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.l-ad:hover {
    border-color: var(--l-blue);
    box-shadow: var(--l-shadow);
    transform: translateY(-2px);
}

.l-ad .l-photo {
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: 4 / 3;
}

.l-ad .l-photo::before {
    font-size: 28px;
}

.l-ad-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(15, 42, 74, 0.85);
    padding: 4px 9px;
    border-radius: 6px;
}

.l-ad-badge.rent {
    background: rgba(37, 99, 235, 0.9);
}

.l-ad-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.l-ad-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--l-text);
    line-height: 1.4;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.l-ad-city {
    font-size: 13px;
    color: var(--l-faint);
    display: flex;
    align-items: center;
    gap: 6px;
}

.l-ad-price {
    margin-top: auto;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--l-navy);
}

/* ------------------------------------------------------------
   Güncel iş ilanları (satır listesi, gerçek veri)
   ------------------------------------------------------------ */
.l-jobs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.l-job {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: var(--l-radius);
    padding: 18px 22px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.l-job:hover {
    border-color: var(--l-blue);
    box-shadow: var(--l-shadow);
}

.l-job-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--l-navy);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-job-main {
    flex: 1;
    min-width: 0;
}

.l-job-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 600;
    color: var(--l-text);
    margin-bottom: 3px;
}

.l-job-meta {
    font-size: 13px;
    color: var(--l-muted);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.l-job-meta i {
    font-size: 11px;
    color: var(--l-faint);
    margin-right: 5px;
}

.l-job-salary {
    flex-shrink: 0;
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    color: var(--l-navy);
}

.l-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
}

.l-tag-urgent {
    background: #fef2f2;
    color: #dc2626;
}

.l-tag-featured {
    background: var(--l-blue-soft);
    color: var(--l-blue);
}

/* ------------------------------------------------------------
   Neden Marinecos
   ------------------------------------------------------------ */
.l-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.l-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--l-blue-soft);
    color: var(--l-blue);
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.l-feature-icon i {
    line-height: 1;
}

.l-feature h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--l-text);
}

.l-feature p {
    font-size: 14px;
    color: var(--l-muted);
}

/* ------------------------------------------------------------
   Bireysel / Kurumsal panelleri
   ------------------------------------------------------------ */
.l-audiences {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.l-audience {
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: var(--l-radius);
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.l-audience:hover {
    border-color: var(--l-blue);
    box-shadow: var(--l-shadow);
}

.l-audience > i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--l-navy);
    color: #fff;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.l-audience h3 {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--l-text);
}

.l-audience .l-audience-sub {
    font-size: 14px;
    color: var(--l-muted);
    margin-bottom: 20px;
}

.l-audience ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 26px;
    flex: 1;
}

.l-audience li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    color: var(--l-text);
    line-height: 1.5;
}

.l-audience li i {
    flex-shrink: 0;
    color: var(--l-blue);
    font-size: 13px;
    margin-top: 4px;
}

/* ------------------------------------------------------------
   SSS
   ------------------------------------------------------------ */
.l-faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.l-faq details {
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: var(--l-radius);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.l-faq details[open] {
    border-color: var(--l-blue);
}

.l-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--l-text);
    -webkit-tap-highlight-color: transparent;
}

.l-faq summary::-webkit-details-marker {
    display: none;
}

.l-faq summary i {
    flex-shrink: 0;
    color: var(--l-blue);
    font-size: 13px;
    transition: transform 0.2s ease;
}

.l-faq details[open] summary i {
    transform: rotate(180deg);
}

.l-faq .l-faq-answer {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--l-muted);
}

/* ------------------------------------------------------------
   CTA bandı (sayfanın tek koyu bölümü — bilinçli kontrast)
   ------------------------------------------------------------ */
.l-cta {
    position: relative;
    background: var(--l-navy-deep);
    overflow: hidden;
    padding: 96px 0;
}

.l-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--l-cta-image);
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}

.l-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 30, 56, 0.55), rgba(10, 30, 56, 0.85));
}

.l-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
}

.l-cta h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 14px;
}

.l-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 34px;
}

.l-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/*
 * ═══════════════════════════════════════════════════════════════
 * STATS (İstatistikler) — GEÇİCİ OLARAK GİZLİ
 * ═══════════════════════════════════════════════════════════════
 * UYARI — SONRAKİ AI / GELİŞTİRİCİLER: BU BLOĞU ASLA SİLMEYİN.
 * Aktif ilan, kayıtlı kullanıcı, şirket ortağı vb. sayılar ileride
 * veritabanından gerçek verilerle doldurulacak. Şimdilik 0 veya
 * placeholder göstermek abes duracağı için gizli. Yorumdan çıkarıp
 * dinamik sayılarla aktif edin. HTML bloğu welcome.blade.php içinde
 * yorumda.
 * ═══════════════════════════════════════════════════════════════
.stats {
    display: block;
    max-width: none;
    margin: 0;
    padding: 80px 20px 48px;
    background: rgba(52, 152, 219, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: #3498db;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}
*/

/*
 * ═══════════════════════════════════════════════════════════════
 * TESTIMONIALS (Müşterilerimiz Ne Diyor?) — GEÇİCİ OLARAK GİZLİ
 * ═══════════════════════════════════════════════════════════════
 * UYARI — SONRAKİ AI / GELİŞTİRİCİLER: BU BLOĞU ASLA SİLMEYİN.
 * Placeholder müşteri yorumları ileride gerçek müşteri bilgileri
 * ve onaylı alıntılarla güncellenecek. Sadece yorumdan çıkarıp
 * gerçek verilerle aktif edin. HTML bloğu welcome.blade.php içinde
 * yorumda.
 * ═══════════════════════════════════════════════════════════════
.testimonials {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.4);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(52, 152, 219, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
*/

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
    .l-nav {
        display: none;
    }

    .l-menu-toggle {
        display: flex;
    }

    .l-header-actions .l-btn-ghost {
        display: none;
    }

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

    .l-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .l-section {
        padding: 64px 0;
    }

    .l-hero-inner {
        padding: 88px 0 64px;
    }

    .l-hero-scroll-hint {
        bottom: 20px;
    }

    .l-hero--cover h1.l-hero-title {
        font-size: clamp(34px, 8.2vw, 44px);
    }

    .l-hero p {
        font-size: 15px;
    }

    .l-hero-actions .l-btn {
        flex: 1;
        min-width: 150px;
    }

    .l-hero-trust {
        gap: 14px 20px;
    }

    .l-title {
        font-size: 26px;
    }

    .l-section-head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }


    .l-module-stage {
        padding: 0 44px 8px;
        max-width: 100%;
    }

    .l-module-swiper {
        min-height: 400px;
    }

    .l-module-swiper .swiper-slide {
        width: min(300px, 82vw);
    }

    .l-module-card-media {
        height: 150px;
    }

    .l-module-card-body {
        padding: 20px;
    }

    .l-module-card-body h3 {
        font-size: 16px;
    }

    .l-module-nav {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .l-module-nav--prev {
        left: 0;
    }

    .l-module-nav--next {
        right: 0;
    }

    .l-ads {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .l-ad-body {
        padding: 12px;
    }

    .l-job {
        flex-wrap: wrap;
        padding: 16px;
        gap: 12px;
    }

    .l-job-salary {
        width: 100%;
        text-align: left;
        padding-left: 60px;
    }

    .l-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .l-audiences {
        grid-template-columns: 1fr;
    }

    .l-audience {
        padding: 28px 24px;
    }

    .l-cta {
        padding: 72px 0;
    }

    .l-cta h2 {
        font-size: 27px;
    }

    .l-cta-actions .l-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .l-ads {
        grid-template-columns: 1fr;
    }
}
