/* ============================================
   GP TRIAGE - RADICAL V4 REDESIGN
   $50,000+ Award-Winning Design
   
   Inspired by:
   - Igloo Inc (Awwwards SOTY 2024)
   - Stripe, Linear, Apple
   ============================================ */

/* ============================================
   BASE & VARIABLES
   ============================================ */
:root {
    /* Brand Colors */
    --gp-blue: #0e72b7;
    --gp-blue-light: #3d9be0;
    --gp-blue-dark: #0a5a91;
    --gp-oxford: #0b132b;
    --gp-cyan: #9bd4e3;
    --gp-coral: #fc8d71;
    --gp-white: #ffffff;
    --gp-off-white: #f8fafc;
    --gp-gray-50: #f9fafb;
    --gp-gray-100: #f3f4f6;
    --gp-gray-200: #e5e7eb;
    --gp-gray-500: #6b7280;
    --gp-gray-700: #374151;
    --gp-gray-900: #111827;

    /* Animation Curves */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow-blue: 0 0 60px rgba(14, 114, 183, 0.25);
    --shadow-glow-cyan: 0 0 80px rgba(155, 212, 227, 0.3);
}

/* Global Reset Enhancements */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    /* Removed scroll-behavior: smooth - causes slow navigation */
    scroll-behavior: auto;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

::selection {
    background: rgba(14, 114, 183, 0.15);
    color: inherit;
}

/* ============================================
   HERO SECTION - DRAMATIC WOW FACTOR
   ============================================ */
.section_hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gp-white) 0%, var(--gp-off-white) 100%);
}

