@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Theme Variables */
:root {
    --dg-navy: #0f3b57;
    --dg-aqua: #34c3d7;
    --dg-lime: #8cc63e;
    --dg-lime-dark: #6bbf3a;
    --dg-muted: #6b7280;
    --header-height: 70px;
    --font-nav-cta: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Global overflow guard */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Landing Page Header Styles */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(15, 59, 87, 0.06);
    box-shadow: 0 4px 24px rgba(15, 59, 87, 0.06);
}

.landing-header:not(.landing-header--over-hero) {
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Ana sayfa hero: arka plan ayrı katmanda — içerik sabit kalır */
.landing-header.landing-header--over-hero {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

.landing-header.landing-header--over-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(15, 59, 87, 0.08);
    box-shadow: 0 4px 24px rgba(15, 59, 87, 0.08);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-header.landing-header--over-hero.scrolled::before,
.landing-header.landing-header--over-hero.menu-open::before {
    opacity: 1;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    height: var(--header-height);
}

@media (max-width: 1200px) {
    .header-nav {
        margin-right: 1rem;
    }

    .header-nav .nav-list {
        gap: 1rem;
    }

    .header-nav .nav-list li a {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .landing-header {
        width: 100vw;
    }
}

.header-logo {
    flex-shrink: 0;
    cursor: pointer;
}

.header-logo .logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.header-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dg-lime);
    margin: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 1.25rem;
}

.header-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.header-nav .nav-list li a {
    color: var(--dg-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.25s ease;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.header-nav .nav-list li a:hover {
    color: var(--dg-lime-dark);
}

.header-nav .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--dg-aqua), var(--dg-lime));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav .nav-list li a:hover::after {
    width: 100%;
}

.header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.header-actions .btn-outline,
.header-actions .btn-primary,
.header-actions .btn-register,
.header-actions .btn-whatsapp {
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    line-height: 1;
    box-sizing: border-box;
    height: 36px;
}

.header-actions .btn-register {
    padding: 0.5rem 1.15rem;
    height: auto;
    min-height: 40px;
    white-space: nowrap;
    font-family: var(--font-nav-cta);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.2;
}

.header-actions .btn-register *,
.mobile-menu .mobile-actions .btn-register * {
    pointer-events: none;
}

.header-actions .btn-outline i,
.header-actions .btn-primary i,
.header-actions .btn-whatsapp i {
    font-size: 0.85rem;
}

.header-actions .btn-register i,
.mobile-menu .mobile-actions .btn-register i {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.header-actions .btn-outline {
    background: transparent;
    color: var(--dg-lime);
    border: 1px solid var(--dg-lime);
}

.header-actions .btn-outline:hover {
    background: transparent;
    color: var(--dg-lime);
    box-shadow: 0 4px 12px rgba(140, 198, 62, 0.2);
}

.header-actions .btn-register {
    position: relative;
    overflow: hidden;
    background: var(--dg-lime);
    color: white;
    border: 1px solid var(--dg-lime);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    animation: cta-register-pulse 1.85s ease-in-out infinite;
}

.header-actions .btn-register::before,
.mobile-menu .mobile-actions .btn-register::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(105deg,
            transparent 32%,
            rgba(255, 255, 255, 0.5) 50%,
            transparent 68%);
    transform: translateX(-140%);
    animation: cta-register-shine 2.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cta-register-pulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: none;
    }

    50% {
        transform: translateY(-4px) scale(1.06);
        box-shadow: 0 4px 12px rgba(15, 59, 87, 0.15);
    }
}

@keyframes cta-register-shine {
    0% {
        transform: translateX(-140%);
    }

    38%,
    100% {
        transform: translateX(140%);
    }
}

.header-actions .btn-register:hover {
    animation-play-state: paused;
    background: var(--dg-lime-dark);
    color: white;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(15, 59, 87, 0.18);
}

.header-actions .btn-register:hover::before,
.mobile-menu .mobile-actions .btn-register:hover::before {
    animation-play-state: paused;
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {

    .header-actions .btn-register,
    .mobile-menu .mobile-actions .btn-register {
        animation: none;
    }

    .header-actions .btn-register::before,
    .mobile-menu .mobile-actions .btn-register::before {
        display: none;
    }
}

.header-actions .btn-primary {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    color: white;
}

.header-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
}

.header-actions .btn-whatsapp {
    background: #25D366;
    color: white;
}

.header-actions .btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-size: 1.35rem;
    color: var(--dg-navy);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
    color: var(--dg-lime-dark);
    background: rgba(140, 198, 62, 0.12);
}

.mobile-menu-toggle:active {
    transform: scale(0.96);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 59, 87, 0.08);
    box-shadow: 0 16px 48px rgba(15, 59, 87, 0.12);
    border-radius: 0 0 20px 20px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.mobile-menu .mobile-nav-list li a {
    display: block;
    padding: 1rem 2rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    cursor: pointer;
}

.mobile-menu .mobile-nav-list li a:hover {
    background: #f8f9fa;
    color: var(--dg-lime);
}

.mobile-menu .mobile-actions {
    padding: 1rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
}

