@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* ==========================================================================
   1. CORE VARIABLES & BASE
   ========================================================================== */
:root {
    --primary: #0C1E4A;       /* Primary Dark Navy */
    --primary-light: #1457B3; /* Primary Brand Blue */
    --accent: #2196F3;        /* Electric Bright Blue */
    --accent-dark: #1457B3;   /* Mapped to Primary Brand Blue */
    --white: #FFFFFF;
    --light-grey: #F4F7FC;    /* Off-White Background */
    --gold: #2196F3;          /* Gold replaced with Electric Bright Blue */
    --gold-dark: #00B4D8;     /* Gold dark replaced with Cyan Accent */
    --cyan: #00B4D8;          /* Cyan Accent */
    --light-sky: #64B5F6;     /* Light Sky Blue */
    --text-main: #4A5568;     /* Body Text Grey */
    --text-dark: #0C1E4A;     /* Dark Text */
    --text-muted: #4A5568;    /* Body Text Grey */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 10px 30px rgba(12, 30, 74, 0.06);
    --shadow-hover: 0 20px 40px rgba(12, 30, 74, 0.12);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header .tag {
    display: inline-block;
    background: rgba(30, 111, 255, 0.08);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* SVG Icons Styles */
.svg-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-blue {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 111, 255, 0.2);
}

.btn-blue:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 111, 255, 0.4);
}

/* ==========================================================================
   3. STICKY HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 30, 74, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Transparent header — only used on homepage hero */
.site-header--hero {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
    padding: 14px 0;
}

.site-header.scrolled,
.site-header--hero.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 8px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
}

.logo img,
.header-logo-img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
}

.logo-text span {
    color: var(--accent);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--white);
}

.header-cta .btn {
    padding: 10px 22px;
    font-size: 13px;
    background-color: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.header-cta .btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.35);
}

.hamburger-btn {
    display: none;
}

/* Fallback hiding rules for mobile navigation elements on desktop screens */
.mobile-nav-bar,
.mobile-slide-overlay,
.mobile-menu-drawer {
    display: none;
}

/* Responsive Scaling for Laptops & Medium Screens to Prevent Wrapping */
@media (max-width: 1200px) and (min-width: 992px) {
    .desktop-nav {
        gap: 20px;
    }
    .nav-menu {
        gap: 16px;
    }
    .nav-menu a {
        font-size: 13px;
    }
    .header-cta .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    .logo img,
    .header-logo-img {
        max-width: 170px;
        height: 38px;
    }
}

/* ==========================================================================
   4. HOME HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(12, 30, 74, 0.78) 100%), url('../images/hero_office_mockup.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 780px;
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(30, 111, 255, 0.15);
    border: 1px solid rgba(30, 111, 255, 0.25);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 45px;
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
}

.hero-badge-item .svg-icon {
    color: var(--gold);
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   5. MARQUEE TRUST BAR
   ========================================================================== */
