/* ============================================================
   LOMCOS – Global Site Styles
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
    --primary: #0F172A;
    --secondary: #2563EB;
    --accent: #22C55E;
    --bg: #F8FAFC;
    --card-bg: #FFFFFF;
    --text: #1E293B;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, .08);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, .12);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.2s ease-out;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    background-image:
        linear-gradient(rgba(226, 232, 240, .3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, .3) 1px, transparent 1px);
    background-size: 50px 50px;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Hero ---------- */
.hero-section {
    padding: 80px 0 60px;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, .08);
    color: var(--secondary);
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.4rem;
}

.text-blue {
    color: var(--secondary);
}

.text-green {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Hero buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 99, 235, .3);
}

.btn-hero-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    color: #fff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--border);
    color: var(--text);
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    background: transparent;
}

.btn-hero-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Hero stats */
.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

.stat-label {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* Hero image */
.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-float-badge {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    z-index: 1;
}

.hero-float-badge strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-float-badge span {
    font-size: .75rem;
    color: var(--text-muted);
}

/* ---------- Trusted by ---------- */
.trusted-section {
    padding: 32px 0 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .7);
}

.trusted-label {
    text-align: center;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
}

.trusted-logo-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #CBD5E1;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .2s;
}

.trusted-logo-item:hover {
    color: var(--text-muted);
}

/* ---------- Services ---------- */
.section-pad {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: .8rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 32px 28px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, .2);
}

.svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.svc-icon.blue {
    background: #EFF6FF;
    color: var(--secondary);
}

.svc-icon.green {
    background: #F0FDF4;
    color: var(--accent);
}

.svc-icon.orange {
    background: #FFF7ED;
    color: #F97316;
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 18px;
}

.svc-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: .9rem;
}

.svc-link:hover {
    color: #1d4ed8;
}

/* ---------- CTA banner ---------- */
.cta-section {
    padding: 30px 0 60px;
}

.cta-inner {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 8px;
}

.cta-inner p {
    color: #94A3B8;
    margin: 0;
}

.btn-cta-white {
    background: #fff;
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-cta-white:hover {
    background: #F1F5F9;
    transform: scale(1.03);
}

/* ---------- Footer (Zoho-inspired) ---------- */
.site-footer {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

/* 1. CTA Section (v3 Light Elite Refresh) */
.footer-cta-section-v3-light {
    padding: 100px 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.footer-cta-content-v3 {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-v3-light {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-text-v3-light {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 35px;
    font-weight: 400;
}

.cta-btn-v3-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EF4444;
    color: #fff;
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.cta-btn-v3-red:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    color: #fff;
}

.cta-btn-v3-red i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.cta-btn-v3-red:hover i {
    transform: translateX(3px);
}

/* 2. Main Links */
.footer-main-links {
    padding: 80px 0 60px;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    font-size: 0.88rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.footer-list a:hover {
    color: #2563eb;
}

/* Contact/Sales column */
.footer-contact-info .contact-item {
    margin-bottom: 20px;
}

.footer-contact-info small {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-contact-info a {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    margin-right: 24px;
    margin-bottom: 8px;
}

.support-link i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.support-link:hover i {
    transform: translateX(4px);
}

/* 3. Social & Legal */
.footer-social-legal {
    padding: 60px 0 40px;
    border-top: 1px solid #f3f4f6;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social-icons a:hover {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.footer-legal-row {
    font-size: 0.78rem;
    color: #94a3b8;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-legal-row a {
    color: #64748b;
    text-decoration: none;
}

.footer-legal-row a:hover {
    color: #0f172a;
}

.footer-legal-row .sep {
    color: #e2e8f0;
}

/* 4. Dark Bottom Strip */
.footer-bottom-strip {
    background: #282828;
    padding: 40px 0;
    color: #94a3b8;
}

.footer-bottom-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom-logo {
    margin-bottom: 20px;
}

.footer-bottom-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.footer-bottom-strip .copyright {
    font-size: 0.82rem;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Footer adjustments */
@media (max-width: 991px) {
    .footer-cta-section {
        padding: 60px 0;
    }

    .footer-main-links {
        padding: 60px 0 40px;
    }

    .footer-title {
        margin-bottom: 16px;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .footer-legal-row {
        gap: 8px;
        flex-direction: column;
    }

    .footer-legal-row .sep {
        display: none;
    }
}