.mobile-menu .mobile-actions .btn-outline,
.mobile-menu .mobile-actions .btn-primary,
.mobile-menu .mobile-actions .btn-secondary,
.mobile-menu .mobile-actions .btn-register,
.mobile-menu .mobile-actions .btn-whatsapp {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.mobile-menu .mobile-actions .btn-outline,
.mobile-menu .mobile-actions .btn-secondary {
    background: transparent;
    color: var(--dg-lime);
    border: 2px solid var(--dg-lime);
}

.mobile-menu .mobile-actions .btn-outline:hover,
.mobile-menu .mobile-actions .btn-secondary:hover {
    background: transparent;
    color: var(--dg-lime);
}

.mobile-menu .mobile-actions .btn-register {
    position: relative;
    overflow: hidden;
    background: var(--dg-lime);
    color: white;
    border: 2px solid var(--dg-lime);
    font-family: var(--font-nav-cta);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.2;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    animation: cta-register-pulse 1.85s ease-in-out infinite;
}

.mobile-menu .mobile-actions .btn-register:hover {
    animation-play-state: paused;
    background: var(--dg-lime-dark);
    color: white;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(15, 59, 87, 0.18);
}

.mobile-menu .mobile-actions .btn-whatsapp {
    background: #25D366;
    color: white;
}

.mobile-menu .mobile-actions .btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

/* Mobil menü — içeriğe göre yükseklik, CTA linklerin altında */
@media (max-width: 768px) {
    body.mobile-nav-open .whatsapp-float {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: auto;
        height: auto;
        max-height: calc(100dvh - var(--header-height) - 1rem);
        border-radius: 0 0 20px 20px;
        border-bottom: 1px solid rgba(15, 59, 87, 0.08);
        box-shadow: 0 16px 48px rgba(15, 59, 87, 0.12);
        display: block;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu .mobile-nav-list {
        padding: 0.25rem 0 0;
    }

    .mobile-menu .mobile-nav-list li a {
        padding: 0.72rem 1.25rem;
        font-size: 0.9375rem;
        color: var(--dg-navy);
        font-weight: 500;
        border-bottom: 1px solid rgba(15, 59, 87, 0.06);
    }

    .mobile-menu .mobile-nav-list li:last-child a {
        border-bottom: none;
    }

    .mobile-menu .mobile-nav-list li a:active {
        background: rgba(140, 198, 62, 0.12);
        color: var(--dg-lime-dark);
    }

    .mobile-menu .mobile-actions {
        margin-top: 0;
        padding: 0.65rem 1.25rem 1rem;
        gap: 0;
        background: #fff;
        border-top: 1px solid rgba(15, 59, 87, 0.08);
        box-shadow: none;
    }

    .mobile-menu .mobile-actions .btn-register {
        width: 100%;
        min-height: 48px;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        font-weight: 400;
        font-size: 16px;
    }

    .mobile-menu .mobile-actions .btn-register i {
        font-size: 1rem;
    }
}

/* Landing Page Styles */
.hero-section {
    background: linear-gradient(135deg, #c9eef6 0%, #e0f7c9 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2.5rem;
}

.hero-badges-wrapper {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: rgba(15, 59, 87, 0.08);
    border: 1px solid rgba(15, 59, 87, 0.18);
    color: var(--dg-navy);
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge .badge-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge .badge-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    transform: translateY(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--dg-aqua), var(--dg-navy));
}

.hero-badge:hover {
    border-color: var(--dg-aqua);
    box-shadow: 0 4px 12px rgba(52, 195, 215, 0.2);
    transform: translateY(-2px);
}

.hero-badge:hover .badge-content {
    transform: translateY(-120%);
    opacity: 0;
}

.hero-badge:hover .badge-hover-content {
    transform: translateY(0);
}

.hero-badge:focus-visible {
    outline: 2px solid var(--dg-aqua);
    outline-offset: 2px;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(52,195,215,0.18)" cx="150" cy="200" r="120"/><circle fill="rgba(140,198,62,0.16)" cx="850" cy="300" r="180"/><circle fill="rgba(15,59,87,0.10)" cx="400" cy="750" r="140"/></svg>');
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: #0f3b57;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #8cc63e;
}

.hero-title .gradient-text {
    color: var(--dg-aqua);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #0f3b57;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.hero-trial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.trial-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
    text-align: left;
}

.hero-mbys-banner {
    align-self: flex-end;
    width: fit-content;
    max-width: 360px;
    flex-shrink: 0;
}

.hero-mbys-banner img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 59, 87, 0.08);
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary i,
.btn-secondary i {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: #0f3b57;
    border: 2px solid rgba(52, 195, 215, 0.35);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0f3b57;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    backdrop-filter: none;
}

.hero-visual-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 50px rgba(52, 195, 215, 0.18);
    border: 1px solid rgba(52, 195, 215, 0.25);
    backdrop-filter: blur(8px);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

/* Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dg-navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dg-muted);
}

/* What is Section */
.what-is-section {
    padding: 6rem 0;
    background: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    /* görsel sütunu biraz daha geniş */
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

.content-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.feature-list li i {
    color: #28a745;
    font-size: 1.2rem;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(52, 195, 215, 0.35);
}

.preview-header {
    background: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
}

.preview-dots span:first-child {
    background: #ff5f57;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:nth-child(3) {
    background: #28ca42;
}

.preview-content {
    width: 100%;
    aspect-ratio: 16 / 10;
    /* 2880x1800 ile tam uyum */
}

.preview-sidebar {
    width: 200px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
}

.preview-main {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-chart {
    height: 150px;
    background: var(--dg-lime);
    border-radius: 10px;
    opacity: 0.8;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.preview-card {
    height: 80px;
    background: #f59e0b;
    border-radius: 10px;
    opacity: 0.7;
}

/* All Features Section */
.all-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(52, 195, 215, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    font-size: 1.2rem;
    color: var(--dg-aqua);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a2d;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.feature-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Target Audience Section */
.target-audience-section {
    padding: 6rem 0;
    background: white;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.audience-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--dg-lime), var(--dg-lime-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.audience-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.audience-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Liste sola hizalı kalsın */
.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.audience-card ul li {
    position: relative;
    padding-left: 1.6rem;
    padding: 0.5rem 0 0.5rem 1.6rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.audience-card ul li::before {
    content: "\f00c";
    /* fa-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--dg-lime);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
}

.audience-card ul li:last-child {
    border-bottom: none;
}

/* Why Use Section */
.why-use-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item .benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--dg-aqua);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-item .benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Why DiyetGen Section */
.why-diyetgen-section {
    padding: 7rem 0;
    background: #ffffff;
    position: relative;
}

.comparison-content {
    margin-top: 3.5rem;
    position: relative;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    align-items: stretch;
}

.comparison-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(15, 59, 87, 0.04);
    border: 1px solid rgba(15, 59, 87, 0.05);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.comparison-card:hover {
    transform: translateY(-8px);
}

.traditional-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffcfc 100%);
    border-top: 5px solid #ef4444;
}

.traditional-card:hover {
    box-shadow: 0 24px 50px rgba(239, 68, 68, 0.08);
}

.diyetgen-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fdfa 100%);
    border-top: 5px solid var(--dg-lime);
}

.diyetgen-card:hover {
    box-shadow: 0 24px 50px rgba(140, 198, 62, 0.12);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.1rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2.25rem;
    align-self: flex-start;
}

.badge-red {
    background: rgba(239, 68, 68, 0.07);
    color: #ef4444;
}

.badge-green {
    background: rgba(140, 198, 62, 0.12);
    color: var(--dg-lime-dark);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.list-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.icon-red {
    background: rgba(239, 68, 68, 0.07);
    color: #ef4444;
}

.icon-green {
    background: rgba(140, 198, 62, 0.12);
    color: var(--dg-lime-dark);
}

.list-text {
    font-size: 1.05rem;
    color: var(--dg-navy);
    font-weight: 500;
    line-height: 1.4;
}

.comparison-vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background: #ffffff;
    border: 1px solid rgba(15, 59, 87, 0.1);
    color: var(--dg-navy);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(15, 59, 87, 0.12);
    z-index: 10;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .comparison-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-vs-badge {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 1rem auto;
    }

    .comparison-card {
        padding: 2rem;
    }
}

.comparison-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dg-lime);
    border-radius: 20px;
    color: white;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Benefits Section - New Design */
.benefits-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.benefit-category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(140, 198, 62, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--dg-lime);
}

.benefit-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(140, 198, 62, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--dg-lime);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list .benefit-item {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(52, 195, 215, 0.07);
    transition: all 0.3s ease;
}

.benefits-list .benefit-item:hover {
    background: rgba(140, 198, 62, 0.12);
    transform: translateX(5px);
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 195, 215, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(140, 198, 62, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--dg-aqua);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.2rem;
    color: white;
}

.stat-content .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dg-navy);
    margin-bottom: 0.25rem;
}

