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

:root {
    --primary-color: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fb923c;
    --secondary-color: #1e293b;
    --text-color: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --orange-color: #f97316;
    --purple-color: #ea580c;
    --gradient-primary: linear-gradient(135deg, #f97316, #ea580c);
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Global section overflow control */
section {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(249, 115, 22, 0.3); }
    50% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.6); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a i {
    font-size: 0.7rem;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-contact {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-signup {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-signup:hover {
    background: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    color: #92400e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.badge i {
    color: #f59e0b;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-color);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Dashboard Preview */
.hero-image {
    position: relative;
}

.dashboard-preview {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
}

.dashboard-header {
    background: #f1f5f9;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.dashboard-content {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.sidebar-mini {
    width: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.sidebar-item.active {
    background: var(--primary-color);
}

.main-content {
    flex: 1;
}

.chart-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 120px;
}

.bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 6px 6px 0 0;
    position: relative;
    animation: bar-grow 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes bar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-1 {
    top: 20%;
    left: 0;
    animation: float-left 4s ease-in-out infinite;
}

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

.card-2 {
    bottom: 20%;
    right: 0;
    animation: float-right 4s ease-in-out infinite 0.5s;
}

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

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.avatar.purple { background: var(--primary-dark); }
.avatar.blue { background: var(--primary-color); }

.text-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.line {
    width: 80px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.line.short {
    width: 50px;
}

/* Trusted Section */
.trusted {
    padding: 50px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.trusted-text {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-img {
    height: 30px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    overflow: hidden;
}

.feature-card {
    padding: 35px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-icon.orange {
    background: #fff7ed;
    color: var(--orange-color);
}

.feature-icon.blue {
    background: #fff7ed;
    color: var(--primary-color);
}

.feature-icon.green {
    background: #ecfdf5;
    color: var(--success-color);
}

.feature-icon.purple {
    background: #f5f3ff;
    color: var(--purple-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Workflow Section */
.workflow {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

.workflow-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.workflow-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.workflow-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.workflow-table {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

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

.table-header span {
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-buttons {
    display: flex;
    gap: 8px;
}

.filter-buttons button {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-buttons button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

th, td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

th {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.85rem;
}

.status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status.delivered {
    background: #ecfdf5;
    color: var(--success-color);
}

.status.pending {
    background: #fef3c7;
    color: #92400e;
}

.date-badge {
    background: #fff7ed;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Operations Section */
.operations {
    padding: 100px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 100%;
    overflow: visible;
}

.operation-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    overflow: hidden;
}

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

.operation-card:hover .card-image {
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
}

.card-image {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.card-image:hover {
    border-color: var(--primary-color);
}

.mini-dashboard {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
}

.chart-mini {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.bar-mini {
    width: 20px;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: bar-grow 0.8s ease-out forwards;
    transform-origin: bottom;
}

.data-card {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.data-card .amount {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.data-card .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.reports .report-chart {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.line-chart {
    width: 100%;
    height: 80px;
}

.channels .channel-icons {
    display: flex;
    gap: 15px;
    overflow: hidden;
    max-width: 100%;
}

.channel-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.channel-icon.shopify { color: #96bf48; }
.channel-icon.amazon { color: #ff9900; }
.channel-icon.ebay { color: #e53238; }

.operation-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.operation-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.operations-cta {
    text-align: center;
    margin-top: 50px;
}

/* Integrations Section */
.integrations {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.integrations-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
}

.integrations-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.integrations-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
}

.integrations-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.integration-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    overflow: hidden;
}

.integration-logo {
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.integration-logo:hover {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
}

.integration-logo i {
    font-size: 1.2rem;
}

.integration-logo.more {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 5px;
    background: var(--bg-light);
    padding: 5px;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto 50px;
}

.pricing-toggle button {
    padding: 10px 25px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-toggle button.active {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow: hidden;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card:hover {
    box-shadow: 0 25px 70px rgba(249, 115, 22, 0.15);
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
    transform: scale(1.02);
    animation: float 3s ease-in-out infinite;
}

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

.plan-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.plan-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.plan-price {
    margin-bottom: 25px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.plan-price .custom {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-outline-plan {
    display: block;
    text-align: center;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.btn-outline-plan:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-primary-plan {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.btn-primary-plan:hover {
    background: var(--primary-dark);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.plan-features li i {
    color: var(--success-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.1);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--secondary-color);
}

.faq-question i {
    color: var(--text-light);
}

.faq-answer {
    padding: 0 25px 20px;
    display: none;
}

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

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #7c2d12 0%, #431407 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.cta-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.cta .btn-primary {
    background: var(--primary-color);
}

.cta-image {
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
}

.mockup-header {
    background: #f1f5f9;
    padding: 10px 15px;
    display: flex;
    gap: 6px;
}

.mockup-content {
    display: flex;
    padding: 15px;
    gap: 15px;
}

.mockup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-icon {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 8px;
}

.mockup-main {
    flex: 1;
}

.stats-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.stat-card {
    flex: 1;
    background: var(--bg-light);
    padding: 12px;
    border-radius: 10px;
}

.stat-card .stat-title {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
}

.stat-card .stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.chart-area {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.mini-chart {
    height: 60px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    border-radius: 8px;
    opacity: 0.3;
    animation: chart-grow 1.5s ease forwards;
}\n\n@keyframes chart-grow {\n    from { width: 0; }\n    to { width: 100%; }\n}

.sales-country {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 12px;
}

.sales-country span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.country-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.country-bar {
    height: 8px;
    background: var(--primary-color);
    border-radius: 4px;
    animation: width-grow 1s ease-out forwards;
}

@keyframes width-grow {
    from { width: 0; }
}

.country-bar:nth-child(1) { width: 80%; }
.country-bar:nth-child(2) { width: 60%; }
.country-bar:nth-child(3) { width: 40%; }

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo span {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) rotate(5deg);
}

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

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content,
    .workflow-content,
    .integrations-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

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

    .hero-image {
        order: -1;
    }

    .dashboard-preview {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-card {
        display: none;
    }

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

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

    .operation-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .integrations-text {
        text-align: center;
    }

    .integrations-text .btn-outline {
        margin: 0 auto;
    }

    .integrations-logos {
        align-items: center;
    }

    .cta-text {
        text-align: center;
    }

    .cta-stats {
        justify-content: center;
    }

    .cta .btn-primary {
        margin: 0 auto;
        display: inline-flex;
    }

    .cta-image {
        order: -1;
    }

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

    .workflow-list {
        text-align: center;
    }

    .workflow-table {
        margin-top: 20px;
    }
}

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

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

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

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

    .features-grid,
    .operations-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .operation-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .feature-card {
        padding: 25px;
    }

    .pricing-card {
        padding: 25px;
    }

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

    .plan-price .amount {
        font-size: 2.8rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

    .trusted-logos {
        gap: 25px;
    }

    .logo-img {
        height: 25px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .integrations-logos {
        justify-content: center;
    }

    .integration-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .integration-logo {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .workflow-content {
        gap: 30px;
    }

    .workflow-table {
        padding: 15px;
        overflow-x: auto;
    }

    table {
        min-width: 500px;
    }

    .filter-buttons {
        flex-wrap: wrap;
    }

    .filter-buttons button {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .table-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px 15px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .dashboard-mockup {
        max-width: 350px;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .footer-column a {
        font-size: 0.85rem;
    }

    .pricing-toggle button {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .card-image {
        height: 180px;
        padding: 20px;
    }

    .features,
    .workflow,
    .operations,
    .integrations,
    .pricing,
    .faq {
        padding: 60px 0;
    }

    .trusted {
        padding: 35px 0;
    }
}

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

    .header {
        padding: 12px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .hero-text h1 {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        margin-bottom: 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

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

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

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

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

    .workflow-item h3 {
        font-size: 1.1rem;
    }

    .workflow-item p {
        font-size: 0.9rem;
    }

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

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

    .card-image {
        height: 160px;
        padding: 15px;
    }

    .integrations-text h2 {
        font-size: 1.6rem;
    }

    .integrations-text p {
        font-size: 0.95rem;
    }

    .btn-outline {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .integration-logo {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .integration-logo i {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 20px;
    }

    .plan-header h3 {
        font-size: 1.2rem;
    }

    .plan-header p {
        font-size: 0.85rem;
    }

    .plan-price .amount {
        font-size: 2.5rem;
    }

    .plan-price .currency {
        font-size: 1.2rem;
    }

    .plan-price .custom {
        font-size: 1.6rem;
    }

    .btn-outline-plan,
    .btn-primary-plan {
        padding: 12px;
        font-size: 0.9rem;
    }

    .plan-features li {
        font-size: 0.85rem;
        gap: 10px;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .faq-question span {
        flex: 1;
        padding-right: 10px;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .cta {
        padding: 50px 0;
    }

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

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

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

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

    .dashboard-mockup {
        max-width: 280px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

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

    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .footer-column ul {
        gap: 10px;
    }

    .footer-column a {
        font-size: 0.8rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .trusted-logos {
        gap: 20px;
    }

    .logo-img {
        height: 20px;
    }

    .dashboard-preview {
        border-radius: 12px;
    }

    .chart-bars {
        height: 80px;
        gap: 12px;
    }

    .features,
    .workflow,
    .operations,
    .integrations,
    .pricing,
    .faq {
        padding: 50px 0;
    }

    .trusted {
        padding: 30px 0;
    }

    .trusted-text {
        font-size: 0.85rem;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

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

    .plan-price .amount {
        font-size: 2rem;
    }

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

    .footer-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .integration-row {
        flex-direction: column;
        align-items: center;
    }

    .cta-text h2 {
        font-size: 1.3rem;
    }

    .faq-question {
        font-size: 0.85rem;
    }
}

/* Landscape Mode for Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 20px 0 30px;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero-text p {
        margin-bottom: 15px;
    }

    .badge {
        margin-bottom: 10px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .features,
    .workflow,
    .operations,
    .integrations,
    .pricing,
    .faq,
    .cta {
        padding: 40px 0;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .operation-card:hover,
    .pricing-card:hover,
    .integration-logo:hover {
        transform: none;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }

    .floating-card {
        animation: none;
    }

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

/* ==================== */
/* Additional Pages Styles */
/* ==================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.page-hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #94a3b8;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    color: #475569;
    font-size: 0.7rem;
}

.breadcrumb span {
    color: var(--primary-color);
}

/* About Story Section */
.about-story {
    padding: 80px 0;
    background: var(--bg-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.image-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-illustration {
    text-align: center;
    padding: 40px;
    position: relative;
}

.team-illustration > i {
    font-size: 6rem;
    color: var(--primary-color);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icons span {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.floating-icons span:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons span:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.floating-icons span:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

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

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: var(--bg-light);
    transition: all 0.3s;
}

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

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 1.8rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Section */
.about-stats {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: inline;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 600;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

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

.team-image {
    margin-bottom: 20px;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team-avatar i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.team-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.choose-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.choose-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.choose-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.choose-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.choose-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.choose-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Page CTA */
.page-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

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

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: var(--secondary-color);
    color: white;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-connect h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

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

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

.contact-form label {
    display: block;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
    background: white;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: var(--bg-light);
    padding: 80px;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.map-placeholder p {
    color: var(--text-light);
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.faq-quick-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

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

.faq-quick-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-quick-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

/* Services Main */
.services-main {
    padding: 80px 0;
    background: white;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-showcase-item.reverse {
    direction: rtl;
}

.service-showcase-item.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-features li i {
    color: var(--success-color);
}

.btn-outline-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-service:hover {
    gap: 12px;
}

/* Service Visuals */
.service-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.dashboard-visual .mini-chart {
    margin-bottom: 20px;
}

.dashboard-visual .chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 120px;
}

.dashboard-visual .chart-bars span {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 8px 8px 0 0;
    transition: height 0.3s;
}

.stat-cards {
    display: flex;
    gap: 15px;
}

.mini-stat {
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.mini-stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.mini-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Order Visual */
.order-visual .order-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flow-step {
    text-align: center;
}

.flow-step i {
    display: block;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    line-height: 50px;
    color: var(--text-light);
    margin: 0 auto 10px;
    font-size: 1.2rem;
}

.flow-step.active i {
    background: var(--primary-color);
    color: white;
}

.flow-step span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.flow-line {
    flex: 1;
    height: 3px;
    background: #e2e8f0;
    margin: 0 -10px;
    margin-bottom: 25px;
}

/* Analytics Visual */
.analytics-visual {
    text-align: center;
}

.pie-chart {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-color) 0% 45%,
        #3b82f6 45% 75%,
        var(--success-color) 75% 100%
    );
    margin: 0 auto 20px;
}

.analytics-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.metric-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.metric-dot.orange { background: var(--primary-color); }
.metric-dot.blue { background: #3b82f6; }
.metric-dot.green { background: var(--success-color); }

/* Channels Visual */
.channels-visual {
    text-align: center;
}

.channel-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.channel-icon-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 2rem;
}

.channel-icon-box .fa-shopify { color: #96bf48; }
.channel-icon-box .fa-amazon { color: #ff9900; }
.channel-icon-box .fa-ebay { color: #e53238; }
.channel-icon-box .fa-etsy { color: #f56400; }

.connection-hub {
    display: flex;
    justify-content: center;
}

.hub-center {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.service-icon.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.service-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.service-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.service-icon.orange { background: var(--gradient-primary); }
.service-icon.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.service-icon.teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 10px;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.process-connector {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(249, 115, 22, 0.2));
    max-width: 100px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 1;
    margin: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Blog Styles */
.featured-post {
    padding: 80px 0;
    background: white;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 5rem;
    color: #94a3b8;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.featured-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.post-meta .category {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.post-meta .date,
.post-meta .read-time {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Blog Categories */
.blog-categories {
    padding: 40px 0;
    background: var(--bg-light);
}

.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-btn {
    background: white;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 60px 0;
    background: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.post-image {
    height: 200px;
}

.post-image .image-placeholder {
    height: 100%;
}

.post-image .image-placeholder i {
    font-size: 3rem;
}

.post-content {
    padding: 25px;
}

.post-content .post-meta {
    margin-bottom: 10px;
}

.post-content .post-meta .category {
    font-size: 0.8rem;
    padding: 3px 10px;
}

.post-content .post-meta .date {
    font-size: 0.85rem;
}

.post-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 10px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Blog Newsletter */
.blog-newsletter {
    padding: 80px 0;
    background: var(--bg-light);
}

.newsletter-box {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.newsletter-content i {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 14px 25px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #0f172a;
}

.privacy-note {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Responsive Styles for Additional Pages */
@media (max-width: 1024px) {
    .story-content,
    .contact-grid,
    .service-showcase-item,
    .featured-card {
        grid-template-columns: 1fr;
    }

    .service-showcase-item.reverse {
        direction: ltr;
    }

    .mv-grid,
    .stats-grid,
    .team-grid,
    .choose-grid,
    .faq-quick-grid,
    .services-grid,
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-connector {
        width: 3px;
        height: 30px;
        background: linear-gradient(180deg, var(--primary-color), rgba(249, 115, 22, 0.2));
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .mv-grid,
    .stats-grid,
    .team-grid,
    .choose-grid,
    .faq-quick-grid,
    .services-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-box {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .featured-image {
        min-height: 250px;
    }

    .categories-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .category-btn {
        white-space: nowrap;
    }

    .table-responsive, table {
        overflow-x: auto;
        display: block;
        width: 100%;
    }
    
    /* Mobile Menu Styles */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.mobile-active a {
        padding: 12px 20px;
        border-radius: 8px;
        text-align: center;
    }
    
    .nav-links.mobile-active a:hover {
        background: var(--bg-light);
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 0.95rem;
    }
    
    .story-text h2,
    .mv-item h3,
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .cta-box {
        padding: 30px 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}
