/* ================================================================
   RevoSys Theme — Main Stylesheet
   ================================================================ */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-deeper: #3730a3;
    --primary-light: #eef2ff;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --accent-light: #ecfeff;
    --emerald: #10b981;
    --amber: #f59e0b;
    --rose: #f43f5e;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gradient: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    --gradient-warm: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px -12px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-600);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Navbar ── */
.navbar {
    padding: 1.1rem 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    z-index: 1000;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    padding: 0.65rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--secondary) !important;
    letter-spacing: -0.5px;
    text-decoration: none;
}
.navbar-brand svg { border-radius: 8px; }
.nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--gray-600) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover { color: var(--primary) !important; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.25s;
    transform: translateX(-50%);
    border-radius: 1px;
}
.nav-link:hover::after { width: 24px; }
.btn-nav {
    background: var(--gradient);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 0.55rem 1.4rem !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(99,102,241,0.25);
}
.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99,102,241,0.35);
}

/* ── Buttons ── */
.btn-primary-glow {
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 0.85rem 2.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(99,102,241,0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.4);
    color: #fff;
}
.btn-outline-glow {
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    padding: 0.8rem 2.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-outline-glow:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #faf5ff 0%, #eef2ff 25%, #ecfeff 50%, #f0fdf4 75%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.hero-orb-1 { width: 500px; height: 500px; background: #c7d2fe; top: -10%; right: -5%; }
.hero-orb-2 { width: 400px; height: 400px; background: #a5f3fc; bottom: -15%; left: -5%; }
.hero-orb-3 { width: 250px; height: 250px; background: #fbcfe8; top: 40%; left: 30%; opacity: 0.25; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-badge-dot i { font-size: 0.7rem; color: var(--primary); }
.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}
.hero h1 .gradient-text {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .lead {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 2rem;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    backdrop-filter: blur(10px);
}
.floating-card .fc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.floating-card .fc-text { font-size: 0.82rem; line-height: 1.4; }
.floating-card .fc-text strong { display: block; color: var(--secondary); font-weight: 700; }
.floating-card .fc-text span { color: var(--gray-400); font-size: 0.78rem; }
.fc-1 { top: 8%; right: 5%; animation: floatA 4s ease-in-out infinite; }
.fc-2 { bottom: 20%; left: -5%; animation: floatB 5s ease-in-out infinite; }
.fc-3 { bottom: 5%; right: 10%; animation: floatA 4.5s ease-in-out infinite 1s; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── Trusted Bar ── */
.trusted-bar {
    padding: 3.5rem 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
}
.trusted-bar p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}
.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trusted-logos img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.3s;
}
.trusted-logos img:hover { filter: grayscale(0%) opacity(1); }

/* ── Section System ── */
section { padding: 6rem 0; }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gradient);
    border-radius: 1px;
}
.section-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    letter-spacing: -1px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.75;
    max-width: 560px;
}
.section-desc.centered { margin: 0.75rem auto 0; }

/* ── Services ── */
.services-section { background: var(--gray-50); }
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem;
    height: 100%;
    border: 1px solid var(--gray-100);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.service-icon.indigo { background: #eef2ff; color: #6366f1; }
.service-icon.cyan { background: #ecfeff; color: #06b6d4; }
.service-icon.emerald { background: #ecfdf5; color: #10b981; }
.service-icon.amber { background: #fffbeb; color: #f59e0b; }
.service-icon.rose { background: #fff1f2; color: #f43f5e; }
.service-icon.violet { background: #f5f3ff; color: #8b5cf6; }
.service-card h4 {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.6rem;
}
.service-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* ── About ── */
.about-section { background: #fff; }
.about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-stat-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}
.about-stat-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.about-stat-card .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.about-stat-card .label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}
.about-pill {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}
.about-pill-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1rem;
}
.about-pill-text h6 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}
.about-pill-text p {
    font-size: 0.87rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.55;
}

/* ── Products ── */
.products-section {
    background: var(--gradient-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.products-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.products-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.products-section .section-eyebrow { color: var(--accent); }
.products-section .section-eyebrow::before { background: var(--accent); }
.products-section .section-heading { color: #fff; }
.products-section .section-desc { color: rgba(255,255,255,0.6); }
.product-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.35s;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}
.product-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-6px);
}
.product-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}
.product-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.product-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}
.product-card .product-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

/* ── Process ── */
.process-section { background: var(--gray-50); }
.process-step {
    position: relative;
    text-align: center;
    padding: 0 1rem;
}
.process-num {
    width: 64px; height: 64px;
    border-radius: 20px;
    background: #fff;
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 auto 1.25rem;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}
.process-step:hover .process-num {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(99,102,241,0.3);
}
.process-step h5 { font-weight: 700; color: var(--secondary); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }
.process-line {
    position: absolute;
    top: 32px; left: 60%;
    width: 80%; height: 2px;
    background: var(--gray-200);
    z-index: 1;
}

/* ── Tech Stack ── */
.tech-section { background: #fff; }
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.tech-chip {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.tech-chip:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.tech-chip i { font-size: 1rem; }

/* ── CTA ── */
.cta-section { background: #fff; padding: 5rem 0; }
.cta-box {
    background: var(--gradient-dark);
    border-radius: 28px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: -20%; left: 5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative; z-index: 2;
}
.cta-box p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative; z-index: 2;
}
.btn-cta-white {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.85rem 2.25rem;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative; z-index: 2;
}
.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: var(--primary-deeper);
}
.btn-cta-ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    padding: 0.85rem 2.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative; z-index: 2;
}
.btn-cta-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-3px);
}

