/* MemoryBook public landing sayfası (claude.ai/design "MemoryBook Landing Page" tasarımından) */

:root {
    --lp-accent: #13b890;
    --lp-bg: #f6efe2;
    --lp-ink: #2c2c2c;
    --lp-dark: #2c2820;
    --lp-text: #3a3329;
    --lp-muted: #6f6354;
    --lp-soft: #8a7c64;
    --lp-faint: #a89a80;
    --lp-border: #d8cdb8;
    --lp-cream: #f6efe2;
}

html {
    scroll-behavior: smooth;
}

body.lp {
    margin: 0;
    min-height: 100vh;
    background: var(--lp-bg);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--lp-text);
}

.lp a {
    text-decoration: none;
    color: inherit;
}

.lp-container {
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.lp-script {
    font-family: 'Caveat', cursive;
}

.lp-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* ===== Nav ===== */
.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 26px;
    padding-bottom: 26px;
    gap: 18px;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none;
}

.lp-brand-name {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--lp-ink);
}

.lp-brand-name em {
    font-style: normal;
    color: var(--lp-accent);
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: var(--lp-muted);
}

.lp-nav-links > a:not(.lp-btn):hover {
    color: var(--lp-ink);
}

/* ===== Butonlar ===== */
.lp-btn {
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.lp-btn:hover {
    transform: translateY(-1px);
}

.lp-btn-accent {
    background: var(--lp-accent);
    color: #fff;
    padding: 11px 24px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .14);
}

.lp-btn-outline {
    border: 1.5px solid var(--lp-border);
    color: var(--lp-muted);
    padding: 9.5px 22px;
    font-size: 14px;
}

.lp-btn-outline:hover {
    border-color: var(--lp-soft);
    color: var(--lp-ink);
}

.lp-btn-lg {
    padding: 16px 32px;
    font-size: 15px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
}

.lp-btn-lg.lp-btn-outline {
    padding: 14.5px 28px;
    box-shadow: none;
}

/* ===== Hero ===== */
.lp-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 90px;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--lp-border);
    border-radius: 22px;
    padding: 7px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--lp-soft);
    margin-bottom: 22px;
}

.lp-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.04;
    color: var(--lp-ink);
    text-wrap: pretty;
}

.lp-hero-title .lp-script {
    color: var(--lp-accent);
    font-weight: 700;
}

.lp-hero-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--lp-muted);
    margin-top: 20px;
    max-width: 460px;
    text-wrap: pretty;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.lp-hero-checks {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
    font-size: 13px;
    color: var(--lp-soft);
}

.lp-check {
    color: var(--lp-accent);
}

/* Hero görseli: polaroid kolaj */
.lp-collage {
    position: relative;
    height: 480px;
}

.lp-polaroid {
    position: absolute;
    background: #fff;
    padding: 12px 12px 40px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.lp-polaroid-photo {
    position: relative;
    overflow: hidden;
}

.lp-polaroid-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .15) 10px, transparent 10px, transparent 20px);
}

.lp-polaroid-caption {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    font-weight: 600;
    margin-top: 8px;
    color: var(--lp-ink);
}

.lp-polaroid-1 {
    top: 12px;
    left: 24px;
    transform: rotate(-6deg);
    width: 220px;
}

