@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&family=Great+Vibes&display=swap');

:root {
    --bg: #f4fbf5;
    --surface: #ffffff;
    --surface-2: #f7fcf8;
    --text: #1d2e22;
    --muted: #687b6f;
    --primary: #2f8f46;
    --primary-dark: #25733a;
    --primary-light: #6fcb84;
    --border: #deede1;
    --shadow: 0 12px 32px rgba(31, 74, 44, 0.08);
    --badge: #e9f8ec;
    --hero-grad-1: #f7fdf8;
    --hero-grad-2: #eef9f0;
}

body.dark-mode {
    --bg: #0f1712;
    --surface: #18221b;
    --surface-2: #202d24;
    --text: #edf7ef;
    --muted: #b6cabc;
    --primary: #59c96f;
    --primary-dark: #43a85a;
    --primary-light: #7fdd92;
    --border: #304235;
    --shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    --badge: #1f2f24;
    --hero-grad-1: #17211a;
    --hero-grad-2: #132018;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    animation: pageFade 0.45s ease;
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

img {
    max-width: 100%;
}

.top-flash,
.error-box {
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.top-flash {
    width: min(1200px, calc(100% - 40px));
    margin: 18px auto 0;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
}

.error-box {
    background: #ffeaea;
    color: #be2d2d;
    border: 1px solid #ffc9c9;
    padding: 12px 14px;
    margin-bottom: 12px;
    text-align: left;
    font-size: 14px;
}

body.dark-mode .error-box {
    background: #3a1d1d;
    color: #ffb2b2;
    border-color: #6a3333;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

body.dark-mode .navbar {
    background: rgba(18, 18, 18, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.nav-left:hover {
    opacity: 0.88;
}

.nav-logo {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    color: #2f8f46;
    position: relative;
}

/* altına çizgi */
.brand-title::after {
    content: "";
    display: block;
    width: 67%;
    height: 3px;
    margin-top: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f8f46, #9ad6a8);
}

.brand-subtitle {
    font-size: 12px;
    color: #7a8f83;
    margin-top: 6px;
    letter-spacing: 0.4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
}

.nav-home {
    font-weight: 600;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    color: var(--text);
}

.nav-btn,
.theme-btn,
.primary-btn,
.secondary-btn,
.mini-btn,
.full-btn,
.comment-form button,
.form-card button,
.tool-form button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 16px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.nav-btn,
.primary-btn,
.comment-form button,
.form-card button,
.full-btn,
.tool-form button {
    background: linear-gradient(135deg, #34c759, #2ea94f);
    color: #fff;
    box-shadow: 0 10px 20px rgba(47, 143, 70, 0.22);
}

.nav-btn:hover,
.primary-btn:hover,
.comment-form button:hover,
.form-card button:hover,
.full-btn:hover,
.tool-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(47, 143, 70, 0.28);
}

.theme-btn,
.secondary-btn,
.mini-btn {
    background: rgba(47, 143, 70, 0.08);
    color: var(--primary);
    border: 1px solid rgba(47, 143, 70, 0.18);
}

.theme-btn:hover,
.secondary-btn:hover,
.mini-btn:hover {
    background: var(--badge);
    transform: translateY(-2px);
}

.user-badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 8px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border: none;
}

.theme-toggle-btn,
.contact-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: var(--shadow);
    transition: all 0.25s ease;
}

.theme-toggle-btn:hover,
.contact-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}

.theme-toggle-btn:active,
.contact-toggle:active {
    transform: scale(0.96);
}

/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    list-style: none;
    background: transparent;
    border: none;
    font: inherit;
    color: var(--text);
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
    user-select: none;
}

.dropdown-btn::-webkit-details-marker {
    display: none;
}

.dropdown-btn:hover {
    background: rgba(47, 143, 70, 0.08);
    color: var(--primary);
}

.dropdown[open] .dropdown-btn {
    color: var(--primary);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px 0;
    z-index: 1000;
}

.dropdown[open] .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: rgba(47, 143, 70, 0.08);
    color: var(--primary);
}

/* CONTACT */
.contact-wrapper {
    position: relative;
}

.contact-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.dark-mode .contact-dropdown {
    background: #1f1f1f;
    color: white;
}

.contact-dropdown p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
}

.contact-dropdown strong {
    font-size: 15px;
}

