/* ============================================================
   SiteWeb — AI Partner tanıtım (marketing) tek sayfa sitesi
   Marka renkleri mobil uygulamanın Resources/Styles/Colors.xaml
   dosyasıyla birebir aynı (Primary #512BD4, pastel mod renkleri vb.)
   ============================================================ */

:root {
    --primary: #512BD4;
    --primary-light: #7C5CFA;
    --pink-accent: #DB2777;
    --gradient-brand: linear-gradient(135deg, #512BD4 0%, #9333EA 55%, #DB2777 100%);
    --gradient-text: linear-gradient(90deg, #4F46E5, #9333EA 60%, #DB2777);

    --off-black: #1f1f1f;
    --gray-500: #6E6E6E;
    --gray-400: #919191;
    --gray-300: #ACACAC;
    --gray-100: #E1E1E1;
    --white: #ffffff;

    --secondary: #DFD8F7;
    --hero-bg: #F5F3FC;
    --pastel-purple: #EDE9FE;
    --pastel-pink: #FCE7F3;
    --pastel-blue: #DBEAFE;

    --page-bg: #FBFAFE;
    --border: #ECE8F7;
    --shadow-soft: 0 20px 60px rgba(81, 43, 212, .10);
    --shadow-card: 0 10px 30px rgba(31, 31, 31, .06);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --radius-pill: 999px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.siteweb-body {
    margin: 0;
    background: var(--page-bg);
    color: var(--off-black);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.siteweb-body img {
    max-width: 100%;
    display: block;
}

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

/* ---------- Ortak: pill rozet, gradient buton, outline buton ---------- */

.sw-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: var(--pastel-purple);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
}

.sw-pill svg {
    width: 15px;
    height: 15px;
}

.sw-gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    white-space: nowrap;
}

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

.sw-btn-primary {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(81, 43, 212, .28);
}

.sw-btn-primary:hover {
    box-shadow: 0 16px 34px rgba(81, 43, 212, .36);
    color: var(--white);
}

.sw-btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 1.5px solid var(--secondary);
}

.sw-btn-outline:hover {
    background: var(--hero-bg);
    color: var(--primary);
}

.sw-btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}

.sw-btn-block {
    width: 100%;
}

/* ---------- Nav ---------- */

.sw-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 20px 0;
}

.sw-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 10px 12px 10px 20px;
    box-shadow: var(--shadow-card);
}

.sw-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--off-black);
    font-weight: 800;
    font-size: 19px;
}

.sw-brand img {
    width: 30px;
    height: 30px;
    border-radius: 9px;
}

.sw-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sw-nav-links a {
    color: var(--off-black);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    opacity: .85;
}

.sw-nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.sw-nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sw-login-link {
    color: var(--off-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    opacity: .85;
}

.sw-login-link:hover {
    opacity: 1;
}

.sw-nav-toggle {
    display: none;
}

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

.sw-hero {
    padding: 64px 0 40px;
    overflow: hidden;
}

.sw-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.sw-hero h1 {
    font-size: 52px;
    line-height: 1.12;
    font-weight: 800;
    margin: 22px 0 18px;
    letter-spacing: -.02em;
}

.sw-hero p.sw-lead {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 480px;
    margin: 0 0 28px;
}

.sw-hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.sw-hero-badges {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--gray-500);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 30px;
}

.sw-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sw-hero-badges svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.sw-avatar-row {
    display: flex;
    align-items: center;
}

.sw-avatar-row .sw-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 4px 14px rgba(31, 31, 31, .12);
    object-fit: cover;
    margin-left: -14px;
    background: var(--secondary);
}

.sw-avatar-row .sw-avatar:first-child {
    margin-left: 0;
}

.sw-avatar-more {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -14px;
    background: var(--gradient-brand);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(31, 31, 31, .12);
}

.sw-avatar-caption {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray-500);
}

/* Hero sağ görsel */