.stat-content .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Packages Section */
.packages-section {
    padding: 6rem 0;
    background: #ffffff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 59, 87, 0.08);
    border: 2px solid rgba(52, 195, 215, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Profesyonel Paket - Yeşil tonları */
.package-card:not(.featured) {
    border-color: rgba(140, 198, 62, 0.3);
}

.package-card:not(.featured):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(140, 198, 62, 0.2);
}

.package-card:not(.featured) .package-badge {
    background: var(--dg-lime);
}

.package-card:not(.featured) .package-btn {
    background: var(--dg-lime);
}

.package-card:not(.featured) .package-btn:hover {
    box-shadow: 0 12px 28px rgba(140, 198, 62, 0.4);
}

/* Ultra Paket - Mor/Purple tonları */
.package-card.featured {
    border-color: rgba(138, 43, 226, 0.3);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.package-card.featured .package-badge {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
}

.package-card.featured .package-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
}

.package-card.featured .package-btn:hover {
    box-shadow: 0 12px 28px rgba(138, 43, 226, 0.4);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dg-lime);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-header h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.package-includes-note {
    background: #f0f7ff;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 3px solid #4a90e2;
}

.package-includes-note p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
}

.package-includes-note i {
    color: #4a90e2;
    margin-right: 6px;
    font-size: 0.8rem;
}

/* Ultra paket bilgi divi - Mor renk */
.package-card.featured .package-includes-note {
    background: #f5f0ff;
    border-left: 3px solid #8a2be2;
}

.package-card.featured .package-includes-note i {
    color: #8a2be2;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.package-price .currency {
    font-size: 1.2rem;
    color: #666;
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dg-navy);
}

/* Profesyonel paket fiyat rengi - Yeşil */
.package-card:not(.featured) .package-price .amount {
    color: var(--dg-lime);
}

/* Ultra paket fiyat rengi - Mor */
.package-card.featured .package-price .amount {
    color: #8a2be2;
}

.package-price .period {
    font-size: 1rem;
    color: #666;
}

.package-trial-note {
    background: #f0f9f0;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--dg-lime);
}

.package-trial-note p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
}

.package-trial-note i {
    color: var(--dg-lime);
    margin-right: 6px;
    font-size: 0.8rem;
}

.package-features {
    margin-bottom: 1.5rem;
}