.lp-polaroid-1 .lp-polaroid-photo {
    height: 220px;
    background: linear-gradient(135deg, #c8a8b4, #9d7e8c);
}

.lp-polaroid-2 {
    top: 0;
    right: 8px;
    transform: rotate(4deg);
    width: 200px;
    z-index: 2;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.lp-polaroid-2 .lp-polaroid-photo {
    height: 200px;
    background: linear-gradient(135deg, #9fb2a6, #6f8a7c);
}

.lp-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--lp-ink);
    padding-left: 3px;
    box-sizing: border-box;
    z-index: 1;
}

.lp-polaroid-3 {
    bottom: 26px;
    left: 70px;
    transform: rotate(-2deg);
    width: 230px;
    z-index: 3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.lp-polaroid-3 .lp-polaroid-photo {
    height: 210px;
    background: linear-gradient(135deg, #d3b58c, #b08e63);
}

.lp-note-card {
    position: absolute;
    bottom: 64px;
    right: 0;
    background: #fffdf7;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .15);
    transform: rotate(3deg);
    width: 190px;
    padding: 16px 18px;
    z-index: 4;
}

.lp-note-text {
    font-family: 'Caveat', cursive;
    font-size: 20px;
    line-height: 1.15;
    color: #5a5040;
}

.lp-note-author {
    font-family: 'Caveat', cursive;
    font-size: 16px;
    color: var(--lp-faint);
    margin-top: 8px;
}

.lp-washi {
    position: absolute;
    z-index: 5;
}

.lp-washi-1 {
    top: -4px;
    left: 110px;
    width: 64px;
    height: 22px;
    background: rgba(180, 160, 120, .4);
    transform: rotate(-8deg);
}

.lp-washi-2 {
    top: -8px;
    right: 70px;
    width: 58px;
    height: 20px;
    background: rgba(19, 184, 144, .3);
    transform: rotate(6deg);
}

/* ===== Bölüm başlıkları ===== */
.lp-section-head {
    text-align: center;
    margin-bottom: 54px;
}

.lp-section-kicker {
    font-family: 'Caveat', cursive;
    font-size: 30px;
    color: var(--lp-accent);
    line-height: 1;
}

.lp-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--lp-ink);
    margin-top: 6px;
}

/* ===== Nasıl çalışır ===== */
.lp-how {
    background: #fff;
    padding: 80px 0;
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.lp-step {
    text-align: center;
    padding: 0 14px;
}

.lp-step-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 22px;
    background: var(--lp-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lp-step-no {
    position: absolute;
    top: -6px;
    right: 8px;
    background: var(--lp-accent);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Caveat', cursive;
    font-size: 22px;
    font-weight: 700;
}

.lp-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--lp-ink);
}

.lp-step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--lp-soft);
    margin-top: 8px;
    text-wrap: pretty;
}

/* ===== Özellikler ===== */
.lp-features {
    padding: 80px 0;
}

.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-feature {
    background: #fff;
    padding: 28px 26px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.lp-feature-icon {
    font-size: 26px;
    line-height: 1;
}

.lp-feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--lp-ink);
    margin-top: 12px;
}

.lp-feature-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--lp-soft);
    margin-top: 6px;
    text-wrap: pretty;
}

.lp-tilt-1 { transform: rotate(-1.2deg); }
.lp-tilt-2 { transform: rotate(.8deg); }
.lp-tilt-3 { transform: rotate(-.6deg); }
.lp-tilt-4 { transform: rotate(1deg); }
.lp-tilt-5 { transform: rotate(-.9deg); }
.lp-tilt-6 { transform: rotate(.7deg); }

/* ===== Alıntı bandı ===== */
.lp-quote {
    background: var(--lp-dark);
    padding: 70px 32px;
    text-align: center;
}

.lp-quote-inner {
    max-width: 760px;
    margin: 0 auto;
}

.lp-quote-text {
    font-family: 'Caveat', cursive;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--lp-cream);
    text-wrap: pretty;
}

.lp-quote-author {
    font-size: 14px;
    letter-spacing: 2px;
    color: #a99e88;
    margin-top: 18px;
}

/* ===== Fiyatlandırma ===== */
.lp-pricing {
    padding: 80px 0;
    background: #fff;
}

.lp-pricing-inner {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 32px;
}

.lp-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.lp-plan {
    background: var(--lp-cream);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .07);
}

.lp-plan-name {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-plan-tag {
    font-size: 12px;
    color: var(--lp-soft);
    margin-top: 2px;
}

.lp-plan-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--lp-ink);
    margin: 18px 0 4px;
}

.lp-plan-price small {
    font-size: 18px;
    color: var(--lp-soft);
    font-weight: 600;
}

.lp-plan-note {
    font-size: 12px;
    color: var(--lp-faint);
    margin-bottom: 20px;
}

.lp-plan-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13.5px;
    color: var(--lp-muted);
}

.lp-plan-cta {
    margin-top: auto;
    padding-top: 24px;
}

.lp-plan-cta .lp-btn {
    display: block;
    padding: 13px;
    font-size: 14px;
}

.lp-plan-featured {
    background: var(--lp-dark);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
    position: relative;
    transform: scale(1.03);
}

.lp-plan-featured .lp-plan-name,
.lp-plan-featured .lp-plan-price {
    color: var(--lp-cream);
}

.lp-plan-featured .lp-plan-tag {
    color: #a99e88;
}

.lp-plan-featured .lp-plan-list {
    color: #d8cfc0;
}

.lp-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-accent);
    color: #fff;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.lp-plan-featured .lp-btn-accent {
    box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}

/* ===== SSS ===== */
.lp-faq {
    padding: 80px 0;
}

.lp-faq-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}