/* GLOBAL SECTIONS */
.hero,
.features,
.promo-banner,
.page-hero,
.pricing-grid,
.blog-layout,
.dashboard-grid,
.video-section,
.how-it-works,
.platforms-section,
.reviews-section,
.faq-section,
.download-center {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-header h2,
.section-title,
.features-hero h1,
.about-hero h1,
.tool-hero h1 {
    letter-spacing: -0.7px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 36px;
    margin: 28px auto 40px;
    padding: 56px;
    background:
        radial-gradient(circle at top right, rgba(47, 143, 70, 0.16), transparent 35%),
        linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, transparent, rgba(255, 255, 255, 0.04));
    pointer-events: none;
}

.hero-text {
    padding: 8px 0;
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 143, 70, 0.10);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 24px;
    max-width: 760px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-image-box {
    background: linear-gradient(145deg, var(--hero-grad-1), var(--hero-grad-2));
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow);
    padding: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
}

.logo-slogan {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    text-align: center;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* SHARED CARDS */
.feature-card,
.step-card,
.platform-card,
.faq-card,
.pricing-card,
.blog-card,
.comment-card,
.dashboard-card,
.qr-card,
.stat-card,
.info-box,
.showcase-card {
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.step-card:hover,
.platform-card:hover,
.faq-card:hover,
.pricing-card:hover,
.blog-card:hover,
.comment-card:hover,
.dashboard-card:hover,
.qr-card:hover,
.stat-card:hover,
.info-box:hover,
.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
    border-color: rgba(47, 143, 70, 0.25);
}

.feature-card h3,
.step-card h3,
.platform-card h3,
.faq-card h3,
.blog-card h3,
.comment-card h4,
.dashboard-card h3,
.qr-card h3,
.stat-card h3,
.info-box h3,
.showcase-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card h3,
.platform-card h3,
.dashboard-card h3,
.showcase-card h3 {
    letter-spacing: -0.3px;
}

.feature-card p,
.step-card p,
.platform-card p,
.faq-card p,
.blog-card p,
.comment-card p,
.dashboard-card p,
.pricing-card p,
.form-card p,
.switch-text,
.back-link,
.qr-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.stat-card {
    text-align: center;
    padding: 22px;
}

.stat-card h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.step-card span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: var(--badge);
    color: var(--primary);
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 18px;
}

.video-section,
.features,
.how-it-works,
.platforms-section,
.reviews-section,
.faq-section {
    padding: 26px 0 48px;
}

.video-placeholder {
    background: linear-gradient(145deg, var(--hero-grad-1), var(--hero-grad-2));
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    min-height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.video-inner {
    text-align: center;
}

.video-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.video-inner p {
    color: var(--muted);
    line-height: 1.8;
}

.feature-grid,
.steps-grid,
.platform-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* PROMO */
.promo-banner {
    margin: 22px auto 52px;
    padding: 42px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 14px 34px rgba(47, 143, 70, 0.2);
}

.promo-banner h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-size: 34px;
}

.promo-banner p {
    font-size: 16px;
    line-height: 1.7;
}

/* FOOTER */
.footer {
    width: min(1200px, calc(100% - 40px));
    margin: 60px auto 40px;
    padding: 36px 28px;
    border-top: 1px solid var(--border);
    border-radius: 26px;
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    box-shadow: var(--shadow);
}

.footer h3,
.footer h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 24px;
}

.footer p,
.footer a {
    color: var(--muted);
    line-height: 1.9;
    font-size: 15px;
}

/* FORMS */
.center-box {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 34px 15px;
}

.form-card,
.tool-card,
.about-card,
.features-intro-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.form-card {
    width: 100%;
    max-width: 540px;
    padding: 36px;
    text-align: center;
}

.form-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 12px;
}

.form-card h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 34px;
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.form-card input,
.form-card select,
.comment-form input,
.comment-form textarea,
.comment-form select,
.tool-form input,
.tool-form select,
input,
select,
textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text);
    font-size: 15px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-card input:focus,
.form-card select:focus,
.comment-form input:focus,
.comment-form textarea:focus,
.comment-form select:focus,
.tool-form input:focus,
.tool-form select:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(47, 143, 70, 0.55);
    box-shadow: 0 0 0 4px rgba(47, 143, 70, 0.12);
}

.switch-text {
    margin-top: 18px;
}

.switch-text a,
.back-link {
    color: var(--primary);
    font-weight: 600;
}

.back-link {
    display: inline-block;
    margin-top: 16px;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 48px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--muted);
    padding: 0;
    line-height: 1;
}

.toggle-password:hover {
    color: var(--primary);
}

/* PAGE HERO */
.page-hero {
    text-align: center;
    padding: 58px 0 30px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--muted);
    line-height: 1.8;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-bottom: 32px;
}

.pricing-card {
    position: relative;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 12px;
}