.package-features .feature-item {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.package-features .feature-item:last-child {
    border-bottom: none;
}

.feature-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-left i {
    font-size: 0.9rem;
}

/* Profesyonel paket check icon rengi - Yeşil */
.package-card:not(.featured) .feature-left i {
    color: var(--dg-lime);
}

/* Ultra paket check icon rengi */
.package-card.featured .feature-left i {
    color: #8a2be2;
}

.feature-name {
    font-weight: 400;
    color: #555;
    font-size: 0.875rem;
    line-height: 1.4;
}

.feature-info {
    position: relative;
    display: inline-block;
}

.info-icon {
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
    opacity: 0.7;
}

/* Profesyonel paket info icon rengi - Yeşil */
.package-card:not(.featured) .info-icon {
    color: var(--dg-lime);
}

.package-card:not(.featured) .info-icon:hover {
    color: var(--dg-lime-dark);
    opacity: 1;
}

/* Ultra paket info icon rengi - Mor */
.package-card.featured .info-icon {
    color: #8a2be2;
}

.package-card.featured .info-icon:hover {
    color: #9370db;
    opacity: 1;
}

.feature-tooltip {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 10px;
    background: #333;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: nowrap;
    max-width: 400px;
    min-width: 350px;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.feature-info:hover .feature-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive tooltip adjustments */
@media (max-width: 768px) {
    .feature-tooltip {
        max-width: 280px;
        min-width: 250px;
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .feature-tooltip {
        max-width: 250px;
        min-width: 220px;
        font-size: 0.8rem;
        padding: 0.5rem 0.7rem;
        margin-right: 5px;
    }
}

@media (max-width: 375px) {
    .feature-tooltip {
        max-width: 200px;
        min-width: 180px;
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        margin-right: 3px;
    }
}

/* Custom Alert Modal Styles */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-alert-overlay.show {
    opacity: 1;
    visibility: visible;
}

.custom-alert-modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.custom-alert-overlay.show .custom-alert-modal {
    transform: scale(1);
}

.custom-alert-header {
    background: linear-gradient(135deg, var(--dg-lime), var(--dg-lime-dark));
    padding: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-alert-icon {
    color: white;
    font-size: 3rem;
    text-align: center;
}

.custom-alert-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.custom-alert-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.custom-alert-body {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.custom-alert-body h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.custom-alert-body p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.json-data-container {
    margin-top: 1.5rem;
    text-align: left;
}

.json-data-container h4 {
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.json-data {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #495057;
    max-height: 200px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.custom-alert-footer {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.custom-alert-btn {
    background: var(--dg-lime);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.custom-alert-btn:hover {
    background: var(--dg-lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 198, 62, 0.3);
}

/* Certificate Modal Styles */
body.modal-open,
html.modal-open {
    overflow: hidden !important;
}

.certificate-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 59, 87, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.certificate-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    background: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-modal-overlay.show .certificate-modal-content {
    transform: scale(1);
}

.certificate-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.certificate-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.certificate-modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .certificate-modal-close {
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.5);
        border: none;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .custom-alert-modal {
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .custom-alert-header {
        padding: 1rem;
    }

    .custom-alert-icon {
        font-size: 2.5rem;
    }

    .custom-alert-body {
        padding: 1.5rem 1rem 0.5rem;
    }

    .custom-alert-body h3 {
        font-size: 1.3rem;
    }

    .custom-alert-footer {
        padding: 0 1rem 1rem;
    }
}

.package-btn {
    width: 100%;
    padding: 1rem;
    background: var(--dg-lime);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(140, 198, 62, 0.25);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(140, 198, 62, 0.3);
    color: white;
    text-decoration: none;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dg-lime-dark);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #e6f6ec;
    color: #0b7a54;
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
}

.live-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.live-badge-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #22c55e;
    border-radius: 50%;
    animation: live-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes live-ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dg-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-nav-cta);
}

.contact-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.contact-info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(140, 198, 62, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: var(--dg-lime-dark);
    font-size: 0.95rem;
}

.contact-info-text h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dg-navy);
    margin-bottom: 0.15rem;
}

.contact-info-text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #f1f3f5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dg-lime);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--dg-lime-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(107, 191, 58, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dg-navy);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dg-lime);
}

.footer-logo p {
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--dg-lime);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #fbbf24;
    color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    overflow: visible;
    animation: button-glow 3s ease-in-out infinite;
}

@keyframes button-glow {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 15px 5px rgba(37, 211, 102, 0.2);
    }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.4;
    animation: pulse-live 3s infinite;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.3;
    animation: pulse-live 3s infinite 1s;
    z-index: -2;
    transform: translate(-50%, -50%);
}

@keyframes pulse-live {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    background: #20BA5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5), 0 0 18px 6px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
    transform: scale(1.03);
}

.whatsapp-float i {
    font-size: 1.75rem;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-container .faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-container .faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1rem;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-question i.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f9fafb;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .header-container {
        padding: 0 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-top: 24px;
    }

    .hero-text {
        order: 0;
    }

    .hero-badges-wrapper {
        justify-content: center;
    }

    .hero-section {
        padding-top: var(--header-height);
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-trial-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-section .btn-secondary {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .trial-note {
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .comparison-content {
        grid-template-columns: 1fr;
    }

    .benefits-showcase {
        grid-template-columns: 1fr;
    }

    .benefits-stats {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .audience-cards {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-section .container {
        padding: 0 1rem;
    }

    .faq-section .section-header h2 {
        font-size: 2rem;
    }

    .faq-section .section-header p {
        font-size: 1rem;
    }

    .faq-container .faq-item .faq-question {
        padding: 1rem;
    }

    .faq-container .faq-item .faq-question h4 {
        font-size: 1rem;
    }

    .faq-container .faq-item .faq-answer.open {
        padding: 0 1rem 1rem;
    }

    .faq-container .faq-item .faq-answer p {
        font-size: 0.9rem;
    }
}

/* References Section Styles */
.references-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="50" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="10" cy="90" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.references-scroll-container {
    overflow: hidden;
    width: 100%;
    margin-bottom: 4rem;
    mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.references-scroll-track {
    display: flex;
    gap: 3rem;
    animation: scroll var(--marquee-duration, 30s) linear infinite;
    width: max-content;
    will-change: transform;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.references-scroll-container .reference-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    width: 200px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.references-scroll-container .reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.references-scroll-container .reference-item:hover .company-logo {
    transform: scale(1.1);
}

.reference-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reference-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--dg-lime);
}

.reference-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.1);
}

.reference-image {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reference-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.references-scroll-container .company-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    opacity: 1;
    transition: all 0.3s ease;
}

.company-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.reference-item:hover .company-logo {
    transform: scale(1.05);
    opacity: 1;
}

.reference-item:hover .reference-avatar {
    transform: scale(1.1);
}

.reference-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.reference-title {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.reference-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.25rem;
}

.reference-stars i {
    color: #f59e0b;
    font-size: 1.1rem;
}

.reference-content blockquote {
    background: #f8fafc;
    border-left: 4px solid var(--dg-lime);
    padding: 1rem;
    margin: 0;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    border-radius: 0 8px 8px 0;
}

/* References Stats */
.references-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dg-navy);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive References */
@media (max-width: 768px) {
    .references-section {
        padding: 60px 0;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .reference-item {
        padding: 1.5rem;
    }

    .references-scroll-track {
        animation-duration: 30s;
        /* Mobilde yavaşlat */
    }

    .references-scroll-container .reference-item {
        width: 150px;
        padding: 1rem 1.5rem;
    }

    .references-scroll-container .company-logo {
        height: 40px;
        max-width: 100px;
    }

    .references-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .comparison-item {
        grid-template-columns: 1fr;
    }
}

/* Mobile App Section */
.mobile-app-section {
    padding: 70px 0 55px;
    background: linear-gradient(135deg, rgba(52, 195, 215, 0.12) 0%, rgba(140, 198, 62, 0.10) 55%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 70px;
}

.mobile-app-section .container {
    max-width: 1500px;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 25%, rgba(52, 195, 215, 0.22), transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(140, 198, 62, 0.20), transparent 55%),
        radial-gradient(circle at 70% 85%, rgba(15, 59, 87, 0.12), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.mobile-app-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.mobile-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(15, 59, 87, 0.92);
    color: white;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(15, 59, 87, 0.18);
}

.mobile-app-badge i {
    color: var(--dg-aqua);
}

.mobile-app-title {
    font-size: 2.55rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--dg-navy);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.mobile-app-title-highlight {
    color: var(--dg-lime);
}

.mobile-app-description {
    font-size: 1.1rem;
    color: var(--dg-muted);
    line-height: 1.75;
    max-width: 46rem;
}

.mobile-app-features {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 1200px) {
    .mobile-app-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.mobile-app-feature {
    display: flex;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(52, 195, 215, 0.18);
    box-shadow: 0 10px 25px rgba(15, 59, 87, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.mobile-app-feature[data-mockup-screen] {
    cursor: pointer;
}

.mobile-app-feature[data-mockup-screen]:focus-visible {
    outline: 3px solid rgba(52, 195, 215, 0.35);
    outline-offset: 3px;
}

.mobile-app-feature.is-selected {
    border-color: rgba(140, 198, 62, 0.45);
    box-shadow: 0 14px 32px rgba(15, 59, 87, 0.10);
}

.mobile-app-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(15, 59, 87, 0.10);
    border-color: rgba(52, 195, 215, 0.35);
}

.mobile-app-feature-cta {
    margin-top: 0.45rem;
    display: inline-flex;
    width: fit-content;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0;
    background: rgba(15, 59, 87, 0.08);
    color: rgba(15, 59, 87, 0.72);
    border: 1px solid rgba(15, 59, 87, 0.10);
    opacity: 0.8;
    transition: opacity 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mobile-app-feature[data-mockup-screen]:hover .mobile-app-feature-cta,
.mobile-app-feature[data-mockup-screen]:focus-visible .mobile-app-feature-cta,
.mobile-app-feature.is-selected .mobile-app-feature-cta {
    opacity: 1;
    background: rgba(140, 198, 62, 0.16);
    border-color: rgba(140, 198, 62, 0.28);
    transform: translateY(-1px);
}

.mobile-app-feature .feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(52, 195, 215, 0.18) 0%, rgba(140, 198, 62, 0.14) 100%);
    border: 1px solid rgba(15, 59, 87, 0.08);
    flex-shrink: 0;
}

.mobile-app-feature .feature-icon i {
    color: var(--dg-navy);
    font-size: 1.1rem;
}

.mobile-app-feature .feature-content strong {
    display: block;
    font-weight: 700;
    color: var(--dg-navy);
    margin-bottom: 0.2rem;
}

.mobile-app-feature .feature-content span {
    display: block;
    font-size: 0.95rem;
    color: var(--dg-muted);
    line-height: 1.45;
}

.mobile-store-actions {
    margin-top: 1.6rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.store-badge {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    background: rgba(15, 59, 87, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--dg-navy);
    text-decoration: none;
    min-width: 175px;
    border: 1px solid rgba(15, 59, 87, 0.22);
    box-shadow: none;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.2s ease,
        background 0.2s ease;
}

.store-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 59, 87, 0.38);
    background: rgba(15, 59, 87, 0.14);
    box-shadow: none;
}

.store-badge:active {
    transform: translateY(-1px);
}

.store-badge__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    font-size: 24px;
    line-height: 1;
}

.store-badge__text {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
    min-width: 0;
}

.store-badge__small {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    opacity: 0.75;
    font-weight: 500;
    line-height: 1;
}

.store-badge__name {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;
}

.store-badge[aria-disabled="true"] {
    opacity: 0.72;
    cursor: not-allowed;
}

.mobile-app-mock {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(52, 195, 215, 0.22);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 40px rgba(15, 59, 87, 0.14);
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    min-height: 480px;
}

.mock-screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    overflow: hidden;
    background: rgba(248, 250, 252, 0.92);
}

.mock-screen[data-screen="meal"],
.mock-screen[data-screen="water"] {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.mock-screen[data-screen="meal"] {
    padding-bottom: 3.25rem;
}

.mock-screen[data-screen="meal"]::-webkit-scrollbar,
.mock-screen[data-screen="water"]::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.mock-screen[data-screen="meal"],
.mock-screen[data-screen="water"] {
    scrollbar-width: none;
}

.mock-screen[data-screen="water"] {
    background: #F5F5F0;
    display: flex;
    flex-direction: column;
}

.mock-screen[data-screen="meal"] {
    background: #F5F5F0;
}

.mock-screen[data-screen="lock"] {
    background: #F5F5F0;
}

.lock-screen {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 1rem 1rem 1.15rem;
    background:
        radial-gradient(circle at 18% 12%, rgba(52, 195, 215, 0.20), transparent 60%),
        radial-gradient(circle at 82% 22%, rgba(140, 198, 62, 0.16), transparent 62%),
        radial-gradient(circle at 60% 88%, rgba(138, 43, 226, 0.12), transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 240, 1) 100%);
    overflow: hidden;
}

.lock-screen::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 30% 20%, rgba(15, 59, 87, 0.06), transparent 62%),
        radial-gradient(circle at 70% 35%, rgba(15, 59, 87, 0.04), transparent 58%);
    filter: blur(20px);
    opacity: 0.85;
    pointer-events: none;
}

.lock-status,
.lock-time,
.lock-notifications,
.lock-footer {
    position: relative;
    z-index: 1;
}

.lock-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(15, 59, 87, 0.82);
    font-weight: 700;
    font-size: 0.85rem;
    opacity: 0.9;
}