.marquee-bar {
    background-color: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-right: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   6. STATS COUNTER
   ========================================================================== */
.stats-section {
    background: linear-gradient(180deg, var(--light-grey) 0%, var(--white) 100%);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
    padding: 35px 24px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 111, 255, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-title {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   7. ABOUT SNAPSHOT
   ========================================================================== */
.about-snapshot-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-snapshot-image img {
    width: 100%;
    object-fit: cover;
    height: 480px;
}

.about-snapshot-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    border-left: 4px solid var(--gold);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-snapshot-badge h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 4px;
}

.about-snapshot-badge p {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 500;
}

.about-snapshot-content .tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-snapshot-content h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-snapshot-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.check-item .svg-icon {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   8. SERVICES GRID
   ========================================================================== */
.services-section {
    background-color: var(--light-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    border-top: 4px solid var(--accent);
    padding: 35px 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon-box {
    width: 54px;
    height: 54px;
    background-color: rgba(30, 111, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-icon-box .svg-icon {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--accent-dark);
}

/* ==========================================================================
   9. WHY CHOOSE US
   ========================================================================== */
.why-section {
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

.why-section .section-header h2 {
    color: var(--primary);
}

.why-section .section-header p {
    color: var(--text-muted);
}

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

.why-card {
    background-color: var(--white);
    border-radius: 14px;
    padding: 30px 24px;
    border: 1px solid rgba(12, 30, 74, 0.07);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent);
}

.why-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(33, 150, 243, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 18px;
    transition: var(--transition);
}

.why-card:hover .why-icon-box {
    background: rgba(33, 150, 243, 0.14);
    color: var(--primary-light);
}

.why-icon-box .svg-icon {
    width: 26px;
    height: 26px;
}

.why-card h3 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    flex-grow: 1;
}

/* ==========================================================================
   10. SOFTWARE & TURNAROUND
   ========================================================================== */
.software-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-grey);
}

.software-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.software-badge {
    background-color: var(--light-grey);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

/* Turnaround Table Styles */
.turnaround-section {
    background-color: var(--light-grey);
}

.table-container {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 0 auto;
}

.turnaround-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.turnaround-table th {
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 18px 24px;
    border: none;
}

.turnaround-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.turnaround-table tr:last-child td {
    border-bottom: none;
}

.turnaround-table tr:nth-child(even) {
    background-color: rgba(30, 111, 255, 0.02);
}

.turnaround-table td.time-cell {
    font-weight: 700;
    color: var(--accent);
}

/* ==========================================================================
   11. FREE TRIAL OFFER
   ========================================================================== */
.trial-strip {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-strip-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.trial-strip-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.trial-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.trial-strip h2 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 16px;
}

.trial-strip p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.trial-strip .btn {
    margin: 0 8px;
}

.trial-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 24px;
    font-weight: 500;
}

/* ==========================================================================
   12. TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
    background-color: var(--white);
}

.slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.testimonial-card {
    background-color: var(--light-grey);
    border-radius: 12px;
    padding: 45px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: rgba(30, 111, 255, 0.1);
    position: absolute;
    top: 15px;
    left: 45px;
    line-height: 1;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
}

.star-rating .svg-icon {
    width: 18px;
    height: 18px;
}

.review-text {
    font-size: 16px;
    font-style: italic;
    color: var(--primary);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.client-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.client-info p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(30, 111, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--accent);
    width: 24px;
    border-radius: 10px;
}

/* ==========================================================================
   13. CONTACT SNAPSHOT & FORMS
   ========================================================================== */
.contact-snapshot-section {
    background-color: var(--light-grey);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: rgba(30, 111, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.info-icon-box.whatsapp-box {
    background-color: rgba(46, 204, 113, 0.08);
    color: #2ecc71;
}

.info-details h4 {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-details p, .info-details a {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
}

/* Forms CSS */
.form-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.form-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.form-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.input-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-field {
    margin-bottom: 20px;
    position: relative;
}

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(10, 22, 40, 0.12);
    border-radius: 6px;
    background-color: #fcfdfe;
    font-family: inherit;
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 8px rgba(30, 111, 255, 0.15);
}

.form-input.valid {
    border-color: #2ecc71;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232ecc71'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-input.invalid {
    border-color: #e74c3c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-error-msg {
    color: #e74c3c;
    font-size: 11px;
    font-weight: 500;
    margin-top: 5px;
    display: none;
}

/* ==========================================================================
   14. SYSTEM-WIDE SCROLL REVEAL
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   15. GLOBAL SYSTEM FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h3, .footer-col h4 {
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0 24px 0;
    max-width: 320px;
}

.footer-logo img,
.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.social-circle:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.social-circle.whatsapp-circle:hover {
    background-color: #2ecc71;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact-list .svg-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   16. WHATSAPP FLOATING BUTTON (Desktop & Mobile)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #2ecc71;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #27ae60;
    transform: scale(1.08);
}

.whatsapp-float .svg-icon {
    width: 30px;
    height: 30px;
}

/* ==========================================================================
   17. SYSTEM ANIMATIONS KEYFRAMES
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* ==========================================================================
   18. PRELOADER & CSS CUBE LOGO ANIMATION
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* 3D Spinning Cube CSS */
.cube-logo {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    animation: spinCube 3s infinite ease-in-out;
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    opacity: 0.95;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Position Cube Faces with Brand Colors */
.cube-face.front  { transform: rotateY(0deg) translateZ(30px); background-color: var(--primary); }
.cube-face.back   { transform: rotateY(180deg) translateZ(30px); background-color: var(--primary-light); }
.cube-face.right  { transform: rotateY(90deg) translateZ(30px); background-color: var(--accent); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(30px); background-color: var(--cyan); }
.cube-face.top    { transform: rotateX(90deg) translateZ(30px); background-color: var(--light-sky); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); background-color: var(--primary); }

/* Preloader Text Style */
.preloader-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.preloader-text span {
    color: var(--accent);
}

/* Single Combined Spin & Pulse Animation */
@keyframes spinCube {
    0% {
        transform: rotateX(45deg) rotateY(45deg) rotateZ(0deg) scale(1);
    }
    50% {
        transform: rotateX(225deg) rotateY(225deg) rotateZ(180deg) scale(1.15);
    }
    100% {
        transform: rotateX(405deg) rotateY(405deg) rotateZ(360deg) scale(1);
    }
}

/* ==========================================================================
   18.5 SLIM TOP PROGRESS BAR LOADER
   ========================================================================== */
.top-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, #00f2fe, #4facfe, #00c6ff, #00f2fe);
    background-size: 300% 100%;
    z-index: 99998; /* just below full-screen preloader (99999) but above everything else */
    box-shadow: 0 0 10px rgba(79, 172, 254, 0.85), 0 0 5px rgba(0, 242, 254, 0.5);
    transition: width 0.4s cubic-bezier(0.08, 0.82, 0.17, 1), opacity 0.3s ease;
    pointer-events: none;
    animation: topBarGradientShift 2s linear infinite;
}

.top-progress-bar.fade-out {
    opacity: 0;
}

@keyframes topBarGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==========================================================================
   19. BACK TO TOP SMOOTH SCROLL BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 100px; /* Positioned directly above the desktop WhatsApp float */
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.back-to-top .svg-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.35s ease;
}

.back-to-top:hover .svg-icon {
    transform: translateY(-3px);
}

/* ==========================================================================
   20. COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary); /* Dark Navy */
    color: var(--white);
    z-index: 10000;
    padding: 16px 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    border-top: 2px solid var(--accent);
    animation: fadeInUp 0.4s ease forwards;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.cookie-banner p a {
    color: var(--cyan);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner p a:hover {
    color: var(--light-sky);
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-learn-more {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-learn-more:hover {
    color: var(--white);
}

/* ==========================================================================
   21. MOBILE POSITIONING FOR FLOATING WIDGETS
   ========================================================================== */
@media (max-width: 767px) {
    /* Reposition WhatsApp Float on mobile to avoid overlapping the bottom nav bar */
    .whatsapp-float {
        bottom: calc(64px + 16px + env(safe-area-inset-bottom)) !important;
        right: 20px !important;
        width: 48px !important;
        height: 48px !important;
    }
    
    .whatsapp-float .svg-icon {
        width: 26px !important;
        height: 26px !important;
    }
    
    /* Reposition Back to Top Button on mobile to sit above the WhatsApp float */
    .back-to-top {
        bottom: calc(64px + 16px + 48px + 12px + env(safe-area-inset-bottom)) !important;
        right: 20px !important;
        width: 44px !important;
        height: 44px !important;
    }
    
    .back-to-top .svg-icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Cookie container stack layout on small screens */
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-buttons .btn {
        width: auto !important;
        min-height: auto !important;
    }
}

/* ==========================================================================
   22. PREMIUM CONTACT & GET QUOTE REVOLUTION STYLES
   ========================================================================== */
.contact-interactive-panel {
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(12, 30, 74, 0.08);
    border: 1px solid rgba(12, 30, 74, 0.04);
    position: relative;
    overflow: hidden;
}

/* Sliding active tab pill indicator */
.contact-tabs-wrapper {
    max-width: 620px;
    margin: 0 auto 45px auto;
    position: relative;
    background: rgba(12, 30, 74, 0.03);
    padding: 6px;
    border-radius: 50px;
    display: flex;
    border: 1px solid rgba(12, 30, 74, 0.05);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
}

.contact-tab-trigger {
    flex: 1;
    padding: 15px 24px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    border-radius: 50px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.contact-tab-trigger svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-tab-trigger:hover svg {
    transform: scale(1.1);
}

.contact-tab-trigger.active {
    color: var(--white) !important;
}

.contact-tabs-wrapper .tab-slider-pill {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--cyan) 100%);
    border-radius: 50px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    box-shadow: 0 6px 18px rgba(12, 30, 74, 0.2);
}

/* Tab panes switching logic */
.contact-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Floating Interactive labels */
.interactive-field-group {
    position: relative;
    margin-bottom: 24px;
}

.interactive-field-group .interactive-label {
    position: absolute;
    left: 16px;
    top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(12, 30, 74, 0.55);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 3;
    background: transparent;
    padding: 0 4px;
    line-height: 1;
}

.interactive-field-group .interactive-input {
    width: 100%;
    padding: 16px 16px 12px 16px;
    border: 1.5px solid rgba(12, 30, 74, 0.12);
    border-radius: 8px;
    background-color: #fbfcfe;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--primary);
    transition: var(--transition);
    outline: none;
    box-shadow: none;
}

.interactive-field-group .interactive-input:hover {
    border-color: rgba(0, 180, 216, 0.4);
}

/* Lift & Float state */
.interactive-field-group.focused .interactive-label,
.interactive-field-group.has-value .interactive-label {
    top: -8px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    background: var(--white);
    padding: 0 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.interactive-field-group.focused .interactive-input {
    border-color: var(--cyan);
    background-color: var(--white);
    box-shadow: 0 0 14px rgba(0, 180, 216, 0.25);
}

/* Valid/Invalid states integration */
.interactive-field-group.valid-state .interactive-input {
    border-color: #2ecc71;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232ecc71'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}
.interactive-field-group.valid-state .interactive-label {
    color: #2ecc71;
}

.interactive-field-group.invalid-state .interactive-input {
    border-color: #e74c3c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}
.interactive-field-group.invalid-state .interactive-label {
    color: #e74c3c;
}

.interactive-field-group select.interactive-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230C1E4A'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

/* Custom Cyber Uploader Dropzone */
.drag-drop-zone {
    border: 2px dashed rgba(0, 180, 216, 0.35);
    background: rgba(0, 180, 216, 0.01);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.drag-drop-zone::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0, 180, 216, 0.04) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drag-drop-zone:hover, .drag-drop-zone.drag-active {
    border-color: var(--cyan);
    background: rgba(0, 180, 216, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.1);
}

.drag-drop-zone:hover::before, .drag-drop-zone.drag-active::before {
    opacity: 1;
}

.drag-drop-zone .upload-icon-box {
    margin-bottom: 12px;
    color: var(--cyan);
}

.drag-drop-zone .upload-icon-box svg {
    width: 44px;
    height: 44px;
    animation: floatCloud 2.8s ease-in-out infinite;
}

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

.drag-drop-zone h5 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.drag-drop-zone p {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.drag-drop-zone .btn-select-file {
    display: inline-flex;
    padding: 8px 18px;
    background: var(--light-grey);
    border: 1px solid rgba(12, 30, 74, 0.1);
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

.drag-drop-zone:hover .btn-select-file {
    background: var(--cyan);
    color: var(--white);
    border-color: var(--cyan);
}

.drag-drop-file-info {
    display: none;
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 6px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeInUp 0.3s ease;
}

.drag-drop-file-info svg {
    width: 16px;
    height: 16px;
    color: var(--cyan);
}

/* Premium Corporate Channels Glow */
.contact-corporate-desk {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.corporate-info-glass {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(12, 30, 74, 0.05);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(12, 30, 74, 0.03);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: center;
}

.corporate-info-glass:hover {
    background: var(--white);
    border-color: rgba(0, 180, 216, 0.15);
    box-shadow: 0 15px 35px rgba(12, 30, 74, 0.07);
    transform: translateY(-2px);
}

.corporate-icon-wrapper {
    background: linear-gradient(135deg, rgba(12, 30, 74, 0.04) 0%, rgba(33, 150, 243, 0.08) 100%);
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: var(--transition);
    flex-shrink: 0;
}

.corporate-icon-wrapper.whatsapp-green {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.08);
}

.corporate-info-glass:hover .corporate-icon-wrapper {
    transform: scale(1.08) rotate(3deg);
}

.corporate-details-box h4 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(12, 30, 74, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.corporate-details-box .corporate-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s ease;
}

.corporate-info-glass:hover .corporate-link {
    color: var(--cyan);
}

.corporate-hours-overlay {
    border-left: 4px solid var(--cyan);
    background: rgba(0, 180, 216, 0.03);
    border-radius: 4px 12px 12px 4px;
    padding: 16px 20px;
    margin-top: 10px;
}

.corporate-hours-overlay h5 {
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.corporate-hours-overlay p {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 500;
}

/* Security Trust NDA Grid Widget */
.contact-security-card {
    background: linear-gradient(135deg, #09122c 0%, var(--primary) 100%);
    color: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(12, 30, 74, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    margin-top: 35px;
}

.contact-security-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-security-card h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-security-card h3 svg {
    color: var(--cyan);
    width: 20px;
    height: 20px;
}

.security-trust-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.security-trust-item {
    display: flex;
    gap: 15px;
}

.security-trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
    transition: var(--transition);
}

.security-trust-item:hover .security-trust-icon {
    background: var(--cyan);
    color: var(--white);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.security-trust-details h5 {
    color: var(--white);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 3px;
}

.security-trust-details p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   23. WORLD-CLASS SIMPLIFIED & PROFESSIONAL MICRO-INTERACTIONS
   ========================================================================== */

/* Premium Glassmorphic Alert Notification Elements */
.contact-alert-premium {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-alert-danger {
    background: rgba(231, 76, 60, 0.06);
    border: 1.5px solid rgba(231, 76, 60, 0.22);
    color: #c0392b;
}

.contact-alert-danger svg {
    color: #e74c3c;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-alert-success {
    background: rgba(46, 204, 113, 0.06);
    border: 1.5px solid rgba(46, 204, 113, 0.22);
    color: #27ae60;
}

.contact-alert-success svg {
    color: #2ecc71;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Auto-Growing Premium Textarea Interface */
.interactive-field-group textarea.interactive-input {
    resize: none;
    overflow-y: hidden;
    min-height: 100px;
    max-height: 400px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Clear File Button styling */
#btnClearFile:hover {
    background: rgba(231, 76, 60, 0.1);
    transform: scale(1.1);
}

#btnClearFile svg {
    transition: transform 0.2s ease;
}

#btnClearFile:hover svg {
    transform: rotate(90deg);
}

/* Premium Submit Loader Spinner */
.btn-loader-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: btnSpin 0.75s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   24. WORLD-CLASS PREMIUM HOMEPAGE ELEVATIONS
   ========================================================================== */

/* Infinite Hardware-Accelerated Seamless Marquees */
@keyframes scrollLeft {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes scrollRight {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* Premium Card Elevating Glow & Transitions */
.service-card, .why-card, .industry-card, .testimonial-card {
    position: relative;
    border: 1px solid rgba(12, 30, 74, 0.05);
    background-color: var(--white);
    will-change: transform, box-shadow, border-color;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                background-color 0.4s ease;
}

.service-card:hover, .why-card:hover, .industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 180, 216, 0.35) !important;
    background-color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.12), 
                0 0 0 1px rgba(0, 180, 216, 0.15) !important;
}

/* Neon Cyber Gradient Accents */
.service-card::before, .why-card::before, .industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before, .why-card:hover::before, .industry-card:hover::before {
    opacity: 1;
}

.service-card *, .why-card *, .industry-card * {
    position: relative;
    z-index: 1;
}

/* Process Horizontal Timeline Improvements */
.process-step {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-step:hover {
    transform: translateY(-6px);
}

.process-step:hover div {
    border-color: var(--cyan) !important;
    background: rgba(0, 180, 216, 0.06) !important;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.35) !important;
}

/* Timeline Arrow Flow Indicator (Pulsing arrow) */
.timeline-pulse-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 180, 216, 0.25);
    animation: flowPulse 2s infinite ease-in-out;
}

@keyframes flowPulse {
    0%, 100% {
        transform: scale(0.95);
        color: rgba(0, 180, 216, 0.25);
    }
    50% {
        transform: scale(1.1);
        color: rgba(0, 180, 216, 0.85);
    }
}

/* Premium "Compliance & Tech Sandbox Terminal" simulator stylesheet */
.sandbox-terminal-window {
    background: rgba(10, 20, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45), 
                0 0 30px rgba(0, 180, 216, 0.1);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-top: 40px;
}

.terminal-header {
    background: rgba(18, 30, 58, 0.98);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.terminal-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12.5px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.terminal-badge-status {
    background: rgba(0, 180, 216, 0.15);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.terminal-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    flex-grow: 1;
    min-height: 400px;
}

.terminal-sidebar {
    background: rgba(14, 25, 48, 0.98);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terminal-sidebar h4 {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 700;
}

.terminal-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.terminal-tab-btn:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
}

.terminal-tab-btn.active {
    background: rgba(0, 180, 216, 0.12);
    border-color: rgba(0, 180, 216, 0.35);
    color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.15);
}

.terminal-console-pane {
    background: #060d1f;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-y: auto;
    color: #e2e8f0;
}

.console-stream {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.console-line {
    opacity: 0;
    transform: translateY(4px);
    animation: printLine 0.25s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes printLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.console-line .c-tag {
    font-weight: 700;
    margin-right: 8px;
}

.c-info { color: #38bdf8; }
.c-success { color: #4ade80; }
.c-warn { color: #fbbf24; }
.c-error { color: #f87171; }

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background-color: var(--cyan);
    animation: cursorBlink 1s infinite step-end;
    vertical-align: middle;
    margin-left: 4px;
}

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

/* ==========================================================================
   Interactive Suite (ROI Savings Calculator & Live SLA Dashboard)
   ========================================================================== */
.roi-calc-card, .sla-pulse-card {
    will-change: transform, box-shadow;
    transition: var(--transition);
}

.roi-calc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.sla-pulse-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 216, 0.3) !important;
    box-shadow: 0 20px 50px rgba(0, 180, 216, 0.15) !important;
}

/* Futuristic Slider Styling */
.slider-group input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    transition: background 0.3s;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cyan);
    border: 2px solid var(--white);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.6);
    transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.15s ease;
}

.slider-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    background: var(--accent);
}

.slider-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cyan);
    border: 2px solid var(--white);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.6);
    transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.15s ease;
}

.slider-group input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.25);
    background: var(--accent);
}

/* Simulated System Pulse Elements */
.pulse-node {
    will-change: transform, border-color;
    transition: var(--transition);
}

.pulse-node:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(0, 180, 216, 0.25) !important;
    transform: scale(1.02);
}

@keyframes pulse-cyan {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 180, 216, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
    }
}

/* ==========================================================================
   Mortgage-Tech Stack Grid & Tooltips
   ========================================================================== */
.tech-stack-grid {
    perspective: 1000px;
}

.tech-node {
    transition: var(--transition);
}

.tech-node:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(0, 180, 216, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.15);
}

.tech-node:hover .tech-overlay {
    opacity: 0.96 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.tech-overlay {
    will-change: transform, opacity;
}

/* ==========================================================================
   HOMEPAGE UPGRADE — Hero Two-Column Split Layout
   ========================================================================== */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-content {
    max-width: 100%;
    animation: fadeInUp 0.9s ease-out;
}

.hero-tag-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-cyan 1.5s infinite;
}

/* Floating Trust Widget Card (right column) */
.hero-trust-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.1s ease-out 0.3s both;
    flex-shrink: 0;
}