.sw-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.sw-hero-photo-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--hero-bg);
    aspect-ratio: 4 / 5;
}

.sw-hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-hero-photo-frame .sw-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-color: var(--hero-bg);
}

.sw-float-bubble {
    position: absolute;
    background: var(--white);
    border-radius: 18px;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    max-width: 190px;
}

.sw-float-bubble--1 {
    top: 6%;
    left: -8%;
}

.sw-float-bubble--2 {
    top: 28%;
    right: -12%;
    text-align: right;
}

.sw-float-bubble--3 {
    top: 52%;
    left: -14%;
}

.sw-heart-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(81, 43, 212, .35);
}

.sw-heart-btn svg {
    width: 20px;
    height: 20px;
}

.sw-hero-card {
    position: absolute;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
    width: 88%;
    background: var(--white);
    border-radius: 22px;
    padding: 20px 22px;
    box-shadow: var(--shadow-soft);
}

.sw-online-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #16A34A;
    margin-bottom: 6px;
}

.sw-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
}

.sw-hero-card h3 {
    font-size: 22px;
    margin: 0 0 6px;
}

.sw-hero-card p {
    font-size: 13.5px;
    color: var(--gray-500);
    margin: 0 0 16px;
}

/* ---------- Genel section başlığı ---------- */

.sw-section {
    padding: 96px 0 0;
}

.sw-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.sw-section-head .sw-pill {
    margin-bottom: 18px;
}

.sw-section-head h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 0 0 14px;
}

.sw-section-head p {
    color: var(--gray-500);
    font-size: 16px;
    margin: 0;
}

/* ---------- Mod kartları ---------- */

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

.sw-mode-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
}

.sw-mode-card--gossip {
    background: linear-gradient(180deg, var(--pastel-purple), #fff 65%);
}

.sw-mode-card--friend {
    background: linear-gradient(180deg, var(--pastel-blue), #fff 65%);
}

.sw-mode-card--romantic {
    background: linear-gradient(180deg, var(--pastel-pink), #fff 65%);
}

.sw-mode-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--secondary);
}

.sw-mode-photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    background: var(--secondary);
}

.sw-mode-body {
    padding: 22px 22px 26px;
}

.sw-mode-body .sw-pill {
    background: var(--white);
    margin-bottom: 14px;
}

.sw-mode-body h3 {
    font-size: 21px;
    margin: 0 0 8px;
}

.sw-mode-body p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0 0 16px;
}

.sw-mode-quote {
    background: var(--white);
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    display: inline-block;
}

/* ---------- Hafıza / "seni tanır" bölümü ---------- */

.sw-memory {
    margin-top: 110px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sw-memory h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sw-memory h2 svg {
    width: 26px;
    height: 26px;
    color: var(--pink-accent);
}

.sw-memory > div > p {
    color: var(--gray-500);
    font-size: 15.5px;
    max-width: 460px;
    margin: 0 0 26px;
}

.sw-memory-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.sw-memory-fact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: var(--shadow-card);
}

.sw-memory-fact .sw-emoji {
    font-size: 18px;
}

.sw-memory-bot-bubble {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--hero-bg);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 600;
    max-width: 420px;
}

.sw-memory-bot-bubble img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Telefon mockup */

.sw-phone {
    position: relative;
    justify-self: center;
}

.sw-phone-frame {
    width: 300px;
    background: var(--off-black);
    border-radius: 40px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

.sw-phone-notch {
    width: 90px;
    height: 22px;
    background: var(--off-black);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    top: 14px;
    z-index: 2;
}

.sw-phone-screen {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    padding-bottom: 10px;
}

.sw-phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 16px 14px;
    border-bottom: 1px solid var(--border);
}

.sw-phone-header img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--secondary);
}

