/* JetStok Bayilik — tanıtım sayfası */

:root {
    --ink: #241a4f;
    --ink-soft: #5b5379;
    --purple: #3d2b8f;
    --purple-deep: #291d63;
    --purple-darker: #1e1549;
    --coral: #f4766b;
    --coral-soft: #ffe9e6;
    --surface: #faf9f6;
    --card: #ffffff;
    --line: rgba(36, 26, 79, 0.1);

    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
    --text-hero: clamp(2.375rem, 1.4rem + 4.4vw, 4.5rem);
    --text-section: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);

    --space-section: clamp(4rem, 3rem + 5vw, 8rem);
    --radius-lg: 24px;
    --radius-md: 16px;

    --duration-fast: 150ms;
    --duration-normal: 400ms;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body.lp {
    font-family: "Plus Jakarta Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

.lp img {
    max-width: 100%;
    height: auto;
}

.lp-container {
    width: min(1160px, 100% - 2.5rem);
    margin-inline: auto;
}

/* ---------- Header ---------- */

.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 0.9rem;
}

.lp-nav__brand img {
    width: 128px;
    display: block;
}

.lp-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.lp-nav__links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color var(--duration-fast) ease;
}

.lp-nav__links a:hover,
.lp-nav__links a:focus-visible {
    color: var(--purple);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font: inherit;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease,
        background-color var(--duration-fast) ease, color var(--duration-fast) ease;
}

.lp-btn:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
}

.lp-btn--primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(61, 43, 143, 0.55);
}

.lp-btn--primary:hover {
    background: var(--purple-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(61, 43, 143, 0.6);
}

.lp-btn--coral {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(244, 118, 107, 0.65);
}

.lp-btn--coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(244, 118, 107, 0.7);
}

.lp-btn--ghost {
    color: var(--ink);
    border-color: var(--line);
    background: transparent;
}

.lp-btn--ghost:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.lp-btn--light {
    background: #fff;
    color: var(--purple-deep);
}

.lp-btn--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.35);
}

/* ---------- Hero ---------- */

.lp-hero {
    padding-block: clamp(3rem, 2rem + 4vw, 6rem) var(--space-section);
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: "";
    position: absolute;
    top: -240px;
    right: -180px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 118, 107, 0.16), transparent 65%);
    pointer-events: none;
}

.lp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coral-soft);
    color: #c2493e;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.lp-hero h1 {
    font-size: var(--text-hero);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.lp-hero h1 em {
    font-style: normal;
    color: var(--coral);
    position: relative;
    white-space: nowrap;
}

.lp-hero__lead {
    color: var(--ink-soft);
    font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2.75rem;
}

.lp-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.lp-fact strong {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--purple);
}

.lp-fact span {
    color: var(--ink-soft);
    font-size: 0.875rem;
}

/* Hero görseli — CSS ile çizilmiş panel mockup */

.lp-mock {
    position: relative;
}

.lp-mock__panel {
    background: linear-gradient(150deg, var(--purple-deep), var(--purple-darker));
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    color: #fff;
    box-shadow: 0 40px 80px -30px rgba(30, 21, 73, 0.55);
    transform: rotate(1.5deg);
}

.lp-mock__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.lp-mock__head span {
    font-size: 0.8125rem;
    opacity: 0.75;
}

.lp-mock__head strong {
    font-size: 1.0625rem;
    font-weight: 700;
    display: block;
}

.lp-mock__badge {
    background: rgba(244, 118, 107, 0.2);
    color: #ffb0a8;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.lp-mock__bars {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
    height: 132px;
    margin-bottom: 1.5rem;
}

.lp-mock__bars i {
    flex: 1;
    border-radius: 8px 8px 3px 3px;
    background: rgba(255, 255, 255, 0.16);
}

.lp-mock__bars i:nth-child(1) { height: 34%; }
.lp-mock__bars i:nth-child(2) { height: 52%; }
.lp-mock__bars i:nth-child(3) { height: 44%; }
.lp-mock__bars i:nth-child(4) { height: 68%; }
.lp-mock__bars i:nth-child(5) { height: 58%; }
.lp-mock__bars i:nth-child(6) { height: 82%; }
.lp-mock__bars i:nth-child(7) {
    height: 100%;
    background: var(--coral);
}

.lp-mock__rows {
    display: grid;
    gap: 0.625rem;
}

.lp-mock__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
}

.lp-mock__row b {
    color: #8be3b1;
    font-weight: 700;
}

.lp-mock__float {
    position: absolute;
    left: -1.5rem;
    bottom: -2.75rem;
    background: var(--card);
    border-radius: var(--radius-md);
    box-shadow: 0 24px 48px -20px rgba(36, 26, 79, 0.35);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transform: rotate(-2deg);
}