.price {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.price span {
    font-size: 18px;
    color: var(--muted);
    margin-left: 6px;
    font-weight: 500;
}

.pricing-card ul {
    margin: 18px 0 22px 18px;
    color: var(--muted);
    line-height: 1.95;
    font-size: 15px;
}

.featured {
    border: 2px solid var(--primary);
    transform: translateY(-6px);
}

.featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.yearly-card {
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.full-btn {
    width: 100%;
    text-align: center;
}

/* BLOG / COMMENTS */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding-bottom: 40px;
}

.blog-posts,
.comments-list,
.reviews-list {
    display: grid;
    gap: 18px;
}

.comment-section h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
    font-size: 32px;
}

.comment-form {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.comment-form textarea {
    min-height: 130px;
    resize: vertical;
}

.rating-line {
    font-weight: 600;
    color: var(--primary);
}

/* DASHBOARD */
.dashboard-hero {
    width: min(1200px, calc(100% - 40px));
    margin: 40px auto 0;
}

.dashboard-welcome {
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.dashboard-welcome h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 10px;
}

.dashboard-welcome p {
    color: var(--muted);
    line-height: 1.8;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 26px 0 40px;
}

.mini-downloads,
.success-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    justify-content: center;
}

.small-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.checkbox-line {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
    text-align: left;
}

.account-info {
    text-align: left;
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

/* DOWNLOADS */
.download-center {
    padding-bottom: 40px;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.qr-card {
    text-align: center;
}

.qr-card img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 10px auto 14px;
    display: block;
    border-radius: 18px;
    background: var(--surface-2);
    padding: 10px;
}

/* ADMIN TABLE */
.admin-table-section {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto 50px;
}

.admin-table-wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow-x: auto;
    padding: 18px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
}

.admin-table th {
    background: var(--surface-2);
    color: var(--primary);
    font-weight: 700;
}

.admin-table tr:hover td {
    background: rgba(47, 143, 70, 0.04);
}

.table-delete-btn {
    background: #d9534f;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 600;
}

.table-delete-btn:hover {
    opacity: 0.9;
}