/* Animated Gradient Mesh Background */
.section_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 100% at 70% 20%, rgba(155, 212, 227, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 10% 60%, rgba(14, 114, 183, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 90% 80%, rgba(252, 141, 113, 0.15) 0%, transparent 50%);
    animation: meshPulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes meshPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Morphing Blob 1 - Large Cyan */
.hero-blob-1 {
    position: absolute;
    width: 800px;
    height: 800px;
    top: -300px;
    right: -200px;
    background: linear-gradient(135deg, rgba(155, 212, 227, 0.6) 0%, rgba(14, 114, 183, 0.3) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(80px);
    animation: morphBlob1 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes morphBlob1 {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(50px, 30px) rotate(90deg);
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
        transform: translate(-30px, 50px) rotate(180deg);
    }

    75% {
        border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
        transform: translate(20px, -20px) rotate(270deg);
    }
}

/* Morphing Blob 2 - Medium Blue */
.hero-blob-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: linear-gradient(135deg, rgba(14, 114, 183, 0.4) 0%, rgba(155, 212, 227, 0.2) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    animation: morphBlob2 25s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes morphBlob2 {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) scale(1);
    }

    33% {
        border-radius: 70% 30% 50% 50% / 30% 70% 40% 60%;
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        border-radius: 50% 50% 30% 70% / 60% 40% 70% 30%;
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Morphing Blob 3 - Small Coral Accent */
.hero-blob-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 60%;
    background: radial-gradient(circle, rgba(252, 141, 113, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: floatBlob 18s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(-40px, 30px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(30px, -20px) scale(0.9);
        opacity: 0.7;
    }

    75% {
        transform: translate(-20px, -30px) scale(1.05);
        opacity: 0.9;
    }
}

/* Hero Content Styling */
.hero_grid {
    position: relative;
    z-index: 10;
}

/* MASSIVE Headline */
.heading-style-h1 {
    font-size: clamp(4rem, 10vw, 8rem) !important;
    font-weight: 800 !important;
    line-height: 0.95 !important;
    letter-spacing: -0.05em !important;
    color: var(--gp-oxford);
    text-shadow: 0 4px 30px rgba(11, 19, 43, 0.1);
    overflow: visible !important;
}

/* Animated gradient for hero text words */
.hero-text1,
.hero-text2,
.hero-text3,
.hero-text4 {
    display: inline-block;
    background: linear-gradient(135deg, var(--gp-oxford) 0%, #1a3050 50%, var(--gp-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 8s ease-in-out infinite;
    background-size: 200% 200%;
    padding-right: 0.05em;
    /* Smooth transition for Webflow's loading animation */
    transition: transform 1s var(--ease-out-expo), opacity 0.8s var(--ease-out-expo) !important;
    will-change: transform, opacity;
}

/* Typed words (Forever) - smooth transition */
.typed-words {
    transition: transform 1s var(--ease-out-expo), opacity 0.8s var(--ease-out-expo) !important;
    will-change: transform, opacity;
}

@keyframes textShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* "Forever" with dramatic styling */
.typed-words {
    display: inline-block;
    background: linear-gradient(135deg, var(--gp-blue) 0%, var(--gp-cyan) 50%, var(--gp-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    position: relative;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.typed-words::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--gp-blue), var(--gp-cyan), var(--gp-coral));
    border-radius: 4px;
    opacity: 0.8;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleX(0.9);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Hero Subtitle */
.section_hero .text-size-medium {
    font-size: 1.35rem !important;
    color: var(--gp-gray-500) !important;
    max-width: 500px;
    line-height: 1.7;
}

/* Hero Video Card - Elevated 3D Effect */
.hero_video {
    position: relative;
    z-index: 20;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s var(--ease-out-expo);
    margin-top: -100px;
    /* Shift video upward to align with hero text center */
}

.hero_video:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.custom-video-wrapper {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 24px !important;
    padding: 12px !important;
    box-shadow:
        var(--shadow-2xl),
        var(--shadow-glow-cyan),
        0 0 0 1px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    transition: all 0.5s var(--ease-out-expo) !important;
}

.custom-video-wrapper:hover {
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.2),
        var(--shadow-glow-blue),
        0 0 0 1px rgba(14, 114, 183, 0.1) !important;
}

.custom-video,
.custom-video-thumb {
    border-radius: 16px !important;
}

/* Play Button with Pulse */
.custom-video-play-button {
    transition: transform 0.4s var(--ease-spring) !important;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.custom-video-wrapper:hover .custom-video-play-button {
    transform: translate(-50%, -50%) scale(1.15) !important;
    animation: none;
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */
.btn {
    position: relative !important;
    border-radius: 100px !important;
    overflow: hidden !important;
    transition: all 0.4s var(--ease-out-expo) !important;
    box-shadow:
        0 4px 20px rgba(14, 114, 183, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gp-blue), var(--gp-cyan));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow:
        0 20px 40px rgba(14, 114, 183, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover::after {
    opacity: 0.5;
}

.btn:active {
    transform: translateY(-2px) scale(1) !important;
}

/* ============================================
   STEPS SECTION - "TRUSTED BY" WITH GLASSMORPHISM
   ============================================ */
.section_steps {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gp-off-white) 0%, #f0f9ff 50%, var(--gp-white) 100%) !important;
}

.section_steps::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(155, 212, 227, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.section_steps::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(14, 114, 183, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Glass Tabs */
.tab-menu {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 100px !important;
    padding: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Glass Tab Menu Container */
.tab-menu,
.w-tab-menu {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.8) 0%, rgba(230, 244, 249, 0.7) 50%, rgba(254, 244, 242, 0.6) 100%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-radius: 100px !important;
    padding: 8px !important;
    border: 1px solid rgba(155, 212, 227, 0.3) !important;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.tab-link {
    border-radius: 100px !important;
    padding: 16px 32px !important;
    transition: all 0.4s var(--ease-out-expo) !important;
    font-weight: 500 !important;
    color: var(--gp-gray-500) !important;
    background: transparent !important;
    border: 1px solid transparent !important;
}

.tab-link:hover {
    color: var(--gp-blue) !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(155, 212, 227, 0.4) !important;
    box-shadow: 0 2px 12px rgba(14, 114, 183, 0.1) !important;
}

.tab-link.w--current {
    background: linear-gradient(135deg, var(--gp-blue) 0%, var(--gp-blue-light) 100%) !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(14, 114, 183, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.tab-link.w--current div {
    color: white !important;
}

/* Glass Tab Panel */
/* Fix for Tab Corners */
.section_tabs,
.tabs,
.w-tabs,
.w-tab-content,
.w-tab-pane {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 32px !important;
    /* Force rounding on parents */
}

/* Glass Tab Panel */
.tabs-panel {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px !important;
    padding: 48px !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    margin-top: 24px;
    overflow: hidden !important;
    transform: translateZ(0);
}

/* Fix image inside */
.tabs-panel_wrapper img,
.tabs-panel_image {
    border-radius: 20px !important;
    box-shadow: var(--shadow-xl) !important;
    border: none !important;
    background: transparent !important;
}

/* ============================================
   SERVICES SECTION - "COMPREHENSIVE FEATURES"
   WITH GLASSMORPHISM
   ============================================ */
.section_services {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gp-white) 0%, var(--gp-off-white) 50%, #f0f9ff 100%) !important;
}

.section_services::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: 20%;
    left: -150px;
    background: radial-gradient(circle, rgba(155, 212, 227, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.section_services::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -100px;
    background: radial-gradient(circle, rgba(252, 141, 113, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Services grid items - GLASS CARDS */
._2grid-col {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    padding: 40px !important;
    margin-bottom: 24px !important;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

._2grid-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155, 212, 227, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
}

._2grid-col:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(14, 114, 183, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

._2grid-col:hover::before {
    opacity: 1;
}

/* Product Screenshot Images - FULLY TRANSPARENT, NO CARD EFFECT */
/* NO shadows, NO borders, NO backgrounds - just the raw transparent image */
.services_image {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    /* NO shadow, NO border-radius, NO background - keep image transparency */
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

.services_image:hover {
    /* Subtle scale only, no shadow */
    transform: scale(1.02) !important;
}

/* Fix text positioning in services cards */
._2grid-col .heading-style-h3,
._2grid-col h3,
._2grid-col .text-size-regular,
._2grid-col p {
    position: relative;
    z-index: 5;
}

/* Section Titles */
.heading-style-h2 {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.1 !important;
}

.heading-style-h3 {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.section_partners {
    background: var(--gp-gray-50) !important;
    border-top: 1px solid var(--gp-gray-100);
    border-bottom: 1px solid var(--gp-gray-100);
    position: relative;
    overflow: hidden;
}

.section_partners::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(155, 212, 227, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.partners-title .heading-style-h4 {
    color: var(--gp-gray-500) !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem !important;
}

.trusted-swiper-img {
    filter: none !important;
    /* Restore colors */
    opacity: 1 !important;
    transition: all 0.4s var(--ease-out-expo) !important;
}

.trusted-swiper-img:hover {
    filter: grayscale(0%) brightness(1) !important;
    opacity: 1 !important;
    transform: scale(1.1);
}

/* ============================================
   STATS SECTION - DRAMATIC DARK
   ============================================ */
.section_stats {
    position: relative;
    background: linear-gradient(135deg, var(--gp-oxford) 0%, #0f1a35 50%, #081020 100%) !important;
    overflow: hidden;
}

.section_stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(14, 114, 183, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 60%, rgba(155, 212, 227, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(252, 141, 113, 0.15) 0%, transparent 50%);
    animation: statsGlow 10s ease-in-out infinite;
}

@keyframes statsGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.stats_grid {
    position: relative;
    z-index: 10;
}

.numbers_item {
    text-align: center;
    padding: 40px;
}

.numbers_number {
    font-size: clamp(4rem, 10vw, 6rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    background: linear-gradient(135deg, #fff 0%, var(--gp-cyan) 50%, var(--gp-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(155, 212, 227, 0.5);
}

.numbers_wrap .heading-style-h4 {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 400 !important;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.section_testimonials {
    position: relative;
    overflow: hidden;
}

.section_testimonials::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(155, 212, 227, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials_card {
    background: var(--gp-white) !important;
    border: 1px solid var(--gp-gray-100) !important;
    border-radius: 28px !important;
    padding: 40px !important;
    transition: all 0.5s var(--ease-out-expo) !important;
    box-shadow: var(--shadow-sm);
    overflow: hidden !important;
}

.testimonials_card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: transparent !important;
    box-shadow: var(--shadow-2xl) !important;
}

.testimonials_card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: var(--gp-cyan);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section_cta {
    position: relative;
    padding: 120px 0 !important;
}

.cta_wrapper {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f4f9 50%, #fef4f2 100%) !important;
    border-radius: 40px !important;
    padding: 80px !important;
    border: 1px solid rgba(155, 212, 227, 0.3) !important;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta_wrapper::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(14, 114, 183, 0.15) 0%, transparent 60%);
    animation: ctaFloat 15s ease-in-out infinite;
}

.cta_wrapper::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(252, 141, 113, 0.1) 0%, transparent 60%);
    animation: ctaFloat 18s ease-in-out infinite reverse;
}

@keyframes ctaFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.cta_content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta_content .heading-style-h2 {
    background: linear-gradient(135deg, var(--gp-oxford) 0%, var(--gp-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA paragraph text - DARK for readability */
.cta_content p,
.cta_wrapper p {
    color: var(--gp-gray-700) !important;
    font-size: 1.1rem;
}

/* Larger CTA Button for proportional sizing */
.cta_wrapper .btn.link-block._w-inline-block.big,
.cta-button_wrapper .btn.link-block._w-inline-block.big {
    padding: 1.5rem 4rem !important;
    font-size: 1.25rem !important;
    overflow: hidden !important;
}

/* Fix text scroll animation overflow for larger CTA button */
.cta_wrapper .btn-text-content,
.cta-button_wrapper .btn-text-content {
    height: 1.25em !important;
    line-height: 1.25 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
}

.cta_wrapper .button-text,
.cta-button_wrapper .button-text {
    line-height: 1.25 !important;
}

/* ============================================
   STATS SECTION
   ============================================ */
.numbers_number {
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
    display: block;
    background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.numbers_wrap {
    margin-top: 10px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section_faq {
    background: var(--gp-gray-50) !important;
}

.faq {
    background: var(--gp-white) !important;
    border: 1px solid var(--gp-gray-100) !important;
    border-radius: 20px !important;
    margin-bottom: 16px !important;
    transition: all 0.4s var(--ease-out-expo) !important;
    overflow: hidden;
}

.faq:hover {
    border-color: rgba(14, 114, 183, 0.2) !important;
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(-4px);
}

.faq_top {
    padding: 28px 32px !important;
    cursor: pointer;
}

.faq_top .heading-style-h4 {
    font-weight: 600 !important;
    color: var(--gp-oxford) !important;
    transition: color 0.3s ease;
}

.faq:hover .faq_top .heading-style-h4 {
    color: var(--gp-blue) !important;
}

/* FAQ expanded content - Controlled by JS .faq-open class */
.faq_bottom {
    overflow: hidden;
    /* Use standard easing to avoid "stuck" feeling */
    transition: all 0.4s ease-in-out;

    /* Default OPEN state styling (when class is added) */
    max-height: 1000px;
    /* Increased to be safe */
    height: auto !important;
    /* CRITICAL: Override Webflow's inline JS height animation */
    padding: 0 32px 28px 32px !important;
    opacity: 1;
    visibility: visible;
}

/* Hide FAQ answer text when closed (Default state if JS hasn't run, or class removed) */
.faq:not(.faq-open) .faq_bottom {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    visibility: hidden;
}

.faq_bottom p,
.faq_bottom .text-size-regular {
    color: var(--gp-gray-700) !important;
    line-height: 1.7 !important;
}

/* ============================================
   NAVIGATION - HIGH Z-INDEX TO STAY ON TOP
   ============================================ */
.nav_component,
.nav_fixed,
.navbar {
    position: fixed !important;
    top: 8px;
    left: 0;
    right: 0;
    z-index: 9999 !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.95) !important;
    border: none;
    transition: all 0.4s var(--ease-out-expo);
}

.nav_menu_link {
    font-weight: 500 !important;
    color: var(--gp-gray-700) !important;
    transition: color 0.3s ease !important;
    position: relative;
}

.nav_menu_link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gp-blue), var(--gp-cyan));
    border-radius: 1px;
    transition: width 0.4s var(--ease-out-expo);
}

.nav_menu_link:hover {
    color: var(--gp-blue) !important;
}

.nav_menu_link:hover::after {
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--gp-oxford) 0%, #050810 100%) !important;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(155, 212, 227, 0.3), transparent);
}

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer_link {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.3s ease !important;
}

.footer_link:hover {
    color: var(--gp-cyan) !important;
}

.link-social {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 50% !important;
    padding: 12px !important;
    transition: all 0.4s var(--ease-spring) !important;
}

.link-social:hover {
    background: rgba(14, 114, 183, 0.2) !important;
    transform: translateY(-4px) scale(1.1) !important;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 1s var(--ease-out-expo),
        transform 1s var(--ease-out-expo);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-stagger.is-visible>*:nth-child(1) {
    animation: revealUp 0.8s var(--ease-out-expo) 0ms forwards;
}

.reveal-stagger.is-visible>*:nth-child(2) {
    animation: revealUp 0.8s var(--ease-out-expo) 100ms forwards;
}

.reveal-stagger.is-visible>*:nth-child(3) {
    animation: revealUp 0.8s var(--ease-out-expo) 200ms forwards;
}

.reveal-stagger.is-visible>*:nth-child(4) {
    animation: revealUp 0.8s var(--ease-out-expo) 300ms forwards;
}

.reveal-stagger.is-visible>*:nth-child(5) {
    animation: revealUp 0.8s var(--ease-out-expo) 400ms forwards;
}

.reveal-stagger.is-visible>*:nth-child(6) {
    animation: revealUp 0.8s var(--ease-out-expo) 500ms forwards;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .heading-style-h1 {
        font-size: clamp(3rem, 10vw, 5rem) !important;
    }

    .hero_video {
        transform: none;
    }

    .hero-blob-1,
    .hero-blob-2 {
        width: 400px;
        height: 400px;
    }

    ._2grid-col {
        padding: 32px !important;
        border-radius: 24px !important;
    }
}

@media (max-width: 767px) {
    .heading-style-h1 {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
    }

    .hero-blob-1,
    .hero-blob-2,
    .hero-blob-3 {
        display: none;
    }

    .section_hero::before {
        opacity: 0.5;
    }

    .cta_wrapper {
        padding: 48px 24px !important;
        border-radius: 24px !important;
    }

    .testimonials_card {
        padding: 24px !important;
        border-radius: 20px !important;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-blob-1,
    .hero-blob-2,
    .hero-blob-3,
    .hero-shape {
        animation: none !important;
    }
}

/* ============================================
   VISIBLE FLOATING SHAPES - WOW FACTOR HERO
   ============================================ */
.hero-shape {
    position: absolute;
    pointer-events: none;
    z-index: 5;
}

/* Floating Circle - Cyan */
.hero-shape-circle {
    width: 80px;
    height: 80px;
    border: 3px solid var(--gp-cyan);
    border-radius: 50%;
    top: 20%;
    right: 15%;
    animation: floatShape1 8s ease-in-out infinite;
    opacity: 0.6;
}

/* Floating Square - Blue */
.hero-shape-square {
    width: 60px;
    height: 60px;
    border: 3px solid var(--gp-blue);
    border-radius: 8px;
    top: 60%;
    right: 25%;
    animation: floatShape2 10s ease-in-out infinite;
    opacity: 0.5;
    transform-origin: center;
}

/* Floating Triangle - Coral */
.hero-shape-triangle {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid var(--gp-coral);
    top: 35%;
    left: 8%;
    animation: floatShape3 12s ease-in-out infinite;
    opacity: 0.4;
}

/* Floating Ring - Light Blue */
.hero-shape-ring {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(155, 212, 227, 0.5);
    border-radius: 50%;
    bottom: 25%;
    left: 12%;
    animation: floatShape4 15s ease-in-out infinite;
    opacity: 0.4;
}

/* Floating Dot Cluster */
.hero-shape-dots {
    width: 8px;
    height: 8px;
    background: var(--gp-blue);
    border-radius: 50%;
    top: 45%;
    right: 8%;
    animation: floatShape5 6s ease-in-out infinite;
    opacity: 0.7;
    box-shadow:
        20px 15px 0 var(--gp-cyan),
        40px 5px 0 var(--gp-coral),
        15px 35px 0 var(--gp-blue);
}

/* Small floating cross */
.hero-shape-cross {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 75%;
    right: 35%;
    animation: floatShape6 9s ease-in-out infinite;
    opacity: 0.5;
}

.hero-shape-cross::before,
.hero-shape-cross::after {
    content: '';
    position: absolute;
    background: var(--gp-cyan);
    border-radius: 2px;
}

.hero-shape-cross::before {
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-shape-cross::after {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Shape animations */
@keyframes floatShape1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-20px, 15px) rotate(90deg);
    }

    50% {
        transform: translate(10px, -10px) rotate(180deg);
    }

    75% {
        transform: translate(-10px, -20px) rotate(270deg);
    }
}

@keyframes floatShape2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(25px, -20px) rotate(45deg) scale(1.1);
    }

    66% {
        transform: translate(-15px, 15px) rotate(-45deg) scale(0.9);
    }
}

@keyframes floatShape3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translate(30px, -25px) rotate(30deg);
        opacity: 0.6;
    }
}

@keyframes floatShape4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.1);
    }
}

@keyframes floatShape5 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-10px, 15px);
    }

    50% {
        transform: translate(15px, 5px);
    }

    75% {
        transform: translate(5px, -10px);
    }
}

@keyframes floatShape6 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
}

/* ============================================
   ADDITIONAL FLOATING SHAPES (6 MORE)
   ============================================ */

/* Diamond Shape */
.hero-shape-diamond {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gp-blue);
    top: 15%;
    left: 18%;
    transform: rotate(45deg);
    animation: floatShape7 11s ease-in-out infinite;
    opacity: 0.5;
}

/* Small Circle 2 */
.hero-shape-circle-small {
    width: 40px;
    height: 40px;
    background: rgba(155, 212, 227, 0.4);
    border-radius: 50%;
    top: 55%;
    left: 5%;
    animation: floatShape8 7s ease-in-out infinite;
    opacity: 0.6;
}

/* Hexagon-ish (polygon) */
.hero-shape-hex {
    width: 70px;
    height: 70px;
    border: 2px solid var(--gp-coral);
    border-radius: 20%;
    bottom: 35%;
    right: 10%;
    animation: floatShape9 13s ease-in-out infinite;
    opacity: 0.4;
}

/* Plus sign (thicker) */
.hero-shape-plus {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 80%;
    left: 25%;
    animation: floatShape10 8s ease-in-out infinite;
    opacity: 0.55;
}

.hero-shape-plus::before,
.hero-shape-plus::after {
    content: '';
    position: absolute;
    background: var(--gp-blue);
    border-radius: 3px;
}

.hero-shape-plus::before {
    width: 100%;
    height: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-shape-plus::after {
    width: 6px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Arc/Crescent */
.hero-shape-arc {
    width: 100px;
    height: 100px;
    border: 4px solid transparent;
    border-top-color: var(--gp-cyan);
    border-right-color: var(--gp-cyan);
    border-radius: 50%;
    top: 40%;
    right: 5%;
    animation: floatShape11 14s ease-in-out infinite;
    opacity: 0.35;
}

/* Line/Dash */
.hero-shape-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gp-blue), var(--gp-cyan));
    border-radius: 2px;
    bottom: 20%;
    left: 35%;
    animation: floatShape12 10s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes floatShape7 {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(20px, -15px);
    }
}

@keyframes floatShape8 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15px, -20px) scale(1.2);
    }
}

@keyframes floatShape9 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-25px, 20px) rotate(90deg);
    }
}

@keyframes floatShape10 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(10px, -10px) rotate(45deg);
    }

    66% {
        transform: translate(-10px, 10px) rotate(-45deg);
    }
}

