/* ==========================================
   ELECTRO WEIGHING - MODERN PROFESSIONAL STYLES
   Blue (#1e3a8a, #3b82f6) + Red (#ff4444) theme
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f8fafc;
}

/* ==================== HEADER ==================== */

header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.header-inner {
    max-width: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    padding-left: 12px;
    margin-left: 10px;
}

.left-group {
    /* padding-left: 12px; */
    display: flex;
    align-items: left;
    gap: 0.9rem;
    margin-right: auto;
    
}

.logo-wordmark {
    display: block;
    width: 350px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-wordmark:hover {
    transform: scale(1.05);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-badge {
    width: 150px;
    height: auto;
    border-radius: 50%;
    background: none;
    padding: 6px;
    padding-right: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    margin-right: 12PX;
}

.company-name {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 1.1;
}

.brand {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.8rem;
    color: #ff6b6b;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.right-group ul {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.right-group ul li {
    margin: 0;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    padding: 0.85rem 1.35rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    background-color: #f1f5f9;
    color: #2563eb;
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: #2563eb;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

/* ==================== HERO SECTION ==================== */

.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    color: #1e293b;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    /* min-height: 500px; */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #0f172a;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #475569;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    animation: slideInRight 0.8s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 640px;
    margin-left: auto;
}

.hero-svg {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.hero-weighbridge {
    width: 100%;
    height: auto;
    max-width: 620px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

/* ==================== BUTTONS ==================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ==================== SECTIONS ==================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== FEATURES SECTION ==================== */

.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
    border-left-color: #dc2626;
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* ==================== STATS SECTION ==================== */

.stats {
    background: 
        linear-gradient(135deg, 
            rgba(239, 246, 255, 0.9) 0%, 
            rgba(219, 234, 254, 0.9) 50%, 
            rgba(191, 219, 254, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #1e293b;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    border-radius: 10px;
    border: 1px solid rgba(147, 197, 253, 0.4);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
}

/* ==================== PAGE HEADER ==================== */

.page-header {
    background: 
        linear-gradient(135deg, 
            rgba(248, 250, 252, 0.8) 0%, 
            rgba(241, 245, 249, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #0f172a;
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ==================== SERVICES SECTION ==================== */

.services-container,
.products-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 2rem;
}

.service-card,
.product-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.service-card:hover,
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-image,
.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0e7ff, #f8f9fa);
}

.service-card h3,
.product-card h3 {
    color: #1e3a8a;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    font-size: 1.4rem;
}

.service-card p,
.product-card p {
    color: #666;
    margin: 0.75rem 1.5rem;
    line-height: 1.7;
}

.service-features,
.product-specs {
    list-style: none;
    padding: 0 1.5rem;
    margin: 1rem 0;
    flex-grow: 1;
}

.service-features li,
.product-specs span {
    color: #555;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 1.5rem 0;
}

.product-specs span {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card .btn,
.product-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* ==================== PROCESS SECTION ==================== */

.process-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(226, 232, 240, 0.4);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.step h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== PRODUCT FEATURES ==================== */

.product-features-highlight {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.3);
    border-left: 4px solid #2563eb;
}

.feature-item:hover {
    transform: translateX(5px);
    border-left-color: #dc2626;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.feature-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== SOFTWARE SECTIONS ==================== */

.software-hero {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.software-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.software-content p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.software-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(219, 234, 254, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #1e3a8a;
    border: 1px solid rgba(147, 197, 253, 0.3);
}

.highlight-item .icon {
    font-size: 1.8rem;
}

.software-image {
    animation: floatImage 3s ease-in-out infinite;
}

.dashboard-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.software-features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.features-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
    border-top: 3px solid #2563eb;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.4);
    border-top: 3px solid #2563eb;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.feature-title {
    color: #1e3a8a;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-box ul {
    list-style: none;
    padding-left: 0;
}

.feature-box li {
    color: #555;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-box li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* ==================== TECH SPECS ==================== */

.tech-specs {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.spec-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.spec-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== WORKFLOW ==================== */

.workflow {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.workflow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 0.75rem;
}

.workflow-step h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.workflow-step p {
    color: #666;
    font-size: 0.85rem;
}

.workflow-arrow {
    color: #3b82f6;
    font-size: 2rem;
    font-weight: bold;
    animation: moveArrow 1.5s ease-in-out infinite;
}

/* ==================== PRICING ==================== */

.pricing-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e0e7ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #ff4444;
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: #666;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.pricing-card .btn {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* ==================== CTA SECTION ==================== */

.cta-section {
    background: 
        linear-gradient(135deg, 
            rgba(219, 234, 254, 0.85) 0%, 
            rgba(191, 219, 254, 0.85) 50%, 
            rgba(147, 197, 253, 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #0f172a;
    padding: 4rem 2rem;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(147, 197, 253, 0.5);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1e3a8a;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

/* ==================== CONTACT PAGE ==================== */

.contact-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
    color: #1e3a8a;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ff4444;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-item p {
    color: #666;
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.small {
    font-size: 0.85rem !important;
    color: #999 !important;
}

/* ==================== FORM ==================== */

.form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e7ff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: auto;
    border: 2px solid #e0e7ff;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 500;
}

.form-note {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    text-align: center;
}

/* ==================== SERVICE AREAS ==================== */

.service-areas {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.area-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.area-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== FAQ SECTION ==================== */

.faq-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== FOOTER ==================== */

footer {
    background: 
        linear-gradient(135deg, 
            rgba(219, 234, 254, 0.9) 0%, 
            rgba(186, 230, 253, 0.9) 50%, 
            rgba(224, 242, 254, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1e293b;
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(147, 197, 253, 0.4);
    box-shadow: 0 -4px 16px rgba(37, 99, 235, 0.08);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.footer-logo {
    width: 170px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.footer-badge {
    width: 70px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 6px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* ==================== CUSTOMERS SECTION ==================== */

.customers-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(226, 232, 240, 0.4);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.customers-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 400;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.customer-logo {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.customer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    background: rgba(255, 255, 255, 1);
}

.customer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ==================== ANIMATIONS ==================== */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes moveArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .logo-wordmark {
        width: 210px;
    }

    .logo-badge {
        width: 62px;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-badge {
        width: 60px;
    }

    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .left-group {
        justify-content: center;
    }

    .right-group ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 2rem;
    }

    .hero-image {
        margin: 1rem auto 0;
        max-width: 480px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-container,
    .products-container {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .software-hero {
        grid-template-columns: 1fr;
    }

    .software-highlights {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        flex-direction: column;
    }

    .workflow-arrow {
        display: none;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card,
    .service-card,
    .product-card {
        padding: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-steps,
    .features-matrix,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    footer {
        padding: 2rem 1rem 1rem;
    }
}