.lock-status-right {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.lock-time {
    margin-top: 2.1rem;
    text-align: center;
    color: rgba(15, 59, 87, 0.92);
}

.lock-time-hour {
    font-size: clamp(4.2rem, 7.2vw, 5rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lock-time-date {
    margin-top: 0.45rem;
    font-size: 1rem;
    color: rgba(107, 114, 128, 0.95);
    font-weight: 600;
}

.lock-notifications {
    margin-top: 1.6rem;
    display: grid;
    gap: 0.75rem;
}

.lock-notif {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 59, 87, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(15, 59, 87, 0.10);
}

.mock-screen[data-screen="lock"].is-animating-notifs .lock-notif {
    opacity: 0;
    transform: translateY(10px);
    animation: lockNotifIn 520ms ease forwards;
    will-change: opacity, transform;
}

.mock-screen[data-screen="lock"].is-animating-notifs .lock-notif:nth-child(1) {
    animation-delay: 0ms;
}

.mock-screen[data-screen="lock"].is-animating-notifs .lock-notif:nth-child(2) {
    animation-delay: 120ms;
}

.mock-screen[data-screen="lock"].is-animating-notifs .lock-notif:nth-child(3) {
    animation-delay: 240ms;
}

.mock-screen[data-screen="lock"].is-animating-notifs .lock-notif:nth-child(4) {
    animation-delay: 360ms;
}

@keyframes lockNotifIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.lock-notif-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: stretch;
    overflow: hidden;
    background: rgba(43, 139, 214, 0.10);
    border: 1px solid rgba(43, 139, 214, 0.16);
    color: rgba(43, 139, 214, 0.92);
}

.lock-app-icon {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

.lock-notif-title {
    font-weight: 800;
    color: rgba(15, 59, 87, 0.92);
    line-height: 1.1;
}

.lock-notif-text {
    margin-top: 0.25rem;
    font-size: 0.92rem;
    line-height: 1.25;
    color: rgba(107, 114, 128, 0.95);
}

.lock-footer {
    margin-top: auto;
    display: grid;
    place-items: center;
    padding-top: 1.2rem;
}

.lock-handle {
    width: 120px;
    height: 5px;
    border-radius: 999px;
    background: rgba(15, 59, 87, 0.18);
}

.mock-screen.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.mock-screen.is-leaving-left {
    opacity: 0;
    transform: translateX(-10px);
}

.mock-screen.is-leaving-right {
    opacity: 0;
    transform: translateX(10px);
}

.water-header {
    padding: 1.05rem 1rem 0.4rem;
    text-align: center;
}

.water-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: rgba(15, 59, 87, 0.92);
}

.water-subtitle {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: rgba(107, 114, 128, 0.95);
}

.water-ring {
    --ring-size: 160px;
    width: var(--ring-size);
    height: var(--ring-size);
    aspect-ratio: 1 / 1;
    margin: 0.75rem auto 0.7rem;
    border-radius: 50%;
    background: conic-gradient(#2b8bd6 calc(var(--water-progress) * 1turn),
            rgba(43, 139, 214, 0.16) 0);
    display: grid;
    place-items: center;
    position: relative;
    flex: 0 0 auto;
}

@property --water-progress {
    syntax: '<number>';
    inherits: true;
    initial-value: 0;
}

.water-ring {
    transition: --water-progress 700ms ease;
}

.water-ring::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: rgba(240, 249, 255, 0.7);
    box-shadow: inset 0 0 0 10px rgba(43, 139, 214, 0.08);
}

.water-ring-inner {
    position: relative;
    z-index: 1;
    width: calc(var(--ring-size) - 48px);
    height: calc(var(--ring-size) - 48px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 59, 87, 0.08);
    display: grid;
    place-items: center;
    gap: 0.5rem;
}

.water-drop {
    width: 40px;
    height: 40px;
    border-radius: 18px;
    background: rgba(43, 139, 214, 0.10);
    display: grid;
    place-items: center;
    color: rgba(43, 139, 214, 0.92);
}

.water-drop i {
    font-size: 1.3rem;
}

.water-amount {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    font-weight: 900;
    color: rgba(15, 59, 87, 0.9);
}

.water-current {
    font-size: 1.3rem;
}

.water-sep {
    font-size: 1.05rem;
    opacity: 0.55;
}

.water-goal {
    font-size: 1.15rem;
    opacity: 0.65;
}

.water-quick-title,
.water-history-title {
    padding: 0.5rem 0.9rem 0.35rem;
    font-weight: 900;
    color: rgba(15, 59, 87, 0.9);
}

.water-quick-grid {
    padding: 0 0.9rem 0.35rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.water-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 59, 87, 0.08);
    padding: 0.65rem 0.5rem;
    text-align: center;
    box-shadow: 0 12px 24px rgba(15, 59, 87, 0.06);
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.water-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(15, 59, 87, 0.10);
    border-color: rgba(43, 139, 214, 0.28);
    background: rgba(240, 249, 255, 0.9);
}

.water-card:active {
    transform: translateY(-1px) scale(0.99);
}

.water-card:focus-visible {
    outline: 3px solid rgba(52, 195, 215, 0.35);
    outline-offset: 3px;
}

.water-card-icon {
    color: rgba(43, 139, 214, 0.9);
    margin-bottom: 0.45rem;
}

.water-card-icon i {
    font-size: 1.05rem;
}

.water-card-ml {
    font-weight: 900;
    color: rgba(15, 59, 87, 0.9);
    font-size: 0.92rem;
}

.water-card-sub {
    margin-top: 0.2rem;
    font-size: 0.7rem;
    color: rgba(107, 114, 128, 0.95);
}

.water-history-wrap {
    padding: 0 1rem 1rem;
    margin-top: auto;
    max-height: 92px;
    overflow: hidden;
    display: grid;
    gap: 0.75rem;
}