@keyframes floatShape11 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-15px, 25px) rotate(180deg);
    }
}

@keyframes floatShape12 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(20px, -10px) rotate(15deg);
        opacity: 0.7;
    }
}

/* ============================================
   SECURITY PAGE - FIX BROKEN ANIMATIONS
   ============================================ */
/* Disable the 3D tilt that breaks on security page cards */
.section_security ._2grid-col,
.section_security .services-security_item,
.security_sticky,
.security_image {
    transform: none !important;
    perspective: none !important;
}

/* Reset any problematic transforms on security page */
.section_security * {
    transform-style: flat !important;
}

/* Style security cards properly */
.services-security_item {
    background: var(--gp-white) !important;
    border-radius: 16px !important;
    padding: 24px 28px !important;
    margin-bottom: 16px !important;
    border: 1px solid var(--gp-gray-100) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: all 0.3s var(--ease-out-expo) !important;
}

.services-security_item:hover {
    box-shadow: var(--shadow-lg) !important;
    transform: translateX(8px) !important;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%) !important;
}

.services-security_line {
    display: none !important;
}

/* ============================================
   SECURITY PAGE REDESIGN - BENTO / APPLE STYLE
   ============================================ */

/* Main Grid Container override */
.section_security ._2grid-col {
    display: grid !important;
    grid-template-columns: 1fr 1.5fr !important;
    /* Sidebar vs Content ratio */
    gap: 64px !important;
    align-items: start !important;
    position: relative !important;
}

