        /* ============================================
           CSS VARIABLES
           ============================================ */
        :root {
            --primary: #0891b2;
            --primary-light: #22d3ee;
            --primary-dark: #0e7490;
            --secondary: #14b8a6;
            --secondary-light: #2dd4bf;
            
            --brand-blue: #1e5f8a;
            --brand-teal: #14b8a6;
            --brand-cyan: #22d3ee;
            
            --dark: #0f172a;
            --dark-800: #1e293b;
            --gray-700: #334155;
            --gray-600: #475569;
            --gray-500: #64748b;
            --gray-400: #94a3b8;
            --gray-300: #cbd5e1;
            --gray-200: #e2e8f0;
            --gray-100: #f1f5f9;
            --gray-50: #f8fafc;
            --white: #ffffff;
            
            --noti: #3EB489;
            --noti-light: #5ec9a0;
            --noti-dark: #2d9a72;
            --noti-a11y: #1f7d55;
            --noti-a11y-bg: #1a7a50;
            --noti-50: #ecfdf5;

            --gradient-brand: linear-gradient(135deg, #1e5f8a 0%, #14b8a6 100%);
            --gradient-hero: linear-gradient(135deg, rgba(30, 95, 138, 0.95) 0%, rgba(20, 184, 166, 0.95) 100%);
            --gradient-noti: linear-gradient(135deg, #3EB489 0%, #22d3ee 100%);
            --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
            
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
            --shadow-xl: 0 16px 40px rgba(0,0,0,0.16);
            
            --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* ============================================
           RESET
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: var(--font);
            line-height: 1.6;
            color: var(--gray-700);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }
        
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }

        /* ============================================
           PERFORMANCE
           ============================================ */
        .core-services, .about, .services, .notifly, .marquee-section, .contact, .footer {
            content-visibility: auto;
            contain-intrinsic-size: 1px 800px;
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }

            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* ============================================
           TYPOGRAPHY
           ============================================ */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--dark);
        }

            
        
        h1 { font-size: clamp(35px, 4.5vw, 35px); }
        h2 { font-size: clamp(28px, 3.5vw, 40px); }
        h3 { font-size: clamp(20px, 2vw, 24px); }
        h4 { font-size: clamp(16px, 1.5vw, 18px); }
        
        /* ============================================
           LAYOUT
           ============================================ */
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(1deg); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.4; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }
        
        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(8, 145, 178, 0.3); }
            50% { box-shadow: 0 0 40px rgba(8, 145, 178, 0.5); }
        }
        
        @keyframes node-pulse {
            0%, 100% { r: 3; opacity: 0.6; }
            50% { r: 5; opacity: 1; }
        }
        
        @keyframes dash {
            to { stroke-dashoffset: -100; }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* ============================================
           HEADER - ENHANCED
           ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(8, 145, 178, 0.08);
            transition: var(--transition);
        }
        
        .header.scrolled {
            background: rgba(255,255,255,0.98);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-bottom-color: transparent;
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 40px;
            width: 169px;
            aspect-ratio: 372 / 88;
        }

        .header.scrolled .logo-img {
             height: 40px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 36px;
            align-items: center;
            margin-left: auto;
        }
        
        .nav-menu a {
            color: var(--gray-600);
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-menu a:not(.btn-nav):hover { 
            color: var(--primary); 
        }
        
        .nav-menu a:not(.btn-nav)::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .nav-menu a:not(.btn-nav):hover::after,
        .nav-menu a:not(.btn-nav).active::after {
            width: 100%;
        }

        .nav-menu a:not(.btn-nav).active {
            color: var(--primary);
        }
        
        /* Nav Button - FIXED */
        .btn-nav {
            background: var(--brand-blue);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(8, 145, 178, 0.25);
        }
        
        .btn-nav:hover {
            background: #0b4f6c;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(8, 145, 178, 0.3);
        }
        
        .btn-nav::after {
            display: none !important;
        }
        
        /* Mobile Nav Toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
            margin-left: auto;
        }
        
        .nav-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--gray-700);
            border-radius: 2px;
            transition: var(--transition);
        }
        
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        /* Mobile Menu Overlay - LIGHT & CLEAN */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: auto;
            right: 0;
            bottom: 0;
            width: min(340px, 88vw);
            background: var(--white);
            z-index: 998;
            padding: 0;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -20px 0 60px rgba(15, 23, 42, 0.15);
        }
        
        .mobile-menu.active {
            display: flex;
            transform: translateX(0);
        }
        
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid var(--gray-200);
            background: var(--gray-50);
        }
        
        .mobile-menu-logo {
            height: 26px;
            width: auto;
            max-width: 160px;
        }
        
        .mobile-menu-close {
            width: 40px;
            height: 40px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .mobile-menu-close:hover {
            background: var(--gray-100);
            border-color: var(--gray-300);
        }
        
        .mobile-menu-close svg {
            width: 20px;
            height: 20px;
            stroke: var(--gray-600);
        }
        
        .mobile-menu-nav {
            flex: 1;
            padding: 16px 24px;
            overflow-y: auto;
        }
        
        .mobile-menu a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 16px;
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-700);
            border-radius: var(--radius-md);
            transition: var(--transition);
            margin-bottom: 4px;
        }
        
        .mobile-menu a:hover {
            background: var(--gray-100);
            color: var(--primary);
        }
        
        .mobile-menu a svg {
            width: 22px;
            height: 22px;
            stroke: var(--gray-500);
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        .mobile-menu a:hover svg {
            stroke: var(--primary);
        }
        
        .mobile-menu .btn-mobile {
            margin: 16px 24px;
            background: var(--primary);
            color: var(--white);
            text-align: center;
            font-weight: 700;
            padding: 16px 24px;
            border-radius: var(--radius-lg);
            justify-content: center;
        }
        
        .mobile-menu .btn-mobile:hover {
            background: var(--primary-dark);
        }
        
        .mobile-menu .btn-mobile svg {
            stroke: var(--white);
        }
        
        .mobile-menu-footer {
            padding: 20px 24px;
            border-top: 1px solid var(--gray-200);
            background: var(--gray-50);
        }
        
        .mobile-menu-footer p {
            color: var(--gray-500);
            font-size: 13px;
            margin-bottom: 12px;
        }
        
        .mobile-menu-social {
            display: flex;
            gap: 10px;
        }
        
        .mobile-menu-social a {
            width: 40px;
            height: 40px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            margin: 0;
        }
        
        .mobile-menu-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
        }
        
        .mobile-menu-social a svg {
            width: 16px;
            height: 16px;
            fill: var(--gray-600);
            stroke: none;
        }
        
        .mobile-menu-social a:hover svg {
            fill: var(--white);
        }
        
        /* ============================================
           HERO - ISOMETRIC CUBE NETWORK (Reference Match)
           ============================================ */
        .hero {
            position: relative;
            background: #0a1929;
            overflow: hidden;
            min-height: 70vh;
            min-height: 70svh;
            display: flex;
            flex-direction: column;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        
        /* Isometric Cube Grid - SVG Based */
        .hero-cube-grid {
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 100%;
            opacity: 0.4;
            mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 100%);
        }
        
        .hero-cube-grid svg {
            width: 100%;
            height: 100%;
        }
        
        /* Node glow animations */
        .cube-node {
            opacity: 0.25;
            animation: cube-node-pulse 6s ease-in-out infinite;
            will-change: opacity, r;
        }

        /* All node colors: logo teal, brand-blue, white only */
        .cube-node-cyan { fill: #14b8a6; }
        .cube-node-white { fill: rgba(255, 255, 255, 0.7); }
        .cube-node-purple { fill: #1e5f8a; }
        .cube-node-pink { fill: #0e7490; }

        .cube-node:nth-child(3n) { animation-delay: 0s; }
        .cube-node:nth-child(3n+1) { animation-delay: 2s; }
        .cube-node:nth-child(3n+2) { animation-delay: 4s; }

        @keyframes cube-node-pulse {
            0%, 100% { opacity: 0.25; r: 2.5; }
            40%, 60% { opacity: 0.7; r: 4.5; }
        }

        /* Cube lines — subtle */
        .cube-line {
            stroke-width: 0.6;
            fill: none;
        }

        .cube-line-cyan { stroke: rgba(20, 184, 166, 0.35); }
        .cube-line-purple { stroke: rgba(30, 95, 138, 0.28); }
        .cube-line-pink { stroke: rgba(14, 116, 144, 0.25); }
        .cube-line-white { stroke: rgba(255, 255, 255, 0.18); }

        /* Glow effects — subtle, logo colors only */
        .hero-glow {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-glow-1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
            top: 10%;
            right: 15%;
        }

        .hero-glow-2 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(30, 95, 138, 0.08) 0%, transparent 70%);
            top: 40%;
            right: 25%;
        }

        .hero-glow-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(14, 116, 144, 0.06) 0%, transparent 70%);
            bottom: 20%;
            right: 20%;
        }
        
        /* Left side dark gradient for text readability */
        .hero::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 55%;
            background: linear-gradient(90deg, #0a1929 0%, #0a1929 30%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }
        
        .neural-canvas {
            position: absolute;
            inset: 0;
            opacity: 0.5;
        }
        
        .neural-canvas svg {
            width: 100%;
            height: 100%;
        }
        
        .neural-node {
            fill: rgba(255,255,255,0.9);
            animation: node-pulse 3s ease-in-out infinite;
            will-change: opacity, r;
        }
        
        .neural-node:nth-child(odd) { animation-delay: 0.5s; }
        .neural-node:nth-child(even) { animation-delay: 1.5s; }
        
        .neural-line {
            stroke: rgba(255,255,255,0.2);
            stroke-width: 1;
            stroke-dasharray: 5 5;
            animation: dash 20s linear infinite;
            will-change: stroke-dashoffset;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            will-change: transform;
        }
        
        .particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 25%; left: 85%; animation-delay: 1s; }
        .particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 2s; }
        .particle:nth-child(4) { top: 70%; left: 75%; animation-delay: 3s; }
        .particle:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; }
        
        .hero > .container {
            position: relative;
            z-index: 2;
            padding-top: 180px;
            padding-bottom: 100px;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            text-align: center;
            max-width: 980px;
        }

        .hero h1 {
            color: var(--white);
            font-size: clamp(30px, 4vw, 42px);
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin: 0 auto 24px;
            font-weight: 700;
            max-width: 860px;
            text-wrap: pretty;
            text-shadow: 0 8px 28px rgba(0,0,0,0.24);
        }

        .hero-sub {
            font-size: 16px;
            color: rgba(255,255,255,0.65);
            margin: 0 auto 36px;
            font-weight: 400;
            letter-spacing: 0.3px;
            max-width: 600px;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 14px;
            justify-content: center;
        }

        .btn-hero {
            padding: 16px 34px;
            font-size: 15px;
            border-radius: var(--radius-md);
            font-weight: 700;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, #3b7e87 0%, #4fa89a 100%);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(59, 126, 135, 0.28);
        }

        .btn-hero-primary:hover {
            background: linear-gradient(135deg, #356f77 0%, #48998c 100%);
            transform: translateY(-2px);
        }

        .btn-hero-secondary {
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.92);
            border: 1.5px solid rgba(255,255,255,0.16);
            backdrop-filter: blur(8px);
        }

        .btn-hero-secondary:hover {
            color: var(--white);
            border-color: rgba(255,255,255,0.38);
            background: rgba(255,255,255,0.06);
        }

        /* Trust bar at bottom of hero */
        .hero-trust {
            position: relative;
            z-index: 10;
            border-top: 1px solid rgba(255,255,255,0.08);
            background: rgba(0,0,0,0.15);
            padding: 24px 0;
        }

        .hero-trust-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }

        .hero-trust-label {
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
            font-weight: 500;
            flex-shrink: 0;
            border-right: 1px solid rgba(255,255,255,0.1);
            padding-right: 32px;
        }

        .hero-trust-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .hero-trust-stats span {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
            white-space: nowrap;
        }

        .hero-trust-stats strong {
            color: var(--white);
            font-weight: 800;
            font-size: 16px;
            margin-right: 4px;
        }
        
        /* ============================================
           TRUST BAR
           ============================================ */
        /* ============================================
           LOGO MARQUEE CTA
           ============================================ */
        .marquee-section {
            background: linear-gradient(180deg, #dfeaf0 0%, #eef4f8 100%);
            padding: 60px 0;
            overflow: hidden;
            position: relative;
            border-bottom: 4px solid rgba(59, 126, 135, 0.9);
            box-shadow: inset 0 -1px 0 rgba(255,255,255,0.9);
        }

        .marquee-title {
            text-align: center;
            font-size: clamp(22px, 2.5vw, 30px);
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .marquee-subtitle {
            text-align: center;
            font-size: 16px;
            color: #536579;
            margin-bottom: 40px;
        }

        .marquee-wrapper {
            width: 100%;
            user-select: none;
        }

        .marquee-fade {
            position: absolute;
            top: 0;
            height: 100%;
            width: 60px;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-fade-left {
            left: -1px;
            background: linear-gradient(to right, #dfeaf0 0%, transparent 100%);
        }

        .marquee-fade-right {
            right: -1px;
            background: linear-gradient(to left, #dfeaf0 0%, transparent 100%);
        }

        .marquee-inner {
            display: flex;
            min-width: 200%;
            will-change: transform;
            animation: marqueeScroll 45s linear infinite;
        }

        .marquee-track {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .marquee-logo {
            width: 56px;
            height: 56px;
            object-fit: contain;
            margin: 0 10px;
            padding: 10px;
            background: rgba(255,255,255,0.9);
            border: 1px solid rgba(203, 213, 225, 0.95);
            border-radius: 16px;
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }

        .marquee-logo:hover {
            transform: translateY(-3px) scale(1.06);
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
            border-color: rgba(59, 126, 135, 0.38);
        }

        @keyframes marqueeScroll {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        @media (max-width: 768px) {
            .marquee-fade {
                width: 30px;
            }
            .marquee-logo {
                width: 42px;
                height: 42px;
                margin: 0 8px;
                padding: 7px;
                border-radius: 12px;
            }
        }

        .trust-bar {
            background: var(--gray-50);
            padding: 24px 0;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .trust-bar p {
            text-align: center;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gray-500);
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .trust-logos {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .trust-logo {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--gray-500);
            font-size: 13px;
            font-weight: 500;
        }
        
        .trust-logo svg {
            width: 16px;
            height: 16px;
            opacity: 0.6;
        }
        
        /* ============================================
           STATS
           ============================================ */
        .stats {
            padding: 60px 0;
            background: var(--white);
        }
        
        .stats-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 48px;
        }
        
        .stats-header h2 { margin-bottom: 12px; }
        .stats-header p { color: var(--gray-600); font-size: 16px; }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .stat-item {
            text-align: center;
            padding: 28px 16px;
            border-right: 1px solid var(--gray-200);
        }
        
        .stat-item:last-child { border-right: none; }
        
        .stat-number {
            font-size: 44px;
            font-weight: 800;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--gray-600);
            font-weight: 500;
        }
        
        /* ============================================
           CORE SERVICES
           ============================================ */
        .core-services {
            padding: 60px 0;
            background: var(--white);
        }

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

        .cs-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cs-card:hover {
            border-color: rgba(62, 180, 137, 0.25);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            transform: scale(1.015);
        }

        .cs-icon {
            width: 48px;
            height: 48px;
            background: rgba(8, 145, 178, 0.08);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .cs-card:hover .cs-icon {
            background: var(--gradient-brand);
        }

        .cs-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            transition: var(--transition);
        }

        .cs-card:hover .cs-icon svg {
            stroke: var(--white);
        }

        .cs-card h3 {
            font-size: 17px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .cs-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.65;
            margin: 0;
        }

        /* ============================================
           WHY WORK WITH US — BENTO
           ============================================ */
        .why-us {
            padding: 60px 0;
            background: var(--gray-50);
        }


        .bento-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
        }

        .bento-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-xl);
            padding: 24px 22px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .bento-card:hover {
            border-color: rgba(62, 180, 137, 0.25);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            transform: scale(1.015);
        }

        .bento-icon {
            width: 40px;
            height: 40px;
            background: rgba(8, 145, 178, 0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .bento-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary);
            stroke-width: 2;
        }

        .bento-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.35;
        }

        .bento-card p {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.65;
            margin-bottom: 0;
        }

        .bento-card p + p {
            margin-top: 10px;
        }

        /* Small cards — top left (col 1 and 2) */
        .bento-sm {
            grid-column: span 1;
        }

        /* Featured dark card — right column, spans 2 rows */
        .bento-featured {
            grid-column: 3;
            grid-row: 1 / 3;
            background: var(--gradient-brand);
            border-color: transparent;
            display: flex;
            flex-direction: column;
        }

        .bento-featured:hover {
            border-color: transparent;
            box-shadow: 0 12px 40px rgba(30, 95, 138, 0.25);
        }

        .bento-featured .bento-icon {
            background: rgba(255,255,255,0.12);
        }

        .bento-featured .bento-icon svg {
            stroke: var(--white);
        }

        .bento-featured h3 {
            color: var(--white);
            font-size: 18px;
        }

        .bento-featured p {
            color: rgba(255,255,255,0.8);
        }

        .bento-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            color: var(--dark);
            font-weight: 700;
            font-size: 13px;
            padding: 12px 24px;
            border-radius: 50px;
            margin-top: auto;
            align-self: center;
            transition: var(--transition);
        }

        .bento-cta:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
        }

        .bento-cta span {
            font-size: 18px;
            transition: transform 0.2s;
        }

        .bento-cta:hover span {
            transform: translateX(4px);
        }

        /* Wide card — bottom left, spans 2 cols */
        .bento-wide {
            grid-column: 1 / 3;
        }

        /* ============================================
           UIVERSE 3D FEATURE CARDS
           ============================================ */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .noselect {
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .ft-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 5/4;
            transition: 200ms;
            perspective: 800px;
        }

        .ft-wrap:active {
            transform: scale(0.97);
        }

        .ft-card {
            position: absolute;
            inset: 0;
            z-index: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            transition: 700ms;
            background: linear-gradient(180deg, #ffffff 0%, #f4fafb 100%);
            border: 1px solid rgba(59, 126, 135, 0.16);
            overflow: hidden;
            box-shadow:
                0 18px 40px rgba(20, 34, 53, 0.10),
                inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }

        .ft-card-content {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Prompt text — hidden, content shown by default */
        .ft-prompt {
            display: none;
        }

        /* Title — always visible as description */
        .ft-title {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.3px;
            line-height: 1.7;
            text-align: center;
            padding: 0 24px;
            color: rgba(20, 34, 53, 0.74);
            z-index: 20;
        }

        /* Subtitle — bottom of card, always visible */
        .ft-subtitle {
            position: absolute;
            bottom: 14px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #3b7e87;
            z-index: 20;
            padding: 0 16px;
        }

        .ft-highlight {
            color: inherit;
        }

        .ft-wrap:hover .ft-card {
            transition: 300ms;
            transform: translateY(-4px);
            border-color: rgba(59, 126, 135, 0.34);
            box-shadow:
                0 22px 48px rgba(20, 34, 53, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
        }

        /* ---- Glowing orbs ---- */
        .ft-glowing-elements {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .ft-glow-1, .ft-glow-2, .ft-glow-3 {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(92, 158, 164, 0.12) 0%, transparent 70%);
            filter: blur(15px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .ft-glow-1 { top: -15px; left: -15px; }
        .ft-glow-2 { top: 50%; right: -20px; transform: translateY(-50%); }
        .ft-glow-3 { bottom: -15px; left: 30%; }

        .ft-wrap:hover .ft-glow-1,
        .ft-wrap:hover .ft-glow-2,
        .ft-wrap:hover .ft-glow-3 {
            opacity: 1;
        }

        /* ---- Particles ---- */
        .ft-card-particles span {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(59, 126, 135, 0.55);
            border-radius: 50%;
            opacity: 0;
            will-change: transform, opacity;
        }

        .ft-card-particles span { animation: ftParticleFloat 4s infinite; }

        .ft-card-particles span:nth-child(1) { --fx: 1; --fy: -1; top: 40%; left: 20%; animation-delay: 0s; }
        .ft-card-particles span:nth-child(2) { --fx: -1; --fy: -1; top: 60%; right: 20%; animation-delay: 0.3s; }
        .ft-card-particles span:nth-child(3) { --fx: 0.5; --fy: 1; top: 20%; left: 40%; animation-delay: 0.6s; }
        .ft-card-particles span:nth-child(4) { --fx: -0.5; --fy: 1; top: 80%; right: 40%; animation-delay: 0.9s; }
        .ft-card-particles span:nth-child(5) { --fx: 1; --fy: 0.5; top: 30%; left: 60%; animation-delay: 1.2s; }
        .ft-card-particles span:nth-child(6) { --fx: -1; --fy: 0.5; top: 70%; right: 60%; animation-delay: 1.5s; }

        @keyframes ftParticleFloat {
            0% { transform: translate(0, 0); opacity: 0; }
            50% { opacity: 0.35; }
            100% { transform: translate(calc(var(--fx) * 20px), calc(var(--fy) * 20px)); opacity: 0; }
        }

        /* ---- Cyber lines ---- */
        .ft-cyber-lines span {
            position: absolute;
            background: linear-gradient(90deg, transparent, rgba(59, 126, 135, 0.10), transparent);
            height: 1px;
            width: 100%;
            will-change: transform, opacity;
        }

        .ft-cyber-lines span:nth-child(1) { top: 20%; left: 0; transform-origin: left; animation: ftLineGrow 3s linear infinite; }
        .ft-cyber-lines span:nth-child(2) { top: 40%; right: 0; transform-origin: right; animation: ftLineGrow 3s linear infinite 1s; }
        .ft-cyber-lines span:nth-child(3) { top: 60%; left: 0; transform-origin: left; animation: ftLineGrow 3s linear infinite 2s; }
        .ft-cyber-lines span:nth-child(4) { top: 80%; right: 0; transform-origin: right; animation: ftLineGrow 3s linear infinite 1.5s; }

        @keyframes ftLineGrow {
            0% { transform: scaleX(0); opacity: 0; }
            50% { transform: scaleX(1); opacity: 1; }
            100% { transform: scaleX(0); opacity: 0; }
        }

        /* ---- Corner brackets ---- */
        .ft-corner-elements span {
            position: absolute;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(59, 126, 135, 0.36);
            z-index: 10;
            transition: 0.3s ease;
        }

        .ft-corner-elements span:nth-child(1) { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
        .ft-corner-elements span:nth-child(2) { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
        .ft-corner-elements span:nth-child(3) { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
        .ft-corner-elements span:nth-child(4) { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

        .ft-wrap:hover .ft-corner-elements span {
            border-color: rgba(59, 126, 135, 0.72);
            box-shadow: 0 0 10px rgba(59, 126, 135, 0.16);
        }

        /* ---- Scan line (continuous) ---- */
        .ft-scan-line {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent, rgba(59, 126, 135, 0.03), transparent);
            animation: ftScanMove 4s linear infinite;
            will-change: transform;
            pointer-events: none;
            z-index: 3;
        }

        @keyframes ftScanMove {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        /* ---- Glare ---- */
        .ft-card-glare {
            position: absolute;
            inset: 0;
            z-index: 11;
            background: linear-gradient(
                125deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.04) 45%,
                rgba(255,255,255,0.08) 50%,
                rgba(255,255,255,0.04) 55%,
                rgba(255,255,255,0) 100%
            );
            opacity: 0;
            transition: opacity 300ms;
            pointer-events: none;
        }

        .ft-wrap:hover .ft-card-glare {
            opacity: 1;
        }

        /* ---- Card ::before glow ---- */
        .ft-card::before {
            content: '';
            background: radial-gradient(
                circle at center,
                rgba(59, 126, 135, 0.05) 0%,
                rgba(92, 158, 164, 0.02) 50%,
                transparent 100%
            );
            filter: blur(20px);
            opacity: 0;
            width: 150%;
            height: 150%;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
        }

        .ft-wrap:hover .ft-card::before {
            opacity: 1;
        }
        
        /* ============================================
           SERVICES - STYLED BY DEFAULT
           ============================================ */
        .services {
            padding: 60px 0;
            background: var(--white);
        }

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

        .section-header h2 {
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--gradient-brand);
            border-radius: 2px;
            margin: 14px auto 0;
        }

        .section-header p {
            color: var(--gray-500);
            font-size: 16px;
            line-height: 1.7;
            max-width: 520px;
            margin: 0 auto;
        }

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

        .btn-view-all {
            display: inline-block;
            padding: 12px 32px;
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            border: 1.5px solid var(--primary);
            border-radius: var(--radius-md);
            transition: all var(--transition);
        }

        .btn-view-all:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-1px);
        }

        .service-card {
            background: var(--white);
            box-shadow: 0 0 15px rgba(0,0,0,0.09);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .service-card:hover {
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            transform: scale(1.015);
            border-color: rgba(62, 180, 137, 0.25);
        }

        /* Numbered circle — top right */
        .service-num {
            position: absolute;
            right: -14px;
            top: -18px;
            width: 72px;
            height: 72px;
            background: var(--brand-blue);
            border-radius: 50%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 16px 0 14px 16px;
            color: var(--white);
            font-size: 20px;
            font-weight: 800;
        }

        .service-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark);
            padding-right: 40px;
        }

        .service-card > p {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.65;
            margin-bottom: 20px;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            font-size: 14px;
            color: var(--gray-700);
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-list li::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--brand-blue);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        /* ============================================
           CASE STUDIES - WHITE/LIGHT GRAY BG
           ============================================ */
        .cases {
            padding: 60px 0;
            background: var(--gray-50);
            position: relative;
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            position: relative;
            z-index: 2;
        }
        
        .case-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        
        .case-card:hover {
            transform: translateY(-3px);
            border-color: rgba(62, 180, 137, 0.25);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }
        
        /* Unique card image backgrounds */
        .case-image {
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .case-image::before {
            content: '';
            position: absolute;
            inset: 0;
        }
        
        /* HR Tech - Purple/Blue gradient */
        .case-card:nth-child(1) .case-image {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
        }
        
        .case-card:nth-child(1) .case-image::before {
            background: 
                radial-gradient(circle at 30% 40%, rgba(255,255,255,0.2) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(255,255,255,0.1) 0%, transparent 30%);
        }
        
        /* Healthcare - Teal/Cyan gradient */
        .case-card:nth-child(2) .case-image {
            background: linear-gradient(135deg, #0d9488 0%, #06b6d4 50%, #22d3ee 100%);
        }
        
        .case-card:nth-child(2) .case-image::before {
            background: 
                radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
                repeating-radial-gradient(circle at 50% 50%, transparent 0%, transparent 10%, rgba(255,255,255,0.05) 10%, rgba(255,255,255,0.05) 20%);
        }
        
        /* BI - Green/Blue brand gradient */
        .case-card:nth-child(3) .case-image {
            background: linear-gradient(135deg, #1C623D 0%, #0A4EC2 100%);
        }
        
        .case-card:nth-child(3) .case-image::before {
            background: 
                linear-gradient(180deg, transparent 0%, transparent 60%, rgba(255,255,255,0.1) 60%, rgba(255,255,255,0.1) 65%, transparent 65%),
                linear-gradient(180deg, transparent 0%, transparent 40%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0.08) 50%, transparent 50%);
            background-size: 30px 100%;
        }
        
        .case-image svg {
            width: 50px;
            height: 50px;
            stroke: var(--white);
            opacity: 0.95;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
        }
        
        .case-content {
            padding: 28px;
        }
        
        .case-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(20, 184, 166, 0.08));
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }
        
        .case-card h3 {
            font-size: 17px;
            margin-bottom: 16px;
            line-height: 1.4;
            color: var(--dark);
        }
        
        .case-meta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 16px;
        }
        
        .case-meta-item strong {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-500);
            margin-bottom: 6px;
            font-weight: 600;
        }
        
        .case-meta-item span {
            font-size: 13px;
            color: var(--gray-700);
            line-height: 1.5;
        }
        
        .case-result {
            background: linear-gradient(135deg, rgba(8, 145, 178, 0.06), rgba(20, 184, 166, 0.06));
            padding: 14px 16px;
            border-radius: var(--radius-md);
            border-left: 3px solid var(--primary);
        }
        
        .case-result strong {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--primary);
            margin-bottom: 6px;
            font-weight: 700;
        }
        
        .case-result span {
            font-size: 13px;
            color: var(--gray-700);
            line-height: 1.5;
        }
        
        .case-tech {
            font-size: 12px;
            color: var(--gray-500);
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--gray-200);
        }
        
        .case-tech strong {
            color: var(--gray-600);
        }
        
        /* ============================================
           CREDIBILITY SECTION (Consolidated)
           ============================================ */
        .credibility {
            padding: 60px 0;
            background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
            position: relative;
        }
        
        /* Industry Tags Row */
        .credibility-industries {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .cred-industry {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray-600);
            font-size: 14px;
            font-weight: 500;
        }
        
        .cred-industry svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary);
        }
        
        /* Credibility Cards Grid */
        .credibility-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        .cred-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-xl);
            padding: 32px;
            display: flex;
            gap: 20px;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        
        .cred-card:hover {
            border-color: rgba(62, 180, 137, 0.25);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            transform: translateY(-3px);
        }
        
        .cred-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(20, 184, 166, 0.1));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .cred-card:hover .cred-icon {
            background: var(--gradient-brand);
        }
        
        .cred-icon svg {
            width: 26px;
            height: 26px;
            stroke: var(--primary);
            transition: var(--transition);
        }
        
        .cred-card:hover .cred-icon svg {
            stroke: var(--white);
        }
        
        .cred-content h3 {
            color: var(--dark);
            font-size: 17px;
            margin-bottom: 8px;
        }
        
        .cred-content p {
            color: var(--gray-600);
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* ============================================
           NOTIFLY PRODUCT SECTION
           ============================================ */
        .notifly {
            padding: 60px 0;
            background: #0a1929;
            position: relative;
            overflow: hidden;
        }

        .notifly::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(62, 180, 137, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .notifly::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 95, 138, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .notifly .container {
            position: relative;
            z-index: 1;
        }

        .notifly-intro {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 64px;
        }

        .notifly-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #3EB489;
            border: 1px solid rgba(62, 180, 137, 0.3);
            background: rgba(62, 180, 137, 0.08);
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .notifly-intro h2 {
            color: var(--white);
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 18px;
        }

        .notifly-brand {
            background: linear-gradient(135deg, #3EB489 0%, #22d3ee 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .notifly-tagline {
            color: var(--gray-400);
            font-size: 17px;
            line-height: 1.7;
        }

        /* What is NotiFly — split layout */
        .notifly-what {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            margin-bottom: 72px;
        }

        .notifly-what-text h3 {
            color: var(--white);
            font-size: 24px;
            margin-bottom: 16px;
        }

        .notifly-what-text p {
            color: var(--gray-400);
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 14px;
        }

        .notifly-what-text p:last-child {
            margin-bottom: 0;
        }

        /* Chat mockup */
        .notifly-chat-mockup {
            background: #ECE5DD;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            max-width: 380px;
            margin-left: auto;
        }

        .notifly-chat-header {
            background: #075E54;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .notifly-chat-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .notifly-chat-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .notifly-verified {
            display: inline-block;
            vertical-align: middle;
            margin-left: 2px;
            margin-top: -1px;
        }

        .notifly-chat-name {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }

        .notifly-chat-status {
            color: rgba(255,255,255,0.6);
            font-size: 11px;
        }

        .notifly-chat-body {
            padding: 16px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cdefs%3E%3Cstyle%3E.c%7Bfill:%23d6d0c5;opacity:0.3%7D%3C/style%3E%3C/defs%3E%3Ccircle class='c' cx='20' cy='20' r='1.5'/%3E%3Ccircle class='c' cx='100' cy='60' r='1'/%3E%3Ccircle class='c' cx='160' cy='30' r='1.5'/%3E%3Ccircle class='c' cx='60' cy='120' r='1'/%3E%3Ccircle class='c' cx='140' cy='150' r='1.5'/%3E%3C/svg%3E");
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .notifly-msg {
            max-width: 85%;
            padding: 8px 10px 4px;
            border-radius: 8px;
            font-size: 13px;
            line-height: 1.45;
            position: relative;
        }

        .notifly-msg-out {
            background: #DCF8C6;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
        }

        .notifly-msg-in {
            background: #fff;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .notifly-msg-tpl {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: #075E54;
            margin-bottom: 3px;
            opacity: 0.7;
        }

        .notifly-msg-text {
            color: #111B21;
        }

        .notifly-msg-time {
            text-align: right;
            font-size: 10px;
            color: #667781;
            margin-top: 2px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 3px;
        }

        /* Feature grid */
        .notifly-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .notifly-feature {
            background: rgba(255,255,255,0.07);
            border: 2px solid transparent;
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            outline: 1px solid rgba(255,255,255,0.1);
            outline-offset: -1px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .notifly-feature:hover {
            background: rgba(255,255,255,0.09);
            border-color: rgba(62, 180, 137, 0.5);
            outline-color: transparent;
            transform: scale(1.03);
        }

        .notifly-feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(62, 180, 137, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .notifly-feature-icon svg {
            width: 22px;
            height: 22px;
            color: #3EB489;
        }

        .notifly-feature h4 {
            color: var(--white);
            font-size: 17px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .notifly-feature p {
            color: var(--gray-400);
            font-size: 14px;
            line-height: 1.65;
        }

        /* CTA button */
        .notifly-cta {
            text-align: center;
        }

        .btn-notifly {
            display: inline-block;
            padding: 14px 36px;
            background: linear-gradient(135deg, #3EB489 0%, #14b8a6 100%);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            border-radius: 50px;
            transition: transform var(--transition), box-shadow var(--transition);
            box-shadow: 0 4px 20px rgba(62, 180, 137, 0.3);
        }

        .btn-notifly:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(62, 180, 137, 0.4);
        }

        /* ============================================
           CTA
           ============================================ */
        .cta {
            padding: 60px 0;
            background: var(--gradient-brand);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1), transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08), transparent 50%);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 620px;
            margin: 0 auto;
        }
        
        .cta h2 {
            color: var(--white);
            font-size: clamp(26px, 3vw, 38px);
            margin-bottom: 14px;
        }
        
        .cta p {
            color: rgba(255,255,255,0.9);
            font-size: 16px;
            margin-bottom: 32px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
        }
        
        /* ============================================
           CONTACT
           ============================================ */
        .contact {
            padding: 60px 0;
            background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
            position: relative;
            border-top: 1px solid rgba(30, 95, 138, 0.08);
        }

        .contact::before {
            content: none;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 50px;
            max-width: 1000px;
            margin: 40px auto 0;
        }
        
        .contact-info h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .contact-info > p {
            color: var(--gray-600);
            font-size: 14px;
            margin-bottom: 24px;
            line-height: 1.6;
        }
        
        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .contact-item-icon {
            width: 42px;
            height: 42px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        .contact-item:hover .contact-item-icon {
            background: var(--primary);
            border-color: var(--primary);
        }
        
        .contact-item-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary);
            transition: var(--transition);
        }
        
        .contact-item:hover .contact-item-icon svg {
            stroke: var(--white);
        }
        
        .contact-item-text strong {
            display: block;
            font-size: 14px;
            margin-bottom: 2px;
        }
        
        .contact-item-text span {
            font-size: 14px;
            color: var(--gray-600);
        }
        
        .contact-form {
            background: var(--white);
            padding: 28px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-100);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .form-group { margin-bottom: 10px; }
        .form-group.has-error { margin-bottom: 6px; }
        .form-group:last-of-type { margin-bottom: 16px; }
        
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--gray-700);
        }

        .form-group label .required {
            color: #b91c1c;
            margin-left: 2px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-family: inherit;
            transition: var(--transition);
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
        }

        .form-group .field-error {
            margin-top: 4px;
            font-size: 12px;
            color: #b91c1c;
            line-height: 1.3;
        }

        .form-group .input-error {
            border-color: #b91c1c;
            box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        
        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
        }
        
        .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--brand-blue);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn-submit:hover {
            background: #0b4f6c;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .form-honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
        }

        .form-status {
            margin-top: 14px;
            font-size: 14px;
            color: var(--gray-600);
            min-height: 20px;
        }

        .form-status.is-error {
            color: #b91c1c;
        }

        .form-status.is-success {
            color: #0f766e;
        }
        
        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: #0a1929;
            color: var(--white);
            padding: 60px 0 28px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 48px;
        }
        
        .footer-about h3 {
            font-size: 22px;
            margin-bottom: 14px;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-logo {
            height: 32px;
            width: auto;
            margin-bottom: 16px;
            filter: brightness(0) invert(1);
        }
        
        .footer-about p {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 12px;
        }
        
        .footer-highlight {
            color: var(--white) !important;
            font-weight: 600;
        }
        
        .footer-col h3 {
            font-size: 15px;
            margin-bottom: 16px;
            color: var(--white);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li { margin-bottom: 10px; }
        
        .footer-links a {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }

        .footer-registration {
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            letter-spacing: 0.5px;
        }
        
        .social-links a {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--primary);
        }
        
        .social-links svg {
            width: 16px;
            height: 16px;
            fill: var(--white);
        }
        
        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero-content {
                max-width: 100%;
            }
            
            .core-services-grid,
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-featured {
                grid-column: 1;
                grid-row: auto;
            }

            .bento-wide {
                grid-column: 1;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .notifly-features {
                grid-template-columns: repeat(2, 1fr);
            }

            .notifly-what {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .notifly-chat-mockup {
                margin: 0 auto;
            }
            
            .footer-grid { 
                grid-template-columns: repeat(2, 1fr); 
            }
            
            .credibility-industries {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .nav-toggle { display: flex; }
            
            .hero > .container {
                padding-top: 130px;
                padding-bottom: 60px;
            }

            .hero-trust-inner {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .hero-trust-label {
                border-right: none;
                padding-right: 0;
            }

            .hero-trust-stats {
                justify-content: center;
                gap: 20px;
            }
            
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item { 
                border-right: none; 
                border-bottom: 1px solid var(--gray-200); 
                padding: 24px 16px;
            }
            .stat-item:nth-last-child(-n+2) { border-bottom: none; }
            
            .core-services-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .ft-wrap {
                aspect-ratio: 5/4;
            }

            .credibility-industries {
                gap: 16px;
            }
            
            .cred-card {
                flex-direction: column;
                text-align: center;
            }
            
            .cred-icon {
                margin: 0 auto;
            }
            
            .notifly-features {
                grid-template-columns: 1fr;
            }

            .notifly {
                padding: 70px 0;
            }

            .form-row { grid-template-columns: 1fr; }
            
            .hero-cta { flex-direction: column; }
            .btn-hero { 
                width: 100%; 
                justify-content: center; 
            }
            
            .cta-buttons { 
                flex-direction: column; 
                align-items: center; 
            }
            .cta-buttons a { 
                width: 100%; 
                max-width: 280px; 
                justify-content: center; 
            }
            
            .section-header,
            .stats-header {
                margin-bottom: 40px;
            }
            
            .stats, .about, .services, .cases, .credibility, .contact {
                padding: 70px 0;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid { grid-template-columns: 1fr; }
            .stat-item { 
                border-bottom: 1px solid var(--gray-200); 
            }
            .stat-item:last-child { border-bottom: none; }
            
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { 
                flex-direction: column; 
                gap: 16px; 
                text-align: center;
            }
            
            .trust-logos {
                gap: 20px;
            }
            
            .contact-form {
                padding: 24px;
            }
        }

/* ============================================
   CONTENT PAGES (Privacy, Terms, etc.)
   ============================================ */
.page-hero {
    background: var(--dark);
    padding: 120px 0 48px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}
.page-hero p {
    font-size: 14px;
    color: var(--gray-400);
}
.page-hero .page-subtitle {
    font-size: 14px;
    color: var(--gray-400);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-industries-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-industries-grid { grid-template-columns: 1fr; }
}

.page-content {
    padding: 48px 0 60px;
}
.page-content .container {
    max-width: 800px;
}
.page-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 14px;
    letter-spacing: -0.02em;
}
.page-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 10px;
}
.page-content p,
.page-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 12px;
}
.page-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}
.page-content li {
    margin-bottom: 6px;
}
.page-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.page-content a:hover {
    text-decoration: underline;
}
.page-content strong {
    color: var(--dark);
}

.page-highlight {
    background: var(--gray-50);
    border-left: 3px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}
.page-highlight p {
    margin-bottom: 0;
}

.page-warning {
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}
.page-warning p {
    margin-bottom: 0;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
    cursor: pointer;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.wa-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
@media (max-width: 600px) {
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .wa-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   NOTIFLY PAGE - body.page-notifly overrides & unique styles
   ============================================ */

/* --- Header overrides --- */
.page-notifly .header {
    background: #0a1929;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}
.page-notifly .header.scrolled {
    background: #0a1929;
    box-shadow: none;
    border-bottom: none;
}
.page-notifly .logo { gap: 12px; }
.page-notifly .logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.page-notifly .header.scrolled .logo-img { height: 40px; }
.page-notifly .logo-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }
.page-notifly .logo-product { display: flex; align-items: center; gap: 8px; }
.page-notifly .logo-product-icon {
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--noti); display: flex; align-items: center; justify-content: center;
}
.page-notifly .logo-product-icon svg { width: 16px; height: 16px; color: white; }
.page-notifly .logo-product-name { font-size: 16px; font-weight: 700; color: white; letter-spacing: -0.01em; }
.page-notifly .nav-menu a { font-size: 14px; font-weight: 500; color: var(--gray-400); }
.page-notifly .nav-menu a:not(.btn-nav):hover { color: white; }
.page-notifly .nav-menu a:not(.btn-nav)::after { display: none; }
.page-notifly .btn-nav {
    padding: 9px 20px !important;
    background: var(--noti) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}
.page-notifly .btn-nav:hover { background: var(--noti-dark) !important; transform: translateY(-1px); }
.page-notifly .nav-toggle span { background: white; }

/* --- Section header overrides --- */
.page-notifly .section-header { max-width: none; margin-bottom: 56px; }
.page-notifly .section-header h2::after { display: none; }
.page-notifly .section-header p { font-size: 17px; max-width: 600px; }

/* --- Section utilities --- */
.section { padding: 60px 0; }
.section-dark { background: var(--dark); }
.section-light { background: var(--gray-50); }
.section-header-light h2 { color: white; }
.section-header-light p { color: var(--gray-400); }

/* --- Hero overrides (notifly page) --- */
.page-notifly .hero {
    position: relative; overflow: hidden;
    background: var(--dark);
    padding: 140px 0 100px;
    min-height: 600px;
    display: block;
    border-bottom: none;
}
.page-notifly .hero > .container {
    padding-top: 0; padding-bottom: 0;
    display: block; max-width: 1180px;
}
.page-notifly .hero-glow-1 { width: 600px; height: 600px; background: rgba(62, 180, 137, 0.12); top: -200px; right: -100px; }
.page-notifly .hero-glow-2 { width: 400px; height: 400px; background: rgba(34, 211, 238, 0.08); bottom: -100px; left: -100px; }
.page-notifly .hero-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    text-align: left; max-width: none;
}
.page-notifly .hero-text { position: relative; z-index: 2; }
.page-notifly .hero h1 { color: white; margin: 0 0 20px; max-width: none; text-shadow: none; text-align: left; }
.page-notifly .hero h1 span { color: var(--noti); }
.page-notifly .hero-desc { font-size: 17px; color: var(--gray-400); line-height: 1.7; margin-bottom: 24px; }
.page-notifly .hero-features { display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.page-notifly .hero-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7);
}
.page-notifly .hero-feature svg { width: 18px; height: 18px; stroke: var(--noti); }
.page-notifly .hero-cta { justify-content: flex-start; }
.page-notifly .btn-hero { padding: 14px 28px; border-radius: var(--radius-md); font-size: 15px; font-weight: 600; box-shadow: none; }
.page-notifly .btn-hero-primary { background: var(--noti); color: white; }
.page-notifly .btn-hero-primary:hover { background: var(--noti-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(62,180,137,0.3); }
.page-notifly .btn-hero-secondary { background: rgba(255,255,255,0.06); color: white; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: none; }
.page-notifly .btn-hero-secondary:hover { background: rgba(255,255,255,0.1); }

/* --- NotiFly hero subtle dot grid --- */
.nf-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(62, 180, 137, 0.35) 1.2px, transparent 1.2px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 80% at 65% 50%, rgba(0,0,0,0.7) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 65% 50%, rgba(0,0,0,0.7) 0%, transparent 70%);
    pointer-events: none;
}