.water-history-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 59, 87, 0.08);
    padding: 0.85rem 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 24px rgba(15, 59, 87, 0.06);
}

.water-history-left {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.water-history-dot {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: rgba(43, 139, 214, 0.10);
    color: rgba(43, 139, 214, 0.92);
    display: grid;
    place-items: center;
}

.water-history-main {
    font-weight: 900;
    color: rgba(15, 59, 87, 0.9);
}

.water-history-sub {
    margin-top: 0.15rem;
    font-size: 0.82rem;
    color: rgba(107, 114, 128, 0.95);
}

.water-history-trash {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: rgba(15, 59, 87, 0.55);
    background: rgba(15, 59, 87, 0.06);
}

.mock-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.9rem;
    background: rgba(248, 250, 252, 0.9);
    border-bottom: 1px solid rgba(15, 59, 87, 0.08);
}

.mock-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: rgba(15, 59, 87, 0.06);
    display: grid;
    place-items: center;
}

.mock-icon-btn i {
    color: rgba(15, 59, 87, 0.65);
    font-size: 1.1rem;
}

.mock-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dg-navy);
    font-weight: 800;
}

.mock-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

.mock-avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(140, 198, 62, 0.15);
    border: 1px solid rgba(140, 198, 62, 0.22);
    color: var(--dg-navy);
    font-weight: 800;
    font-size: 0.85rem;
}

.mock-date-row {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem 0.55rem;
}

.mock-nav {
    border: 0;
    background: rgba(15, 59, 87, 0.06);
    border-radius: 14px;
    color: rgba(15, 59, 87, 0.7);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.mock-nav i {
    font-size: 1.15rem;
}

.mock-date {
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 18px;
    padding: 0.7rem 0.7rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 59, 87, 0.08);
    font-weight: 700;
    color: rgba(15, 59, 87, 0.85);
}

.mock-date-text {
    display: inline-block;
    transition: opacity 160ms ease, transform 160ms ease;
    will-change: opacity, transform;
}

.mock-date-text.is-changing {
    opacity: 0;
    transform: translateY(4px);
}

.mock-meal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0.9rem;
}

.mock-meal-title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 0.95rem;
    color: rgba(15, 59, 87, 0.88);
}

.mock-meal-thumb {
    width: 34px;
    height: 26px;
    border-radius: 10px;
    border: 1px solid rgba(15, 59, 87, 0.08);
    object-fit: cover;
}

.mock-add-entry {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.7rem;
    border-radius: 12px;
    background: rgba(52, 195, 215, 0.10);
    border: 1px solid rgba(52, 195, 215, 0.22);
    color: rgba(15, 59, 87, 0.78);
    white-space: nowrap;
}

.mock-tabs {
    display: flex;
    gap: 0.6rem;
    padding: 0.3rem 0.9rem 0.55rem;
}

.mock-tab {
    border: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 59, 87, 0.06);
    color: rgba(15, 59, 87, 0.7);
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: inherit;
}

.mock-tab.is-active {
    background: rgba(138, 43, 226, 0.16);
    border: 1px solid rgba(138, 43, 226, 0.18);
    color: rgba(15, 59, 87, 0.82);
}

.mock-tab:focus-visible {
    outline: 3px solid rgba(52, 195, 215, 0.35);
    outline-offset: 2px;
}

.mock-list {
    padding: 0 0.85rem 0.5rem;
    display: grid;
    gap: 0.6rem;
    transition: opacity 180ms ease, transform 180ms ease;
    will-change: opacity, transform;
}

.mock-list.is-switching {
    opacity: 0;
    transform: translateY(6px);
}

.mock-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.7rem 0.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 59, 87, 0.08);
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mock-check {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(140, 198, 62, 0.75);
    margin-top: 0.15rem;
    flex-shrink: 0;
    background: transparent;
    cursor: pointer;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 1);
    position: relative;
    transition: background-color 180ms ease, border-color 180ms ease, transform 140ms ease;
}

.mock-check:active {
    transform: scale(0.96);
}

.mock-check:focus-visible {
    outline: 3px solid rgba(52, 195, 215, 0.35);
    outline-offset: 2px;
}

.mock-item.is-checked .mock-check {
    background: rgba(140, 198, 62, 0.22);
    border-color: rgba(140, 198, 62, 0.95);
}

.mock-item.is-checked .mock-check::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: rgba(140, 198, 62, 0.95);
    box-shadow: 0 6px 14px rgba(140, 198, 62, 0.22);
    transform: scale(0.6);
    opacity: 0;
    animation: mockCheckPop 180ms ease forwards;
}

.mock-item.is-checked {
    background: rgba(140, 198, 62, 0.06);
    border-color: rgba(140, 198, 62, 0.18);
}

@keyframes mockCheckPop {
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.mock-item.is-checked .mock-item-title {
    opacity: 0.85;
}

.mock-item.is-checked .mock-item-sub {
    opacity: 0.8;
}

.mock-item-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: rgba(15, 59, 87, 0.88);
    line-height: 1.15;
}

.mock-item-sub {
    font-size: 0.8rem;
    color: rgba(107, 114, 128, 0.95);
    margin-top: 0.2rem;
    line-height: 1.25;
}

.mock-photo {
    margin: 0 0.85rem 0.65rem;
    border-radius: 18px;
    background: rgba(140, 198, 62, 0.12);
    border: 2px dashed rgba(140, 198, 62, 0.40);
    padding: 0.85rem 0.85rem;
    display: grid;
    place-items: center;
    gap: 0.45rem;
}

.mock-photo-fa {
    font-size: 1.35rem;
    color: rgba(15, 59, 87, 0.62);
}

.mock-photo-text {
    font-weight: 800;
    color: rgba(15, 59, 87, 0.78);
}

.mock-save-btn {
    width: calc(100% - 2rem);
    margin: 0 1rem 0.6rem;
    border: 0;
    border-radius: 16px;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--dg-lime) 0%, var(--dg-lime-dark) 100%);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 0 14px 28px rgba(140, 198, 62, 0.28);
    cursor: pointer;
}

.mock-save-btn:hover {
    filter: brightness(1.03);
}

.mock-save-btn:active {
    transform: translateY(1px);
}