@media (max-width: 991px) {
    .section_security ._2grid-col {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .security_sticky {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 32px !important;
    }
}

/* Sidebar Sticky Image */
.security_sticky {
    position: sticky !important;
    top: 120px !important;
    height: auto !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1) !important;
    transform: none !important;
}

.security_image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Feature Grid (Right Side) */
.security_wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
}

@media (max-width: 479px) {
    .security_wrapper {
        grid-template-columns: 1fr !important;
    }
}

/* Premium Card Design (Apple/Vercel style) */
/* Targeted selector to override previous rules */
.section_security .services-security_item {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 24px !important;
    padding: 32px !important;
    margin: 0 !important;
    /* Reset margins for grid */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    opacity: 1 !important;
    transform: translateZ(0) !important;
}

/* Hover Effect - Subtle Lift & Glow */
.section_security .services-security_item:hover {
    transform: translateY(-5px) scale(1.02) !important;
    background: #fff !important;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 10px 10px -5px rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
    z-index: 2;
}

/* Feature the first item significantly */
.section_security .services-security_item:first-child {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%) !important;
    border: 1px solid rgba(59, 130, 246, 0.1) !important;
}

@media (max-width: 479px) {
    .section_security .services-security_item:first-child {
        grid-column: span 1;
    }
}