/* --- NotiFly dashboard card --- */
.nf-dashboard {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.nf-dash-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nf-dash-dots { display: flex; gap: 6px; }
.nf-dash-dots span { width: 8px; height: 8px; border-radius: 50%; }
.nf-dash-title { font-size: 13px; font-weight: 600; color: var(--gray-400); margin-left: 4px; }
.nf-dash-live {
    margin-left: auto; font-size: 11px; font-weight: 700; color: var(--noti);
    display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: 0.06em;
}
.nf-dash-live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--noti);
    animation: pulse 2s ease-in-out infinite;
    will-change: transform, opacity;
}

/* Big stat */
.nf-dash-big-stat { text-align: center; margin-bottom: 24px; }
.nf-dash-big-number {
    font-size: 42px; font-weight: 800; color: white;
    letter-spacing: -0.03em; line-height: 1;
}
.nf-dash-big-label { font-size: 13px; color: var(--gray-400); margin-top: 6px; }

/* Stat row */
.nf-dash-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin-bottom: 20px;
}
.nf-dash-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md); padding: 14px 12px;
    text-align: center;
}
.nf-dash-stat-icon {
    width: 28px; height: 28px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px;
}
.nf-dash-stat-icon svg { width: 14px; height: 14px; }
.nf-dash-stat-delivered { background: rgba(62,180,137,0.1); }
.nf-dash-stat-delivered svg { stroke: var(--noti); }
.nf-dash-stat-read { background: rgba(83,189,235,0.1); }
.nf-dash-stat-read svg { stroke: #53BDEB; }
.nf-dash-stat-replied { background: rgba(167,139,250,0.1); }
.nf-dash-stat-replied svg { stroke: #a78bfa; }
.nf-dash-stat-val { font-size: 18px; font-weight: 700; color: white; line-height: 1; }
.nf-dash-stat-lbl { font-size: 11px; color: var(--gray-500); margin-top: 3px; }
.nf-dash-stat-pct { font-size: 11px; font-weight: 700; margin-top: 4px; }
.nf-dash-stat-pct-green { color: var(--noti); }
.nf-dash-stat-pct-blue { color: #53BDEB; }
.nf-dash-stat-pct-purple { color: #a78bfa; }

/* Mini bar chart */
.nf-dash-chart-label { font-size: 11px; color: var(--gray-500); margin-bottom: 8px; font-weight: 600; }
.nf-dash-chart {
    display: flex; gap: 6px; align-items: flex-end; height: 56px;
    margin-bottom: 18px;
}
.nf-dash-bar {
    flex: 1; height: var(--h, 50%);
    background: rgba(62,180,137,0.3); border-radius: 3px 3px 0 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative;
}
.nf-dash-bar span {
    position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
    font-size: 9px; color: var(--gray-500); white-space: nowrap;
}
.nf-dash-bar-today { background: var(--noti); }

/* Recent activity rows */
.nf-dash-activity {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px; margin-top: 28px;
    display: flex; flex-direction: column; gap: 10px;
}
.nf-dash-row {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
}
.nf-dash-row-icon {
    width: 28px; height: 28px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nf-dash-row-icon svg { width: 14px; height: 14px; }
.nf-dash-row-otp { background: rgba(251,191,36,0.1); }
.nf-dash-row-otp svg { stroke: #fbbf24; }
.nf-dash-row-order { background: rgba(34,211,238,0.1); }
.nf-dash-row-order svg { stroke: var(--primary-light); }
.nf-dash-row-promo { background: rgba(62,180,137,0.1); }
.nf-dash-row-promo svg { stroke: var(--noti); }
.nf-dash-row-text { font-size: 13px; color: var(--gray-300); font-weight: 500; flex: 1; }
.nf-dash-row-count { font-size: 13px; color: white; font-weight: 700; }
.nf-dash-row-badge {
    font-size: 10px; font-weight: 600; color: var(--noti);
    background: rgba(62,180,137,0.1); padding: 3px 8px; border-radius: 100px;
}
.nf-dash-row-badge-hot {
    color: #fbbf24; background: rgba(251,191,36,0.1);
}

/* Hero badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 100px;
    background: rgba(62, 180, 137, 0.1);
    border: 1px solid rgba(62, 180, 137, 0.2);
    font-size: 13px; font-weight: 600; color: var(--noti-light);
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--noti);
    animation: pulse 2s ease-in-out infinite;
    will-change: transform, opacity;
}

/* Hero visual / mockup */
.page-notifly .hero-visual { position: relative; z-index: 2; }
.hero-mockup {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl); padding: 32px;
}
.mockup-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot-green { background: var(--noti); }
.mockup-dot-blue { background: var(--primary); }
.mockup-dot-gray { background: var(--gray-500); }
.mockup-title { font-size: 14px; font-weight: 600; color: var(--gray-400); }
.mockup-chat { display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
    padding: 12px 16px; border-radius: 12px; font-size: 13px; line-height: 1.5;
    max-width: 85%; animation: fadeIn 0.5s ease-out both;
}
.chat-out { background: var(--noti); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-in { background: rgba(255,255,255,0.06); color: var(--gray-300); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg:nth-child(2) { animation-delay: 0.3s; }
.chat-msg:nth-child(3) { animation-delay: 0.6s; }
.chat-msg:nth-child(4) { animation-delay: 0.9s; }
.chat-status { font-size: 11px; color: var(--gray-500); text-align: right; margin-top: 4px; }
.chat-status svg { display: inline; width: 14px; height: 14px; vertical-align: middle; margin-left: 4px; }

/* --- About / What is NotiFly --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 16px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }
.about-list { list-style: none; margin-top: 24px; }
.about-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; font-size: 15px; color: var(--gray-600);
}
.about-list li svg { width: 20px; height: 20px; stroke: var(--noti); flex-shrink: 0; margin-top: 2px; }

/* --- Feature cards (notifly page 3-col grid) --- */
/* --- About Highlights (compact feature list) --- */
.about-highlights { display: flex; flex-direction: column; gap: 20px; }
.about-highlight {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 22px; border-radius: var(--radius-md);
    background: rgba(62, 180, 137, 0.03); border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.about-highlight:hover { border-color: rgba(62, 180, 137, 0.25); }
.about-highlight svg {
    width: 22px; height: 22px; stroke: var(--noti-dark); flex-shrink: 0;
}
.about-highlight strong {
    display: block; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 2px;
}
.about-highlight span { font-size: 13px; color: var(--gray-500); }

.page-notifly .features-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.page-notifly .nf-features-grid { grid-template-columns: 1fr 1fr; }
.feature-card {
    background: rgba(62, 180, 137, 0.03); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition);
}
.feature-card:hover { border-color: rgba(62, 180, 137, 0.25); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.feature-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md);
    background: white; border: 1px solid rgba(62, 180, 137, 0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--noti-dark); }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--dark); }
.feature-card h4 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* --- SlotMate Section --- */
.nf-slotmate-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.nf-slotmate-text h2 { margin-bottom: 16px; }
.nf-slotmate-tagline {
    font-size: 17px; color: var(--gray-600); line-height: 1.7; margin-bottom: 12px; font-weight: 500;
}
.nf-slotmate-desc {
    font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px;
}
.nf-slotmate-features { list-style: none; margin: 0 0 20px; padding: 0; }
.nf-slotmate-features li {
    font-size: 15px; color: var(--gray-600); padding: 7px 0;
    display: flex; align-items: center; gap: 12px;
}
.nf-slotmate-features li svg { width: 18px; height: 18px; stroke: var(--noti); flex-shrink: 0; }

/* WhatsApp chat mock */
.nf-wa-chat {
    background: #efeae2;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c1.5 0 2.5 1 2.5 2.5S31.5 10 30 10s-2.5-1-2.5-2.5S28.5 5 30 5z' fill='%23d6d0c5' fill-opacity='0.3'/%3E%3C/svg%3E");
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    max-width: 380px; margin: 0 auto;
    display: flex; flex-direction: column;
}
.nf-wa-header {
    background: linear-gradient(135deg, #075e54, #128c7e);
    padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.nf-wa-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.25);
}
.nf-wa-avatar svg { width: 18px; height: 18px; stroke: white; }
.nf-wa-name { font-size: 15px; font-weight: 700; color: white; }
.nf-wa-status { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 1px; }
.nf-wa-body {
    padding: 20px 16px; display: flex; flex-direction: column; gap: 10px;
    flex: 1; overflow-y: auto; justify-content: flex-end;
}
.nf-wa-msg {
    max-width: 88%; padding: 10px 14px; border-radius: 10px;
    font-size: 13.5px; line-height: 1.5; position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.nf-wa-sent {
    background: #d9fdd3; align-self: flex-end;
    border-bottom-right-radius: 3px; color: #1a1a1a;
}
.nf-wa-recv {
    background: white; align-self: flex-start;
    border-bottom-left-radius: 3px; color: #1a1a1a;
}
.nf-wa-buttons {
    display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.nf-wa-buttons span {
    font-size: 12px; font-weight: 600; color: #075e54;
    border: 1px solid #b2dfdb; border-radius: 8px;
    padding: 6px 14px; cursor: default; background: rgba(7,94,84,0.04);
}
.nf-wa-btn-confirm {
    background: #075e54 !important; color: white !important;
    border-color: #075e54 !important;
}
.nf-wa-final {
    background: #d4edda; border: 1px solid #b7dfbf;
}
.nf-wa-msg strong { display: block; margin: 4px 0 2px; }

.nf-slotmate-for {
    text-align: center; font-size: 13px; color: var(--gray-400);
    margin-top: 16px;
}

/* --- How It Works / Steps (timeline layout) --- */
.nf-steps {
    max-width: 640px; margin: 0 auto;
}
.nf-step {
    display: flex; gap: 24px;
}
.nf-step-left {
    display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}
.nf-step-number {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--noti); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 800; flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(62,180,137,0.3);
}
.nf-step-line {
    width: 2px; flex: 1; background: var(--gray-200); margin: 8px 0;
    min-height: 24px;
}
.nf-step-content {
    display: flex; gap: 18px; align-items: flex-start;
    background: rgba(62, 180, 137, 0.03); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 28px;
    margin-bottom: 16px; flex: 1; transition: all var(--transition);
}
.nf-step-content:hover {
    border-color: rgba(62, 180, 137, 0.25); transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.nf-step-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: white; border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nf-step-icon svg { width: 20px; height: 20px; stroke: var(--noti-dark); }
.nf-step-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.nf-step-content p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* --- Architecture / Why NotiFly --- */
.arch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.arch-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); padding: 36px;
    transition: all var(--transition);
}
.arch-card:hover {
    background: rgba(255,255,255,0.07); border-color: rgba(62,180,137,0.25);
    transform: translateY(-3px);
}
.arch-card h3 { color: white; margin-bottom: 14px; display: flex; align-items: center; gap: 14px; font-size: 18px; }
.arch-card h3 svg {
    width: 22px; height: 22px; stroke: var(--noti); flex-shrink: 0;
    background: rgba(62,180,137,0.12); padding: 8px; border-radius: var(--radius-sm);
    width: 38px; height: 38px; box-sizing: content-box;
}
.arch-card p { font-size: 15px; color: var(--gray-400); line-height: 1.7; }
.arch-card ul { list-style: none; margin-top: 12px; }
.arch-card ul li {
    font-size: 14px; color: var(--gray-400); padding: 6px 0;
    display: flex; align-items: center; gap: 8px;
}
.arch-card ul li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--noti); flex-shrink: 0;
}

/* --- Privacy / Security cards --- */
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.privacy-card {
    background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 28px; display: flex; gap: 16px; transition: all var(--transition);
}
.privacy-card:hover {
    border-color: rgba(62, 180, 137, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.privacy-icon {
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: var(--noti-50); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.privacy-icon svg { width: 22px; height: 22px; stroke: var(--noti); }
.privacy-card h3 { margin-bottom: 6px; font-size: 16px; }
.privacy-card h4 { margin-bottom: 6px; }
.privacy-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* --- Platform Controls --- */
.controls-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.control-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: white; border: 1px solid var(--gray-200);
    border-left: 3px solid var(--gray-200);
    border-radius: var(--radius-sm); padding: 22px 24px;
    transition: all var(--transition);
}
.control-card:hover { border-color: rgba(62, 180, 137, 0.25); box-shadow: 0 4px 20px rgba(0,0,0,0.12); transform: translateY(-3px); }
.control-icon {
    width: 42px; height: 42px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.control-icon svg { width: 20px; height: 20px; }
.control-card.cc-blue .control-icon    { background: #e0f2fe; }
.control-card.cc-blue .control-icon svg { stroke: #0284c7; }
.control-card.cc-blue { border-left-color: #0284c7; }
.control-card.cc-emerald .control-icon    { background: #d1fae5; }
.control-card.cc-emerald .control-icon svg { stroke: #059669; }
.control-card.cc-emerald { border-left-color: #059669; }
.control-card.cc-violet .control-icon    { background: #ede9fe; }
.control-card.cc-violet .control-icon svg { stroke: #7c3aed; }
.control-card.cc-violet { border-left-color: #7c3aed; }
.control-card.cc-rose .control-icon    { background: #ffe4e6; }
.control-card.cc-rose .control-icon svg { stroke: #e11d48; }
.control-card.cc-rose { border-left-color: #e11d48; }
.control-card.cc-amber .control-icon    { background: #fef3c7; }
.control-card.cc-amber .control-icon svg { stroke: #d97706; }
.control-card.cc-amber { border-left-color: #d97706; }
.control-card.cc-cyan .control-icon    { background: #cffafe; }
.control-card.cc-cyan .control-icon svg { stroke: #0891b2; }
.control-card.cc-cyan { border-left-color: #0891b2; }
.control-card.cc-slate .control-icon    { background: #e2e8f0; }
.control-card.cc-slate .control-icon svg { stroke: #475569; }
.control-card.cc-slate { border-left-color: #475569; }
.control-card.cc-indigo .control-icon    { background: #e0e7ff; }
.control-card.cc-indigo .control-icon svg { stroke: #4f46e5; }
.control-card.cc-indigo { border-left-color: #4f46e5; }
.control-card h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.control-card h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.control-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* --- Section Badge (small label above section title, inspired by WhatChimp) --- */
.nf-section-badge {
    display: block; width: fit-content; margin: 0 auto 12px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--noti-dark); background: var(--noti-50);
    padding: 5px 14px; border-radius: 20px;
}
.section-dark .nf-section-badge {
    background: rgba(62,180,137,0.15); color: var(--noti-light);
}

/* --- Platform Capabilities Section --- */
.nf-cap-large-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px;
}
.nf-cap-large-card {
    background: rgba(62, 180, 137, 0.03); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 36px; transition: all var(--transition);
}
.nf-cap-large-card:hover {
    border-color: rgba(62, 180, 137, 0.25); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.nf-cap-large-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.06);
}
.nf-cap-large-icon svg { width: 26px; height: 26px; }
.nf-cap-icon-green { background: white; }
.nf-cap-icon-green svg { stroke: #059669; }
.nf-cap-icon-blue { background: white; }
.nf-cap-icon-blue svg { stroke: #0284c7; }
.nf-cap-icon-purple { background: white; }
.nf-cap-icon-purple svg { stroke: #7c3aed; }
.nf-cap-icon-amber { background: white; }
.nf-cap-icon-amber svg { stroke: #d97706; }
.nf-cap-icon-rose { background: white; }
.nf-cap-icon-rose svg { stroke: #e11d48; }
.nf-cap-large-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.nf-cap-large-card p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.nf-cap-list { list-style: none; margin: 0; padding: 0; }
.nf-cap-list li {
    font-size: 14px; color: var(--gray-600); padding: 6px 0; display: flex; align-items: center; gap: 10px;
}
.nf-cap-list li::before {
    content: ''; width: 18px; height: 18px; flex-shrink: 0;
    background: var(--noti-50); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px; background-repeat: no-repeat; background-position: center;
}

.nf-cap-small-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.nf-cap-small-card {
    background: rgba(62, 180, 137, 0.03); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition);
}
.nf-cap-small-card:hover {
    border-color: rgba(62, 180, 137, 0.25); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.nf-cap-small-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
    border: 1px solid rgba(0,0,0,0.06);
}
.nf-cap-small-icon svg { width: 22px; height: 22px; }
.nf-cap-small-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.nf-cap-small-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* --- Integrations Section --- */
.nf-integrations-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.nf-integration-card {
    background: rgba(62, 180, 137, 0.03); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 32px; text-align: center; transition: all var(--transition);
}
.nf-integration-card:hover {
    border-color: rgba(62, 180, 137, 0.25); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.nf-integration-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: white; border: 1px solid rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.nf-integration-icon svg { width: 24px; height: 24px; stroke: var(--noti-dark); }
.nf-integration-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.nf-integration-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.nf-integrations-note {
    text-align: center; margin-top: 32px; font-size: 15px; color: var(--gray-500);
}
.nf-integrations-note a {
    color: var(--noti-a11y); font-weight: 600; text-decoration: underline;
}

/* --- API Section (two-column layout) --- */
.nf-api-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.nf-api-left { display: flex; flex-direction: column; }
.api-block {
    background: #0d1117; border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); overflow: hidden;
}
.api-header {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.api-header-dots { display: flex; gap: 6px; margin-right: 6px; }
.api-header-dots span {
    width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1);
}
.api-header-dots span:first-child { background: #ff5f57; }
.api-header-dots span:nth-child(2) { background: #febc2e; }
.api-header-dots span:nth-child(3) { background: #28c840; }
.api-method {
    padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 700;
    background: rgba(62,180,137,0.15); color: var(--noti);
}
.api-url { font-size: 13px; font-family: 'SF Mono', monospace; color: var(--gray-400); }
.api-body {
    padding: 24px; font-size: 13px; font-family: 'SF Mono', Consolas, monospace;
    color: var(--gray-300); line-height: 1.8; white-space: pre; overflow-x: auto;
}
.api-lang-bar {
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
    margin-top: 14px;
}
.api-lang-label {
    font-size: 12px; font-weight: 600; color: var(--gray-400);
    margin-right: 4px;
}
.api-lang-pill {
    font-size: 12px; font-weight: 600;
    padding: 5px 14px; border-radius: 6px;
    font-family: 'SF Mono', Consolas, monospace;
    border: 1px solid;
}
.api-lang-php    { color: #7A86B8; background: #f0f0fa; border-color: #d8daf0; }
.api-lang-python { color: #3776AB; background: #e8f4fc; border-color: #c8e2f4; }
.api-lang-node   { color: #539E43; background: #ecf8ea; border-color: #cde9c8; }
.api-lang-java   { color: #E76F00; background: #fef3e8; border-color: #fad9b0; }
.api-lang-csharp { color: #6A1577; background: #f5ecf6; border-color: #e2cfe4; }
.api-lang-pill-any {
    color: var(--noti-dark); background: var(--noti-50);
    border-color: rgba(62,180,137,0.2);
    font-family: inherit;
}
.api-key { color: #7ee787; }
.api-str { color: #a5d6ff; }
.api-comment { color: #8b949e; }

.nf-api-info { display: flex; flex-direction: column; gap: 16px; }
.nf-api-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: rgba(62, 180, 137, 0.03); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 22px; transition: all var(--transition);
}
.nf-api-card:hover {
    border-color: rgba(62, 180, 137, 0.25); transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.nf-api-card-icon {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: white; border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nf-api-card-icon svg { width: 18px; height: 18px; stroke: var(--noti-dark); }
.nf-api-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.nf-api-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; margin: 0; }
.nf-api-card code {
    background: var(--gray-100); padding: 2px 6px; border-radius: 4px;
    font-size: 12px; color: var(--gray-700); font-family: 'SF Mono', Consolas, monospace;
}

/* --- Pricing / Plans --- */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
    background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 36px; text-align: center; transition: all var(--transition);
}
.plan-card:hover {
    border-color: rgba(62, 180, 137, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.plan-card.featured {
    border-color: var(--noti); position: relative;
    box-shadow: 0 8px 32px rgba(62,180,137,0.15);
}
.plan-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px; background: var(--noti); color: white;
    font-size: 12px; font-weight: 700; border-radius: 100px;
}
.plan-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.plan-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.plan-features { list-style: none; text-align: left; margin-bottom: 28px; }
.plan-features li {
    padding: 8px 0; font-size: 14px; color: var(--gray-600);
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}
.plan-features li svg { width: 18px; height: 18px; stroke: var(--noti); flex-shrink: 0; }
.btn-plan {
    display: block; width: 100%; padding: 12px;
    border-radius: var(--radius-md); font-size: 14px; font-weight: 600;
    text-align: center; transition: all var(--transition);
}
.btn-plan-primary { background: var(--noti); color: white; }
.btn-plan-primary:hover { background: var(--noti-dark); }
.btn-plan-outline { border: 1px solid var(--gray-300); color: var(--gray-700); }
.btn-plan-outline:hover { border-color: var(--noti); color: var(--noti); }

/* --- CTA Section --- */
.cta-section { background: var(--dark); padding: 60px 0; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: var(--gray-400); font-size: 17px; margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-contact {
    margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.cta-contact-item { display: flex; align-items: center; gap: 10px; }
.cta-contact-item svg { width: 18px; height: 18px; stroke: var(--noti); }
.cta-contact-item span { font-size: 14px; color: var(--gray-400); }
.cta-contact-item a { color: var(--gray-300); }

/* --- Mobile menu override for notifly page --- */
.page-notifly .mobile-menu-nav .btn-mobile { background: var(--noti); }

/* --- NotiFly page responsive --- */
@media (max-width: 900px) {
    .page-notifly .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .page-notifly .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .page-notifly .features-grid { grid-template-columns: 1fr 1fr; }
    .nf-slotmate-layout { grid-template-columns: 1fr; gap: 40px; }
    .nf-api-layout { grid-template-columns: 1fr; }
    .nf-step-content { padding: 24px; }
    .arch-grid { grid-template-columns: 1fr; }
    .nf-cap-large-grid { grid-template-columns: 1fr; }
    .nf-cap-small-grid { grid-template-columns: 1fr 1fr; }
    .nf-integrations-grid { grid-template-columns: 1fr 1fr; }
    .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .privacy-grid { grid-template-columns: 1fr; }
    .cta-contact { flex-direction: column; align-items: center; gap: 16px; }
}
@media (max-width: 600px) {
    .page-notifly .features-grid,
    .page-notifly .nf-features-grid,
    .nf-api-layout { grid-template-columns: 1fr; }
    .nf-step-content { flex-direction: column; gap: 12px; padding: 20px; }
    .nf-step { gap: 16px; }
    .page-notifly .hero { padding: 120px 0 60px; }
    .nf-cap-small-grid { grid-template-columns: 1fr; }
    .nf-integrations-grid { grid-template-columns: 1fr; }
    .controls-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NOTIFLY PRICING PAGE
   ============================================ */

/* --- Hero Layout --- */
.page-notifly-pricing .hero h1 { text-align: left; }
.nfp-hero-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.nfp-hero-text { position: relative; z-index: 2; }
.nfp-hero-text .hero-desc { max-width: 480px; }

/* Formula strip */
.nfp-hero-formula {
    display: flex; align-items: center; gap: 12px; margin-top: 32px; flex-wrap: wrap;
}
.nfp-formula-item {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 12px 16px; font-size: 13px; color: var(--gray-300);
    line-height: 1.4;
}
.nfp-formula-item strong { color: white; }
.nfp-formula-item small { font-size: 11px; color: var(--gray-500); }
.nfp-formula-num {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: var(--noti); color: white; font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.nfp-formula-plus {
    font-size: 20px; font-weight: 300; color: var(--gray-500);
}
.nfp-formula-total {
    background: rgba(62,180,137,0.1); border-color: rgba(62,180,137,0.25);
}
.nfp-formula-total strong { color: var(--noti-light); }

/* Hero model summary cards */
.nfp-hero-models {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px;
}
.nfp-hero-model {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 14px 16px; font-size: 13px; color: var(--gray-400);
    line-height: 1.5;
}
.nfp-hero-model strong { color: white; display: block; margin-bottom: 2px; font-size: 14px; }

/* Hero perks list */
.nfp-hero-perks { margin-top: 28px; display: grid; gap: 12px; }
.nfp-hero-perk {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; color: var(--gray-400); line-height: 1.4;
}
.nfp-hero-perk svg { width: 18px; height: 18px; stroke: var(--noti); flex-shrink: 0; margin-top: 1px; }
.nfp-hero-perk strong { color: white; display: block; font-size: 14px; }
.nfp-hero-perk span { font-size: 12px; }

/* --- Calculator Card --- */
.nfp-calc {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); overflow: hidden; position: relative; z-index: 2;
    backdrop-filter: blur(12px);
}
.nfp-calc-header {
    padding: 14px 20px 12px; display: flex; align-items: center;
    justify-content: space-between; gap: 12px; flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nfp-calc-header h3 {
    font-size: 15px; font-weight: 700; color: white; margin: 0;
}
.nfp-calc-toggle {
    display: flex; gap: 3px; background: rgba(255,255,255,0.06);
    border-radius: 8px; padding: 3px;
}
.nfp-calc-tab {
    padding: 7px 14px; border: none; border-radius: 6px;
    font-size: 12px; font-weight: 600; cursor: pointer;
    background: transparent; color: var(--gray-400); font-family: var(--font);
    transition: all var(--transition);
}
.nfp-calc-tab:hover { color: white; }
.nfp-calc-tab-active {
    background: var(--noti) !important; color: white !important;
    box-shadow: 0 2px 6px rgba(62,180,137,0.3);
}
.nfp-calc-body { padding: 10px 20px; }
.nfp-calc-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 0;
}
.nfp-calc-row input {
    width: 90px; padding: 6px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06); color: white; font-size: 13px; text-align: right;
    font-family: 'SF Mono', Consolas, monospace; font-weight: 600;
    transition: border-color var(--transition);
}
.nfp-calc-row input:focus {
    outline: none; border-color: var(--noti);
    box-shadow: 0 0 0 3px rgba(62,180,137,0.15);
}
.nfp-calc-row input:disabled {
    opacity: 0.4; cursor: not-allowed;
}
.nfp-calc-footer {
    padding: 10px 20px 14px; background: rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.nfp-calc-line {
    display: flex; justify-content: space-between; align-items: center;
    padding: 3px 0; font-size: 13px; color: var(--gray-400);
}
.nfp-calc-line strong {
    font-family: 'SF Mono', Consolas, monospace; color: var(--gray-300); font-size: 13px;
}
.nfp-calc-line small { font-size: 11px; color: var(--gray-500); }
.nfp-calc-line-dim { opacity: 0.65; }
.nfp-calc-line-total {
    padding-top: 8px; font-size: 15px; font-weight: 700;
}
.nfp-calc-line-total strong { color: var(--noti-light); font-size: 20px; }
.nfp-calc-divider {
    height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0;
}
.nfp-calc-fx {
    margin-top: 8px; font-size: 11px; color: var(--gray-500);
    padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}

/* CTA override — noti-accented light section */
.nfp-cta-light {
    background: var(--noti-50) !important;
    border-top: 3px solid var(--noti);
}
.nfp-cta-light h2 { color: var(--dark) !important; }
.nfp-cta-light p { color: var(--gray-600) !important; }
.nfp-cta-light .btn-hero-secondary {
    background: white !important; color: var(--dark) !important;
    border: 1px solid var(--gray-300) !important;
}
.nfp-cta-light .btn-hero-secondary:hover {
    border-color: var(--noti) !important; color: var(--noti-dark) !important;
}

/* --- Two Pricing Models --- */
.nfp-models-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1100px; margin: 0 auto;
    align-items: stretch;
}
.nfp-model-card {
    background: white; border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 32px; transition: all var(--transition);
    display: flex; flex-direction: column;
}
.nfp-model-card .nfp-model-best { margin-top: auto; }
.nfp-model-card:hover {
    border-color: rgba(62, 180, 137, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px);
}
.nfp-model-card-alt {
    background: var(--dark); border-color: var(--gray-700); color: var(--gray-300);
}
.nfp-model-card-alt:hover { border-color: var(--noti); }
.nfp-model-card-alt h3 { color: white; }
.nfp-model-card-alt .nfp-model-subtitle { color: var(--noti-light); }
.nfp-model-card-alt .nfp-model-best { background: rgba(62,180,137,0.1); color: var(--noti-light); border-color: rgba(62,180,137,0.2); }
.nfp-model-best {
    font-size: 13px; font-weight: 600; color: var(--noti-dark);
    background: var(--noti-50); border: 1px solid rgba(62,180,137,0.15);
    border-radius: 8px; padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
}

/* Bill step items (Separate model card) */
.nfp-bill-step-items { margin-bottom: 16px; }
.nfp-bill-item {
    display: flex; align-items: center; gap: 10px; padding: 8px 0;
    font-size: 14px; color: var(--gray-300);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nfp-bill-item:last-child { border-bottom: none; }
.nfp-bill-item strong {
    margin-left: auto; font-size: 13px;
    font-family: 'SF Mono', Consolas, monospace; color: var(--gray-400);
}
.nfp-bill-item-num {
    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
    background: rgba(62,180,137,0.2); color: var(--noti-light);
    font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.nfp-model-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--noti-50); display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.nfp-model-icon svg { width: 24px; height: 24px; stroke: var(--noti-dark); }
.nfp-model-card-alt .nfp-model-icon { background: rgba(62,180,137,0.15); }
.nfp-model-card-alt .nfp-model-icon svg { stroke: var(--noti-light); }
.nfp-model-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.nfp-model-subtitle {
    font-size: 14px; font-weight: 600; color: var(--noti-dark); margin-bottom: 14px;
}
.nfp-model-card p { font-size: 14px; line-height: 1.6; color: var(--gray-500); margin-bottom: 16px; }
.nfp-model-card-alt p { color: var(--gray-400); }

/* All-Inclusive rate rows */
.nfp-inc-rates { margin-bottom: 20px; }
.nfp-inc-rate {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
}
.nfp-inc-rate + .nfp-inc-rate { border-top: 1px dashed var(--gray-200); }
.nfp-inc-rate strong {
    margin-left: auto; font-size: 18px; font-weight: 800; color: var(--dark);
    font-family: 'SF Mono', Consolas, monospace;
}
.nfp-inc-rate small {
    font-size: 12px; font-weight: 500; color: var(--gray-400);
    font-family: var(--font); margin-left: 2px;
}
.nfp-inc-rate-free-row strong { color: var(--noti-dark); }

/* --- Bill Steps (How It Works) --- */
.nfp-bill-steps { max-width: 760px; margin: 0 auto; }
.nfp-bill-step {
    display: flex; gap: 20px; padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
}
.nfp-bill-step:last-child { border-bottom: none; }
.nfp-bill-step-num {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: var(--noti); color: white; font-size: 18px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.nfp-bill-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.nfp-bill-currency {
    font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px;
    background: var(--gray-100); color: var(--gray-600); vertical-align: middle;
    margin-left: 6px; text-transform: uppercase; letter-spacing: 0.04em;
}
.nfp-bill-step p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 12px; }
.nfp-bill-rate {
    font-size: 13px; color: var(--gray-600); font-weight: 600;
    background: var(--gray-50); border-radius: 8px; padding: 10px 14px;
    border: 1px solid var(--gray-200);
}
.nfp-bill-rate small { font-weight: 500; color: var(--gray-400); }
.nfp-bill-rates-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.nfp-bill-rates-grid > div {
    display: flex; align-items: center; gap: 8px; font-size: 14px;
    padding: 8px 12px; background: var(--gray-50); border-radius: 8px;
    border: 1px solid var(--gray-200);
}
.nfp-bill-rates-grid strong {
    margin-left: auto; font-family: 'SF Mono', Consolas, monospace; font-size: 13px;
}

/* --- Platform Tier Cards --- */
.nfp-tiers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 920px; margin: 0 auto;
}
.nfp-tier-card {
    background: white; border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center; position: relative;
    transition: all var(--transition);
}
.nfp-tier-card:hover {
    border-color: rgba(62,180,137,0.3);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px);
}
.nfp-tier-card-featured {
    border-color: var(--noti); box-shadow: 0 8px 32px rgba(62,180,137,0.12);
}
.nfp-tier-name {
    font-size: 14px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 8px;
}
.nfp-tier-range { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.nfp-tier-price {
    font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 4px;
    font-family: 'SF Mono', Consolas, monospace;
}
.nfp-tier-price span {
    font-size: 14px; font-weight: 600; color: var(--gray-500); font-family: var(--font);
}
.nfp-tier-card-featured .nfp-tier-price { color: var(--noti-dark); }
.nfp-tier-example {
    font-size: 13px; color: var(--gray-500); margin-top: 12px;
    padding-top: 12px; border-top: 1px solid var(--gray-200);
}
.nfp-tier-example strong { color: var(--gray-700); }

/* --- Use Case Example Cards --- */
.nfp-example-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.nfp-example-card {
    background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 28px; position: relative; transition: all var(--transition);
}
.nfp-example-card:hover {
    border-color: rgba(62,180,137,0.25);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.nfp-example-card-featured {
    border-color: var(--noti); box-shadow: 0 4px 20px rgba(62,180,137,0.1);
}
.nfp-example-badge {
    position: absolute; top: -10px; right: 16px;
    padding: 3px 12px; background: var(--noti); color: white;
    font-size: 11px; font-weight: 700; border-radius: 20px;
}
.nfp-example-label {
    font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px;
}
.nfp-example-mix {
    font-size: 12px; color: var(--gray-500); margin-bottom: 16px;
}
.nfp-example-lines {
    margin-bottom: 16px;
}
.nfp-example-lines > div {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; font-size: 13px; color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
}
.nfp-example-lines > div:last-child { border-bottom: none; }
.nfp-example-lines strong {
    font-family: 'SF Mono', Consolas, monospace; font-size: 13px; color: var(--gray-700);
}
.nfp-example-total {
    background: var(--gray-50); border-radius: 10px; padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
}
.nfp-example-total span { font-size: 13px; font-weight: 600; color: var(--gray-500); }
.nfp-example-total strong {
    font-size: 22px; font-weight: 800; color: var(--dark);
    font-family: 'SF Mono', Consolas, monospace; margin-left: auto;
}
.nfp-example-total small {
    font-size: 12px; color: var(--gray-400); font-weight: 600;
}
.nfp-example-card-featured .nfp-example-total {
    background: var(--noti-50);
}
.nfp-example-card-featured .nfp-example-total strong { color: var(--noti-dark); }

/* Use-case editable inputs */
.nfp-uc-inputs {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
    margin-left: auto;
    margin-bottom: 0;
}

/* Combined top bar: header + inputs */
.nfp-usecase-topbar {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    padding: 16px 20px; margin-bottom: 28px;
    background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
}
.nfp-uc-input {
    display: flex; align-items: center; gap: 6px; font-size: 13px;
}
.nfp-uc-input input {
    width: 72px; padding: 6px 8px; border-radius: 6px;
    border: 1px solid var(--gray-300); font-size: 13px; text-align: right;
    font-family: 'SF Mono', Consolas, monospace; font-weight: 600;
    background: white; color: var(--dark);
}
.nfp-uc-input input:focus {
    outline: none; border-color: var(--noti);
    box-shadow: 0 0 0 3px rgba(62,180,137,0.12);
}
.nfp-uc-total-msgs {
    padding-left: 10px; border-left: 1px solid var(--gray-300);
}
.nfp-uc-total-msgs span { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.nfp-uc-total-count {
    font-family: 'SF Mono', Consolas, monospace; font-size: 14px; color: var(--dark); margin-left: 6px;
}

/* --- Rate Tables --- */
.nfp-rate-table-wrap {
    max-width: 920px; margin: 0 auto 24px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); overflow: hidden;
}
.nfp-rate-table {
    width: 100%; border-collapse: collapse; font-size: 14px;
}
.nfp-rate-table thead { background: rgba(255,255,255,0.04); }
.nfp-rate-table th {
    padding: 14px 20px; text-align: left; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nfp-rate-table td {
    padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--gray-300); vertical-align: top;
}
.nfp-rate-table tr:last-child td { border-bottom: none; }
.nfp-rate-val {
    font-family: 'SF Mono', Consolas, 'Courier New', monospace;
    font-weight: 700; font-size: 15px; color: white;
}
.nfp-rate-pkr {
    font-size: 12px; color: var(--gray-400); margin-top: 2px;
    font-family: 'SF Mono', Consolas, monospace;
}
.nfp-rate-plus { font-size: 11px; color: var(--gray-500); margin-top: 2px; }
.nfp-rate-desc {
    font-size: 12px; color: var(--gray-500); margin-top: 4px; line-height: 1.4;
}
.nfp-rate-free td { background: rgba(62,180,137,0.04); }
.nfp-rate-free-val { color: var(--noti-light) !important; }
.nfp-rate-footnotes {
    max-width: 920px; margin: 20px auto 0; font-size: 13px; color: var(--gray-500);
    line-height: 1.7;
}
.nfp-rate-footnotes p { margin-bottom: 4px; }
.nfp-rate-footnotes a { color: var(--noti-light); text-decoration: underline; }

/* --- Message Type Badges --- */
.nfp-msg-badge {
    display: inline-block; padding: 4px 12px; border-radius: 6px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; white-space: nowrap;
}
.nfp-msg-marketing { background: rgba(244,63,94,0.12); color: #fb7185; }
.nfp-msg-utility { background: rgba(59,130,246,0.12); color: #60a5fa; }
.nfp-msg-auth { background: rgba(168,85,247,0.12); color: #c084fc; }
.nfp-msg-service { background: rgba(62,180,137,0.12); color: var(--noti-light); }

/* --- Use Case Packages --- */
.nfp-usecase {
    background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 32px; margin-bottom: 24px;
    transition: all var(--transition);
}
.nfp-usecase:hover {
    border-color: rgba(62,180,137,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.nfp-usecase:last-child { margin-bottom: 0; }
.nfp-usecase-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 0;
}
.nfp-usecase-icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: var(--noti-50); display: flex; align-items: center; justify-content: center;
}
.nfp-usecase-icon svg { width: 20px; height: 20px; stroke: var(--noti-dark); }
.nfp-usecase-header h3 { font-size: 18px; font-weight: 800; margin: 0; }
.nfp-usecase-header p { font-size: 13px; color: var(--gray-500); line-height: 1.4; margin: 0; }
.nfp-usecase-mix {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-bottom: 28px; font-size: 13px; font-weight: 600; color: var(--gray-500);
}

/* Package Prices with PKR */
.nfp-pkg-price {
    font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 0;
    font-family: 'SF Mono', Consolas, 'Courier New', monospace;
}
.nfp-pkg-price span {
    font-size: 16px; font-weight: 600; color: var(--gray-500);
    font-family: var(--font);
}
.nfp-pkg-pkr {
    font-size: 14px; font-weight: 600; color: var(--gray-400);
    margin-bottom: 8px;
}
.plan-card.featured .nfp-pkg-price { color: var(--noti-dark); }

/* --- Included Grid --- */
.nfp-included-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 900px; margin: 0 auto;
}
.nfp-included-item {
    background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-md);
    padding: 28px; transition: all var(--transition);
}
.nfp-included-item:hover {
    border-color: rgba(62,180,137,0.25);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.nfp-included-item svg {
    width: 28px; height: 28px; stroke: var(--noti); margin-bottom: 14px;
}
.nfp-included-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.nfp-included-item p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* --- FAQ --- */
.nfp-faq-list { max-width: 760px; margin: 0 auto; }
.nfp-faq-item {
    border: 1px solid var(--gray-200); border-radius: var(--radius-md);
    margin-bottom: 12px; overflow: hidden; transition: all var(--transition);
}
.nfp-faq-item:hover { border-color: rgba(62,180,137,0.25); }
.nfp-faq-item[open] { border-color: var(--noti); }
.nfp-faq-item summary {
    padding: 18px 24px; font-size: 15px; font-weight: 600; cursor: pointer;
    list-style: none; display: flex; align-items: center; justify-content: space-between;
    transition: background var(--transition);
}
.nfp-faq-item summary::-webkit-details-marker { display: none; }
.nfp-faq-item summary::after {
    content: '+'; font-size: 20px; font-weight: 300; color: var(--gray-400);
    flex-shrink: 0; margin-left: 16px;
}
.nfp-faq-item[open] summary::after { content: '\2212'; color: var(--noti); }
.nfp-faq-item[open] summary { background: var(--noti-50); color: var(--noti-dark); }
.nfp-faq-answer {
    padding: 0 24px 20px; font-size: 14px; color: var(--gray-600); line-height: 1.7;
}
.nfp-faq-answer p { margin-bottom: 12px; }
.nfp-faq-answer p:last-child { margin-bottom: 0; }

/* --- Pricing Page Responsive --- */
@media (max-width: 900px) {
    /* Hero */
    .nfp-hero-layout { grid-template-columns: 1fr; gap: 32px; }
    .nfp-hero-text { text-align: center; }
    .nfp-hero-text .hero-desc { margin: 0 auto; }
    .nfp-hero-perks { max-width: 360px; margin: 28px auto 0; }
    .nfp-hero-perk { text-align: left; }
    .page-notifly-pricing .hero h1 { text-align: center; }

    /* Models */
    .nfp-models-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

    /* Rate card */
    .nfp-rate-table { font-size: 13px; }
    .nfp-rate-table th, .nfp-rate-table td { padding: 12px 14px; }

    /* Use cases */
    .nfp-example-cards { grid-template-columns: 1fr; }
    .nfp-uc-inputs { gap: 8px; }
    .nfp-uc-input input { width: 65px; }

    /* Included */
    .nfp-included-grid { grid-template-columns: 1fr 1fr; }

    /* Bill rates */
    .nfp-bill-rates-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    /* Hero */
    .page-notifly-pricing .hero { padding: 120px 0 40px; }
    .nfp-hero-perks { max-width: none; }

    /* Calculator */
    .nfp-calc-header { flex-direction: column; align-items: stretch; gap: 10px; }
    .nfp-calc-toggle { align-self: center; }

    /* Models — full width, tighter padding */
    .nfp-models-grid { max-width: 100%; }
    .nfp-model-card { padding: 24px; }
    .nfp-model-card h3 { font-size: 20px; }
    .nfp-model-card p { font-size: 13px; }
    .nfp-model-icon { width: 40px; height: 40px; margin-bottom: 14px; }
    .nfp-model-icon svg { width: 20px; height: 20px; }

    /* Bill items in Separate card */
    .nfp-bill-item { font-size: 13px; flex-wrap: wrap; gap: 4px; }
    .nfp-bill-item strong { margin-left: 30px; font-size: 12px; }
    .nfp-bill-step-items { margin-bottom: 12px; }

    /* Inc rate rows */
    .nfp-inc-rate strong { font-size: 16px; }

    /* Rate table */
    .nfp-rate-table-wrap { overflow-x: auto; }
    .nfp-rate-table { min-width: 520px; }
    .nfp-rate-footnotes { font-size: 12px; padding: 0 4px; }

    /* Use cases */
    .nfp-usecase { padding: 16px; margin-bottom: 16px; }
    .nfp-usecase-topbar { padding: 12px; gap: 0; }
    .nfp-usecase-header { width: 100%; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); }
    .nfp-usecase-header h3 { font-size: 16px; }
    .nfp-usecase-header p { font-size: 12px; }
    .nfp-uc-inputs {
        width: 100%; margin-left: 0;
        display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
    }
    .nfp-uc-input {
        flex-direction: column; gap: 3px; align-items: stretch; text-align: center;
    }
    .nfp-uc-input .nfp-msg-badge { font-size: 10px; padding: 2px 6px; align-self: center; }
    .nfp-uc-input input {
        width: 100%; text-align: center; font-size: 13px; padding: 6px 4px;
    }
    .nfp-uc-total-msgs {
        grid-column: 1 / -1;
        display: flex; justify-content: space-between; align-items: center;
        padding-top: 8px; padding-left: 0; border-left: none;
        border-top: 1px solid var(--gray-200);
    }
    .nfp-usecase-topbar { margin-bottom: 16px; }
    .nfp-example-card { padding: 16px; }
    .nfp-example-badge { font-size: 10px; padding: 2px 10px; top: -8px; right: 12px; }
    .nfp-example-lines > div { font-size: 12px; }
    .nfp-example-total { padding: 10px 12px; }
    .nfp-example-total strong { font-size: 18px; }
    .nfp-example-cards { gap: 12px; }

    /* Included */
    .nfp-included-grid { grid-template-columns: 1fr; }
    .nfp-included-item { padding: 20px; }

    /* FAQ */
    .nfp-faq-item summary { padding: 14px 16px; font-size: 14px; }
    .nfp-faq-answer { padding: 0 16px 16px; font-size: 13px; }

    /* CTA */
    .nfp-cta-light .container { padding: 0 16px; }
}