.hero-trust-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-card-header h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.hero-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.hero-mini-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: var(--transition);
}

.hero-mini-stat:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.2);
}

.hero-mini-stat .mini-val {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--cyan);
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-mini-stat .mini-label {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-trust-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-trust-check {
    width: 20px;
    height: 20px;
    background: rgba(46, 204, 113, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ecc71;
    flex-shrink: 0;
}

.hero-trust-check svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.hero-trust-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ==========================================================================
   HOMEPAGE UPGRADE — Stats Section Dark Strip
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2260 100%) !important;
    border-top: none;
    padding: 70px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-left: 4px solid var(--cyan) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border-radius: 14px;
    text-align: left;
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(0, 180, 216, 0.3) !important;
    border-left-color: var(--cyan) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.stat-icon-box {
    width: 46px;
    height: 46px;
    background: rgba(0, 180, 216, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}

.stat-icon-box svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.stat-text-col {
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading) !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    color: var(--white) !important;
    margin-bottom: 4px !important;
    line-height: 1 !important;
}

.stat-title {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 3px !important;
}

.stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

/* ==========================================================================
   HOMEPAGE UPGRADE — Why Cards Numbered Badges
   ========================================================================== */
.why-card-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: block;
    opacity: 0.6;
}

.why-card h3 {
    position: relative;
    padding-bottom: 10px;
}

