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

:root {
    /* Professional Food Recipe Theme - Inspired by Top Sites */
    --primary-color: #e69030;
    --secondary-color: #d4a574;
    --accent-color: #f4a261;
    --background-color: #e9eee0;
    
    /* Professional Color Palette */
    --white: #ffffff;
    --black: #000000;
    --dark-color: #2c2c2c;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    
    /* Surface Colors */
    --surface-primary: #ffffff;
    --surface-secondary: #f8f9fa;
    --surface-accent: #f5f5f5;
    
    /* Professional Gradients */
    --gradient-primary: linear-gradient(135deg, #e69030 0%, #f4a261 100%);
    --gradient-hero: linear-gradient(135deg, #e69030 0%, #d4a574 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    
    /* Professional Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Professional Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Professional Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Professional Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Global Font Family - Force Poppins Everywhere (except icons) */
* {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
}

/* Fix Font Awesome Icons */
.fab, .fas, .far, .fal, .fa, [class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Fix Font Awesome Brand Icons */
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Professional Header - Inspired by Martha Stewart */
header {
    background: var(--surface-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(230, 144, 48, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Ultra Modern Minimal Hero */
.hero {
    position: relative;
    padding: var(--space-lg) 0;
    background: #0a0a0a;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230, 144, 48, 0.2) 0%, transparent 70%);
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    top: 65%;
    right: 20%;
    animation-delay: 3s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.2) 0%, transparent 70%);
    bottom: 25%;
    left: 25%;
    animation-delay: 6s;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #e69030;
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 30%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(4) {
    top: 60%;
    left: 10%;
    animation-delay: 4.5s;
}

.particle:nth-child(5) {
    bottom: 40%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    position: relative;
    margin-bottom: var(--space-lg);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e69030;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.badge-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #e69030, #ff8c00);
    border-radius: 1px;
    animation: underlineExpand 2s ease-out;
}

@keyframes underlineExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    color: white;
    position: relative;
}

.title-main {
    display: block;
    color: white;
    margin-bottom: var(--space-xs);
    font-weight: 300;
}

.title-accent {
    display: block;
    background: linear-gradient(45deg, #e69030, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #e69030, #ff8c00);
    border-radius: 2px;
    animation: titleUnderlineExpand 3s ease-out 1s both;
    box-shadow: 0 0 20px rgba(230, 144, 48, 0.5);
}

@keyframes titleUnderlineExpand {
    0% { width: 0; }
    100% { width: 150px; }
}

.hero-description {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    max-width: 450px;
    position: relative;
}

.hero-description::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #e69030, transparent);
    animation: descriptionLineExpand 2s ease-out 2s both;
}

@keyframes descriptionLineExpand {
    0% { width: 0; }
    100% { width: 60px; }
}

.hero-features {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #e69030 !important;
    transform: translateX(5px);
}

.feature-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #e69030, #ff8c00);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.feature-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: lineShimmer 2s ease-in-out infinite;
}

.feature-item:hover {
    color: #e69030;
    transform: translateX(5px);
}

.feature-item:hover .feature-line {
    width: 40px;
    box-shadow: 0 0 10px rgba(230, 144, 48, 0.5);
}

@keyframes lineShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Simple Clean Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    min-width: 140px;
    height: 48px;
    line-height: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-primary {
    background-color: #e69030;
    color: white;
    border-color: #e69030;
}

.btn-primary:hover {
    background-color: #ff8c00;
    border-color: #ff8c00;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #e69030;
    border-color: #e69030;
}

.btn-secondary:hover {
    background-color: #e69030;
    color: white;
    transform: translateY(-1px);
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(230, 144, 48, 0.2), rgba(255, 140, 0, 0.2));
    border-radius: 30px;
    filter: blur(20px);
    z-index: -1;
    animation: imageGlow 4s ease-in-out infinite;
}

.app-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.app-image:hover {
    transform: scale(1.05);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.image-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(230, 144, 48, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: imageRipple 3s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #e69030;
    border-radius: 50%;
    animation: dotFloat 4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(230, 144, 48, 0.5);
}

.dot-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.dot-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1.5s;
}

.dot-3 {
    top: 60%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes imageGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes imageRipple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

@keyframes dotFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) scale(1.3);
        opacity: 1;
    }
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(230, 144, 48, 0.1), transparent);
    height: 1px;
    width: 100%;
    animation: gridLineMove 8s linear infinite;
}

.grid-line:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    top: 40%;
    animation-delay: 2s;
}

.grid-line:nth-child(3) {
    top: 60%;
    animation-delay: 4s;
}

.grid-line:nth-child(4) {
    top: 80%;
    animation-delay: 6s;
}

@keyframes gridLineMove {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 144, 48, 0.1) 0%, transparent 70%);
    animation: shapeFloat 10s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 25%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
}

@keyframes shapeFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-25px) rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 45vh;
        padding: var(--space-md) 0;
}

.hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn {
        min-width: 160px;
        height: 50px;
        font-size: 14px;
    }
}