.admin-lock-text {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

/* ABOUT */
.about-hero {
    width: min(1100px, calc(100% - 40px));
    margin: 40px auto 20px;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-hero p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about-card {
    width: min(1100px, calc(100% - 40px));
    margin: 20px auto 50px;
    padding: 40px;
}

.about-card p {
    font-size: 17px;
    line-height: 1.95;
    color: var(--text);
    margin-bottom: 18px;
    text-align: center;
}

.about-signature {
    text-align: center;
    margin-top: 18px;
    font-family: 'Great Vibes', cursive;
    font-size: 34px;
    color: var(--primary);
}

.highlight-text {
    color: var(--primary);
    font-weight: 600;
}

.info-grid {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-box {
    padding: 26px;
    text-align: center;
}

.info-box h3 {
    font-size: 24px;
}

/* TOOLS */
.tool-hero {
    width: min(1100px, calc(100% - 40px));
    margin: 50px auto 30px;
    text-align: center;
}

.tool-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.tool-hero p {
    color: var(--muted);
    font-size: 17px;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.9;
}

.tool-container {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto 60px;
}

.tool-card {
    padding: 36px;
    transition: 0.3s;
}

.tool-card:hover {
    transform: translateY(-3px);
}

.tool-form {
    display: grid;
    gap: 18px;
}

.result-box {
    margin-top: 25px;
    background: linear-gradient(135deg, #f0fff5, #e6f7ec);
    border: 1px solid #c8e6d1;
    border-radius: 20px;
    padding: 22px;
    text-align: center;
}

.result-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 22px;
}

.result-box p {
    font-size: 18px;
    color: #1e3a2f;
    margin: 4px 0;
    font-weight: 500;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.result-grid .result-box {
    background: linear-gradient(135deg, #ffffff, #f8f9fb);
    border: 1px solid var(--border);
}

.result-grid .result-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.bki-normal { color: #2e9c55; }
.bki-zayıf { color: #e67e22; }
.bki-fazla-kilolu { color: #d35400; }
.bki-obezite-sınıf-i,
.bki-obezite-sınıf-ii,
.bki-obezite-sınıf-iii { color: #c0392b; }

.water-result {
    background: linear-gradient(135deg, #eef8ff, #dff3ff);
    border: 1px solid #bfe3f7;
}

.water-result h3 {
    color: #1d6fa5;
}

.water-result p {
    color: #124463;
}

.water-note {
    margin-top: 12px;
    font-size: 14px !important;
    line-height: 1.8;
    color: #4b6c80 !important;
}

/* SHOWCASE */
.centered-section {
    text-align: center;
}

.app-showcase,
.app-preview-section {
    width: min(1200px, calc(100% - 40px));
    margin: 50px auto 60px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.showcase-card {
    padding: 22px;
    text-align: center;
}

.showcase-card h3 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 22px;
}

.showcase-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.showcase-image,
.feature-section-image {
    background: linear-gradient(135deg, #f7f8f8, #eef1ef);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.showcase-image {
    width: 100%;
    height: 260px;
    display: block;
}

.showcase-image img,
.feature-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.showcase-card:hover .showcase-image img,
.feature-section-block:hover .feature-section-image img {
    transform: scale(1.03);
}

.placeholder-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef7f0, #dcefe2);
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.placeholder-box span {
    max-width: 200px;
    line-height: 1.6;
}

/* FEATURES PAGE */
.features-hero {
    width: min(1100px, calc(100% - 40px));
    margin: 50px auto 25px;
    text-align: center;
}

.features-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 14px;
}

.features-hero p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.9;
    font-size: 17px;
}

.features-intro-card {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto 40px;
    padding: 32px;
}

.features-intro-card p {
    line-height: 1.95;
    color: var(--text);
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-section-block {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 26px;
}

.feature-section-block.reverse .feature-section-image {
    order: 2;
}

.feature-section-block.reverse .feature-section-text {
    order: 1;
}

.feature-section-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.feature-section-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.feature-section-text h2 {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 14px;
}

.feature-section-text p {
    line-height: 1.9;
    color: var(--text);
    font-size: 16px;
    margin-bottom: 12px;
}

.features-summary-box {
    width: min(1100px, calc(100% - 40px));
    margin: 10px auto 60px;
    text-align: center;
    background: linear-gradient(135deg, #eef8f1, #e5f3e9);
    border: 1px solid #d2e6d8;
    border-radius: 26px;
    padding: 34px;
}

.features-summary-box h2 {
    color: var(--primary);
    font-size: 34px;
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
}

.features-summary-box p {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.9;
    color: #284133;
    font-size: 16px;
}

/* FEATURE SLIDER */
.feature-slider {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f8f8f8;
}

.feature-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-slider img.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 22px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero,
    .blog-layout,
    .pricing-grid,
    .dashboard-grid,
    .feature-grid,
    .steps-grid,
    .platform-grid,
    .faq-grid,
    .footer,
    .qr-grid,
    .stats-row,
    .showcase-grid,
    .feature-section-block {
        grid-template-columns: 1fr;
    }

    .feature-section-block.reverse .feature-section-image,
    .feature-section-block.reverse .feature-section-text {
        order: initial;
    }

    .hero {
        padding-top: 36px;
    }

    .navbar {
        padding: 16px 20px;
        align-items: flex-start;
        gap: 16px;
        flex-direction: column;
    }

    .nav-links {
        width: 100%;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-header h2,
    .page-hero h1,
    .dashboard-welcome h1,
    .features-hero h1,
    .tool-hero h1,
    .about-hero h1 {
        font-size: 32px;
    }

    .feature-section-text h2 {
        font-size: 28px;
    }

    .logo-slogan {
        font-size: 34px;
    }

    .feature-section-image,
    .showcase-image {
        height: 220px;
    }
}

@media (max-width: 900px) {
    .info-grid,
    .result-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 28px;
    }

    .about-card p {
        font-size: 16px;
    }

    .tool-card {
        padding: 24px;
    }
}
/* =========================
   ULTRA KOMPAKT NAVBAR
========================= */

.navbar {
    padding: 8px 18px;
}

.nav-logo {
    width: 58px;
    height: 58px;
}

.brand-title {
    font-size: 24px;
}

.brand-subtitle {
    font-size: 12px;
}

.nav-links {
    gap: 8px;
}

.nav-links a {
    font-size: 14px;
}

.nav-home {
    font-size: 14px;
    padding: 8px 10px;
}

.dropdown-btn {
    font-size: 14px;
    padding: 8px 10px;
}

.nav-btn,
.primary-btn,
.secondary-btn,
.mini-btn,
.full-btn,
.comment-form button,
.form-card button,
.tool-form button,
button {
    padding: 10px 16px;
    font-size: 14px;
}

.theme-toggle-btn,
.contact-toggle {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.contact-dropdown {
    top: 50px;
}

/* =========================
   DASHBOARD PROGRESS BAR
========================= */

.plan-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
}

.plan-status-active {
    background: rgba(47, 143, 70, 0.12);
    color: var(--primary);
}

.plan-status-passive {
    background: rgba(217, 83, 79, 0.12);
    color: #d9534f;
}

.progress-wrap {
    margin-top: 14px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--muted);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transition: width 0.35s ease;
}

.progress-fill.expired {
    background: linear-gradient(135deg, #d9534f, #f07c78);
}

/* dashboard kart içi küçük iyileştirme */
.dashboard-card p strong {
    color: var(--text);
}

.dashboard-card .mini-downloads {
    justify-content: flex-start;
}

/* mobil */
@media (max-width: 992px) {
    .navbar {
        padding: 14px 18px;
    }

    .nav-logo {
        width: 54px;
        height: 54px;
    }

    .brand-title {
        font-size: 22px;
    }

    .nav-links {
        gap: 6px;
    }

    .theme-toggle-btn,
    .contact-toggle {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
    .nav-left:hover .brand-title {
    color: #3fa35c;
    transition: 0.25s ease;
}
}
/* HOW IT WORKS PAGE */
.how-page-hero {
    width: min(1100px, calc(100% - 40px));
    margin: 50px auto 30px;
    text-align: center;
}

.how-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 143, 70, 0.10);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    margin: 0 auto 14px;
}

.how-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: var(--primary);
    margin-bottom: 14px;
    text-align: center;
}

.how-page-hero p {
    max-width: 860px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.9;
    font-size: 17px;
    text-align: center;
}

.how-video-section,
.how-steps-section,
.how-extra-section,
.how-action-section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto 40px;
}

.how-video-card,
.how-action-card {
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 32px;
    text-align: center;
}

.how-video-card h2,
.how-action-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.how-video-card p,
.how-action-card p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 20px;
    text-align: center;
}

.how-video-placeholder {
    min-height: 360px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, var(--hero-grad-1), var(--hero-grad-2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.video-play-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
    box-shadow: 0 12px 24px rgba(47, 143, 70, 0.22);
}

.how-video-placeholder h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.how-video-placeholder p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}

.how-steps-grid,
.how-extra-grid {
    display: grid;
    gap: 22px;
}

.how-steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

.how-step-card,
.how-extra-card {
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.how-step-card:hover,
.how-extra-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
    border-color: rgba(47, 143, 70, 0.25);
}

.how-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(47, 143, 70, 0.10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 16px;
}

.how-step-card h3,
.how-extra-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 10px;
    text-align: center;
}

.how-step-card p,
.how-extra-card p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 15px;
    text-align: center;
}

.how-action-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

@media (max-width: 1100px) {
    .how-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-extra-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .how-page-hero h1 {
        font-size: 34px;
    }

    .how-steps-grid {
        grid-template-columns: 1fr;
    }

    .how-video-placeholder {
        min-height: 280px;
    }

    .how-video-card,
    .how-action-card {
        padding: 24px;
    }
}
.how-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 14px;
    text-align: center;
}
.kvkk-box {
    margin-top: 6px;
    text-align: left;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.kvkk-box label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.kvkk-box input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.kvkk-box a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.kvkk-box a:hover {
    text-decoration: underline;
}
/* ANA SAYFA DEĞERLENDİRME / YORUM SCROLL ALANI */
.reviews-list,
.comments-list {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scroll daha temiz görünsün */
.reviews-list::-webkit-scrollbar,
.comments-list::-webkit-scrollbar {
    width: 8px;
}

.reviews-list::-webkit-scrollbar-track,
.comments-list::-webkit-scrollbar-track {
    background: transparent;
}

.reviews-list::-webkit-scrollbar-thumb,
.comments-list::-webkit-scrollbar-thumb {
    background: rgba(47, 143, 70, 0.35);
    border-radius: 999px;
}

.reviews-list::-webkit-scrollbar-thumb:hover,
.comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(47, 143, 70, 0.55);
}
.reviews-list {
    max-height: 500px;   /* kutunun yüksekliği */
    overflow-y: auto;    /* scroll aktif */
    padding-right: 10px;
}
.comments-list {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
}
/* SUPPORT CHAT */
.chat-launcher {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(47, 143, 70, 0.30);
    z-index: 9999;
    transition: transform 0.2s ease;
}

.chat-launcher:hover {
    transform: scale(1.08);
}

.chat-box {
    position: fixed;
    right: 24px;
    bottom: 92px;
    width: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 9999;
    display: none;
}

.chat-box.show {
    display: block;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 13px 15px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.chat-messages {
    min-height: 150px;
    max-height: 220px;
    overflow-y: auto;
    padding: 14px;
    font-size: 14px;
}

.chat-placeholder {
    color: var(--muted);
    line-height: 1.6;
}

.chat-info-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(47, 143, 70, 0.10);
    color: var(--primary);
    font-weight: 600;
}

.chat-form {
    display: flex;
    border-top: 1px solid var(--border);
}

.chat-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px;
    background: var(--surface);
    color: var(--text);
}

.chat-form button {
    border: none;
    background: var(--primary);
    color: white;
    padding: 0 14px;
    font-weight: 700;
    cursor: pointer;
}

.chat-login-warning {
    padding: 14px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}

.chat-login-warning a {
    display: inline-block;
    margin-top: 6px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}
/* SUPPORT CHAT MESSAGES */
.chat-message {
    padding: 9px 10px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-size: 13px;
}

.chat-message strong {
    display: block;
    margin-bottom: 4px;
}

.chat-message p {
    margin: 0;
    line-height: 1.5;
}

.chat-message span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: #888;
}

.chat-user-message {
    background: rgba(47, 143, 70, 0.10);
    color: var(--text);
}

.chat-admin-message {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text);
}

/* ADMIN SUPPORT THREAD */
.admin-chat-thread {
    max-height: 320px;
    overflow-y: auto;
    padding: 14px;
    border-radius: 18px;
    background: rgba(47, 143, 70, 0.05);
    margin: 16px 0;
}

.admin-chat-message {
    padding: 12px;
    border-radius: 14px;
    margin-bottom: 10px;
}

.admin-chat-message p {
    margin: 6px 0;
    line-height: 1.6;
}

.admin-chat-message span {
    font-size: 12px;
    color: #888;
}

.admin-chat-message.user-message {
    background: #ffffff;
}

.admin-chat-message.admin-reply {
    background: rgba(47, 143, 70, 0.12);
}
.video-placeholder iframe,
.how-video-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 22px;
    display: block;
}