.why-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover h3::after {
    width: 60px;
}

/* ==========================================================================
   HOMEPAGE UPGRADE — Compliance Badges Section
   ========================================================================== */
.compliance-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2260 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.compliance-badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 16px 22px;
    transition: var(--transition);
    cursor: default;
}

.compliance-badge:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.compliance-badge-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 180, 216, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}

.compliance-badge-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.compliance-badge-text strong {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.compliance-badge-text small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

/* ==========================================================================
   HOMEPAGE UPGRADE — Trial Strip Enhanced
   ========================================================================== */
.trial-benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 18px;
    margin-bottom: 28px;
    justify-content: center;
}

.trial-benefit-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.trial-benefit-item svg {
    width: 16px;
    height: 16px;
    fill: #2ecc71;
    flex-shrink: 0;
}

.trial-urgency-note {
    margin-top: 20px !important;
    font-size: 12.5px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   HOMEPAGE UPGRADE — Testimonial Cards Enhanced
   ========================================================================== */
.testimonial-card {
    border-left: 4px solid var(--accent) !important;
    position: relative;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.25);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    margin-top: 3px;
}

.verified-badge svg {
    width: 9px;
    height: 9px;
    fill: currentColor;
}

/* ==========================================================================
   HOMEPAGE UPGRADE — Process Steps Gradient BG
   ========================================================================== */
.process-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-grey) 100%) !important;
}

.process-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(20, 87, 179, 0.35);
    transition: var(--transition);
}

.process-step:hover .process-step-num {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 14px 35px rgba(20, 87, 179, 0.45);
}