/* ── Contact ── */
.contact-section { background: var(--gray-50); }
.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    height: 100%;
}
.contact-icon-box {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.contact-card h5 { font-weight: 700; color: var(--secondary); margin-bottom: 0.35rem; font-size: 1rem; }
.contact-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; line-height: 1.6; }
.contact-card a { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.contact-card a:hover { text-decoration: underline; }

/* ── Blog / Archive ── */
.blog-section { background: var(--gray-50); min-height: 60vh; padding-top: 8rem; }
.post-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.35s;
    height: 100%;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.post-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}
.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body {
    padding: 1.75rem;
}
.post-card-meta {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.post-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.post-card-body h3 a { color: inherit; text-decoration: none; }
.post-card-body h3 a:hover { color: var(--primary); }
.post-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
}
.post-card-body .read-more {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
}
.post-card-body .read-more:hover { gap: 0.6rem; }

/* ── Single Post / Page ── */
.single-header {
    background: linear-gradient(160deg, #faf5ff 0%, #eef2ff 25%, #ecfeff 50%, #f8fafc 100%);
    padding: 10rem 0 4rem;
    text-align: center;
}
.single-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -1px;
    max-width: 700px;
    margin: 0 auto;
}
.single-header .post-meta {
    color: var(--gray-400);
    font-size: 0.88rem;
    margin-top: 1rem;
}
.single-content {
    background: #fff;
    padding: 4rem 0;
}
.single-content .content-wrap {
    max-width: 740px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-700);
}
.single-content .content-wrap h2,
.single-content .content-wrap h3,
.single-content .content-wrap h4 {
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.single-content .content-wrap img {
    border-radius: 12px;
    margin: 1.5rem 0;
}
.single-content .content-wrap blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--gray-50);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--gray-600);
}

/* ── Footer ── */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 5rem 0 2rem;
}
.footer-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.footer-brand svg { border-radius: 6px; }
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
    color: var(--gray-400);
}
.footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: var(--gray-400);
    transition: all 0.25s;
    font-size: 0.95rem;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    margin-top: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray-500); margin: 0; }

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(99,102,241,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    text-decoration: none;
    z-index: 999;
}
.back-to-top.active { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); color: #fff; }

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero h1 { font-size: 2.75rem; }
    .section-heading { font-size: 2.15rem; }
    .cta-box { padding: 3rem 2rem; }
    .cta-box h2 { font-size: 2rem; }
    .process-line { display: none; }
}
@media (max-width: 767px) {
    .hero { min-height: auto; padding: 7rem 0 4rem; }
    .hero h1 { font-size: 2.25rem; letter-spacing: -1px; }
    .section-heading { font-size: 1.85rem; }
    .floating-card { display: none; }
    .trusted-logos { gap: 1.5rem; }
    .trusted-logos img { height: 32px; }
    .cta-box { padding: 2.5rem 1.5rem; }
    .single-header h1 { font-size: 2rem; }
    .single-header { padding: 8rem 0 3rem; }
}

/* ── WordPress Specific ── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--gray-400); margin-top: 0.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.gallery img { border-radius: 10px; }
.pagination { margin: 2rem 0; }
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-600);
    background: #fff;
    border: 1px solid var(--gray-200);
    margin: 0 0.15rem;
    transition: all 0.2s;
}
.page-numbers.current,
.page-numbers:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}
