
/* Root Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    --primary-color: #f56400;
    --secondary-color: #ff8c42;
    --dark-bg: #1a202c;
    --light-bg: #f8fafc;
    --text-primary: #1a202c;
    --text-secondary: #64748b;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 15px;
    --border-radius-md: 20px;
    --border-radius-lg: 25px;
    --border-radius-full: 50px;
    --transition-default: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--text-primary);
}

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

/* Global - Header */
header {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 60px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #f56400;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button,
.login-button {
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-default);
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.cta-button {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 100, 0, 0.3);
}

.login-button {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--primary-color);
    margin-right: 0.8rem;
}

.login-button:hover {
    background: #f56400;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 100, 0, 0.2);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/*************/
/* Home.html */
/*************/ 

/* Hero Gradient Overlay Animation */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    pointer-events: none;
    z-index: 1;
}

/* Home Content Wrapper */
.home-content {
    padding-top: 80px;
    background: #f8fafc;
}

/* Hero Section */
.home-hero {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.home-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    line-height: 1.2;
}

.home-hero p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: clamp(1rem, 4vw, 2rem);
    opacity: 0.9;
    max-width: min(650px, 90vw);
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.7s both;
}

/* Base Button Classes */
.btn-primary {
    background: white;
    color: #f56400;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary {
    background: #f8fafc;
    color: #f56400;
    padding: 1rem 2rem;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

/* Section Button Wrapper */
.section-button-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* Features Section */
.home-features {
    padding-bottom: 100px;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

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

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Integration Section */
.integrations-section {
    padding: 100px 0;
    background: white;
}

.integration-section-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.integration-section-logo {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: #64748b;
    border: 2px solid transparent;
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    opacity: 1;
    transform: translateX(0px) scale(1);
}

.integration-section-logo:nth-child(1) {
    animation-delay: 0s;
}

.integration-section-logo:nth-child(2) {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.integration-section-logo:nth-child(3) {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.integration-section-logo:nth-child(4) {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.integration-section-logo:nth-child(5) {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.integration-section-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.integration-section-logo:hover {
    border-color: #f56400;
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Fulfillment Section */
.fulfillment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.fulfillment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,200 1000,0 1000,800 0,1000"/></svg>');
    background-size: cover;
}

.fulfillment-section-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fulfillment-section-text {
    padding-right: 2rem;
}

.fulfillment-section-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.fulfillment-section-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.fulfillment-section-features {
    list-style: none;
    margin-bottom: 2rem;
}

.fulfillment-section-features li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    opacity: 0.95;
}

.fulfillment-section-features li:before {
    content: '✓';
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: bold;
    margin-right: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.fulfillment-visual {
    position: relative;
}

.fulfillment-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.fulfillment-box {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.fulfillment-box:hover::before {
    left: 100%;
}

.fulfillment-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.fulfillment-box-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.fulfillment-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fulfillment-box p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.fulfillment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.fulfillment-stat {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
}

.fulfillment-stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.fulfillment-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #f56400;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.review-author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.2rem;
}

.review-author-info p {
    color: #64748b;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}



/**************/
/* about.html */
/**************/ 

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,200 1000,1000 0,800"/></svg>');
    background-size: cover;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content */
.about-content {
    padding: 80px 0;
    background: #f8fafc;
}

.section {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

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

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.team-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #f56400;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d3748 100%);
    color: white;
    padding: clamp(40px, 8vw, 80px) 0;
    margin: 5rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Media Queries */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .features-grid,
    .integration-section-logos {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .fulfillment-section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-section {
        margin: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .cta-button,
    .login-button {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* Print Styles */
@media print {
    header {
        position: static;
    }
    
    .hero-gradient-overlay,
    .feature-card::before,
    .integration-section-logo:hover {
        display: none;
    }
    
    .cta-button,
    .login-button {
        border: 1px solid var(--text-primary);
        color: var(--text-primary);
        background: none;
    }
}

.stats-section .section-title {
    color: white;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f56400;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Company Info Section */
.company-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.company-info h3 {
    color: #1a202c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.detail-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.detail-label {
    font-weight: 600;
    color: #f56400;
    margin-bottom: 0.3rem;
}

.detail-value {
    color: #4a5568;
}


/* Global - Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 50px 0 30px;
}

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

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

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

.footer-section ul li {
    padding: 0.3rem 0;
}

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

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    margin-bottom: 1rem;
    display: block;
}

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

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

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

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

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

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

@keyframes floatShapes {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes packageFloat {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) translateX(-5px) rotate(180deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-10px) translateX(-15px) rotate(270deg);
        opacity: 0.1;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
        opacity: 0.1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0px);
    }
    50% {
        opacity: 0.6;
        transform: translateX(20px);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* Page Load Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.loader-text {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease;
}

/* Hero Text Animations */
.hero h1 {
    animation: fadeInUp 1s ease 0.3s both, textGlow 4s ease-in-out infinite;
}

.hero p {
    animation: fadeInUp 1s ease 0.5s both;
}


.hero-buttons .btn-primary {
    animation: buttonPulse 3s infinite;
}

/* Staggered Animation Classes */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #f56400;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    max-height: 400px;
}

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

.mobile-nav-links li {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: #f8fafc;
    color: #f56400;
}

.mobile-login {
    color: #f56400 !important;
    font-weight: 600 !important;
}

.mobile-cta {
    color: white !important;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    margin: 0.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600 !important;
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #e55a00 0%, #f57b32 100%) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(245, 100, 0, 0.3);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .home-hero h1 {
        font-size: 3rem;
    }

    .fulfillment-section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .fulfillment-section-text {
        padding-right: 0;
        text-align: center;
    }

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header & Navigation */
    header {
        padding: 0;
    }

    nav {
        padding: 1rem 0;
    }

    .nav-content {
        min-height: 50px;
    }

    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo img {
        height: 32px;
    }

    /* Hero Section */
    .home-hero {
        padding: 120px 0 60px;
    }

    .home-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .home-hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Home Content */
    .home-content {
        padding-top: 60px;
    }

    /* Features Section */
    .home-features {
        padding-bottom: 60px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

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

    .section-button-wrapper {
        margin-top: 2rem;
    }

    /* Integration Section */
    .integrations-section {
        padding: 60px 0;
    }

    .integration-section-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .integration-section-logo {
        padding: 1rem;
        min-height: 80px;
    }

    .integration-section-logo img {
        max-height: 50px;
    }

    /* Fulfillment Section */
    .fulfillment-section {
        padding: 60px 0;
    }

    .fulfillment-section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fulfillment-section-text {
        padding-right: 0;
        text-align: center;
    }

    .fulfillment-section-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .fulfillment-section-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .fulfillment-section-features {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .fulfillment-section-features li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .fulfillment-boxes {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .fulfillment-box {
        padding: 1rem;
    }

    .fulfillment-box-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .fulfillment-box h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .fulfillment-box p {
        font-size: 0.85rem;
    }

    .fulfillment-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .fulfillment-stat {
        padding: 0.8rem;
    }

    .fulfillment-stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .fulfillment-stat-label {
        font-size: 0.85rem;
    }

    /* Reviews Section */
    .reviews {
        padding: 60px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .review-author-info h4 {
        font-size: 1rem;
    }

    .review-author-info p {
        font-size: 0.85rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section ul li {
        padding: 0.4rem 0;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .home-hero {
        padding: 100px 0 50px;
    }

    .home-hero h1 {
        font-size: 1.6rem;
    }

    .home-hero p {
        font-size: 0.9rem;
    }

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

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

    .feature-card {
        padding: 1.2rem;
    }

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

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

    .integration-section-logos {
        grid-template-columns: 1fr;
    }

    .fulfillment-section-text h2 {
        font-size: 1.5rem;
    }

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

    .fulfillment-section-features li {
        font-size: 0.9rem;
    }

    .review-card {
        padding: 1.2rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Terms and Conditions Page Styles */
.legal-content {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

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

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.legal-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #f56400;
}

.last-updated strong {
    color: #f56400;
}

.terms-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.part-header {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.part-header:first-child {
    margin-top: 0;
}

.terms-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f56400;
}

.terms-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.terms-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.terms-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.terms-content ul, .terms-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.article-number {
    color: #f56400;
    font-weight: 600;
}

.important-note {
    background: #fef5e7;
    border: 1px solid #f56400;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.important-note strong {
    color: #f56400;
}

.contact-info {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.definitions-box {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.definitions-box h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.definition-term {
    font-weight: 600;
    color: #f56400;
}

/* Mobile Responsiveness for Terms Page */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 2rem 1.5rem;
    }

    .terms-content h2 {
        font-size: 1.3rem;
    }

    .part-header {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
    background: #f8fafc;
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

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

.contact-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-button {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 100, 0, 0.3);
}

.contact-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;
}

.form-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f56400;
}

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

.submit-button {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 100, 0, 0.3);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-container, .company-info {
        padding: 2rem;
    }

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

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 50%, #667eea 100%);
    opacity: 0.9;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    padding: 80px 0;
    background: #f8fafc;
}

.story-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

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

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.team-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #f56400;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }

    .story-content {
        padding: 2rem;
    }

    .value-card, .team-card {
        padding: 2rem;
    }
}

/* Features Page Styles */
.features-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.features-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 50%, #667eea 100%);
    opacity: 0.9;
}

.features-hero-content {
    position: relative;
    z-index: 2;
}

.features-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-nav {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 60px;
    z-index: 999;
}

.feature-nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-nav-link:hover,
.feature-nav-link.active {
    background: #f56400;
    color: white;
}

.features-content {
    padding-top: 60px;
    background: #f8fafc;
}

.feature-category {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
}

.category-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
}

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

.feature-item {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 100, 0, 0.05), transparent);
    transition: left 0.5s;
}

.feature-item:hover::before {
    left: 100%;
}

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

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-badge {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.features-cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.features-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: #f56400;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.highlight-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 100, 0, 0.05), transparent);
    transition: left 0.5s;
}

.highlight-card:hover::before {
    left: 100%;
}

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

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

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

.highlight-card p {
    color: #64748b;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f56400;
    font-weight: bold;
}

/* Mobile Responsiveness for Features Page */
@media (max-width: 768px) {
    .features-hero h1 {
        font-size: 2.5rem;
    }

    .features-hero p {
        font-size: 1.2rem;
    }

    .feature-nav-links {
        gap: 1rem;
    }

    .feature-category {
        padding: 2rem;
    }

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

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Help Page Styles */
.help-hero {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.help-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.help-hero-content {
    position: relative;
    z-index: 2;
}

.help-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.help-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    outline: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #f56400;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

.help-content {
    padding: 80px 0;
    background: #f8fafc;
}

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

.help-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.help-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.help-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.help-category p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.help-links {
    list-style: none;
    text-align: left;
}

.help-links li {
    padding: 0.3rem 0;
}

.help-links a {
    color: #f56400;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.help-links a:hover {
    color: #d55200;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #1a202c;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-toggle {
    font-size: 1.2rem;
    color: #f56400;
    font-weight: bold;
}

.faq-answer {
    padding: 1.5rem;
    color: #4a5568;
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

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

.status-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
    text-align: center;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    background: #d1fae5;
    color: #065f46;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-section .contact-button {
    margin-top: 1rem;
}

/* Integrations Page Styles */
.integrations-hero {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.integrations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.integrations-hero-content {
    position: relative;
    z-index: 2;
}

.integrations-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.integrations-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.integration-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

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

.integration-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

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

.integrations-content {
    padding: 80px 0;
    background: #f8fafc;
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.integration-category {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #64748b;
    font-size: 1rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.integration-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 100, 0, 0.05), transparent);
    transition: left 0.5s;
}

.integration-card:hover::before {
    left: 100%;
}

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

.integration-logo {
    width: auto;
    height: 100px;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem;
    transition: all 0.3s ease;
}

.integration-logo:hover {
    transform: scale(1.1);

}

.integration-logo img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.integration-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.integration-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.integration-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.integration-features li {
    color: #64748b;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
}

.integration-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.setup-button {
    background: transparent;
    color: #f56400;
    border: 2px solid #f56400;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.setup-button:hover {
    background: #f56400;
    color: white;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.api-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.api-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.api-feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.api-feature:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    border-color: #cbd5e1;
}

.api-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.api-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.api-feature p {
    color: #64748b;
    font-size: 0.9rem;
}

.getting-started {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.getting-started .section-title {
    color: white;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #f56400;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-card p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for Help and Integrations Pages */
@media (max-width: 768px) {
    .help-hero h1, .integrations-hero h1 {
        font-size: 2.5rem;
    }

    .help-hero p, .integrations-hero p {
        font-size: 1.1rem;
    }

    .integration-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .integration-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .integration-category {
        padding: 2rem;
    }

    .api-section {
        padding: 2rem;
    }

    .search-input {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .search-button {
        padding: 0.6rem 1rem;
    }

    .help-category, .contact-card {
        padding: 2rem;
    }
}

/* Fulfillment Page Styles */
.fulfillment-hero {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fulfillment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.fulfillment-hero-content {
    position: relative;
    z-index: 2;
}

.fulfillment-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fulfillment-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fulfillment-content {
    padding-top: 80px;
    background: #f8fafc;
}

.process-flow {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    color: #f56400;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 1;
}

@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: 100%;
        transform: translateX(50%);
    }
}


.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #64748b;
    font-size: 0.9rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid #f1f5f9;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 100, 0, 0.05), transparent);
    transition: left 0.5s;
}

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

.benefit-card:hover::before {
    left: 100%;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

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

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    margin-top: auto;
    flex-grow: 1;
}

.benefit-list li {
    color: #64748b;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.warehouse-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.warehouse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.warehouse-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.warehouse-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f56400;
}

.warehouse-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.warehouse-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.warehouse-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.warehouse-specs {
    list-style: none;
    text-align: left;
}

.warehouse-specs li {
    color: #64748b;
    font-size: 0.8rem;
    padding: 0.2rem 0;
    display: flex;
    justify-content: space-between;
}

.warehouse-specs strong {
    color: #1a202c;
}

.pricing-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 80px 0;
    margin: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #f56400;
    transform: scale(1.05);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #f56400;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f56400;
    margin-bottom: 0.5rem;
}

.plan-period {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f56400;
    font-weight: bold;
}

.plan-button {
    background: #f56400;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.plan-button:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.featured-badge {
    background: #f56400;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}


.getting-started h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.getting-started p {
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.start-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.start-button {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 100, 0, 0.3);
}

.start-button.secondary {
    background: transparent;
    color: #f56400;
    border: 2px solid #f56400;
}

.start-button.secondary:hover {
    background: #f56400;
    color: white;
}

/* Security Page Styles */
.security-hero {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.security-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.security-hero-content {
    position: relative;
    z-index: 2;
}

.security-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.security-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.security-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.security-content {
    padding: 80px 0;
    background: #f8fafc;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 100, 0, 0.1), transparent);
    transition: left 0.5s;
}

.security-card:hover::before {
    left: 100%;
}

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

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

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

.security-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.security-card ul {
    color: #64748b;
    padding-left: 1.5rem;
}

.security-card li {
    margin-bottom: 0.5rem;
}

.compliance-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.compliance-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.compliance-item:hover {
    background: #f1f5f9;
    transform: translateY(-5px);
}

.compliance-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.compliance-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.compliance-item p {
    color: #64748b;
    font-size: 0.9rem;
}

.security-metrics {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 80px 0;
    margin: 5rem 0;
}

.security-metrics .section-title {
    color: white;
    margin-bottom: 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.metric-item {
    padding: 2rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f56400;
    display: block;
    margin-bottom: 0.5rem;
}

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

.practices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.practice-column {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.practice-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.practice-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.practice-list {
    list-style: none;
}

.practice-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4a5568;
    position: relative;
    padding-left: 2rem;
}

.practice-list li:last-child {
    border-bottom: none;
}

.practice-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f56400;
    font-weight: bold;
}

.security-contact {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 3rem;
}

.security-contact h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.security-contact p {
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.security-button {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.security-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 100, 0, 0.3);
}

.security-button.secondary {
    background: transparent;
    color: #f56400;
    border: 2px solid #f56400;
}

.security-button.secondary:hover {
    background: #f56400;
    color: white;
}

/* Legal Pages (Privacy Policy & Cookie Policy) Styles */
.legal-content {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

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

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.legal-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #f56400;
}

.last-updated strong {
    color: #f56400;
}

.privacy-content, .cookie-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-content h2, .cookie-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f56400;
}

.privacy-content h2:first-child, .cookie-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3, .cookie-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.privacy-content ul, .cookie-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-content li, .cookie-content li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.important-note {
    background: #fef5e7;
    border: 1px solid #f56400;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.important-note strong {
    color: #f56400;
}

.data-category {
    background: #f1f5f9;
    border-left: 4px solid #f56400;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.data-category h4 {
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.legal-basis-box {
    background: #e0f2fe;
    border: 1px solid #0288d1;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-basis-box h4 {
    color: #0277bd;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #f56400;
}

.right-item strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-info {
    background: linear-gradient(135deg, #f56400 0%, #ff8c42 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.cookie-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-type {
    background: #f8fafc;
    border-left: 4px solid #f56400;
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
}

.cookie-type h4 {
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-type p {
    margin: 0;
    color: #4a5568;
}

.cookie-icon {
    width: 24px;
    height: 24px;
    background: #f56400;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.third-party-box {
    background: #e8f4fd;
    border: 1px solid #3b82f6;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.third-party-box h4 {
    color: #1d4ed8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.duration-info {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.duration-info h4 {
    color: #15803d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.management-tips {
    background: #fefce8;
    border: 1px solid #eab308;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.management-tips h4 {
    color: #a16207;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Mobile Responsiveness for Page-Specific Styles */
@media (max-width: 768px) {
    .fulfillment-hero h1, .security-hero h1 {
        font-size: 2.5rem;
    }

    .fulfillment-hero p, .security-hero p {
        font-size: 1.1rem;
    }

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

    .process-step::after {
        display: none;
    }

    .process-flow, .warehouse-section, .getting-started {
        padding: 2rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .practices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .security-card {
        padding: 2rem;
    }

    .practice-column {
        padding: 2rem;
    }

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

    .legal-header h1 {
        font-size: 2rem;
    }

    .privacy-content, .cookie-content {
        padding: 2rem 1.5rem;
    }

    .privacy-content h2, .cookie-content h2 {
        font-size: 1.3rem;
    }

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

    .contact-info {
        padding: 1.5rem;
    }
}