/* Professional Buttons - Clean & Functional */
.btn-primary, .btn-secondary {
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Hero Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-stats {
        justify-content: center;
        gap: var(--space-lg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

.btn-secondary {
    background: var(--surface-primary);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
    opacity: 0.6;
}

/* Professional Categories - Clean Grid Layout */
/* AI Features Section */
.ai-features {
    padding: var(--space-3xl) 0;
    background: var(--surface-primary);
    overflow: hidden;
}

.ai-features-header {
    padding: 0 var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.features-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--space-lg) var(--space-xl);
    gap: var(--space-lg);
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features-grid::-webkit-scrollbar {
    display: none;
}

.feature-card {
    background: var(--surface-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 0 0 280px;
    min-width: 280px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    transition: var(--transition);
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(230, 144, 48, 0.3));
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.categories {
    padding: var(--space-3xl) 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(230, 144, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 144, 48, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(230, 144, 48, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.category-grid {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--space-lg) var(--space-xl);
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-grid::-webkit-scrollbar {
    display: none;
}

/* Categories Header */
.categories-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: 0 var(--space-xl);
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, #e69030 0%, #f4a261 100%);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    box-shadow: 0 8px 30px rgba(230, 144, 48, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: white;
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #ffffff 0%, #e69030 50%, #f4a261 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll indicators removed - using grid layout */

.category-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    flex: 0 0 300px;
    min-width: 300px;
    transform-style: preserve-3d;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(230, 144, 48, 0.3) 0%, 
        rgba(244, 162, 97, 0.2) 50%, 
        transparent 100%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    border-radius: 24px;
}

/* Rotating halo animation removed */

.category-card:hover::before {
    opacity: 1;
}

/* Rotating halo hover effect removed */

.category-card:hover {
    transform: translateY(-25px) scale(1.08) rotateX(5deg);
    box-shadow: 
        0 50px 120px rgba(230, 144, 48, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-color: rgba(230, 144, 48, 0.6);
}

.category-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(230, 144, 48, 0.1) 0%, 
        transparent 50%, 
        rgba(244, 162, 97, 0.1) 100%);
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 2;
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        transparent 100%);
    z-index: 3;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9) saturate(1.1);
}

.category-card:hover .category-image::before {
    opacity: 1;
}

.category-card:hover .category-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) saturate(1.4) contrast(1.2) hue-rotate(5deg);
}

.category-content {
    padding: var(--space-xl);
    position: relative;
    z-index: 4;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.02) 100%);
}

/* Category badges removed */

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        transparent 100%);
    padding: var(--space-xl);
    z-index: 4;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(30px);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.category-card:hover .category-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content h4 {
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: var(--space-sm);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, #ffffff 0%, #e69030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-weight: 600;
}

/* Category icons removed */

