/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo h2 {
    color: #ea580c;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ea580c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: url('banner1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    transform: rotate(15deg);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #fef3c7;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: flex-start;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #fef3c7;
    color: #ea580c;
}

.btn-primary:hover {
    background: #fde68a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #ea580c;
}

.btn-outline {
    background: transparent;
    color: #ea580c;
    border: 2px solid #ea580c;
}

.btn-outline:hover {
    background: #ea580c;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    color: white;
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    min-width: 120px;
    max-width: 140px;
}

.floating-card:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.2rem;
    color: white;
}

.card-text span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-card.card-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 25%;
    right: 8%;
    animation-delay: 1.5s;
}

.floating-card.card-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 3s;
}

.floating-card.card-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 4.5s;
}

.hero-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.central-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.inner-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle i {
    font-size: 2rem;
    color: white;
    animation: rotate 4s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* POS Mockup */
.pos-mockup {
    background: #1f2937;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screen {
    background: #111827;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #374151;
}

.screen-content {
    color: #e5e7eb;
}

.pos-header {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fef3c7;
    text-align: center;
}

.pos-items {
    margin-bottom: 1rem;
}

.item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #374151;
    display: flex;
    justify-content: space-between;
}

.pos-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fef3c7;
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid #374151;
}


/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ea580c;
    font-weight: bold;
}

.service-action {
    margin-top: 1.5rem;
    text-align: center;
}

.service-action .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-action .btn-primary {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    border: none;
}

.service-action .btn-primary:hover {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.benefit-content p {
    color: #6b7280;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: #1f2937;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-header {
    color: #fef3c7;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: #374151;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fef3c7;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    flex: 1;
}

.testimonial-nav-btn {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.testimonial-nav-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.testimonial-nav-btn i {
    font-size: 1rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex: 0 0 350px;
    min-width: 350px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #4b5563;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

.rating {
    color: #f59e0b;
}

/* News & Media Section */
.news {
    padding: 80px 0;
    background: #f8fafc;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder {
    text-align: center;
    color: white;
}

.news-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: #ea580c;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 1.4;
}

.news-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-link {
    color: #ea580c;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #f97316;
}

.news-link i {
    font-size: 0.8rem;
}

/* Customer Showcase Section */
.customers {
    padding: 80px 0;
    background: white;
}

.industry-section {
    margin-bottom: 4rem;
}

.industry-section:last-child {
    margin-bottom: 0;
}

.industry-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ea580c;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.industry-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 2px;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.customer-logo {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.customer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.customer-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-bottom: 0.5rem;
}

.customer-logo:hover img {
    transform: scale(1.05);
}

.customer-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

/* Pricing Hero Section */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: white;
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-table-container {
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.pricing-header-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid #e5e7eb;
}

.pricing-content-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
    position: relative;
}

.pricing-header-table th,
.pricing-content-table th,
.pricing-content-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-content-table .feature-name {
    text-align: left !important;
}

.pricing-header-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.sno-column {
    text-align: center !important;
    background: #e5e7eb !important;
    font-weight: 600;
    color: #374151;
    width: 8%;
}

.feature-column {
    text-align: left !important;
    background: #f3f4f6 !important;
    font-weight: 600;
    color: #1f2937;
    width: 32%;
}

.plan-column {
    width: 20%;
    vertical-align: top;
}

.plan-column.featured {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: white;
    position: relative;
}

.plan-column.featured th {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: white;
}

.plan-column.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fef3c7;
    color: #ea580c;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: inherit;
}

.plan-header .price {
    font-size: 2rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 0.25rem;
}

.plan-column.featured .plan-header .price {
    color: #fef3c7;
}