.sw-phone-header .sw-placeholder-round {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.sw-phone-header strong {
    display: block;
    font-size: 14px;
}

.sw-phone-header span {
    font-size: 11.5px;
    color: #16A34A;
    font-weight: 600;
}

.sw-phone-chat {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sw-chat-bubble {
    max-width: 78%;
    padding: 9px 13px;
    border-radius: 16px;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.35;
}

.sw-chat-bubble--them {
    align-self: flex-start;
    background: var(--hero-bg);
    border-bottom-left-radius: 4px;
}

.sw-chat-bubble--me {
    align-self: flex-end;
    background: var(--gradient-brand);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.sw-phone-input {
    margin: 6px 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 8px 8px 8px 14px;
    font-size: 12px;
    color: var(--gray-400);
}

.sw-phone-input .sw-send {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
}

.sw-phone-input .sw-send svg {
    width: 13px;
    height: 13px;
}

.sw-phone-annotation {
    position: absolute;
    right: -18px;
    bottom: 30px;
    background: var(--white);
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-card);
    max-width: 190px;
}

/* ---------- Premium ---------- */

.sw-feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-bottom: 56px;
}

.sw-feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.sw-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pastel-purple);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.sw-feature-icon svg {
    width: 22px;
    height: 22px;
}

.sw-feature-card h4 {
    font-size: 14.5px;
    margin: 0 0 6px;
}

.sw-feature-card p {
    font-size: 12.5px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.45;
}

.sw-pricing-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.sw-pricing-card {
    position: relative;
    width: 100%;
    max-width: 340px;
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.sw-pricing-card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px);
}

.sw-pricing-ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.sw-pricing-card h3 {
    font-size: 20px;
    margin: 6px 0 18px;
}

.sw-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 26px;
}

.sw-price-amount {
    font-size: 46px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sw-price-period {
    font-size: 15px;
    color: var(--gray-500);
    font-weight: 600;
}

.sw-pricing-list {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sw-pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.sw-pricing-list svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.sw-pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 16px;
}

.sw-pricing-note svg {
    width: 14px;
    height: 14px;
}

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

.sw-final-cta {
    background: var(--hero-bg);
    border-radius: 36px;
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 96px;
}

.sw-final-cta h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 14px;
}

.sw-final-cta p {
    color: var(--gray-500);
    font-size: 15.5px;
    margin: 0 0 26px;
    max-width: 420px;
}

.sw-final-photos {
    position: relative;
    height: 260px;
}

.sw-final-photo {
    position: absolute;
    width: 150px;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 4px solid var(--white);
    background: var(--secondary);
}

.sw-final-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-final-photo .sw-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    background: var(--secondary);
}

.sw-final-photo-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--white);
    border-radius: var(--radius-pill);
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sw-final-photo-badge svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
}

.sw-final-quote {
    position: absolute;
    top: -6px;
    right: 4px;
    background: var(--white);
    border-radius: 14px;
    padding: 9px 14px;
    font-size: 12.5px;
    font-weight: 700;
    box-shadow: var(--shadow-card);
}

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

.sw-footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 34px;
}

.sw-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.sw-footer-links {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.sw-footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
}

.sw-footer-links a:hover {
    color: var(--primary);
}

.sw-footer-social {
    display: flex;
    gap: 12px;
}

.sw-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--hero-bg);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sw-footer-social svg {
    width: 16px;
    height: 16px;
}

.sw-footer-copy {
    text-align: center;
    color: var(--gray-400);
    font-size: 12.5px;
    margin-top: 26px;
}

/* ---------- İçerik sayfaları (Hakkımızda/İletişim, Kullanım Şartları/Gizlilik, SSS) ---------- */

.sw-page-header {
    padding: 56px 0 40px;
    text-align: center;
}

.sw-page-header h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 12px;
}

.sw-page-header p {
    color: var(--gray-500);
    font-size: 15.5px;
    max-width: 560px;
    margin: 0 auto;
}

.sw-page-body {
    padding-bottom: 90px;
}

.sw-content-list {
    max-width: 760px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sw-content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: var(--shadow-card);
    scroll-margin-top: 100px;
}

