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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.main-container {
    width: 100%;
    max-width: 100vw;
    background-color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    padding: 24px 5%;
    border-bottom: 1px solid #f3f4f6;
    background-color: #ffffff;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.025em;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    display: block;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #6b7280;
}

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

.login-link {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-link:hover {
    color: #6b7280;
}

.cta-button {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.cta-button.primary {
    background-color: #000000;
    color: #ffffff;
}

.cta-button.primary:hover {
    background-color: #374151;
    transform: translateY(-1px);
}

.cta-button.secondary {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #d1d5db;
}

.cta-button.secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Announcement Banner */
.announcement-banner {
    background-color: #f3f4f6;
    padding: 16px 5%;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.banner-text {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

/* Main Content Section */
.main-content {
    display: flex;
    flex-direction: column;
}

/* Title Section */
.title-section {
    padding: 80px 5% 10px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0e7ff;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-text {
    white-space: nowrap;
}

/* Images Section */
.images-section {
    padding: 20px 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 50px;
    padding: 0 5%;
    overflow: visible;
}

/* Statistics Text */
.statistics-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.statistics-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.statistics-source {
    color: #000000;
    font-weight: 400;
    font-size: 18px;
}

.highlight-number {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    background: #ffd700;
    padding: 2px 6px;
    transform: rotate(-1deg);
    display: inline-block;
    border-radius: 3px;
}

.highlight-action {
    font-weight: 400;
    color: #000000;
}

/* Buttons Section */
.buttons-section {
    padding: 40px 5% 80px;
    text-align: center;
    background: #ffffff;
}

/* Social Proof Section */
.social-proof-section {
    background: #f5f5f5;
    padding: 80px 5%;
    color: #333333;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Left Side - Social Proof */
.social-proof-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.customer-avatars {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -10px;
    position: relative;
}

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

.avatar-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.avatar-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.avatar-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

.stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #dddddd;
}

/* Right Side - Scrolling Logos */
.scrolling-logos {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
    width: max-content;
    box-sizing: border-box;
}

.logo-item {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    backdrop-filter: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.8;
}

.logo-item:hover {
    background: transparent;
    transform: none;
    opacity: 1;
}

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

/* Industries We Serve Section */
.industries-section {
    background: #ffffff;
    padding: 100px 5%;
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.industry-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: none;
}

.industry-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 12px;
}

.image-placeholder.food-beverage {
    background: #f5f0e8;
}

.image-placeholder.ecommerce {
    background: #ffffff;
}

.image-placeholder.manufacturing {
    background: #0d9488;
}

.image-placeholder.healthcare {
    background: #1e3a8a;
}

.product-preview {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Food & Beverage Product */
.product-pouch {
    width: 120px;
    height: 140px;
    background: #ffffff;
    border-radius: 12px;
    position: relative;
}

.pouch-content {
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pouch-label {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    margin-bottom: 8px;
}

.pouch-items {
    flex: 1;
    background: #fbbf24;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.pouch-items::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: repeating-linear-gradient(
        45deg,
        #f59e0b 0px,
        #f59e0b 4px,
        #fbbf24 4px,
        #fbbf24 8px
    );
    border-radius: 50%;
}

/* E-commerce Product */
.product-box {
    width: 100px;
    height: 120px;
    background: #d2b48c;
    border-radius: 12px;
    position: relative;
}

.box-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #8b5cf6;
    border-radius: 50%;
}

.box-logo::before {
    content: '🌿';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

/* Manufacturing Products */
.product-bottles {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottle {
    width: 30px;
    height: 80px;
    background: #8b4513;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.bottle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: #1f2937;
    border-radius: 2px;
}

.boxes-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.box-1, .box-2 {
    width: 60px;
    height: 20px;
    background: #8b4513;
    border-radius: 12px;
    position: relative;
}

.box-1::before, .box-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 2px;
    background: #d97706;
}

/* Healthcare Product */
.product-medical {
    width: 100px;
    height: 120px;
    background: #ffffff;
    border-radius: 12px;
    position: relative;
}

.medical-box {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.box-stripe {
    width: 100%;
    height: 20px;
    background: #10b981;
    position: relative;
}

.box-text {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.box-text-2 {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

.industry-content {
    padding: 0 20px 30px 20px;
    text-align: center;
}

.industry-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.industry-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.industries-cta {
    text-align: center;
    margin-top: 60px;
}

/* How It Works Section */
.how-it-works-section {
    background: #ffffff;
    padding: 100px 5%;
    text-align: center;
}

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

.section-title {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 80px;
    font-weight: 300;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    position: relative;
    background: transparent;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
}

.step:hover {
    transform: none;
    box-shadow: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    box-shadow: none;
}

.step-content {
    margin-bottom: 24px;
}

.step-title {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.step-description,
.step-description p {
    font-size: 22px;
    color: #666666;
    line-height: 1.6;
    font-weight: 500;
}

.step-content p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    font-weight: lighter;
}


.step-arrow {
    color: #cccccc;
    transition: all 0.3s ease;
}

.step-arrow svg {
    width: 32px;
    height: 32px;
}

/* How It Works CTA */
.how-it-works-cta {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .social-proof-section {
        padding: 60px 4%;
    }
    
    .social-proof-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .social-proof-left {
        justify-content: center;
        gap: 30px;
    }
    
    .stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .scrolling-logos {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .logos-track {
        gap: 30px;
        width: max-content;
    }
    
    .logo-item {
        font-size: 16px;
        padding: 0;
    }
    
    .steps-container {
        gap: 40px;
    }
    
    .step {
        max-width: 250px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 60px;
    }
    
    .how-it-works-cta {
        margin-top: 50px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .industry-image {
        height: 180px;
    }
    
    .industry-content {
        padding: 25px 15px;
    }
    
    .industry-title {
        font-size: 18px;
    }
    
    .industry-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .trust-badge {
        font-size: 13px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .trust-icon {
        width: 18px;
        height: 18px;
    }
    
    .social-proof-section {
        padding: 50px 4%;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .social-proof-left {
        flex-direction: column;
        gap: 20px;
    }
    
    .customer-avatars {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .logo-item {
        font-size: 14px;
        padding: 0;
    }
    
    .how-it-works-section {
        padding: 80px 4%;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step {
        max-width: 100%;
        width: 100%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .how-it-works-cta {
        margin-top: 40px;
    }
    
    .industries-section {
        padding: 80px 4%;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industry-image {
        height: 160px;
    }
    
    .industry-content {
        padding: 20px 15px;
    }
    
    .industry-title {
        font-size: 16px;
    }
    
    .industry-description {
        font-size: 12px;
    }
    
    .industries-cta {
        margin-top: 40px;
    }
    
    /* Simplified Footer for Tablet */
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .social-proof-section {
        padding: 40px 4%;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .avatar {
        width: 35px;
        height: 35px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .logo-item {
        font-size: 12px;
        padding: 0;
    }
    
    .scrolling-logos {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .logos-track {
        gap: 20px;
        width: max-content;
    }
    
    .how-it-works-section {
        padding: 60px 4%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 20px;
    }
    
    .how-it-works-cta {
        margin-top: 30px;
    }
    
    .benefits-section {
        padding: 60px 4%;
    }
    
    .benefits-title {
        font-size: 32px;
    }
    
    .benefits-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        gap: 16px;
        padding: 16px 0;
    }
    
    .benefit-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .benefit-title {
        font-size: 16px;
    }
    
    .benefit-description {
        font-size: 14px;
    }
    
    .industries-section {
        padding: 60px 4%;
    }
    
    .industries-grid {
        gap: 15px;
    }
    
    .industry-image {
        height: 140px;
    }
    
    .industry-content {
        padding: 15px 10px;
    }
    
    .industry-title {
        font-size: 14px;
    }
    
    .industry-description {
        font-size: 11px;
    }
    
    .industries-cta {
        margin-top: 30px;
    }
    
    /* Simplified Footer for Mobile */
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-container {
        padding: 0 4%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 16px;
    }
    
    .footer-logo .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .footer-logo .logo-text {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 14px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-column {
        align-items: center;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-list li {
        margin-bottom: 8px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-social {
        gap: 16px;
        justify-content: center;
    }
    
    .social-link {
        font-size: 12px;
    }
}

.cloud-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    opacity: 0.8;
}

.cloud-1 {
    width: 120px;
    height: 60px;
    top: 20px;
    left: 20%;
    border-radius: 60px 60px 60px 60px;
}

.cloud-2 {
    width: 80px;
    height: 40px;
    top: 60px;
    right: 15%;
    border-radius: 40px 40px 40px 40px;
}

.cloud-3 {
    width: 100px;
    height: 50px;
    bottom: 30px;
    left: 10%;
    border-radius: 50px 50px 50px 50px;
}

.hero-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.0;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: nowrap;
}

.typing-text {
    position: relative;
    display: inline-block;
    font-weight: 700;
}


.hero-description {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    height: 500px;
    width: 100%;
}

.card-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

/* Left Card - Before Image */
.before-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f5f5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.before-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* AI Badge */
.ai-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    backdrop-filter: blur(10px);
    width: calc(100% - 80px);
    max-width: 200px;
}

.badge-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-circle {
    width: 24px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 50%;
    position: absolute;
}

.inner-circle {
    width: 12px;
    height: 12px;
    background: #374151;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

/* İlk resim için yeşil renkler */
.image-card:first-child .inner-circle {
    background: #4ade80;
}

.image-card:first-child .outer-circle {
    background: #bbf7d0;
}

/* Diğer resimler için yeşil renkler */
.image-card:not(:first-child) .inner-circle {
    background: #4ade80;
}

.image-card:not(:first-child) .outer-circle {
    background: #bbf7d0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.2;
}

/* Artık right-badge class'ına ihtiyaç yok çünkü hepsi ortada */

.speech-bubble-left {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.speech-bubble-left::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
}

.bubble-icon {
    font-size: 14px;
    margin-right: 6px;
    display: inline-block;
}

.bubble-text {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin: 0;
    line-height: 1.4;
    display: inline;
}

/* Right Card - After Image */
.after-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.after-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.speech-bubbles-right {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.bubble-1 {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    width: 280px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.bubble-1::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #ffffff;
}

.bubble-icon-2 {
    font-size: 14px;
    margin-right: 6px;
    display: inline-block;
}

.bubble-text-2 {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin: 0;
    line-height: 1.4;
    display: inline;
}

.bubble-2 {
    background: #10b981;
    border-radius: 16px;
    padding: 8px 14px;
    width: 200px;
    align-self: flex-end;
    animation: pulse 2s ease-in-out infinite;
}

.bubble-icon-3 {
    font-size: 12px;
    margin-right: 6px;
    display: inline-block;
}

.bubble-text-3 {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: inline;
}

/* Animations */
@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: 1024px) {
    .hero-title {
        font-size: 48px;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .header {
        padding: 20px 4%;
    }
    
    .announcement-banner {
        padding: 16px 4%;
    }
    
    .title-section {
        padding: 60px 4% 15px;
    }
    
    .images-section {
        padding: 30px 4%;
    }
    
    .statistics-paragraph {
        font-size: 16px;
    }
    
    .statistics-source {
        font-size: 16px;
    }
    
    .highlight-number {
        font-size: 16px;
        padding: 2px 5px;
    }
    
    .highlight-action {
        font-size: 16px;
    }
    
    .buttons-section {
        padding: 30px 4% 60px;
    }
    
    .image-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
        padding: 0 4%;
        overflow: visible;
    }
    
    .image-card {
        height: 400px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

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

    .nav-link {
        font-size: 18px;
        padding: 15px 30px;
        width: 100%;
        text-align: left;
    }

    .nav-actions {
        position: fixed;
        bottom: 30px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        padding: 0 30px;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Mobile Slider Styles */
    .image-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 0 0 0 20px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .image-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .image-card {
        flex: 0 0 calc(100vw - 80px);
        height: 400px;
        border-radius: 20px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        transition: transform 0.3s ease;
        max-width: calc(100vw - 80px);
        box-sizing: border-box;
    }

    .image-container.active {
        cursor: grabbing;
    }

    .image-container.active .image-card {
        cursor: grabbing;
    }

    .header {
        padding: 20px 4%;
    }
    
    .nav-menu {
        order: 3;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
    
    .nav-actions {
        display: none;
    }
    
    .title-section {
        padding: 40px 4% 10px;
    }
    
    .images-section {
        padding: 20px 0;
        overflow-x: hidden;
    }
    
    .statistics-text {
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
        padding: 0;
    }
    
    .statistics-paragraph {
        font-size: 15px;
    }
    
    .statistics-source {
        font-size: 15px;
    }
    
    .highlight-number {
        font-size: 15px;
        padding: 1px 4px;
    }
    
    .highlight-action {
        font-size: 15px;
    }
    
    .image-container {
        margin-bottom: 30px;
    }
    
    .buttons-section {
        padding: 20px 4% 40px;
    }
    
    .hero-title {
        font-size: 36px;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button.large {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .announcement-banner {
        padding: 16px 4%;
    }
    
    .image-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px 4%;
    }
    
    .title-section {
        padding: 30px 4% 8px;
    }
    
    .images-section {
        padding: 15px 0;
        overflow-x: hidden;
    }
    
    .statistics-text {
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
        padding: 0;
    }
    
    .statistics-paragraph {
        font-size: 14px;
    }
    
    .statistics-source {
        font-size: 14px;
    }
    
    .highlight-number {
        font-size: 14px;
        padding: 1px 3px;
    }
    
    .highlight-action {
        font-size: 14px;
    }
    
    .image-container {
        margin-bottom: 25px;
        padding: 0 0 0 15px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        margin-left: 15px;
    }
    
    .image-card {
        flex: 0 0 calc(95vw - 60px);
        height: 300px;
        max-width: calc(100vw - 60px);
        box-sizing: border-box;
    }
    
    .buttons-section {
        padding: 15px 4% 30px;
    }
    
    .hero-title {
        font-size: 28px;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .announcement-banner {
        padding: 12px 4%;
    }
}

/* Animation and Hover Effects */
.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Smooth scroll offset for fixed header */
#how-it-works,
#benefits {
    scroll-margin-top: 100px;
}

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
    padding: 100px 5%;
    text-align: center;
}

.benefits-title {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.benefits-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 80px;
    font-weight: 300;
    line-height: 1.6;
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    justify-content: flex-start;
}

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

.benefit-number {
    width: 32px;
    height: 32px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.benefit-content {
    flex: 1;
    text-align: left;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.benefit-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

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

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 400;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

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

.social-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    background: #ffffff;
    padding: 100px 5%;
    text-align: center;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    max-width: 400px;
    min-width: 300px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #4ade80;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4ade80;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-card.featured .pricing-badge {
    background: #4ade80;
}

.pricing-header {
    margin-bottom: 30px;
    padding-top: 20px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
}

.period {
    font-size: 16px;
    color: #6b7280;
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 16px;
    color: #4b5563;
    font-size: 16px;
}

.pricing-card .cta-button {
    width: 100%;
}

.pricing-card.featured .cta-button {
    background-color: #4ade80;
}

.pricing-card.featured .cta-button:hover {
    background-color: #22c55e;
}

/* Upload Page Styles */
.upload-section {
    padding: 80px 5%;
    min-height: calc(100vh - 100px);
    background: #ffffff;
}

.upload-title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    text-align: center;
}

.upload-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.choice-boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 50px auto;
    max-width: 1200px;
    flex-wrap: wrap;
}

.choice-box {
    flex: 1;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 350px;
}

.choice-box:hover {
    border-color: #4ade80;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choice-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.choice-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.choice-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.5;
}

.choice-button {
    width: 100%;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.choice-button.whatsapp {
    background-color: #25D366;
    color: white;
}

.choice-button.whatsapp:hover {
    background-color: #128C7E;
}

.choice-button.upload {
    background-color: #4ade80;
    color: white;
}

.choice-button.upload:hover {
    background-color: #22c55e;
}

/* Callback Form Styles */
.callback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.callback-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.callback-input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.callback-input::placeholder {
    color: #9ca3af;
}

.upload-form {
    max-width: 500px;
    margin: 40px auto;
    width: 100%;
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.option-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    text-align: center;
}

.upload-area {
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: #f9fafb;
}

.upload-area:hover, .upload-area.highlight {
    border-color: #4ade80;
    background: #f0fdf4;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.upload-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.upload-text {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin: 0;
}

.upload-subtext {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.file-input {
    display: none;
}

.form-group {
    margin-bottom: 20px;
}

.email-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

.email-input:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.upload-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    position: relative;
}

.upload-divider::before,
.upload-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid #e5e7eb;
}

.divider-text {
    padding: 0 20px;
}

.whatsapp-area {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 20px;
    background: #f9fafb;
}

.whatsapp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.whatsapp-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.whatsapp-text {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin: 0;
}

.whatsapp-subtext {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.cta-button.whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.cta-button.whatsapp:hover {
    background-color: #128C7E;
}

.whatsapp-button-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .choice-boxes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .choice-box {
        width: 100%;
        max-width: 100%;
    }

    .callback-form {
        gap: 12px;
    }

    .callback-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

@media (max-width: 768px) {
    .upload-title {
        font-size: 36px;
    }

    .upload-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .upload-form {
        padding: 0 20px;
    }
}

/* Focus states for accessibility */
.cta-button:focus,
.nav-link:focus,
.login-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Products Page Styles */
.products-page {
    background: #ffffff;
}

.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 5% 60px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-subtitle {
    font-size: 20px;
    color: #666666;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.products-section {
    padding: 80px 5%;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge {
    background: #3b82f6;
    color: white;
}

.product-badge.featured {
    background: #10b981;
    color: white;
}

.product-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-content {
    padding: 30px;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}


.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.product-btn.primary {
    background: #000000;
    color: white;
}

.product-btn.primary:hover {
    background: #374151;
    transform: translateY(-2px);
}

.product-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.product-btn.secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.products-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-shadow: none;
}

.cta-description {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.01);
    padding: 20px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    text-align: center;
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 200px;
}

.cta-feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.cta-feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.cta-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-feature-desc {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.4;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-buttons .cta-button.primary {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
}

.cta-buttons .cta-button.primary:hover {
    background: #f0f0f0;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #000;
    background-color: #f3f4f6;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.modal-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.modal-specs li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active nav link */
.nav-link.active {
    color: #3b82f6;
    font-weight: 600;
}

/* Responsive Design for Products */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .page-title {
        font-size: 40px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 4% 40px;
    }
    
    .products-section {
        padding: 60px 4%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .product-content {
        padding: 25px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-btn {
        flex: none;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-feature {
        padding: 16px 12px;
        min-width: 160px;
        max-width: 180px;
    }
    
    .cta-feature-icon {
        font-size: 28px;
    }
    
    .cta-feature-title {
        font-size: 14px;
    }
    
    .cta-feature-desc {
        font-size: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        min-width: 180px;
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .cta-button.large {
        width: 100%;
        max-width: 300px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 4% 30px;
    }
    
    .products-section {
        padding: 40px 4%;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
}

/* Product Detail Page Styles */
.product-detail-page {
    background: #ffffff;
    padding: 40px 5% 80px;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 20px 5%;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #000000;
}

.breadcrumb-separator {
    color: #9ca3af;
    font-size: 14px;
}

.breadcrumb-current {
    color: #000000;
    font-weight: 500;
    font-size: 14px;
}

/* Product Detail Content */
.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: zoom-in;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.05);
}

.image-zoom-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-zoom-overlay {
    opacity: 1;
}

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: #d1d5db;
}

.thumbnail.active {
    border-color: #3b82f6;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-badge.stock {
    background: #10b981;
    color: white;
}

.product-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    font-size: 18px;
}

.rating-text {
    font-size: 14px;
    color: #6b7280;
}

.product-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Key Features */
.key-features {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.features-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

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

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

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
}

.feature-content p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* Size Options */
.size-options {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.options-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.size-option {
    position: relative;
}

.size-option input[type="radio"] {
    display: none;
}

.size-option label {
    display: block;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option input[type="radio"]:checked + label {
    border-color: #3b82f6;
    background: #eff6ff;
}

.size-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.size-name {
    font-weight: 600;
    color: #000000;
    font-size: 14px;
}

.size-dimensions {
    font-size: 12px;
    color: #6b7280;
}

/* Order Section */
.order-section {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    font-size: 14px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #f3f4f6;
}

.quantity-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.quantity-btn:last-child {
    border-radius: 0 8px 8px 0;
}

#quantity {
    width: 80px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

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

.price-per-unit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 14px;
    color: #6b7280;
}

.price-value {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.order-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.order-btn {
    flex: 1;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
}

.order-btn.primary {
    background: #000000;
    color: white;
}

.order-btn.primary:hover {
    background: #374151;
    transform: translateY(-2px);
}

.order-btn.secondary {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.order-btn.secondary:hover {
    background: #f3f4f6;
}

.btn-icon {
    font-size: 18px;
}

/* Product Tabs */
.product-tabs {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.tab-headers {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    gap: 0;
    overflow-x: auto;
}

.tab-header {
    padding: 16px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.tab-header:hover {
    color: #000000;
}

.tab-header.active {
    color: #000000;
    border-bottom-color: #3b82f6;
    font-weight: 600;
}

.tab-content {
    padding: 40px 0;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Specifications */
.specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.spec-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table td {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.spec-table td:first-child {
    font-weight: 500;
    color: #374151;
    width: 40%;
}

.spec-table td:last-child {
    color: #6b7280;
}

/* Usage Content */
.usage-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.usage-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.usage-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.usage-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.usage-item p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.usage-tips {
    background: #eff6ff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.usage-tips h4 {
    color: #1e40af;
    margin-bottom: 16px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    padding-left: 0;
}

/* Shipping Content */
.shipping-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shipping-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shipping-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.shipping-option {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.shipping-option h5 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.shipping-option p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.shipping-price {
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
}

.delivery-zones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.zone {
    padding: 16px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

.zone h5 {
    font-size: 14px;
    font-weight: 600;
    color: #166534;
    margin-bottom: 4px;
}

.zone p {
    font-size: 13px;
    color: #15803d;
    margin: 0;
}

.process-steps {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 12px;
}

.step-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}


/* Reviews Content */
.reviews-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.rating-overview {
    display: flex;
    gap: 40px;
    align-items: center;
}

.rating-score {
    text-align: center;
}

.score {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    display: block;
}

.rating-score .stars {
    font-size: 20px;
    margin: 8px 0;
}

.total-reviews {
    font-size: 14px;
    color: #6b7280;
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-bar span:first-child {
    width: 40px;
    font-size: 12px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.rating-bar span:last-child {
    width: 30px;
    font-size: 12px;
    color: #6b7280;
    text-align: right;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-weight: 600;
    color: #000000;
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: #6b7280;
}

.review-rating {
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #6b7280;
}

.helpful-btn {
    background: none;
    border: 1px solid #d1d5db;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: #f3f4f6;
}

/* Related Products */
.related-products {
    max-width: 1400px;
    margin: 0 auto;
}

.related-title {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.related-product {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.related-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.related-product-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.related-product-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.related-product-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.related-product-link:hover {
    color: #1d4ed8;
}

/* Image Zoom Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.zoom-modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.zoom-close:hover {
    color: #bbb;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 5% 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text {
    max-width: 600px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-hero-subtitle {
    font-size: 24px;
    color: #6b7280;
    margin-bottom: 24px;
    font-weight: 500;
}

.about-hero-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

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

.about-hero-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-icon {
    font-size: 120px;
    opacity: 0.8;
}

.company-story {
    padding: 100px 5%;
    background: #ffffff;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.story-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-stats .stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.story-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.story-stats .stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.mission-vision {
    padding: 100px 5%;
    background: #f8f9fa;
}

.mission-vision-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-card,
.vision-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.values-section {
    padding: 100px 5%;
    background: #ffffff;
}

.values-section .section-title,
.about-products .section-title,
.team-section .section-title {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.value-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.about-products {
    padding: 100px 5%;
    background: #f8f9fa;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-category {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-category h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-category p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.team-section {
    padding: 100px 5%;
    background: #ffffff;
}

.team-description {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.team-stats {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.team-stat {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    flex: 1;
}

.team-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.team-stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.about-cta {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-content p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-buttons .cta-button.primary {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
}

.cta-buttons .cta-button.primary:hover {
    background: #f0f0f0;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 4% 40px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 20px;
    }
    
    .about-hero-description {
        font-size: 16px;
    }
    
    .about-hero-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .about-icon {
        font-size: 80px;
    }
    
    .company-story,
    .mission-vision,
    .values-section,
    .about-products,
    .team-section,
    .about-cta {
        padding: 60px 4%;
    }
    
    .story-text h2 {
        font-size: 28px;
    }
    
    .values-section .section-title,
    .about-products .section-title,
    .team-section .section-title {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        min-width: 180px;
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 4% 30px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .about-hero-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .about-icon {
        font-size: 60px;
    }
    
    .company-story,
    .mission-vision,
    .values-section,
    .about-products,
    .team-section,
    .about-cta {
        padding: 40px 4%;
    }
    
    .story-text h2 {
        font-size: 24px;
    }
    
    .values-section .section-title,
    .about-products .section-title,
    .team-section .section-title {
        font-size: 24px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .value-item,
    .product-category {
        padding: 25px 15px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
}

/* Responsive Design for Product Detail */
@media (max-width: 1024px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .size-grid {
        grid-template-columns: 1fr;
    }
    
    .shipping-options {
        grid-template-columns: 1fr;
    }
    
    .delivery-zones {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 16px;
    }
    
    .rating-overview {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 20px 10px 60px;
    }
    
    .breadcrumb {
        padding: 15px 10px;
    }
    
    .product-detail-content {
        gap: 30px;
        padding: 0 10px;
    }
    
    .product-detail-title {
        font-size: 28px;
    }
    
    .tab-headers {
        gap: 0;
    }
    
    .tab-header {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .specifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .order-buttons {
        flex-direction: column;
    }
    
    .order-btn {
        min-width: auto;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-gallery {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-detail-page {
        padding: 20px 10px 60px;
    }
    
    .breadcrumb {
        padding: 15px 10px;
    }
    
    .product-detail-content {
        gap: 30px;
        padding: 0 10px;
    }
    
    .product-detail-title {
        font-size: 24px;
    }
    
    .key-features {
        padding: 20px;
    }
    
    .size-options {
        padding: 20px;
    }
    
    .order-section {
        padding: 20px;
    }
    
    .tab-content {
        padding: 20px 0;
    }
    
    .reviews-summary {
        padding: 20px;
    }
    
    .review-item {
        padding: 16px;
    }
    
    .zoom-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

/* Navigation Secondary Link */
.nav-link-secondary {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    padding: 8px 16px;
    margin-right: 12px;
}

.nav-link-secondary:hover {
    color: #000000;
}

/* Download Section */
.download-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.download-text {
    padding-right: 40px;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.download-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #000000;
}

.store-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.store-button.google {
    background: #ffffff;
    color: #000000;
    border: 2px solid #e2e8f0;
}

.store-button.google:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.store-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 400;
}

.store-name {
    font-size: 16px;
    font-weight: 600;
}

.download-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 4px;
}

.download-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive for Download Section */
@media (max-width: 768px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .download-text {
        padding-right: 0;
        text-align: center;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .download-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

/* Hero Logo */
.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-logo img {
        max-width: 100px;
    }
}

/* Blog Section on Homepage */
.blog-section {
    padding: 80px 5%;
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 12px;
}

.blog-author {
    font-weight: 500;
}

.blog-date {
    opacity: 0.8;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.blog-link:hover {
    color: #2563eb;
}

.blog-cta {
    text-align: center;
    margin-top: 48px;
}

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