.plan-header .period {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.plan-column.featured .plan-header .period {
    color: rgba(255, 255, 255, 0.8);
}

.feature-name {
    text-align: left;
    font-weight: 500;
    color: #374151;
    padding: 1rem;
    text-align: left !important;
}

.plan-feature {
    padding: 1rem;
    vertical-align: middle;
}

.plan-feature i {
    font-size: 1.2rem;
}

.plan-feature .fa-check {
    color: #10b981;
}

.plan-feature .fa-times {
    color: #ef4444;
}

.user-count {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-text {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.sno-cell {
    text-align: center;
    font-weight: 600;
    color: #6b7280;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
}

/* Expandable Feature Rows */
.expandable-row {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.expandable-row:hover {
    background-color: #f8fafc;
}

.feature-title {
    display: inline-block;
    margin-right: 0.5rem;
}

.expand-icon {
    font-size: 0.8rem;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.expandable-row.expanded .expand-icon {
    transform: rotate(180deg);
}

.feature-details {
    background-color: #f8fafc;
}

.feature-detail-cell {
    padding: 1rem !important;
    background-color: #f8fafc !important;
    text-align: left !important;
}

.plan-detail {
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.plan-detail.basic {
    background-color: #fef3c7;
    border-left: 3px solid #f59e0b;
}

.plan-detail.professional {
    background-color: #dbeafe;
    border-left: 3px solid #3b82f6;
}

.plan-detail.advanced {
    background-color: #d1fae5;
    border-left: 3px solid #10b981;
}

.action-row {
    background: #f9fafb;
}

.action-row .plan-feature {
    padding: 2rem 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #ea580c;
}

.pricing-note p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

.pricing-note i {
    margin-right: 0.5rem;
    color: #ea580c;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #ea580c;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ea580c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #6b7280;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #10b981;
    font-size: 0.9rem;
}

/* About Us Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-intro {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.about-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 0.5rem;
}

.about-stat p {
    color: #6b7280;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.about-feature p {
    color: #6b7280;
    line-height: 1.5;
}

.about-visual {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visual-header {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ea580c;
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.office i {
    color: #ea580c;
    font-size: 1.2rem;
}

.office span {
    font-weight: 500;
    color: #1f2937;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ea580c;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    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: #ea580c;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f59e0b;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #ea580c;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .pricing-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .testimonials-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonials-grid {
        flex-direction: column;
        overflow-x: visible;
    }
    
    .testimonial-card {
        flex: 1;
        min-width: auto;
    }
    
    .testimonial-nav-btn {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table-container {
        margin: 1rem 0;
    }

    .pricing-header-table,
    .pricing-content-table {
        min-width: 600px;
    }

    .pricing-header-table th,
    .pricing-content-table th,
    .pricing-content-table td {
        padding: 0.75rem 0.5rem;
    }

    .plan-header h3 {
        font-size: 1.2rem;
    }

    .plan-header .price {
        font-size: 1.5rem;
    }

    .feature-name {
        font-size: 0.9rem;
    }

    .user-text {
        font-size: 0.8rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .industry-section {
        margin-bottom: 3rem;
    }

    .industry-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .customers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .customer-logo {
        max-width: 150px;
        height: auto;
        padding: 1rem;
    }

    .customer-logo img {
        max-height: 50px;
    }

    .customer-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        height: 300px;
        order: -1;
        padding: 1rem;
    }
    
    .floating-card {
        min-width: 100px;
        max-width: 120px;
        padding: 0.75rem;
    }
    
    .floating-card.card-1 {
        top: 10%;
        left: 2%;
    }
    
    .floating-card.card-2 {
        top: 20%;
        right: 2%;
    }
    
    .floating-card.card-3 {
        bottom: 20%;
        left: 2%;
    }
    
    .floating-card.card-4 {
        bottom: 10%;
        right: 2%;
    }
    
    
    .card-icon {
        width: 35px;
        height: 35px;
    }
    
    .central-circle {
        width: 100px;
        height: 100px;
    }
    
    .inner-circle {
        width: 70px;
        height: 70px;
    }
    
    .inner-circle i {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .pricing-hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-text h2 {
        font-size: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .industry-section {
        margin-bottom: 2rem;
    }

    .industry-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .customer-logo {
        max-width: 120px;
        height: auto;
        padding: 0.5rem;
    }

    .customer-logo img {
        max-height: 40px;
    }

    .customer-name {
        font-size: 0.7rem;
    }

    .pricing-header-table,
    .pricing-content-table {
        min-width: 500px;
    }

    .pricing-header-table th,
    .pricing-content-table th,
    .pricing-content-table td {
        padding: 0.5rem 0.25rem;
    }

    .plan-header h3 {
        font-size: 1rem;
    }

    .plan-header .price {
        font-size: 1.2rem;
    }

    .feature-name {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .user-text {
        font-size: 0.7rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.testimonial-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}
