/*
Theme Name: INFINITI TECH
Theme URI: https://www.infinititech.fr/
Author: INFINITI TECH
Description: Thème WordPress sur mesure pour INFINITI TECH : infogérance, cybersécurité, support, Microsoft 365, réseaux et maintenance informatique.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: infiniti-tech
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-family: 'Figtree', sans-serif; }
        h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; }

        /* ── Scrollbar ── */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: #2563EB44; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #2563EB88; }

        /* ── CSS Variables ── */
        :root {
            --bg-primary: #FFFFFF;
            --bg-secondary: #F8FAFC;
            --bg-card: #FFFFFF;
            --bg-card-hover: #F1F5F9;
            --text-primary: #0F172A;
            --text-secondary: #475569;
            --text-muted: #94A3B8;
            --border-color: #E2E8F0;
            --border-accent: #2563EB;
            --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
            --glass-bg: rgba(255,255,255,0.7);
            --glass-border: rgba(255,255,255,0.3);
            --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
            --shadow-md: 0 4px 20px rgba(15,23,42,0.08);
            --shadow-lg: 0 12px 40px rgba(15,23,42,0.12);
            --shadow-glow: 0 0 30px rgba(37,99,235,0.15);
        }
        .dark {
            --bg-primary: #0F172A;
            --bg-secondary: #1E293B;
            --bg-card: #1E293B;
            --bg-card-hover: #334155;
            --text-primary: #F8FAFC;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --border-color: #334155;
            --glass-bg: rgba(30,41,59,0.8);
            --glass-border: rgba(51,65,85,0.5);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
            --shadow-glow: 0 0 40px rgba(37,99,235,0.25);
        }

        body { background: var(--bg-primary); color: var(--text-primary); overflow-x: hidden; }

        /* ── Hero Background ── */
        .hero-bg {
            background: linear-gradient(160deg, #0F172A 0%, #162033 35%, #0F172A 70%, #111C30 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-bg::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse-glow 8s ease-in-out infinite;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse-glow 10s ease-in-out infinite reverse;
        }
        @keyframes pulse-glow {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.15); opacity: 1; }
        }

        /* ── Grid Pattern ── */
        .grid-pattern {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
        }

        /* ── Floating Shapes ── */
        .float-shape {
            position: absolute;
            border: 1px solid rgba(37,99,235,0.15);
            border-radius: 12px;
            animation: float-rotate 20s linear infinite;
        }
        @keyframes float-rotate {
            0% { transform: rotate(0deg) translateY(0px); }
            25% { transform: rotate(90deg) translateY(-15px); }
            50% { transform: rotate(180deg) translateY(0px); }
            75% { transform: rotate(270deg) translateY(15px); }
            100% { transform: rotate(360deg) translateY(0px); }
        }

        /* ── Glassmorphism Nav ── */
        .nav-glass {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }
        .nav-glass.scrolled {
            box-shadow: var(--shadow-md);
        }
        .dark .nav-glass {
            background: rgba(15,23,42,0.85);
            border-bottom: 1px solid rgba(51,65,85,0.4);
        }

        /* ── Gradient Text ── */
        .gradient-text {
            background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 50%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .gradient-text-dark {
            background: linear-gradient(135deg, #0F172A 0%, #2563EB 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .dark .gradient-text-dark {
            background: linear-gradient(135deg, #F8FAFC 0%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ── Service Card ── */
        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #2563EB, #60A5FA);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(37,99,235,0.3);
        }
        .service-card .icon-wrap {
            width: 56px; height: 56px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
            color: #2563EB;
            font-size: 1.35rem;
            transition: all 0.4s ease;
        }
        .dark .service-card .icon-wrap {
            background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(37,99,235,0.1));
        }
        .service-card:hover .icon-wrap {
            background: linear-gradient(135deg, #2563EB, #3B82F6);
            color: white;
            box-shadow: 0 0 20px rgba(37,99,235,0.3);
        }

        /* ── Advantage Card ── */
        .advantage-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 1.75rem;
            transition: all 0.35s ease;
        }
        .advantage-card:hover {
            border-color: rgba(37,99,235,0.4);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
        }

        /* ── Partner Logo ── */
        .partner-logo {
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2rem 2.5rem;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.35s ease;
            background: var(--bg-card);
            min-height: 100px;
        }
        .partner-logo:hover {
            border-color: rgba(37,99,235,0.4);
            box-shadow: var(--shadow-glow);
            transform: translateY(-4px);
        }
        .partner-logo svg, .partner-logo span {
            opacity: 0.55;
            transition: opacity 0.35s ease;
        }
        .partner-logo:hover svg, .partner-logo:hover span {
            opacity: 1;
        }

        /* ── Case Study Card ── */
        .case-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .case-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .case-card .case-header {
            padding: 2rem;
            background: linear-gradient(135deg, #0F172A, #1E293B);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .case-card .case-header::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(37,99,235,0.2), transparent);
            border-radius: 50%;
        }

        /* ── Testimonial Card ── */
        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.35s ease;
            position: relative;
        }
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 12px;
            left: 20px;
            font-size: 5rem;
            font-family: 'Sora', serif;
            color: rgba(37,99,235,0.1);
            line-height: 1;
        }
        .testimonial-card:hover {
            border-color: rgba(37,99,235,0.3);
            box-shadow: var(--shadow-md);
        }

        /* ── Timeline ── */
        .timeline-step {
            position: relative;
            text-align: center;
            flex: 1;
        }
        .timeline-dot {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2563EB, #3B82F6);
            display: flex; align-items: center; justify-content: center;
            color: white;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 0 8px rgba(37,99,235,0.12);
            transition: all 0.35s ease;
        }
        .timeline-step:hover .timeline-dot {
            box-shadow: 0 0 0 12px rgba(37,99,235,0.2);
            transform: scale(1.1);
        }
        .timeline-line {
            position: absolute;
            top: 28px;
            left: calc(50% + 28px);
            width: calc(100% - 56px);
            height: 2px;
            background: linear-gradient(90deg, #2563EB, rgba(37,99,235,0.2));
        }

        /* ── FAQ ── */
        .faq-item {
            border: 1px solid var(--border-color);
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: var(--bg-card);
        }
        .faq-item.open {
            border-color: rgba(37,99,235,0.3);
            box-shadow: var(--shadow-sm);
        }
        .faq-header {
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            transition: color 0.2s;
        }
        .faq-header:hover { color: #2563EB; }
        .faq-header .chevron {
            transition: transform 0.3s ease;
            color: #2563EB;
            font-size: 0.85rem;
        }
        .faq-item.open .faq-header .chevron { transform: rotate(180deg); }
        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 1.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .faq-item.open .faq-body {
            max-height: 300px;
            padding: 0 1.5rem 1.25rem;
        }

        /* ── Form ── */
        .form-input {
            width: 100%;
            padding: 0.85rem 1.1rem;
            border: 1.5px solid var(--border-color);
            border-radius: 12px;
            background: var(--bg-card);
            color: var(--text-primary);
            font-size: 16px;
            font-family: 'Figtree', sans-serif;
            transition: all 0.3s ease;
            outline: none;
        }
        .form-input:focus {
            border-color: #2563EB;
            box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
        }
        .form-input::placeholder {
            color: var(--text-muted);
        }

        /* ── Buttons ── */
        .btn-primary {
            background: linear-gradient(135deg, #2563EB, #1D4ED8);
            color: white;
            padding: 0.85rem 2rem;
            border-radius: 12px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37,99,235,0.35);
        }
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 0.85rem 2rem;
            border-radius: 12px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1.5px solid rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.6);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: #2563EB;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            border: 1.5px solid rgba(37,99,235,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
        }
        .btn-outline:hover {
            background: rgba(37,99,235,0.06);
            border-color: #2563EB;
        }

        /* ── Urgent Banner ── */
        .urgent-banner {
            background: linear-gradient(90deg, #DC2626, #EF4444);
            color: white;
            padding: 0.6rem 1rem;
            text-align: center;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.82rem;
            letter-spacing: 0.02em;
        }
        .urgent-banner a {
            color: white;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        /* ── WhatsApp Float ── */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 4px 15px rgba(37,211,102,0.4);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
            cursor: pointer;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37,211,102,0.5);
        }

        /* ── Reveal Animations ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }
        .reveal-delay-6 { transition-delay: 0.6s; }
        .reveal-delay-7 { transition-delay: 0.7s; }

        /* ── Section Styles ── */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Sora', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #2563EB;
            padding: 0.45rem 1rem;
            background: rgba(37,99,235,0.08);
            border-radius: 100px;
            margin-bottom: 1rem;
        }
        .dark .section-label {
            background: rgba(37,99,235,0.15);
        }

        /* ── Stat Counter ── */
        .stat-box {
            text-align: center;
            padding: 1.5rem 1rem;
        }
        .stat-value {
            font-family: 'Sora', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            margin-top: 0.4rem;
        }

        /* ── Metric Badge ── */
        .metric-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(37,99,235,0.08);
            border: 1px solid rgba(37,99,235,0.15);
            border-radius: 10px;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .metric-badge strong {
            color: #2563EB;
            font-family: 'Sora', sans-serif;
        }

        /* ── Mobile Nav ── */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: var(--bg-primary);
            z-index: 9999;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }
        .mobile-menu.open { transform: translateX(0); }
        .mobile-menu a {
            font-family: 'Sora', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            text-decoration: none;
            display: block;
        }

        /* ── Map Container ── */
        .map-container {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        /* ── Custom Modal ── */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            padding: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-box {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 420px;
            width: 100%;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transform: scale(0.9);
            transition: transform 0.3s;
        }
        .modal-overlay.active .modal-box {
            transform: scale(1);
        }

        /* ── Detail Service Block ── */
        .detail-block {
            padding: 5rem 0;
            position: relative;
            border-bottom: 1px solid var(--border-color);
        }
        .detail-block:last-child { border-bottom: none; }
        .detail-block .detail-icon-big {
            width: 72px; height: 72px;
            border-radius: 18px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.7rem;
            background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
            color: #2563EB;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }
        .dark .detail-block .detail-icon-big {
            background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(37,99,235,0.08));
        }
        .detail-block:hover .detail-icon-big {
            background: linear-gradient(135deg, #2563EB, #3B82F6);
            color: white;
            box-shadow: 0 0 30px rgba(37,99,235,0.25);
        }
        .detail-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .detail-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            padding: 0.9rem 1rem;
            background: var(--bg-secondary);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .detail-feature:hover {
            border-color: rgba(37,99,235,0.25);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }
        .detail-feature i {
            color: #2563EB;
            font-size: 0.85rem;
            margin-top: 3px;
            flex-shrink: 0;
        }
        .detail-feature span {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .detail-metric {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(37,99,235,0.02));
            border: 1px solid rgba(37,99,235,0.12);
            border-radius: 14px;
        }
        .detail-metric .metric-num {
            font-family: 'Sora', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: #2563EB;
            line-height: 1;
        }
        .detail-metric .metric-label {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }
        .detail-nav-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-family: 'Sora', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            text-decoration: none;
            transition: all 0.3s ease;
            background: var(--bg-card);
            white-space: nowrap;
        }
        .detail-nav-pill:hover, .detail-nav-pill.active {
            color: #2563EB;
            border-color: #2563EB;
            background: rgba(37,99,235,0.06);
        }
        .back-to-top-services {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-family: 'Sora', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: #2563EB;
            text-decoration: none;
            margin-top: 1.5rem;
            transition: opacity 0.2s;
        }
        .back-to-top-services:hover { opacity: 0.7; }

        /* ── Pricing Card ── */
        .pricing-card {
            background: var(--bg-card);
            border: 1.5px solid var(--border-color);
            border-radius: 20px;
            padding: 2.25rem 2rem;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
            position: relative;
            overflow: hidden;
        }
        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.featured {
            border-color: #2563EB;
            box-shadow: var(--shadow-glow);
        }
        .pricing-card.featured::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2563EB, #60A5FA, #2563EB);
        }
        .pricing-badge {
            position: absolute;
            top: 16px;
            right: -32px;
            background: linear-gradient(135deg, #2563EB, #1D4ED8);
            color: white;
            font-family: 'Sora', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 0.3rem 2.5rem;
            transform: rotate(45deg);
        }
        .pricing-price {
            font-family: 'Sora', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1;
            display: flex;
            align-items: flex-start;
            gap: 0.2rem;
        }
        .pricing-price .currency {
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 0.4rem;
        }
        .pricing-price .period {
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-muted);
            align-self: flex-end;
            margin-bottom: 0.25rem;
        }
        .pricing-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            padding: 0.45rem 0;
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.45;
        }
        .pricing-feature i {
            color: #22C55E;
            font-size: 0.75rem;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .pricing-feature.disabled {
            color: var(--text-muted);
            opacity: 0.5;
        }
        .pricing-feature.disabled i {
            color: var(--text-muted);
        }
        .pricing-divider {
            height: 1px;
            background: var(--border-color);
            margin: 1.25rem 0;
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .stat-value { font-size: 1.8rem; }
            .timeline-line { display: none; }
            .detail-block { padding: 3.5rem 0; }
        }

/* WordPress integration */
.admin-bar .nav-glass { margin-top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .nav-glass { margin-top: 46px; }
}
.custom-logo-link img { max-height: 40px; width: auto; }
.infiniti-content-wrap { max-width: 900px; margin: 0 auto; padding: 8rem 1.25rem 5rem; }
.infiniti-content-wrap h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.infiniti-content-wrap .entry-content { color: var(--text-secondary); line-height: 1.8; }
.infiniti-content-wrap .entry-content > * + * { margin-top: 1.2rem; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