/* =========================================================
   MOBILE RESPONSIVE FINAL FIXES - Dietisya
   Not: HTML yapısını bozmadan sadece CSS ile mobil görünüm toparlandı.
========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-width: 0;
}

img,
video,
iframe {
    max-width: 100%;
}

.navbar,
.hero,
.footer,
.page-hero,
.dashboard-hero,
.features-hero,
.about-hero,
.tool-hero,
.tool-container,
.about-card,
.features-intro-card,
.feature-section-block,
.features-summary-box,
.app-showcase,
.app-preview-section,
.how-page-hero,
.how-video-section,
.how-steps-section,
.how-extra-section,
.how-action-section,
.download-center,
.admin-table-section {
    min-width: 0;
}

/* Tablet ve küçük laptoplarda üst barı daha kontrollü tut */
@media (max-width: 1180px) {
    .navbar {
        gap: 10px;
    }

    .nav-links {
        gap: 7px;
    }

    .nav-links a,
    .nav-home,
    .dropdown-btn {
        font-size: 13px;
        padding: 8px 9px;
    }

    .nav-btn,
    .theme-btn,
    .primary-btn,
    .secondary-btn,
    .mini-btn {
        padding: 9px 13px;
        font-size: 13px;
    }
}

/* Önceden 992px altında navbar alt alta düşüyordu; mobilde daha düzgün iki satırlı yapı */
@media (max-width: 992px) {
    .navbar {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 10px 14px !important;
    }

    .nav-left {
        flex: 1 1 auto;
        min-width: 0;
        gap: 10px;
    }

    .nav-logo {
        width: 48px !important;
        height: 48px !important;
        flex-shrink: 0;
    }

    .brand-title {
        font-size: 23px !important;
        line-height: 1.05;
        white-space: nowrap;
    }

    .brand-title::after {
        height: 2px;
        margin-top: 4px;
    }

    .brand-subtitle {
        font-size: 10px !important;
        margin-top: 4px;
    }

    .nav-links {
        order: 3;
        width: 100% !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px !important;
        padding-top: 8px;
        border-top: 1px solid var(--border);
    }

    .nav-links a,
    .nav-home,
    .dropdown-btn {
        min-height: 38px;
        border-radius: 999px;
        background: rgba(47, 143, 70, 0.07);
        border: 1px solid rgba(47, 143, 70, 0.10);
        font-size: 13px !important;
        line-height: 1.2;
        padding: 9px 12px !important;
        text-align: center;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-content {
        top: 44px;
        right: 0;
        left: auto;
        min-width: 220px;
        max-width: calc(100vw - 32px);
    }

    .theme-toggle-btn,
    .contact-toggle {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px;
        padding: 0 !important;
        flex-shrink: 0;
    }

    .contact-dropdown {
        right: 0;
        width: min(280px, calc(100vw - 28px));
    }

    .hero {
        margin-top: 18px;
        padding: 34px 28px;
        gap: 24px;
    }

    .hero-image-box {
        min-height: 280px;
        padding: 22px;
    }

    .video-placeholder,
    .how-video-placeholder {
        min-height: 300px;
    }

    .video-placeholder iframe,
    .how-video-placeholder iframe {
        min-height: 300px;
    }

    .dashboard-card .mini-downloads {
        justify-content: center;
    }
}

/* Telefon görünümü */
@media (max-width: 768px) {
    .top-flash,
    .hero,
    .features,
    .promo-banner,
    .page-hero,
    .pricing-grid,
    .blog-layout,
    .dashboard-grid,
    .video-section,
    .how-it-works,
    .platforms-section,
    .reviews-section,
    .faq-section,
    .download-center,
    .footer,
    .dashboard-hero,
    .about-hero,
    .about-card,
    .info-grid,
    .tool-hero,
    .tool-container,
    .app-showcase,
    .app-preview-section,
    .features-hero,
    .features-intro-card,
    .feature-section-block,
    .features-summary-box,
    .how-page-hero,
    .how-video-section,
    .how-steps-section,
    .how-extra-section,
    .how-action-section,
    .admin-table-section {
        width: calc(100% - 24px) !important;
    }

    .navbar {
        padding: 9px 12px !important;
        gap: 8px !important;
    }

    .nav-left {
        gap: 8px;
        max-width: calc(100% - 92px);
    }

    .nav-logo {
        width: 42px !important;
        height: 42px !important;
    }

    .brand-title {
        font-size: 20px !important;
        letter-spacing: 0.3px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-subtitle {
        display: none;
    }

    .nav-links {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px !important;
        padding-top: 8px;
    }

    .nav-links a,
    .nav-home,
    .dropdown,
    .dropdown-btn,
    .nav-btn,
    .theme-btn {
        width: 100%;
    }

    .nav-links a,
    .nav-home,
    .dropdown-btn,
    .nav-btn,
    .theme-btn {
        min-height: 36px;
        font-size: 12px !important;
        padding: 8px 9px !important;
        justify-content: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 6px;
        border-radius: 14px;
        box-shadow: none;
    }

    .dropdown-content a {
        text-align: center;
        font-size: 12px !important;
        padding: 10px 8px !important;
    }

    .theme-toggle-btn,
    .contact-toggle {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
        font-size: 16px !important;
    }

    .contact-dropdown {
        top: 44px;
        right: 0;
        width: calc(100vw - 24px);
        padding: 14px;
    }

    .hero {
        grid-template-columns: 1fr !important;
        margin: 16px auto 30px;
        padding: 26px 20px;
        border-radius: 22px;
        text-align: center;
    }

    .hero h1,
    .how-page-hero h1,
    .features-hero h1,
    .tool-hero h1,
    .about-hero h1 {
        font-size: 31px !important;
        line-height: 1.18;
        letter-spacing: -0.4px;
    }

    .hero p,
    .features-hero p,
    .tool-hero p,
    .about-hero p,
    .how-page-hero p {
        font-size: 15px !important;
        line-height: 1.7;
    }

    .badge,
    .how-badge {
        font-size: 12px;
        padding: 7px 12px;
    }

    .hero-buttons,
    .how-action-buttons,
    .mini-downloads,
    .success-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-buttons a,
    .hero-buttons button,
    .how-action-buttons a,
    .how-action-buttons button,
    .mini-downloads a,
    .mini-downloads button,
    .success-actions a,
    .success-actions button {
        width: 100%;
    }

    .hero-image-box {
        min-height: 220px;
        padding: 18px;
        border-radius: 24px;
    }

    .hero-logo {
        max-width: 260px;
    }

    .logo-slogan {
        font-size: 29px;
    }

    .stats-row,
    .feature-grid,
    .steps-grid,
    .platform-grid,
    .faq-grid,
    .pricing-grid,
    .blog-layout,
    .dashboard-grid,
    .qr-grid,
    .showcase-grid,
    .info-grid,
    .result-grid,
    .how-steps-grid,
    .how-extra-grid,
    .feature-section-block,
    .footer {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2,
    .page-hero h1,
    .dashboard-welcome h1,
    .features-summary-box h2,
    .how-video-card h2,
    .how-action-card h2,
    .comment-section h2 {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .feature-card,
    .step-card,
    .platform-card,
    .faq-card,
    .pricing-card,
    .blog-card,
    .comment-card,
    .dashboard-card,
    .qr-card,
    .stat-card,
    .info-box,
    .showcase-card,
    .how-step-card,
    .how-extra-card {
        padding: 20px;
        border-radius: 20px;
    }

    .feature-card:hover,
    .step-card:hover,
    .platform-card:hover,
    .faq-card:hover,
    .pricing-card:hover,
    .blog-card:hover,
    .comment-card:hover,
    .dashboard-card:hover,
    .qr-card:hover,
    .stat-card:hover,
    .info-box:hover,
    .showcase-card:hover,
    .how-step-card:hover,
    .how-extra-card:hover {
        transform: none;
    }

    .promo-banner {
        padding: 30px 18px;
        border-radius: 22px;
        margin-bottom: 36px;
    }

    .promo-banner h2 {
        font-size: 27px;
    }

    .footer {
        margin-top: 36px;
        padding: 26px 20px;
        text-align: center;
    }

    .form-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .form-logo {
        width: 110px;
        height: 110px;
    }

    .form-card h2 {
        font-size: 29px;
    }

    .form-card input,
    .form-card select,
    .comment-form input,
    .comment-form textarea,
    .comment-form select,
    .tool-form input,
    .tool-form select,
    input,
    select,
    textarea {
        font-size: 14px;
        padding: 13px 14px;
        border-radius: 12px;
    }

    .form-card button,
    .comment-form button,
    .tool-form button,
    .primary-btn,
    .secondary-btn,
    .full-btn {
        width: 100%;
        min-height: 44px;
    }

    .page-hero {
        padding: 36px 0 22px;
    }

    .price {
        font-size: 34px;
    }

    .featured {
        transform: none;
    }

    .featured-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 12px;
    }

    .about-card,
    .features-intro-card,
    .features-summary-box,
    .tool-card,
    .how-video-card,
    .how-action-card,
    .dashboard-welcome {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .about-card p,
    .features-intro-card p,
    .feature-section-text p,
    .features-summary-box p {
        font-size: 15px;
        line-height: 1.75;
        text-align: left;
    }

    .about-signature {
        font-size: 30px;
    }

    .feature-section-block {
        padding: 18px;
        border-radius: 22px;
    }

    .feature-section-text h2 {
        font-size: 26px;
        text-align: center;
    }

    .feature-section-image,
    .feature-slider,
    .showcase-image {
        height: 210px;
        border-radius: 18px;
    }

    .video-section,
    .features,
    .how-it-works,
    .platforms-section,
    .reviews-section,
    .faq-section {
        padding: 20px 0 34px;
    }

    .video-placeholder,
    .how-video-placeholder {
        min-height: 240px;
        padding: 20px;
        border-radius: 22px;
    }

    .video-placeholder iframe,
    .how-video-placeholder iframe {
        min-height: 240px;
        border-radius: 18px;
    }

    .reviews-list,
    .comments-list {
        max-height: 380px;
        padding-right: 6px;
    }

    .chat-launcher {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
        font-size: 23px;
    }

    .chat-box {
        right: 12px;
        bottom: 76px;
        width: calc(100vw - 24px);
        border-radius: 18px;
    }

    .admin-table-wrapper {
        padding: 12px;
        border-radius: 18px;
    }
}

/* Küçük telefonlar */
@media (max-width: 480px) {
    .navbar {
        padding: 8px 10px !important;
    }

    .nav-logo {
        width: 38px !important;
        height: 38px !important;
    }

    .brand-title {
        font-size: 18px !important;
    }

    .brand-title::after {
        width: 56%;
    }

    .nav-links {
        grid-template-columns: 1fr 1fr;
        gap: 6px !important;
    }

    .nav-links a,
    .nav-home,
    .dropdown-btn,
    .nav-btn,
    .theme-btn {
        font-size: 11.5px !important;
        padding: 7px 6px !important;
        min-height: 34px;
    }

    .hero {
        padding: 22px 16px;
    }

    .hero h1,
    .how-page-hero h1,
    .features-hero h1,
    .tool-hero h1,
    .about-hero h1 {
        font-size: 28px !important;
    }

    .section-header h2,
    .page-hero h1,
    .dashboard-welcome h1,
    .features-summary-box h2,
    .how-video-card h2,
    .how-action-card h2 {
        font-size: 25px !important;
    }

    .feature-card,
    .step-card,
    .platform-card,
    .faq-card,
    .pricing-card,
    .blog-card,
    .comment-card,
    .dashboard-card,
    .qr-card,
    .stat-card,
    .info-box,
    .showcase-card,
    .how-step-card,
    .how-extra-card {
        padding: 18px;
    }

    .feature-section-image,
    .feature-slider,
    .showcase-image {
        height: 190px;
    }

    .qr-card img {
        width: 140px;
        height: 140px;
    }
}