.lp-faq-inner .lp-section-head {
    margin-bottom: 44px;
}

.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-faq-item {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
    padding: 20px 24px;
    cursor: pointer;
}

.lp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.lp-faq-q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--lp-ink);
}

.lp-faq-mark {
    font-family: 'Caveat', cursive;
    font-size: 26px;
    color: var(--lp-accent);
    line-height: 1;
    flex: none;
}

.lp-faq-mark::before {
    content: "+";
}

.lp-faq-item.open .lp-faq-mark::before {
    content: "−";
}

.lp-faq-a {
    display: none;
    font-size: 14px;
    line-height: 1.65;
    color: var(--lp-soft);
    margin-top: 10px;
    text-wrap: pretty;
}

.lp-faq-item.open .lp-faq-a {
    display: block;
}

/* ===== CTA ===== */
.lp-cta {
    padding: 20px 32px 90px;
}

.lp-cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    padding: 56px 40px;
    text-align: center;
    position: relative;
}

.lp-cta-tape {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 120px;
    height: 26px;
    background: rgba(19, 184, 144, .28);
}

.lp-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--lp-ink);
    text-wrap: pretty;
}

.lp-cta-sub {
    font-family: 'Caveat', cursive;
    font-size: 26px;
    color: var(--lp-accent);
    margin-top: 6px;
}

.lp-cta .lp-btn-lg {
    padding: 16px 40px;
    margin-top: 28px;
}

/* ===== İletişim formu ===== */
.lp-contact {
    padding: 0 32px 90px;
}

.lp-contact-inner {
    max-width: 720px;
    margin: 0 auto;
}

.lp-contact .lp-section-head {
    margin-bottom: 34px;
}

.lp-contact-sub {
    font-size: 15px;
    line-height: 1.65;
    color: var(--lp-muted);
    margin: 14px auto 0;
    max-width: 520px;
    text-wrap: pretty;
}

.lp-contact-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.lp-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.lp-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-muted);
    letter-spacing: .3px;
}

.lp-field input,
.lp-field textarea {
    font-family: inherit;
    font-size: 14.5px;
    color: var(--lp-text);
    background: var(--lp-cream);
    border: 1.5px solid var(--lp-border);
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    transition: border-color .12s ease, box-shadow .12s ease;
    resize: vertical;
}

.lp-field input:focus,
.lp-field textarea:focus {
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 3px rgba(19, 184, 144, .15);
    background: #fff;
}

.lp-field input::placeholder,
.lp-field textarea::placeholder {
    color: var(--lp-faint);
}

.lp-contact-submit {
    align-self: center;
    padding: 15px 48px;
    border: none;
    font-family: inherit;
    cursor: pointer;
    margin-top: 4px;
}

/* Honeypot alanı: ekran dışına taşınır (display:none bazı botlarca algılanıyor). */
.lp-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
}

.lp-alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.lp-alert-success {
    background: rgba(19, 184, 144, .12);
    border: 1.5px solid rgba(19, 184, 144, .4);
    color: #0d8267;
}

.lp-alert-error {
    background: rgba(197, 78, 78, .1);
    border: 1.5px solid rgba(197, 78, 78, .35);
    color: #a53d3d;
}

/* ===== Footer ===== */
.lp-footer {
    background: var(--lp-dark);
    padding: 44px 32px;
}

.lp-footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-footer-brand-name {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    font-weight: 700;
    color: var(--lp-cream);
}

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    font-size: 13px;
    color: #a99e88;
}

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

.lp-footer-copy {
    font-size: 12px;
    color: #6f6657;
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
    .lp-hero {
        grid-template-columns: 1fr;
        padding-bottom: 60px;
    }

    .lp-collage {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .lp-steps,
    .lp-feature-grid,
    .lp-plans {
        grid-template-columns: 1fr;
    }

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

    .lp-plan-featured {
        transform: none;
    }
}

@media (max-width: 720px) {
    .lp-nav-links a.lp-nav-link {
        display: none;
    }

    .lp-hero-title {
        font-size: 42px;
    }

    .lp-section-title {
        font-size: 34px;
    }

    .lp-quote-text {
        font-size: 30px;
    }

    .lp-feature-grid {
        grid-template-columns: 1fr;
    }

    .lp-form-row {
        grid-template-columns: 1fr;
    }

    .lp-collage {
        height: 430px;
    }

    .lp-polaroid-1 { left: 0; }
    .lp-polaroid-2 { right: 0; }
    .lp-polaroid-3 { left: 30px; }
}
