/* 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;
}

/* 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%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.landing-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

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

.header-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-logo .logo-img {
    height: 45px;
    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;
}

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

.header-nav .nav-list li a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

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

.header-nav .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dg-lime);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions .btn-outline,
.header-actions .btn-primary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.header-actions .btn-outline i,
.header-actions .btn-primary i {
    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: var(--dg-lime);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(140, 198, 62, 0.3);
}

.header-actions .btn-primary {
    /* background: linear-gradient(45deg, var(--dg-lime), var(--dg-lime-dark)); */
    background: var(--dg-lime);
    color: white;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: var(--dg-lime);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s 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 {
    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;
}

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

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

.mobile-menu .mobile-actions .btn-primary {
    background: var(--dg-lime);
    color: white;
}

.mobile-menu .mobile-actions .btn-primary:hover {
    transform: translateY(-2px);
}

/* Landing Page Styles */
.hero-section {
    background: linear-gradient(135deg, #c9eef6 0%, #e0f7c9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.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;
}

.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: var(--dg-lime);
    color: white;
    box-shadow: 0 10px 25px rgba(140, 198, 62, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(140, 198, 62, 0.3);
}

.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;
    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: 6rem 0;
    background: white;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.traditional,
.diyetgen {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.traditional h4,
.diyetgen h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.traditional ul,
.diyetgen ul {
    list-style: none;
    padding: 0;
}

.traditional ul li,
.diyetgen ul li {
    padding: 0.5rem 0;
    color: #555;
    text-align: center;
}

.traditional {
    background: #ffe6e6;
    border: 1px solid #ffcccc;
}

.traditional h4 {
    color: #dc3545;
}

.diyetgen {
    background: #e6f7e6;
    border: 1px solid #ccffcc;
}

.diyetgen h4 {
    color: var(--dg-lime);
}

.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;
}

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

.package-card.featured {
    border-color: var(--dg-lime);
    transform: scale(1.05);
}

.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: 2rem;
}

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

.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);
}

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

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

.package-features .feature-item {
    padding: 1rem 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.8rem;
}

.feature-left i {
    color: var(--dg-lime);
    font-size: 1.1rem;
}

.feature-name {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

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

.info-icon {
    color: var(--dg-aqua);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: var(--dg-lime);
}

.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);
}

/* 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);
}

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--dg-lime), var(--dg-lime-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dg-navy);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.3rem;
}

.contact-details span {
    font-size: 0.9rem;
    color: #666;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    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: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--dg-aqua);
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(52, 195, 215, 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;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--dg-lime);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1000;
    display: none;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

/* 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: block;
    }

    .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-section {
        padding-top: 70px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-section .btn-secondary {
        margin-bottom: 16px;
    }

    .hero-section {
        padding-top: 70px;
    }

    .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;
    }
}

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

.promo-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.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);
}

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

.promo-thumbs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.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-grid {
        grid-template-columns: 1fr;
    }

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

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

    .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-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;
}

/* 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;
}

.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);
}

.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;
}

/* Fixed Trial Banner */
.fixed-trial-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 1rem 2rem;
    max-width: 800px;
    width: 95%;
}

.trial-close-btn {
    position: absolute;
    top: 0.3rem;
    right: 0.5rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trial-close-btn:hover {
    background: #e5e7eb;
    color: #374151;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.trial-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.trial-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.trial-text i {
    color: var(--dg-lime);
    font-size: 1.5rem;
}

.trial-text p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dg-navy);
}

.btn-trial {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dg-lime);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-icon-circle {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Responsive Design for Trial Banner */
@media (max-width: 768px) {
    .fixed-trial-banner {
        bottom: 1rem;
        width: 95%;
        padding: 0.8rem 1.5rem;
    }

    .trial-close-btn {
        display: flex;
        top: 0.2rem;
        right: 0.3rem;
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .trial-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .trial-text {
        justify-content: center;
    }

    .trial-text p {
        font-size: 0.9rem;
    }

    .btn-trial {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Desktop'ta kapatma butonunu göster */
@media (min-width: 769px) {
    .trial-close-btn {
        display: flex;
    }
}