.mock-popup {
    position: absolute;
    inset: 0;
    padding: 1rem;
    display: none;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.mock-popup.is-open {
    display: flex;
}

.mock-popup-card {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    padding: 0.9rem 1rem;
    background: rgba(15, 59, 87, 0.92);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.mock-popup.is-open .mock-popup-card {
    opacity: 1;
    transform: translateY(0);
}

.mock-popup-message {
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 700;
}

.mock-popup-close {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.mock-popup-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.mock-popup-close i {
    font-size: 1rem;
}

@media (max-width: 992px) {
    .mobile-app-grid {
        grid-template-columns: 1fr;
    }

    .mobile-app-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-app-section {
        padding: 58px 0 45px;
    }

    .mobile-app-mock {
        aspect-ratio: auto;
        height: clamp(560px, 78vh, 820px);
        max-width: 520px;
    }

    .mobile-app-features {
        grid-template-columns: 1fr;
    }

    .mobile-app-title {
        font-size: 2rem;
    }

    .store-badge {
        width: 100%;
        min-width: 0;
    }
}

/* Free Trial Section */
.free-trial-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f7fa 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 70px;
    /* Header yüksekliği + ekstra boşluk */
}

.free-trial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(52,195,215,0.12)" cx="200" cy="150" r="100"/><circle fill="rgba(140,198,62,0.10)" cx="800" cy="200" r="150"/><circle fill="rgba(15,59,87,0.08)" cx="500" cy="600" r="120"/></svg>');
    background-size: cover;
    opacity: 0.6;
}

.free-trial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.free-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.free-trial-badge i {
    font-size: 1rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.free-trial-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dg-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.free-trial-title .highlight-text {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-trial-description {
    font-size: 1.2rem;
    color: var(--dg-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.free-trial-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trial-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(52, 195, 215, 0.2);
    transition: all 0.3s ease;
}

.trial-feature-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(52, 195, 215, 0.4);
}

.trial-feature-item i {
    color: var(--dg-lime);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trial-feature-item span {
    color: var(--dg-navy);
    font-weight: 500;
    font-size: 1rem;
}

.free-trial-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-trial-large,
.btn-demo-large {
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-trial-large {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.btn-trial-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.btn-demo-large {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dg-navy);
    border: 2px solid rgba(52, 195, 215, 0.4);
}

.btn-demo-large:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(52, 195, 215, 0.6);
}

.btn-trial-large i,
.btn-demo-large i {
    font-size: 1.2rem;
}

.free-trial-section .trial-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--dg-muted);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.free-trial-section .trial-note i {
    color: var(--dg-lime);
    font-size: 1.1rem;
}

.free-trial-section .trial-note strong {
    color: var(--dg-navy);
    font-weight: 600;
}

@media (max-width: 768px) {
    .free-trial-section {
        padding: 60px 0;
    }

    .free-trial-title {
        font-size: 2rem;
    }

    .free-trial-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .free-trial-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .trial-feature-item {
        padding: 0.9rem 1.2rem;
    }

    .free-trial-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn-trial-large,
    .btn-demo-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .free-trial-section .trial-note {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .free-trial-title {
        font-size: 1.75rem;
    }

    .free-trial-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .trial-feature-item span {
        font-size: 0.9rem;
    }
}

/* Promo Video Section */
.promo-video-section {
    padding: 80px 0;
    background: #ffffff;
}

.promo-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.promo-player {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 195, 215, 0.15);
    width: 100%;
    max-width: 900px;
}

.promo-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #000;
}

.promo-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 900px;
}

.promo-thumb {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.4rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.promo-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-color: rgba(52, 195, 215, 0.35);
}

.promo-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.promo-thumb span {
    font-size: 0.9rem;
    color: #374151;
    text-align: center;
    font-weight: 600;
}

.promo-thumb.active {
    border-color: var(--dg-lime);
    box-shadow: 0 8px 22px rgba(140, 198, 62, 0.22);
}

@media (max-width: 992px) {
    .promo-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-video-section {
        padding: 60px 0;
    }

    .promo-thumbs {
        grid-template-columns: 1fr;
    }

    .promo-video-wrapper {
        margin: 0 1rem;
    }
}

/* What-is section screenshot (responsive) */
.preview-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* kırpma yok, kutuya sığdır */
    background: #ffffff;
    display: block;
}

@media (max-width: 768px) {
    /* Mobilde de oran korunur; sabit yükseklik yok */
}

/* DiyetGen Footer Styles */
.footer-diyetgen {
    /* Sayfa paletiyle uyumlu: turkuaz/yeşil dokular */
    background:
        radial-gradient(900px 400px at -10% 0%, rgba(52, 195, 215, .42), transparent 60%),
        radial-gradient(700px 350px at 110% 10%, rgba(139, 197, 63, .40), transparent 60%),
        linear-gradient(135deg, #d0eef5 0%, #d8ecd1 100%);
    color: #0f3b57;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem 0 2rem;
}

.footer-brand {
    .footer-logo {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        cursor: pointer;

        .logo-img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #60a5fa;
            margin: 0;
        }
    }

    .footer-description {
        color: #0f3b57;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(34, 184, 207, .12);
            border-radius: 12px;
            color: #0f3b57;
            text-decoration: none;
            transition: all 0.3s ease;

            &:hover {
                background: linear-gradient(135deg, rgba(34, 184, 207, .25), rgba(139, 197, 63, .25));
                transform: translateY(-2px);
            }

            i {
                font-size: 1.2rem;
            }
        }
    }
}

.footer-links {
    display: block;

    .footer-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #0f3b57;
        order: 1;
    }

    .footer-list {
        list-style: none;
        margin: 0;
        padding: 0;
        order: 2;

        li {
            margin-bottom: 0.3rem;

            .footer-link {
                color: #475569;
                text-decoration: none;
                transition: color 0.3s ease;
                font-size: 0.9rem;
                display: block;

                &:hover {
                    color: #34c3d7;
                }
            }
        }
    }
}

.footer-contact {
    display: block;

    .footer-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #0f3b57;
        order: 1;
    }

    .contact-info {
        display: block;

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.4rem;
            color: #475569;
            font-size: 0.9rem;

            i {
                color: #34c3d7;
                width: 16px;
                text-align: center;
            }
        }
    }
}

.footer-bottom {
    border-top: 1px solid rgba(15, 59, 87, 0.1);
    padding: 1.5rem 0;

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;

        .copyright {
            color: #475569;
            margin: 0;
            font-size: 0.9rem;
        }

        .footer-payment {
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                max-height: 28px;
                width: auto;
                object-fit: contain;
                opacity: 0.85;
                transition: opacity 0.3s ease;

                &:hover {
                    opacity: 1;
                }
            }
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;

            .footer-link {
                color: #475569;
                text-decoration: none;
                font-size: 0.9rem;
                transition: color 0.3s ease;

                &:hover {
                    color: #34c3d7;
                }
            }
        }
    }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--dg-lime);
}

.pricing-note p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-note i {
    color: var(--dg-lime);
    margin-right: 0.5rem;
}

/* Special Offer Header */
.special-offer-header {
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, var(--dg-lime), var(--dg-aqua));
    border-radius: 8px;
    color: white;
}

.special-offer-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.special-offer-header p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(52, 195, 215, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(52, 195, 215, 0.2);
}

.countdown-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.countdown-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dg-navy);
    margin: 0 0 0.3rem 0;
}

.countdown-header p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.countdown-numbers {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dg-navy);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Billing Toggle Styles */
.billing-toggle-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0 3rem 0;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 50px;
    position: relative;
}