/* Clean up internal elements */
.services-security_line {
    display: none !important;
}

/* Typography Enhancements */
.services-security_item .heading-style-h4 {
    color: var(--gp-oxford) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.02em !important;
}

.services-security_item p,
.services-security_item .text-size-regular {
    color: var(--gp-gray-700) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Security page text - ensure dark text is visible */
.section_security .heading-style-h4,
.section_security h4,
.services-security_item .heading-style-h4 {
    color: var(--gp-oxford) !important;
    font-weight: 600 !important;
}

.section_security p,
.section_security .text-size-regular,
.services-security_item p,
.services-item_wrapper p {
    color: var(--gp-gray-700) !important;
}

/* ============================================
   SECURITY PAGE REDESIGN V4 - BLUE GLASS & ICONS
   ============================================ */

/* Main Grid Container override */
.section_security ._2grid-col {
    display: grid !important;
    /* Fixed width sidebar 320px */
    grid-template-columns: 320px 1fr !important;
    gap: 40px !important;
    align-items: start !important;
    position: relative !important;
}

@media (max-width: 991px) {
    .section_security ._2grid-col {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

/* Feature Grid (Right Side) */
.security_wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    perspective: 1000px;
}

@media (max-width: 767px) {
    .security_wrapper {
        grid-template-columns: 1fr !important;
    }
}

/* CARD DESIGN - BLUE GLASS AESTHETIC */
.section_security .services-security_item {
    /* Subtle Blue Glass Gradient (matches the favored Medical Device look) */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 242, 255, 0.7) 100%) !important;

    /* Fallback for browsers that don't support backdrop-filter or if it's too heavy for mobile */
    background-color: #ffffff !important;
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%) !important;

    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;

    /* Default border is now slightly removed from pure grey to subtle blue-grey */
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    /* Generous padding */
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease !important;

    /* Flex for Icon */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    /* Space between Icon and Text */

    /* CRITICAL FIX for mobile visibility */
    opacity: 1 !important;
    transform: translateZ(0) !important;
    will-change: transform, opacity;
}