/* Category features removed */

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: white;
    font-weight: 900;
    letter-spacing: -0.02em;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-card:hover h3 {
    background: linear-gradient(135deg, #e69030 0%, #f4a261 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-5px) translateZ(10px);
    text-shadow: 0 5px 25px rgba(230, 144, 48, 0.5);
}

.category-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.category-card:hover p {
    color: rgba(255, 255, 255, 0.98);
    transform: translateY(-2px) translateZ(5px);
}

/* Category stats removed */

/* Featured Category */
.featured-category {
    transform: scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.featured-category::before {
    background: linear-gradient(135deg, 
        rgba(230, 144, 48, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
}

/* Rotating halo featured effect removed */

.featured-category:hover {
    transform: scale(1.08) translateY(-20px) rotateX(5deg);
    box-shadow: 
        0 50px 120px rgba(230, 144, 48, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(230, 144, 48, 0.6);
}

.featured-category:hover::before {
    opacity: 1;
}

/* Featured category badge removed */

/* Professional Featured Recipes - Large Bold Images */
.featured-recipes {
    padding: var(--space-3xl) 0;
    background: var(--surface-primary);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.recipe-card {
    background: var(--surface-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.recipe-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    z-index: 2;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

.recipe-content {
    padding: var(--space-md);
    position: relative;
    z-index: 2;
}

.recipe-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.recipe-card:hover .recipe-content h3 {
    color: var(--primary-color);
}

.recipe-content p {
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    font-size: 0.9rem;
    transition: var(--transition);
}

.recipe-card:hover .recipe-content p {
    color: var(--text-color);
}

.recipe-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.recipe-meta i {
    margin-right: var(--space-xs);
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.recipe-card:hover .recipe-meta i {
    color: var(--accent-color);
}

/* App Download Section */
.app-download {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.app-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(230, 144, 48, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 144, 48, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5xl);
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 70vh;
}

.app-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #e69030 0%, #f4a261 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.app-text h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e69030, #f4a261);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.app-text h2::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: rgba(230, 144, 48, 0.6);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.app-text p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.download-buttons {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.download-btn i {
    font-size: 1.5rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn span {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1;
}

.download-btn strong {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.download-btn.app-store {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn.google-play {
    background: linear-gradient(135deg, #34a853 0%, #2e7d32 100%);
    color: white;
    box-shadow: 
        0 8px 25px rgba(52, 168, 83, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.download-btn.app-store:hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.download-btn.google-play:hover {
    box-shadow: 
        0 15px 35px rgba(52, 168, 83, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.app-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(230, 144, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.app-image {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
    width: auto;
    position: relative;
    min-height: 500px;
    z-index: 1;
}

.app-image:hover {
    transform: scale(1.03) rotateY(2deg);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(230, 144, 48, 0.3);
}

/* Categories Mobile Responsive */
@media (max-width: 768px) {
    .categories {
        padding: var(--space-2xl) 0;
    }

    .categories-header {
        margin-bottom: var(--space-2xl);
        padding: 0 var(--space-md);
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .category-grid {
        padding: var(--space-md) var(--space-md);
        gap: var(--space-lg);
        margin-top: var(--space-2xl);
    }

    .category-card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .featured-category {
        transform: scale(1.05) translateZ(10px);
    }

    .category-image {
        height: 200px;
    }

    .category-content {
        padding: var(--space-md);
    }

    .category-content h3 {
        font-size: 1.2rem;
    }

    .category-content p {
        font-size: 0.85rem;
    }

    /* Category stats mobile styles removed */
}

/* App Download Mobile Responsive */
@media (max-width: 768px) {
    .app-download {
        padding: var(--space-3xl) 0;
        min-height: 60vh;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .app-text {
        order: 1;
    }
    
    .app-visual {
        order: 2;
    }
    
    .app-text h2 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .app-text p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .download-buttons {
        justify-content: center;
        gap: var(--space-md);
    }
    
    .download-btn {
        min-width: 180px;
        padding: var(--space-sm) var(--space-lg);
    }
    
    .app-image {
        max-height: 500px;
        min-height: 300px;
    }
    
    .categories-header {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    /* AI Features Mobile */
    .ai-features {
        padding: var(--space-2xl) 0;
    }

    .ai-features-header {
        margin-bottom: var(--space-2xl);
        padding: 0 var(--space-md);
    }

    .features-grid {
        padding: var(--space-md) var(--space-md);
        gap: var(--space-lg);
    }

    .feature-card {
        flex: 0 0 260px;
        min-width: 260px;
        padding: var(--space-lg);
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .feature-card i {
        font-size: 2.5rem;
    }
    
    .scroll-indicators {
        justify-content: center;
    }
    
    .category-grid {
        padding: var(--space-md) 0;
    }
    
    .category-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .featured-category {
        transform: none;
    }
}

.download-btn i {
    font-size: 1.5rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-btn strong {
    font-size: 1rem;
    font-weight: 600;
}

.app-store {
    background: #000;
}

.google-play {
    background: #01875f;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2c2c2e, #1c1c1e);
    border-radius: 40px;
    padding: 8px;
    margin: 0 auto;
    box-shadow: 
        0 0 0 2px #3a3a3c,
        0 0 0 4px #1c1c1e,
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid #3a3a3c;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid #1c1c1e;
}

/* iPhone Notch */
.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

/* Home Indicator */
.phone-screen::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 10;
}

.app-interface {
    padding: 50px 20px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Status Bar */
.app-interface::before {
    content: '9:41';
    position: absolute;
    top: 15px;
    left: 20px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    z-index: 5;
}

.app-interface::after {
    content: '●●●●●';
    position: absolute;
    top: 15px;
    right: 20px;
    color: #000;
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 5;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.app-header h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.app-header i {
    color: var(--primary-color);
    font-size: 1.3rem;
    background: rgba(230, 144, 48, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.app-content-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.app-content-preview p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.4;
}

.ai-suggestion {
    background: linear-gradient(135deg, #e69030 0%, #f4a261 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 144, 48, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-suggestion i {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
}

/* Floating Action Button */
.app-interface .fab {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(230, 144, 48, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

@keyframes starFloat {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(5px); }
    75% { transform: translateX(-10px) translateY(-3px); }
}

/* Modern Newsletter - Clean Design */
.newsletter {
    padding: var(--space-2xl) 0;
    background: #050505;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(230, 144, 48, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(230, 144, 48, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(230, 144, 48, 0.06) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
    pointer-events: none;
}

.newsletter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 50px 50px, rgba(230, 144, 48, 0.6), transparent),
        radial-gradient(2px 2px at 150px 100px, rgba(230, 144, 48, 0.5), transparent),
        radial-gradient(1px 1px at 300px 80px, rgba(230, 144, 48, 0.4), transparent),
        radial-gradient(1px 1px at 450px 120px, rgba(230, 144, 48, 0.3), transparent);
    background-repeat: repeat;
    background-size: 500px 200px;
    animation: patternMove 30s linear infinite, starTwinkle 3s ease-in-out infinite, starFloat 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.8;
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: var(--space-md);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.newsletter p {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xs);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(230, 144, 48, 0.3);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    white-space: nowrap;
    background: #e69030;
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff8c00;
    color: white;
    transform: translateY(-1px);
}

/* Professional Footer - Dark Night */
footer {
    background: #000000;
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(230, 144, 48, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(230, 144, 48, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(230, 144, 48, 0.06) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 50px 50px, rgba(230, 144, 48, 0.6), transparent),
        radial-gradient(2px 2px at 150px 100px, rgba(230, 144, 48, 0.5), transparent),
        radial-gradient(1px 1px at 300px 80px, rgba(230, 144, 48, 0.4), transparent),
        radial-gradient(1px 1px at 450px 120px, rgba(230, 144, 48, 0.3), transparent);
    background-repeat: repeat;
    background-size: 500px 200px;
    animation: patternMove 30s linear infinite, starTwinkle 3s ease-in-out infinite, starFloat 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

/* Footer Logo */
.footer-logo {
    margin-bottom: var(--space-md);
}

/* Payment Page Styles - Site Uyumlu */
.payment-section {
    padding: 200px 0 var(--space-5xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}


.payment-header {
    text-align: center;
    margin-top: 100px;
    margin-bottom: var(--space-3xl);
}

.payment-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-2xl);
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #d67a1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.payment-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d67a1f 100%);
    border-radius: 2px;
}

.payment-header p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0 auto;
    font-weight: 500;
    max-width: 500px;
}


.trust-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-item i {
    color: #00b894;
    font-size: 1.1rem;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-4xl);
    align-items: start;
    max-width: 1600px;
    margin: 0 auto;
}

/* Sol Panel - Paket Bilgileri */
.left-panel {
    position: sticky;
    top: var(--space-xl);
}

.selected-package {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid #f97316;
    max-width: 400px;
    width: 100%;
    position: relative;
}

.package-header {
    background: linear-gradient(to right, #f97316, #dc2626);
    padding: 24px;
    color: white;
}

.package-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.badge-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.package-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.package-content {
    padding: 24px;
}

.price-section {
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
}

.old-price {
    font-size: 18px;
    color: #6b7280;
    text-decoration: line-through;
}

.discount-info {
    color: #16a34a;
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 4px 0;
}

.monthly-equivalent {
    color: #6b7280;
    font-size: 12px;
    margin: 0;
}

/* Plan Selector */
.plan-selector {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 24px;
    gap: 4px;
}

.plan-option {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.plan-option:hover {
    background: rgba(255, 255, 255, 0.7);
}

.plan-option.active {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.plan-type {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.plan-option.active .plan-type {
    color: #f97316;
}

.plan-price {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
}

.plan-save {
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.plan-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: var(--space-xs);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.trial-info {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
    margin: 0 0 2px 0;
}

.feature-desc {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.3;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon {
    width: 12px;
    height: 12px;
    color: #16a34a;
}


/* Sağ Panel - Ödeme Formu */
.right-panel {
    position: sticky;
    top: var(--space-xl);
}

/* Payment Form Section */
.payment-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    overflow: hidden;
}

.payment-form-container {
    padding: 0 var(--space-2xl) var(--space-2xl) var(--space-2xl);
    max-width: 700px;
    width: 100%;
}

.payment-form-container h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2px;
    font-size: 0.8rem;
}

.form-field input {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-weight: 500;
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(230, 144, 48, 0.1);
}

.form-field input::placeholder {
    color: #86868b;
    font-weight: 400;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Ödeme Yöntemleri */
.payment-methods-section {
    margin: 8px 0;
}

.payment-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 12px;
}

/* Footer'daki payment logoları için basit stiller */
footer .payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

footer .payment-logo {
    height: 40px;
    object-fit: contain;
}

/* Diğer sayfalardaki payment logoları için orijinal stiller */
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 100px;
    padding: 12px 20px;
    border-radius: 12px;
    background: #f8f9fa;
}

.payment-logo img {
    max-height: 40px;
    max-width: 80px;
    object-fit: contain;
}

.agreement-section {
    margin: 4px 0;
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.agreement-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d2d2d7;
    border-radius: 6px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
    background: #ffffff;
}

.agreement-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.agreement-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.agreement-text {
    color: #1d1d1f;
    font-weight: 400;
}

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

.agreement-text a:hover {
    text-decoration: underline;
}

.total-section {
    background: rgba(230, 144, 48, 0.05);
    border: 1px solid rgba(230, 144, 48, 0.2);
    border-radius: 8px;
    padding: 8px 10px;
    margin: 4px 0;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.price-label {
    color: var(--text-light);
    font-weight: 500;
}

.price-value {
    color: var(--dark-color);
    font-weight: 600;
}

.price-divider {
    height: 1px;
    background: rgba(230, 144, 48, 0.2);
    margin: 2px 0;
}

.total-item {
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 2px;
}

.total-item .price-label {
    color: var(--dark-color);
}

.total-item .price-value {
    color: var(--primary-color);
    font-size: 1rem;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    border-top: 1px solid #d2d2d7;
    margin-top: var(--space-sm);
}

.payment-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    margin: 4px 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.payment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.payment-button:active {
    transform: scale(0.98);
}

.button-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.button-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #86868b;
    font-size: 0.75rem;
    font-weight: 400;
    margin: 3px 0;
}

.security-icon {
    font-size: 1rem;
}

/* Payment Methods */
.payment-methods {
    margin-top: var(--space-sm);
    text-align: center;
}

.method-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}


/* Iyzico logosu artık payment-logo class'ı kullanıyor, ayrı stil gerekmiyor */

/* Diğer sayfalardaki Iyzico logosu için orijinal stiller */
.iyzico-logo {
    height: 18px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    margin-top: var(--space-lg);
}

.method-logos {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}


.iyzico-logo {
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .left-panel,
    .right-panel {
        position: static;
    }
    
    .payment-wrapper {
        padding: 0 var(--space-md);
    }
    
    .payment-header h1 {
        font-size: 2.5rem;
    }
    
    .plan-card {
        padding: var(--space-xl);
    }
    
    .payment-form-container {
        padding: var(--space-xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .price {
        font-size: 3rem;
    }
    
    .method-logos {
        gap: var(--space-md);
    }
    
    
    .iyzico-logo {
        height: 18px;
    }
}

/* Sol Taraf - Kart ve Fiyat */
.left-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-3xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e69030 0%, #f4a261 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.pricing-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: var(--space-lg);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-right: var(--space-xs);
}

.period {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.trial {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.feature i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.credit-card-container {
    perspective: 1000px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.credit-card {
    width: 100%;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
}

.credit-card.flipped {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.card-front {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-back {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    padding: var(--space-xl);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(45deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 8px;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-logo {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-number {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: var(--space-xl);
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-name {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-expiry {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.card-stripe {
    width: 100%;
    height: 60px;
    background: #000;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-radius: 4px;
}

.card-cvv {
    background: white;
    color: #000;
    padding: var(--space-md) var(--space-lg);
    border-radius: 6px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: var(--space-lg);
    font-family: 'Courier New', monospace;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Sağ Taraf - Form Bölümü */
.right-section {
    position: sticky;
    top: var(--space-xl);
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-3xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.form-group input {
    padding: var(--space-lg);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-weight: 500;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(230, 144, 48, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.agreement {
    margin: var(--space-lg) 0;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.checkbox-item a:hover {
    text-decoration: underline;
}

.payment-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: var(--space-xl);
    margin: var(--space-lg) 0;
    border: 2px solid #e9ecef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-color);
    border-top: 3px solid #dee2e6;
    margin-top: var(--space-sm);
}

.payment-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d67a1f 100%);
    color: white;
    border: none;
    padding: var(--space-xl);
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    box-shadow: 0 15px 35px rgba(230, 144, 48, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(230, 144, 48, 0.5);
    background: linear-gradient(135deg, #d67a1f 0%, var(--primary-color) 100%);
}

.payment-btn:active {
    transform: translateY(-2px);
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: var(--space-lg);
}

.security-info i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .left-section,
    .right-section {
        position: static;
    }
    
    .credit-card-container {
        max-width: 350px;
    }
    
    .credit-card {
        height: 220px;
    }
    
    .card-number {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }
    
    .form-container {
        padding: var(--space-xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .payment-header h1 {
        font-size: 3rem;
    }
    
    .pricing-card {
        padding: var(--space-xl);
    }
    
    .amount {
        font-size: 3rem;
    }
}

.pricing-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: var(--space-xs);
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.trial {
    color: var(--success-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: var(--space-md);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(230, 144, 48, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

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

.checkbox-item a:hover {
    text-decoration: underline;
}

.payment-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    border-top: 2px solid #dee2e6;
    margin-top: var(--space-sm);
}

.payment-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d67a1f 100%);
    color: white;
    border: none;
    padding: var(--space-lg);
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
    box-shadow: 0 8px 25px rgba(230, 144, 48, 0.3);
}

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 144, 48, 0.4);
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-info i {
    color: var(--success-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .card-section {
        position: static;
    }
    
    .credit-card-container {
        max-width: 350px;
    }
    
    .credit-card {
        height: 220px;
    }
    
    .card-number {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .form-section {
        padding: var(--space-xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .payment-header h1 {
        font-size: 2.5rem;
    }
}

/* Card-based Input Styles */
.input-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.input-card:focus-within {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(230, 144, 48, 0.1);
}

.input-card label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.input-card input,
.input-card textarea {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--dark-color);
    outline: none;
}

.input-card input::placeholder,
.input-card textarea::placeholder {
    color: #adb5bd;
}

/* Credit Card Display */
.card-container {
    margin-bottom: var(--space-xl);
}

.credit-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    color: white;
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-front {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-number-display {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-name-display {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-expiry-display {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.card-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* Checkbox Card */
.checkbox-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

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

.checkbox-item a:hover {
    text-decoration: underline;
}

/* Summary Card */
.summary-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    border-top: 2px solid #dee2e6;
    margin-top: var(--space-sm);
}

/* Payment Button */
.payment-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--space-lg);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.payment-btn:hover {
    background: #d67a1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 144, 48, 0.3);
}

/* Security Info */
.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-info i {
    color: var(--success-color);
}

/* Mobile Responsive for Payment Page */
@media (max-width: 768px) {
    .payment-wrapper {
        padding: 0 var(--space-md);
    }
    
    .payment-header h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: var(--space-lg);
    }
    
    .payment-form {
        padding: var(--space-lg);
    }
    
    .input-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .credit-card {
        height: 160px;
        padding: var(--space-lg);
    }
    
    .card-number-display {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .card-name-display,
    .card-expiry-display {
        font-size: 0.8rem;
    }
    
    .input-card {
        padding: var(--space-md);
    }
    
    .checkbox-card,
    .summary-card {
        padding: var(--space-md);
    }
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: #f8f9fa;
    color: var(--text-light);
    padding: var(--space-sm) var(--space-md);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.security-badge i {
    color: var(--success-color);
}

.payment-form-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: var(--space-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(230, 144, 48, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: var(--space-sm);
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

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

.checkbox-label a:hover {
    text-decoration: underline;
}

.payment-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: 1rem;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    border-top: 2px solid #e0e0e0;
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
}

.payment-btn {
    background: linear-gradient(135deg, #e69030 0%, #f4a261 100%);
    color: white;
    border: none;
    padding: var(--space-xl) var(--space-2xl);
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(230, 144, 48, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.payment-btn:hover::before {
    left: 100%;
}

.payment-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(230, 144, 48, 0.5);
    background: linear-gradient(135deg, #f4a261 0%, #e69030 100%);
}

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

.btn-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.2rem;
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.payment-methods {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid #e0e0e0;
}

.payment-methods p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}


/* Simple Mobile Design for Payment Page */
@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 20px;
    }
    
    .selected-package {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .package-header {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        padding: 32px;
        text-align: center;
        color: white;
    }
    
    .package-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .package-subtitle {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 24px;
    }
    
    .plan-selector {
        display: flex;
        gap: 12px;
        margin: 24px 0;
    }
    
    .plan-option {
        flex: 1;
        padding: 16px 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .package-content {
        padding: 32px;
    }
    
    .price-section {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .current-price {
        font-size: 3rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 8px;
    }
    
    .old-price {
        font-size: 1.5rem;
        color: #9ca3af;
        text-decoration: line-through;
        margin-left: 16px;
    }
    
    .discount-info {
        color: #059669;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
    }
    
    /* Mobil için yatay düzen */
    @media (max-width: 768px) {
        .selected-package {
            display: flex;
            flex-direction: row;
            align-items: stretch;
            max-width: 100%;
            margin: 0 0 20px 0;
            border-radius: 12px;
        }
        
        .package-header {
            flex: 1;
            padding: 20px;
            border-radius: 12px 0 0 12px;
            min-width: 180px;
        }
        
        .package-title {
            font-size: 1.4rem;
            margin-bottom: 6px;
        }
        
        .package-subtitle {
            font-size: 0.85rem;
            margin-bottom: 16px;
        }
        
        .plan-selector {
            flex-direction: column;
            gap: 8px;
            margin: 16px 0 0 0;
        }
        
        .plan-option {
            padding: 10px 12px;
            font-size: 0.85rem;
        }
        
        .package-content {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .price-section {
            margin-bottom: 20px;
        }
        
        .current-price {
            font-size: 2.2rem;
        }
        
        .old-price {
            font-size: 1.2rem;
        }
        
        .discount-info {
            font-size: 0.85rem;
        }
        
        .features-list {
            gap: 8px;
        }
        
        .feature-item {
            font-size: 0.85rem;
            padding: 6px 0;
        }
    }
    
    /* Çok küçük ekranlar için */
    @media (max-width: 480px) {
        .selected-package {
            flex-direction: column;
            margin: 0 10px 20px 10px;
        }
        
        .package-header {
            border-radius: 12px 12px 0 0;
            padding: 16px;
        }
        
        .package-title {
            font-size: 1.2rem;
        }
        
        .package-subtitle {
            font-size: 0.8rem;
        }
        
        .plan-selector {
            flex-direction: row;
            gap: 8px;
            margin: 12px 0 0 0;
        }
        
        .plan-option {
            padding: 8px 10px;
            font-size: 0.8rem;
        }
        
        .package-content {
            padding: 16px;
        }
        
        .current-price {
            font-size: 1.8rem;
        }
        
        .old-price {
            font-size: 1rem;
        }
        
        .discount-info {
            font-size: 0.8rem;
        }
        
        .feature-item {
            font-size: 0.8rem;
            padding: 4px 0;
        }
        
        .payment-form-container {
            padding: 8px;
        }
        
        .payment-form {
            gap: 4px;
        }
        
        .form-field {
            margin-bottom: 4px;
        }
        
        .form-field input {
            padding: 6px 8px;
            font-size: 0.8rem;
        }
        
        .form-row {
            gap: 4px;
        }
        
        .payment-methods-section {
            margin: 3px 0;
        }
        
        .payment-logos {
            gap: 4px;
            height: 35px;
            min-width: 60px;
            padding: 4px 8px;
        }
        
        .payment-logo img {
            max-height: 18px;
            max-width: 45px;
        }
        
        .price-breakdown {
            padding: 6px;
            margin: 4px 0;
        }
        
        .price-row {
            margin-bottom: 3px;
        }
        
        .price-label {
            font-size: 0.75rem;
        }
        
        .price-value {
            font-size: 0.8rem;
        }
        
        .total-row {
            padding: 4px 0;
            margin-top: 4px;
        }
        
        .total-label {
            font-size: 0.8rem;
        }
        
        .total-value {
            font-size: 0.9rem;
        }
        
        .payment-button {
            padding: 6px 8px;
            font-size: 0.75rem;
            margin: 4px 0;
        }
        
        .agreement-section {
            margin: 4px 0;
        }
        
        .agreement-checkbox {
            margin-bottom: 3px;
        }
        
        .agreement-text {
            font-size: 0.7rem;
            line-height: 1.1;
        }
    }
    
    .payment-form-container {
        padding: 10px;
        max-width: 100%;
    }
    
    .payment-form {
        gap: 6px;
    }
    
    .form-field {
        margin-bottom: 6px;
    }
    
    .form-field input {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .form-row {
        gap: 6px;
    }
    
    .payment-methods-section {
        margin: 4px 0;
    }
    
    .payment-logos {
        gap: 6px;
        height: 40px;
        min-width: 70px;
        padding: 6px 10px;
    }
    
    .payment-logo img {
        max-height: 22px;
        max-width: 55px;
    }
    
    .price-breakdown {
        padding: 8px;
        margin: 6px 0;
    }
    
    .price-row {
        margin-bottom: 4px;
    }
    
    .price-label {
        font-size: 0.8rem;
    }
    
    .price-value {
        font-size: 0.85rem;
    }
    
    .total-row {
        padding: 6px 0;
        margin-top: 6px;
    }
    
    .total-label {
        font-size: 0.85rem;
    }
    
    .total-value {
        font-size: 1rem;
    }
    
    .payment-button {
        padding: 8px 10px;
        font-size: 0.8rem;
        margin: 6px 0;
    }
    
    .agreement-section {
        margin: 6px 0;
    }
    
    .agreement-checkbox {
        margin-bottom: 4px;
    }
    
    .agreement-text {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .payment-form-container h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

/* Uluslararası Sözleşme Stili */
.contract-popup-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #f8f9fa !important;
    z-index: 999999 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
}

.contract-document {
    background: white;
    width: 210mm;
    min-height: 297mm;
    max-height: 95vh;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    margin: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contract-header-doc {
    background: white;
    color: #1a1a1a;
    padding: 60px 50px 40px 50px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid #2c3e50;
}

.contract-header-doc h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2c3e50;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.close-popup-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    border: none;
    color: white;
    font-size: 16px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.close-popup-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.contract-content-doc {
    flex: 1;
    padding: 40px 50px;
    overflow-y: auto;
    line-height: 1.6;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c3e50;
}

.contract-section-doc {
    margin-bottom: 25px;
}

.contract-section-doc h2 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.contract-section-doc p {
    color: #34495e;
    font-size: 13px;
    margin: 0 0 12px 0;
    text-align: justify;
    line-height: 1.6;
    font-family: 'Georgia', serif;
}

.contract-section-doc p strong {
    color: #2c3e50;
    font-weight: 700;
}

.contract-footer-doc {
    background: #f8f9fa;
    padding: 30px 50px;
    border-top: 3px solid #2c3e50;
}

.contract-acceptance {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.acceptance-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 100%;
    width: 100%;
    justify-content: flex-end;
}

.acceptance-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark-custom {
    width: 28px;
    height: 28px;
    border: 3px solid #bdc3c7;
    border-radius: 6px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.acceptance-checkbox input[type="checkbox"]:checked + label .checkmark-custom {
    background: #27ae60;
    border-color: #27ae60;
}

.acceptance-checkbox input[type="checkbox"]:checked + label .checkmark-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.acceptance-text {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    line-height: 1.5;
    font-family: 'Georgia', serif;
    text-align: right;
}

.accept-contract-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(39, 174, 96, 0.3);
    font-family: 'Georgia', serif;
    align-self: flex-end;
}

.accept-contract-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.accept-contract-btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn-icon {
    font-size: 20px;
    font-weight: bold;
}

.contract-popup-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 1000000;
}

.contract-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contract-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

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

.contract-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 60vh;
}

.contract-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.contract-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contract-section h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contract-section p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contract-footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contract-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
    user-select: none;
}

.contract-checkbox-label:hover .contract-checkmark {
    border-color: #ff6b35;
}

.contract-checkbox-label input[type="checkbox"] {
    display: none;
}

.contract-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.contract-checkbox-label input[type="checkbox"]:checked + .contract-checkmark {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
}

.contract-checkbox-label input[type="checkbox"]:checked + .contract-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.contract-confirm-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contract-confirm-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contract-confirm-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Mobil popup stilleri */
@media (max-width: 768px) {
    .contract-popup {
        padding: 10px;
    }
    
    .contract-popup-content {
        max-height: 95vh;
    }
    
    .contract-header {
        padding: 15px;
    }
    
    .contract-header h3 {
        font-size: 1.2rem;
    }
    
    .contract-body {
        padding: 15px;
        max-height: 65vh;
    }
    
    .contract-section {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .contract-section h4 {
        font-size: 1rem;
    }
    
    .contract-section p {
        font-size: 0.9rem;
    }
    
    .contract-footer {
        padding: 15px;
    }
    
    .contract-confirm-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contract-popup {
        padding: 5px;
    }
    
    .contract-header {
        padding: 12px;
    }
    
    .contract-header h3 {
        font-size: 1.1rem;
    }
    
    .contract-body {
        padding: 12px;
    }
    
    .contract-section {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .contract-section h4 {
        font-size: 0.95rem;
    }
    
    .contract-section p {
        font-size: 0.85rem;
    }
    
    .contract-footer {
        padding: 12px;
    }
    
    .contract-confirm-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
    
    .form-field {
        margin-bottom: 16px;
    }
    
    .form-field input {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .payment-methods-section {
        margin: 16px 0;
    }
    
    .payment-logos {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .payment-logo {
        height: 50px;
        min-width: 70px;
        padding: 8px 12px;
    }
    
    .payment-logo img {
        max-height: 30px;
        max-width: 50px;
    }
    
    .agreement-section {
        margin: 16px 0;
    }
    
    .agreement-text {
        font-size: 0.9rem;
    }
    
    .total-section {
        margin: 20px 0;
    }
    
    .price-breakdown {
        padding: 16px;
    }
    
    .price-item {
        padding: 8px 0;
    }
    
    .price-label {
        font-size: 0.9rem;
    }
    
    .price-value {
        font-size: 1rem;
    }
    
    .total-item .price-value {
        font-size: 1.2rem;
    }
    
    .payment-button {
        padding: 16px;
        font-size: 1.1rem;
        margin: 20px 0;
    }
    
    .button-subtitle {
        font-size: 0.9rem;
    }
    
    .security-info {
        font-size: 0.8rem;
    }
    
    .payment-header h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .payment-header p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

/* Extra Small Mobile Devices - Simple Design */
@media (max-width: 480px) {
    .payment-content {
        padding: 16px;
        gap: 16px;
    }
    
    .plan-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .plan-header {
        padding: 16px;
    }
    
    .plan-title {
        font-size: 1.3rem;
    }
    
    .plan-description {
        font-size: 0.85rem;
    }
    
    .plan-selector {
        margin: 12px 0;
        gap: 6px;
    }
    
    .plan-option {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .price-display {
        margin: 16px 0;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .old-price {
        font-size: 1rem;
    }
    
    .trial-info {
        font-size: 0.8rem;
        margin: 8px 0 16px 0;
    }
    
    .features-list {
        gap: 6px;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .payment-form-container {
        padding: 16px;
    }
    
    .payment-form-container h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .form-field {
        margin-bottom: 12px;
    }
    
    .form-field input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .payment-logo {
        height: 45px;
        min-width: 60px;
        padding: 6px 10px;
    }
    
    .payment-logo img {
        max-height: 25px;
        max-width: 45px;
    }
    
    .agreement-section {
        margin: 12px 0;
    }
    
    .agreement-text {
        font-size: 0.8rem;
    }
    
    .total-section {
        margin: 16px 0;
    }
    
    .price-breakdown {
        padding: 12px;
    }
    
    .price-item {
        padding: 6px 0;
    }
    
    .price-label {
        font-size: 0.8rem;
    }
    
    .price-value {
        font-size: 0.9rem;
    }
    
    .total-item .price-value {
        font-size: 1.1rem;
    }
    
    .payment-button {
        padding: 14px;
        font-size: 1rem;
        margin: 16px 0;
    }
    
    .button-subtitle {
        font-size: 0.8rem;
    }
    
    .security-info {
        font-size: 0.7rem;
    }
    
    .payment-header h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .payment-header p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .form-header {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .pricing-badge {
        position: static;
        margin: 0 auto var(--space-lg);
        width: fit-content;
    }
    
    .btn-content {
        font-size: 1.1rem;
    }
    
    .btn-subtitle {
        font-size: 0.8rem;
    }
}

.footer-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

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

.footer-section h3 {
    margin-bottom: var(--space-md);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(230, 144, 48, 0.4);
    border-color: var(--primary-color);
}

.social-links a i {
    transition: var(--transition);
}

.social-links a:hover i {
    transform: scale(1.1);
}

    border-radius: 5px;
}

.iyzico-logo img {
    height: 40px;
    width: auto;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

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

/* Recipe Detail Page */
.recipe-detail {
    padding: 3rem 0;
}

.recipe-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recipe-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.recipe-main-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.recipe-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.ingredients, .instructions {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.ingredients h2, .instructions h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.ingredients ul {
    list-style: none;
}

.ingredients li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.ingredients li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 1rem;
}

.instructions ol {
    counter-reset: step-counter;
    list-style: none;
}

.instructions li {
    counter-increment: step-counter;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 4rem;
}

.instructions li:before {
    content: counter(step-counter);
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1.5rem;
}

.recipe-sidebar {
    position: sticky;
    top: 100px;
}

.recipe-stats {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.recipe-stats h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
}

.stat-item:last-child {
    border-bottom: none;
}

/* Contact Page */
.contact-page {
    padding: 3rem 0;
    background: var(--light-color);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

/* About Page */
.about-page {
    padding: 3rem 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
    background: var(--light-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* App Download Responsive */
    .app-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

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

    .download-btn {
        min-width: 160px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-arrow-prev {
        left: 15px;
    }

    .hero-arrow-next {
        right: 15px;
    }

    .hero-nav {
        bottom: 20px;
    }

    .hero-nav-btn {
        width: 10px;
        height: 10px;
    }

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

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

    .recipe-info {
        grid-template-columns: 1fr;
    }

    .recipe-sidebar {
        position: static;
    }
}