.toggle-label {
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.toggle-label:first-child {
    padding-left: 1rem;
}

.toggle-label:last-child {
    padding-right: 1rem;
}

.discount-badge-small {
    background: var(--dg-lime);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
    background-color: var(--dg-lime);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(30px);
}


/* Package Price Container */
.package-price-container {
    text-align: center;
    margin-bottom: 1rem;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.savings-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.savings {
    font-size: 0.8rem;
    color: var(--dg-lime);
    font-weight: 600;
}

.discount-badge {
    background: var(--dg-lime);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Ultra paket tasarruf ve indirim badge renkleri - Mor */
.package-card.featured .savings {
    color: #8a2be2;
}

.package-card.featured .discount-badge {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    color: white;
}

/* Slot Counter Styles */
.slot-counter {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid #e9ecef;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slot-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.slot-price {
    font-size: 0.9rem;
    color: var(--dg-navy);
    font-weight: 500;
}

/* Profesyonel paket slot fiyat rengi - Yeşil */
.package-card:not(.featured) .slot-price {
    color: var(--dg-lime);
}

/* Ultra paket slot fiyat rengi - Mor */
.package-card.featured .slot-price {
    color: #8a2be2;
}

.slot-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slot-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--dg-lime);
    background: white;
    color: var(--dg-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slot-btn:hover {
    background: var(--dg-lime);
    color: white;
}

.slot-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slot-btn:disabled:hover {
    background: white;
    color: var(--dg-lime);
}

/* Ultra paket slot butonları - Mor renk */
.package-card.featured .slot-btn {
    border-color: #8a2be2;
    color: #8a2be2;
}

.package-card.featured .slot-btn:hover {
    background: #8a2be2;
    color: white;
}

.package-card.featured .slot-btn:disabled:hover {
    background: white;
    color: #8a2be2;
}

.slot-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dg-navy);
    min-width: 2rem;
    text-align: center;
}

.slot-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.slot-total-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.slot-total-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dg-navy);
}

/* Total Price Section */
.total-price-section {
    border-top: 2px solid #e9ecef;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    text-align: center;
}

.total-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.total-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.total-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dg-navy);
}

.total-period {
    font-size: 1rem;
    color: #666;
}


/* Responsive Design for Packages */
@media (max-width: 768px) {
    .billing-toggle {
        /* flex-direction: column; */
        gap: 0.5rem;
        padding: 1rem;
    }

    .discount-badge-small {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        margin-left: 0.3rem;
    }

    .countdown-timer {
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .countdown-header h3 {
        font-size: 1rem;
    }

    .countdown-header p {
        font-size: 0.7rem;
    }

    .countdown-numbers {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 40px;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .special-offer-header {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }

    .special-offer-header h3 {
        font-size: 1.1rem;
    }

    .special-offer-header p {
        font-size: 0.8rem;
    }


    .slot-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .slot-total {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .total-price {
        flex-direction: column;
        gap: 0.3rem;
    }

    .total-amount {
        font-size: 1.5rem;
    }
}

/* Hero Tagline */
.hero-tagline {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(52, 195, 215, 0.1), rgba(140, 198, 62, 0.1));
    border-radius: 10px;
    border-left: 4px solid var(--dg-lime);
}

.hero-tagline p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dg-navy);
    text-align: center;
}

/* Section Tagline */
.section-tagline {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(52, 195, 215, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--dg-aqua);
}

.section-tagline p {
    margin: 0;
    font-size: 1rem;
    color: var(--dg-navy);
    text-align: center;
    font-style: italic;
}

.whatsapp-float {
    bottom: 1.5rem;
    right: 1rem;
    width: 56px;
    height: 56px;
}

.whatsapp-float i {
    font-size: 1.5rem;
}


/* Responsive Contact Adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .contact-desc {
        text-align: center;
        font-size: 0.9rem;
    }

    .contact-subtitle-wrapper {
        justify-content: center;
    }

    .contact-info-list {
        grid-template-columns: 1fr;
        /* Single column on mobile to prevent squishing */
        gap: 1.25rem;
        max-width: 500px;
        margin: 0 auto 1.5rem auto;
    }

    .contact-badges {
        justify-content: center;
        gap: 0.5rem;
    }

    .contact-badge-item {
        flex: 1 1 calc(50% - 0.25rem);
        min-width: 0;
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
        border-radius: 12px;
    }

    .contact-badge-icon-box {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .contact-badge-icon-box i {
        font-size: 0.85rem;
    }

    .contact-badge-label {
        font-size: 0.55rem;
    }

    .contact-badge-value {
        font-size: 0.78rem;
        white-space: nowrap;
    }
}

/* Contact Badges Styles */
.contact-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-badge-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(140, 198, 62, 0.08);
    padding: 0.65rem 1.25rem;
    border-radius: 14px;
    text-decoration: none;
    border: 1.5px solid rgba(107, 191, 58, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
}

.contact-badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 191, 58, 0.08);
    border-color: rgba(107, 191, 58, 0.4);
}

.contact-badge-icon-box {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-badge-icon-box i {
    color: var(--dg-lime-dark);
    font-size: 1rem;
}

.contact-badge-content {
    display: flex;
    flex-direction: column;
}

.contact-badge-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.contact-badge-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
}

/* Cookie Consent Banner Styling */
.cookie-consent-card {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: calc(100% - 48px);
    max-width: 420px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 59, 87, 0.1);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(15, 59, 87, 0.12);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-family: 'Inter', sans-serif;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-card.hidden {
    transform: translateY(150%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.cookie-consent-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-consent-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dg-navy);
    margin: 0;
}

.cookie-consent-text {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--dg-navy);
    text-decoration: underline;
    font-weight: 600;
}

/* Preferences details list */
.cookie-preferences-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 59, 87, 0.08);
}

.preference-option {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preference-header {
    display: flex;
    align-items: center;
}

.preference-checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dg-navy);
}

.preference-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox-styled {
    position: relative;
    height: 18px;
    width: 18px;
    background-color: #e2e8f0;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.preference-checkbox-container input:checked~.custom-checkbox-styled {
    background-color: var(--dg-lime-dark);
}

.preference-checkbox-container input:disabled~.custom-checkbox-styled {
    background-color: var(--dg-navy);
    opacity: 0.6;
    cursor: not-allowed;
}

.custom-checkbox-styled:after {
    content: "";
    position: absolute;
    display: none;
}

.preference-checkbox-container input:checked~.custom-checkbox-styled:after,
.preference-checkbox-container input:disabled~.custom-checkbox-styled:after {
    display: block;
}

.preference-checkbox-container .custom-checkbox-styled:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.preference-description {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0 0 0 1.65rem;
    line-height: 1.4;
}

/* Actions */
.cookie-consent-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.actions-primary {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.cookie-btn {
    flex: 1;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
    text-align: center;
}

.cookie-btn-accept {
    background-color: var(--dg-navy);
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background-color: #0c2c41;
}

.cookie-btn-reject {
    background-color: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.cookie-btn-reject:hover {
    background-color: #e2e8f0;
}

.cookie-btn-save {
    width: 100%;
    background-color: var(--dg-lime-dark);
    color: #ffffff;
}

.cookie-btn-save:hover {
    background-color: #5aa131;
}

.cookie-btn-link {
    background: none;
    border: none;
    color: var(--dg-navy);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    text-align: center;
    padding: 0.25rem;
    transition: opacity 0.2s ease;
}

.cookie-btn-link:hover {
    opacity: 0.8;
}

.cookie-consent-card .hidden {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .cookie-consent-card {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 1.25rem 1.25rem 1.75rem 1.25rem;
        gap: 1rem;
        box-shadow: 0 -8px 32px rgba(15, 59, 87, 0.15);
    }
}