:root {
    /* Brand */
    --burgundy: #450010;
    --burgundy-deep: #2e000a;
    --burgundy-soft: #6b1c2b;
    --cream: #f7cca1;
    --cream-soft: #fde2c8;

    /* Neutrals */
    --ivory: #fbf7f2;
    --white: #ffffff;
    --ink: #1f1419;
    --ink-soft: #5b4a4f;
    --muted: #8a7a7e;
    --line: #ece2d6;

    /* Accents */
    --gold: #c9924a;
    --sage: #8aa897;

    --shadow-sm: 0 4px 14px rgba(69, 0, 16, 0.06);
    --shadow: 0 22px 50px -22px rgba(69, 0, 16, 0.28);
    --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 16px; color: var(--ink-soft); }

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 247, 242, 0.88);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--ink);
}
.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-weight: 500;
    color: var(--ink-soft);
    transition: color .2s;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
}
.nav-cta:hover { background: var(--burgundy-deep); }

.nav-toggle {
    display: none;
    background: none; border: 0; padding: 8px; cursor: pointer;
    flex-direction: column; gap: 5px;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px;
}

/* Hero — light, airy */
.hero {
    position: relative;
    padding: 88px 0 100px;
    background:
        radial-gradient(900px 500px at 95% -5%, rgba(247, 204, 161, 0.45) 0%, transparent 60%),
        radial-gradient(700px 400px at -5% 20%, rgba(201, 146, 74, 0.12) 0%, transparent 60%),
        var(--ivory);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--burgundy);
    background: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}