.sw-content-card h3 {
    font-size: 17px;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sw-content-card .sw-content-index {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pastel-purple);
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sw-content-card p {
    font-size: 14.5px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
    white-space: pre-line;
}

.sw-faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.sw-faq-item summary {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.sw-faq-item summary::after {
    content: "+";
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform .15s ease;
}

.sw-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.sw-faq-item .sw-faq-answer {
    padding: 0 24px 20px;
    font-size: 14.5px;
    color: var(--gray-500);
    line-height: 1.6;
    white-space: pre-line;
}

.sw-contact-section {
    max-width: 760px;
    margin: 0 auto;
    background: var(--hero-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.sw-contact-section h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
}

.sw-contact-section > p {
    color: var(--gray-500);
    font-size: 14.5px;
    margin: 0 0 26px;
}

.sw-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.sw-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 18px;
    text-decoration: none;
    color: var(--off-black);
    box-shadow: var(--shadow-card);
}

.sw-contact-row .sw-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pastel-purple);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sw-contact-row .sw-contact-icon svg {
    width: 18px;
    height: 18px;
}

.sw-contact-row strong {
    display: block;
    font-size: 14px;
}

.sw-contact-row span {
    font-size: 12.5px;
    color: var(--gray-500);
}

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

@media (max-width: 991px) {
    .sw-hero-grid, .sw-memory {
        grid-template-columns: 1fr;
    }

    .sw-hero-visual {
        margin-top: 60px;
    }

    .sw-phone {
        margin-top: 60px;
    }

    .sw-mode-grid {
        grid-template-columns: 1fr;
    }

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

    .sw-final-cta {
        grid-template-columns: 1fr;
        padding: 44px 28px;
    }

    .sw-final-photos {
        height: 220px;
    }

    .sw-nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    .sw-hero h1 {
        font-size: 36px;
    }

    .sw-section-head h2 {
        font-size: 28px;
    }

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

    .sw-final-cta h2 {
        font-size: 26px;
    }

    .sw-hero-card {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 18px;
    }

    .sw-pricing-card--featured {
        transform: none;
    }

    .sw-contact-grid {
        grid-template-columns: 1fr;
    }

    .sw-contact-section {
        padding: 28px 22px;
    }

    .sw-float-bubble {
        display: none;
    }
}

/* ---------- Hesabım (giriş + hesap yönetimi) ---------- */

.sw-auth-card {
    max-width: 420px;
    margin: 0 auto 60px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
}

.sw-auth-card h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 22px;
    text-align: center;
}

.sw-auth-field {
    margin-bottom: 16px;
}

.sw-auth-field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.sw-auth-field input {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--secondary);
    font-size: 14.5px;
    font-family: inherit;
    color: var(--off-black);
}

.sw-auth-field input:focus {
    outline: none;
    border-color: var(--primary);
}

.sw-auth-error {
    background: #FCE7E7;
    color: #B42318;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 18px;
}

.sw-account-card {
    max-width: 480px;
    margin: 0 auto 60px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
}

.sw-account-identity {
    text-align: center;
    margin-bottom: 28px;
}

.sw-account-identity strong {
    display: block;
    font-size: 18px;
}

.sw-account-identity span {
    color: var(--gray-500);
    font-size: 14px;
}

.sw-account-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sw-btn-danger {
    background: var(--white);
    color: #B42318;
    border: 1.5px solid #F3A9A0;
}

.sw-btn-danger:hover {
    background: #FCE7E7;
    color: #B42318;
}

.sw-account-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 22px 0;
}

/* ---------- Başarı modalı ---------- */

.sw-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(31, 31, 31, .45);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sw-modal-overlay.sw-modal-open {
    display: flex;
}

.sw-modal {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    max-width: 380px;
    width: 100%;
    padding: 32px 28px;
    text-align: center;
}

.sw-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pastel-purple);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sw-modal h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px;
}

.sw-modal p {
    color: var(--gray-500);
    font-size: 14px;
    margin: 0 0 24px;
}