.lp-mock__float-icon {
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 12px;
    background: var(--coral-soft);
    color: var(--coral);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
}

.lp-mock__float strong {
    display: block;
    font-size: 0.9375rem;
}

.lp-mock__float span {
    font-size: 0.8125rem;
    color: var(--ink-soft);
}

/* ---------- Entegrasyon şeridi ---------- */

.lp-integrations {
    padding-block: 2.5rem;
    border-block: 1px solid var(--line);
    background: var(--card);
}

.lp-integrations p {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}

.lp-integrations ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem 0.75rem;
}

.lp-integrations li {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--purple-deep);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
}

/* ---------- Bölüm başlıkları ---------- */

.lp-section {
    padding-block: var(--space-section);
}

.lp-section--alt {
    background: var(--card);
}

.lp-section__head {
    max-width: 40rem;
    margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.lp-section__head h2 {
    font-size: var(--text-section);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-block: 0.75rem 1rem;
}

.lp-section__head p {
    color: var(--ink-soft);
}

/* ---------- Avantajlar (bento) ---------- */

.lp-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.lp-bento__card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    grid-column: span 2;
    transition: transform var(--duration-normal) var(--ease-out-expo),
        box-shadow var(--duration-normal) var(--ease-out-expo);
}

.lp-bento__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -24px rgba(36, 26, 79, 0.25);
}

.lp-bento__card--wide {
    grid-column: span 3;
}

.lp-bento__card--feature {
    background: linear-gradient(150deg, var(--purple), var(--purple-deep));
    color: #fff;
    border: none;
}

.lp-bento__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.375rem;
    background: var(--coral-soft);
    margin-bottom: 1.25rem;
}

.lp-bento__card--feature .lp-bento__icon {
    background: rgba(255, 255, 255, 0.14);
}

.lp-bento__card h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lp-bento__card p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
}

.lp-bento__card--feature p {
    color: rgba(255, 255, 255, 0.92);
}

/* ---------- Nasıl çalışır ---------- */

.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}

.lp-step {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem 1.75rem;
}

.lp-step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute;
    top: -1.1rem;
    left: 1.5rem;
    background: var(--coral);
    color: #fff;
    font-weight: 800;
    font-size: 0.9375rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 8px 16px -6px rgba(244, 118, 107, 0.6);
}

.lp-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lp-step p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
}

/* ---------- CTA ---------- */

.lp-cta {
    background: linear-gradient(140deg, var(--purple-deep), var(--purple-darker));
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 2rem + 3vw, 4.5rem);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta::before,
.lp-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.lp-cta::before {
    width: 340px;
    height: 340px;
    left: -120px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(244, 118, 107, 0.35), transparent 70%);
}

.lp-cta::after {
    width: 280px;
    height: 280px;
    right: -100px;
    top: -140px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
}

.lp-cta h2 {
    font-size: var(--text-section);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.875rem;
}

.lp-cta p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 34rem;
    margin: 0 auto 2rem;
}

.lp-cta__phone {
    position: relative;
    margin: 1.5rem auto 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.72);
}

.lp-cta__phone a {
    color: #fff;
    font-weight: 800;
    font-size: 1.0625rem;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.lp-cta__phone a:hover {
    color: var(--coral, #f4766b);
}

/* ---------- Footer ---------- */

.lp-footer {
    padding-block: 2.5rem;
    border-top: 1px solid var(--line);
    background: #fff;
}

.lp-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-footer img {
    width: 108px;
    opacity: 0.9;
}

.lp-footer nav {
    display: flex;
    gap: 1.5rem;
}

.lp-footer a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
}

.lp-footer a:hover {
    color: var(--purple);
}

.lp-footer a.lp-footer__phone {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
}

.lp-footer a.lp-footer__phone:hover {
    color: var(--purple);
}

.lp-footer small {
    color: var(--ink-soft);
    font-size: 0.8125rem;
}

/* ---------- Reveal animasyonu ---------- */

.lp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-normal) var(--ease-out-expo),
        transform 700ms var(--ease-out-expo);
}

.lp-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .lp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lp-btn,
    .lp-bento__card {
        transition: none;
    }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
    .lp-hero__grid {
        grid-template-columns: 1fr;
    }

    .lp-mock {
        max-width: 520px;
        margin-inline: auto;
    }

    .lp-bento__card,
    .lp-bento__card--wide {
        grid-column: span 3;
    }

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

@media (max-width: 720px) {
    .lp-nav__links {
        display: none;
    }

    .lp-bento__card,
    .lp-bento__card--wide {
        grid-column: span 6;
    }

    .lp-mock__float {
        left: 0.5rem;
        bottom: -1.25rem;
    }
}