.accent { color: var(--burgundy); }
.lead {
    font-size: 1.1rem;
    max-width: 540px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    margin: 26px 0 36px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: transform .15s ease, box-shadow .2s, background .2s, color .2s;
    cursor: pointer;
    border: 0;
}
.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 14px 30px -12px rgba(69, 0, 16, 0.45);
}
.btn-primary:hover { background: var(--burgundy-deep); transform: translateY(-1px); }
.btn-ghost {
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--burgundy); color: var(--burgundy); }

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--burgundy);
}
.hero-stats span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Hero visual / phone */
.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 620px;
}
.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(closest-side, rgba(247, 204, 161, 0.55), transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

/* iPhone 15 style mockup */
.phone {
    position: relative;
    width: 300px;
    height: 620px;
    z-index: 1;
    filter: drop-shadow(0 40px 50px rgba(69, 0, 16, 0.28));
}
.phone-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #4a4a4f 0%, #1f1f22 45%, #2f2f33 100%);
    border-radius: 54px;
    padding: 10px;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.08),
        inset 0 0 0 6px #111114,
        inset 0 0 0 7px rgba(255, 255, 255, 0.04);
}
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.phone-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 30px;
    background: #000;
    border-radius: 999px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.6);
    z-index: 3;
}
.phone-island::after {
    content: "";
    position: absolute;
    right: 10px; top: 50%;
    transform: translateY(-50%);
    width: 7px; height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2a3a55 0%, #0a0f1a 70%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone-home {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    z-index: 3;
}
.phone-btn {
    position: absolute;
    background: linear-gradient(90deg, #1c1c1f, #3a3a3e);
    border-radius: 2px;
    z-index: 0;
}
.phone-btn-silent { left: -3px; top: 92px; width: 4px; height: 28px; border-radius: 2px 0 0 2px; }
.phone-btn-volup  { left: -3px; top: 138px; width: 4px; height: 48px; border-radius: 2px 0 0 2px; }
.phone-btn-voldown{ left: -3px; top: 198px; width: 4px; height: 48px; border-radius: 2px 0 0 2px; }
.phone-btn-power  { right: -3px; top: 160px; width: 4px; height: 70px; border-radius: 0 2px 2px 0; }

/* Sections */
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-head p { font-size: 1.05rem; }

/* Features — white surface, varied card accents */
.features { padding: 96px 0; background: var(--white); }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.feature-icon {
    width: 48px; height: 48px;
    background: var(--cream-soft);
    color: var(--burgundy);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.feature:nth-child(2) .feature-icon { background: rgba(201, 146, 74, 0.18); color: var(--gold); }
.feature:nth-child(3) .feature-icon { background: rgba(138, 168, 151, 0.22); color: #4d7560; }
.feature:nth-child(4) .feature-icon { background: var(--cream); color: var(--burgundy); }
.feature:nth-child(5) .feature-icon { background: rgba(201, 146, 74, 0.18); color: var(--gold); }
.feature:nth-child(6) .feature-icon { background: rgba(138, 168, 151, 0.22); color: #4d7560; }
.feature p { margin: 0; font-size: 0.95rem; }

/* How — soft cream */
.how { padding: 96px 0; background: var(--cream-soft); }
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}
.steps li {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--line);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.step-num {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--burgundy);
    color: var(--white);
    font-weight: 800;
    display: grid; place-items: center;
    margin-bottom: 16px;
}
.steps li:nth-child(2) .step-num { background: var(--gold); }
.steps li:nth-child(3) .step-num { background: #4d7560; }
.steps p { margin: 0; }

/* About */
.about { padding: 96px 0; background: var(--ivory); }
.about-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-text p { font-size: 1.05rem; }
.checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}
.checklist li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 500;
}
.checklist li::before {
    content: "";
    position: absolute;
    left: 0; top: 6px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background-color: var(--burgundy);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7cca1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
.about-card {
    background: var(--burgundy);
    color: var(--cream);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.about-card::after {
    content: "";
    position: absolute;
    right: -40px; top: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(closest-side, rgba(247, 204, 161, 0.25), transparent 70%);
    pointer-events: none;
}
.about-card blockquote {
    margin: 0 0 16px;
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.about-card cite {
    font-style: normal;
    color: var(--cream);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* CTA — keep dramatic burgundy */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 80% 120%, rgba(247, 204, 161, 0.18), transparent 70%);
    pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta h2 { color: var(--white); }
.cta p { color: rgba(247, 204, 161, 0.9); font-size: 1.1rem; margin-bottom: 28px; }

.store-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    min-width: 180px;
    transition: transform .15s, background .2s, border-color .2s;
}
.store-badge:hover { background: #111; transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.45); }
.store-icon { width: 26px; height: 26px; flex-shrink: 0; color: #fff; }
.store-text { display: inline-flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-sub { font-size: 0.7rem; opacity: 0.85; letter-spacing: 0.02em; }
.store-main { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em; }

/* Footer */
.footer {
    background: var(--burgundy-deep);
    color: var(--cream);
    padding: 36px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--cream); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(247, 204, 161, 0.85); font-size: 0.95rem; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: rgba(247, 204, 161, 0.65); font-size: 0.85rem; }

/* Legal page */
.legal-hero {
    padding: 88px 0 40px;
    background:
        radial-gradient(900px 500px at 90% -10%, rgba(247, 204, 161, 0.35) 0%, transparent 60%),
        var(--ivory);
    text-align: center;
}
.legal-hero h1 { margin-bottom: 14px; color: var(--burgundy); }
.legal-hero .lead {
    max-width: 640px;
    margin: 0 auto 12px;
    color: var(--ink-soft);
    font-size: 1.1rem;
}
.legal-updated { color: var(--muted); font-size: 0.9rem; margin: 0; }

.legal { padding: 56px 0 96px; background: var(--white); }
.legal-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}
.legal-toc {
    position: sticky;
    top: 88px;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
}
.legal-toc h3 {
    color: var(--burgundy);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 14px;
}
.legal-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.legal-toc li { counter-increment: toc; margin-bottom: 10px; }
.legal-toc a {
    display: block;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.legal-toc a:hover { color: var(--burgundy); border-color: var(--burgundy); }
.legal-toc a::before {
    content: counter(toc) ". ";
    color: var(--burgundy);
    font-weight: 700;
}

.legal-content section { margin-bottom: 48px; scroll-margin-top: 96px; }
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h2 {
    color: var(--burgundy);
    font-size: 1.6rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--line);
}
.legal-content h3 { color: var(--ink); font-size: 1.1rem; margin: 24px 0 10px; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul, .legal-content ol { padding-left: 22px; margin: 0 0 14px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a {
    color: var(--burgundy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--burgundy-deep); }
.legal-content strong { color: var(--ink); }

.legal-callout {
    background: var(--burgundy);
    color: var(--cream);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}
.legal-callout h2 { color: var(--white); border-bottom-color: rgba(247, 204, 161, 0.25); }
.legal-callout h3 { color: var(--white); }
.legal-callout p, .legal-callout li { color: rgba(247, 204, 161, 0.9); }
.legal-callout strong { color: var(--white); }
.legal-callout a { color: var(--cream); }
.legal-callout a:hover { color: var(--white); }
.legal-callout-lead {
    font-size: 1.05rem;
    background: rgba(0, 0, 0, 0.18);
    padding: 14px 16px;
    border-radius: 12px;
    border-left: 4px solid var(--cream);
}

.legal-contact { font-size: 1.15rem; font-weight: 700; }

/* Contact page */
.contact { padding: 56px 0 96px; background: var(--white); }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}
.contact-info h2 { color: var(--burgundy); }
.contact-info p { font-size: 1.05rem; }
.eyebrow-light { background: var(--cream-soft); color: var(--burgundy); box-shadow: none; }

.contact-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 14px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
}
.contact-icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: var(--cream-soft);
    color: var(--burgundy);
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 2px;
}
.contact-value { color: var(--ink); font-weight: 600; }
.contact-list a {
    color: var(--burgundy);
    font-weight: 700;
    text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; }

.contact-form {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form label {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
}
.contact-form input,
.contact-form textarea {
    font: inherit;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(69, 0, 16, 0.08);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: max-content; margin-top: 4px; }
.contact-form .btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { font-size: 0.85rem; color: var(--muted); margin: 0; }
.form-status { margin: 4px 0 0; font-size: 0.95rem; min-height: 1.2em; }
.form-status.success { color: #2e7d4f; }
.form-status.error { color: #b00020; }

/* Başarı modalı */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 14, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.modal.open { display: flex; opacity: 1; }
.modal-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px 28px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(10px);
    transition: transform 0.25s ease;
}
.modal.open .modal-card { transform: translateY(0); }
.modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #e7f5ec;
    color: #2e7d4f;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-card h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: var(--burgundy);
}
.modal-card p {
    margin: 0 0 20px;
    color: var(--muted);
}
.modal-card .btn { width: 100%; }

.map-section { padding: 0 0 96px; background: var(--white); }
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 7;
    background: var(--ivory);
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.95);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { min-height: 640px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; }
    .legal-inner { grid-template-columns: 1fr; }
    .legal-toc { position: static; }
    .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .nav-links { display: none; position: absolute; top: 72px; right: 0; left: 0;
        background: var(--white); flex-direction: column; padding: 18px 24px; gap: 16px;
        border-bottom: 1px solid var(--line); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: inline-flex; }
    .hero { padding: 56px 0 72px; }
    .features, .how, .about { padding: 72px 0; }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .map-wrap { aspect-ratio: 4 / 5; }
}