/* Spotlight Glow */
.section_security .services-security_item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 100px) var(--mouse-y, 100px),
            rgba(59, 130, 246, 0.1),
            /* Slightly stronger spotlight */
            transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}

.section_security .services-security_item:hover::after {
    opacity: 1 !important;
}

.section_security .services-security_item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px -8px rgba(59, 130, 246, 0.15), 0 4px 8px -4px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
    /* Clearer blue border on hover */
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 255, 0.9) 100%) !important;
}

/* ASYMMETRIC GRID RHYTHM (Bento) */
.section_security .services-security_item:nth-child(1) {
    grid-column: span 2;
}

.section_security .services-security_item:nth-child(6) {
    grid-column: span 2;
}

.section_security .services-security_item:nth-child(11) {
    grid-column: span 2;
}

@media (max-width: 767px) {
    .section_security .services-security_item:nth-child(n) {
        grid-column: span 1 !important;
    }
}

/* ICON STYLING */
.security-icon {
    display: block !important;
    width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    /* Prevent squashing */
    margin-bottom: 4px !important;
    filter: drop-shadow(0 4px 6px rgba(59, 130, 246, 0.25));
    transition: transform 0.3s ease;
}

.services-security_item:hover .security-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Typography Overrides */
.services-security_item .heading-style-h4 {
    color: #111827 !important;
    font-size: 1.25rem !important;
    /* Restored size */
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
}

.services-security_item p {
    color: #4b5563 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Hide line */
.services-security_line {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .hero-shape {
        display: none !important;
    }
}

/* Fix hero video overlapping button on mobile */
@media (max-width: 991px) {
    .hero_video {
        margin-top: 0 !important;
    }
}

/* NUCLEAR FIX FOR SECURITY CARD VISIBILITY ON MOBILE */
@media screen and (max-width: 768px) {
    .section_security .services-security_item {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        background: #ffffff !important;
        background: linear-gradient(145deg, #ffffff 0%, #f9fbff 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
        border: 1px solid rgba(59, 130, 246, 0.2) !important;
        z-index: 10 !important;
    }
}

/* Fix harsh white border on partners loop/banner */
.overlay-left,
.overlay-right {
    display: none !important;
}

/* Mobile layout fix for Partners section to prevent text overlap */
@media screen and (max-width: 768px) {
    .partners_wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }

    .partners-title {
        width: 100% !important;
        margin-bottom: 8px !important;
        text-align: left !important;
    }

    .marquee {
        width: 100% !important;
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
    }
}