html, body {
    overflow-x: hidden;
    max-width: 100%;
     scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth momentum scroll for iOS */
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: hsl(0, 0%, 98%);
            min-height: 100vh;
            overflow-x: hidden;
             touch-action: manipulation; 
        }

        .container {
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #999, transparent);
    width: 80px;
    margin: 24px auto;
    opacity: 0.7;
}


        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 60px 0;
            min-height: 90vh;
        }

        .hero-content h2 {
            font-size: clamp(48px, 5vw, 80px);
            font-weight: 700;
            color: hsl(0, 0%, 15%);
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-content h2 .highlight {
            font-style: italic;
            color: hsl(0, 0%, 45%);
        }

        .hero-content p {
            font-size: clamp(16px, 1.2vw, 20px);
            color: hsl(0, 0%, 0%);
            margin-bottom: 40px;
            max-width: 500px;
        }

        /* Enhanced Promo Card with Glass Effect */
        .promo-card {
            background: 
                linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%),
                linear-gradient(135deg, hsla(0, 0%, 12%, 0.9) 0%, hsla(0, 0%, 8%, 0.95) 100%);
            border-radius: 24px;
            padding: clamp(32px, 4vw, 48px);
            color: white;
            position: relative;
            overflow: hidden;
            max-width: 500px;
            margin-left: auto;
            box-shadow: 
                0 20px 40px hsla(0, 0%, 0%, 0.25),
                0 10px 25px hsla(0, 0%, 0%, 0.15),
                0 0 0 1px hsla(0, 0%, 100%, 0.1),
                inset 0 1px 0 hsla(0, 0%, 100%, 0.15);
            backdrop-filter: blur(20px);
            transform-style: preserve-3d;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .promo-card:hover {
            box-shadow: 
                0 30px 60px hsla(0, 0%, 0%, 0.35),
                0 15px 35px hsla(0, 0%, 0%, 0.25),
                0 0 0 1px hsla(0, 0%, 100%, 0.2),
                inset 0 1px 0 hsla(0, 0%, 100%, 0.2),
                0 0 80px rgba(255,255,255,0.1);
            transform: translateY(-5px) rotateX(2deg) rotateY(2deg);
        }

        /* Enhanced glass overlay */
        .promo-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }

        /* Additional glow effect */
        .promo-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(255,255,255,0.1) 0%, 
                transparent 30%, 
                transparent 70%, 
                rgba(255,255,255,0.1) 100%);
            border-radius: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .promo-card:hover::after {
            opacity: 1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Enhanced Review Section */
        .review-section {
            position: relative;
            z-index: 2;
        }

        .quote {
            font-size: clamp(16px, 1.1vw, 18px);
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 24px;
            position: relative;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            padding: 20px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 
                0 8px 32px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.1);
        }

        .quote::before {
            content: '"';
            font-size: 48px;
            opacity: 0.2;
            position: absolute;
            left: -5px;
            top: -15px;
            background: linear-gradient(135deg, #fff, #ccc);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .quote::after {
            content: '"';
            font-size: 48px;
            opacity: 0.2;
            position: absolute;
            right: 5px;
            bottom: -25px;
            background: linear-gradient(135deg, #fff, #ccc);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Enhanced Reviewer Info */
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding: 20px;
            background: 
                linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%),
                rgba(255,255,255,0.05);
            border-radius: 16px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 
                0 8px 32px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255,255,255,0.2);
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Add subtle animation to reviewer info */
        .reviewer-info::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255,255,255,0.03) 50%, 
                transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .google-logo {
            width: 50px;
            height: 50px;
            background: 
                linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 
                0 4px 20px rgba(0,0,0,0.1),
                0 0 0 1px rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }

        .google-logo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .google-logo:hover::before {
            opacity: 1;
        }

        .reviewer-details {
            flex: 1;
            text-align: center;
        }

        .reviewer-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .review-source {
            font-size: 14px;
            opacity: 0.8;
            color: rgba(255,255,255,0.7);
        }

        /* Enhanced Trust Badges */
        .trust-badges {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 20px;
            background: 
                linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%),
                rgba(255,255,255,0.05);
            border-radius: 12px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 
                0 4px 20px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.15);
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .badge:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 8px 30px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255,255,255,0.2);
        }

        .stars {
            color: #FFD700;
            font-size: 16px;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255,215,0,0.5);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .rating-text {
            font-size: 14px;
            opacity: 0.9;
            font-weight: 500;
            color: rgba(255,255,255,0.9);
        }

        /* Enhanced Button */
        .btn-secondary {
            background: 
                linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            color: #333;
            padding: 18px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
            width: 100%;
            text-align: center;
            box-sizing: border-box;
            box-shadow: 
                0 4px 20px rgba(0,0,0,0.1),
                0 0 0 1px rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.2);
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }

        .btn-secondary:hover::before {
            left: 100%;
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 40px rgba(0,0,0,0.2),
                0 0 0 1px rgba(255,255,255,0.3);
        }

        /* Large Desktop Adjustments */
        @media (min-width: 1400px) {
            .container {
                max-width: 90%;
                padding: 0 60px;
            }
            
            .hero {
                gap: 120px;
            }
            
            .promo-card {
                max-width: 600px;
            }
        }

        /* Desktop */
        @media (min-width: 1200px) {
            .hero {
                gap: 100px;
            }
            
            .promo-card {
                max-width: 550px;
            }
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .container {
                max-width: 95%;
                padding: 0 30px;
            }
            
            .hero {
                gap: 60px;
            }
            
            .promo-card {
                max-width: 450px;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            
            .hero {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                padding: 40px 0;
            }

            .promo-card {
                max-width: 100%;
                margin: 0 auto;
            }

            .hero-content p {
                max-width: none;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            
            .hero {
                padding: 20px 0;
                gap: 30px;
            }
        }

        .services-section {
            padding: 4rem 1rem;
            min-height: 100vh;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .main-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .main-subtitle {
            font-size: 1.25rem;
            color: #4a5568;
            max-width: 600px;
            margin: 0 auto;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            position: relative;
            padding: 2.5rem;
            border-radius: 24px;
            overflow: hidden;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .card-seo {
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
            position: relative;
        }

        .card-seo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 50%, #f7931e 100%);
            opacity: 0.9;
        }

        .card-web {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
        }

        .card-web::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #667eea 100%);
            opacity: 0.9;
        }

        .card-ads {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            position: relative;
        }

        .card-ads::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #f093fb 100%);
            opacity: 0.9;
        }

        .card-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-header {
            margin-bottom: 1rem;
        }

        .card-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .card-description {
            font-size: 1rem;
            opacity: 0.95;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .card-cta {
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 4px;
            opacity: 0.95;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .card-cta {
            opacity: 1;
        }

        .bottom-text {
            text-align: center;
            margin-top: 3rem;
            font-size: 1.125rem;
            color: #4a5568;
            line-height: 1.6;
        }

        .bottom-text a {
            color: #2d3748;
            font-weight: 600;
            text-decoration: underline;
            text-decoration-style: wavy;
            text-underline-offset: 4px;
            transition: color 0.3s ease;
        }

        .bottom-text a:hover {
            color: #667eea;
        }

        /* Decorative elements */
        .card-seo::after {
            content: '📈';
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
            opacity: 0.3;
            z-index: 1;
        }

        .card-web::after {
            content: '💻';
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
            opacity: 0.3;
            z-index: 1;
        }

        .card-ads::after {
            content: '🎯';
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
            opacity: 0.3;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 3rem 1rem;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .service-card {
                padding: 2rem;
                min-height: 240px;
            }
        }

    .intro-text {
            max-width: 600px;
            margin: 0 auto 80px;
            color: #888;
            font-size: 18px;
            line-height: 1.6;
        }

        .benefits-section {
            margin-bottom: 60px;
        }

        .section-header {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #333;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .main-headline {
            font-size: 72px;
            font-weight: 400;
            margin-bottom: 30px;
            color: #222;
            line-height: 1.1;
        }

        .main-headline .italic {
            font-style: italic;
            color: #575757;
        }

        .main-headline .bold {
            font-weight: 700;
        }

        .subtitle {
            font-size: 18px;
            color: #888;
            max-width: 500px;
            margin: 0 auto 60px;
            line-height: 1.5;
        }

        .benefits-carousel {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .benefits-container {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
            padding: 0 20px;
        }

        .benefit-card {
            min-width: 280px;
            height: 320px;
            border-radius: 24px;
            padding: 40px 30px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .benefit-card .icon {
            width: 60px;
            height: 60px;
            margin-bottom: auto;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .benefit-card .content {
            text-align: left;
        }

        .benefit-card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }

        .benefit-card p {
            font-size: 15px;
            color: #474747;
            line-height: 1.4;
        }

        /* Gradient backgrounds for cards */
        .card-design-board {
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
        }

        .card-fixed-rate {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .card-fast-delivery {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
        }

        .card-quality {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .card-flexible {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #4facfe 100%);
        }

        .card-unique {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.9);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .carousel-btn:hover {
            background: white;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }

        .carousel-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
            stroke: #333;
            stroke-width: 2;
        }

        @media (max-width: 768px) {
            .main-headline {
                font-size: 48px;
            }
            
            .benefit-card {
                min-width: 260px;
                height: 300px;
            }

            .benefits-container {
                gap: 20px;
                padding: 0 10px;
            }
        }
    

        .technekazien-reset {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .technekazien-container {
            max-width: 95%;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            padding: 0 40px;
        }

        .technekazien-left-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 500px;
            padding-right: 60px;
        }

        .technekazien-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            color: #000000;
            margin-bottom: 30px;
            text-align: left;
        }

        .technekazien-trademark {
            font-size: 0.4em;
            vertical-align: super;
            color: #7f8c8d;
        }

        .technekazien-description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.6;
            color: #000000;
            margin-bottom: 40px;
            max-width: 90%;
        }

        .technekazien-get-started-btn {
            background-color: hsl(0, 0%, 25%);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .technekazien-get-started-btn:hover {
            background-color: hsl(0, 0%, 20%);
            transform: translateY(-2px);
        }

        .technekazien-arrow {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .technekazien-get-started-btn:hover .technekazien-arrow {
            transform: translateX(4px);
        }

        .technekazien-right-section {
            padding-left: 60px;
        }

        .technekazien-feature-list {
            list-style: none;
        }

        .technekazien-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
            border-left: 3px solid hsl(0, 0%, 25%);
            padding-left: 25px;
            transition: transform 0.2s ease;
        }

        .technekazien-feature-item:hover {
            transform: translateX(5px);
        }

        .technekazien-feature-number {
            background-color: hsl(0, 0%, 0%);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 10px 14px;
            border-radius: 6px;
            margin-right: 20px;
            min-width: 50px;
            text-align: center;
            flex-shrink: 0;
        }

        .technekazien-feature-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 8px;
        }

        .technekazien-feature-content p {
            color: #000000;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Large desktop styles */
        @media (min-width: 1400px) {
            .technekazien-container {
                max-width: 90%;
                gap: 100px;
            }
            
            .technekazien-left-section {
                padding-right: 80px;
            }
            
            .technekazien-right-section {
                padding-left: 80px;
            }
        }

        /* Tablet styles */
        @media (max-width: 1024px) {
            .technekazien-container {
                max-width: 1000px;
                gap: 50px;
            }

            .technekazien-title {
                font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            }
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .technekazien-container {
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 0 15px;
            }

            .technekazien-left-section {
                padding-right: 0;
                text-align: center;
                min-height: auto;
            }

            .technekazien-right-section {
                padding-left: 0;
            }

            .technekazien-title {
                font-size: clamp(2rem, 8vw, 2.8rem);
                text-align: center;
            }

            .technekazien-description {
                max-width: 100%;
                text-align: left;
            }

            .technekazien-get-started-btn {
                align-self: center;
            }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
           

            .technekazien-container {
                gap: 40px;
            }

            .technekazien-feature-item {
                margin-bottom: 30px;
                padding-left: 20px;
            }

            .technekazien-feature-number {
                padding: 8px 12px;
                min-width: 45px;
                margin-right: 15px;
            }

            .technekazien-feature-content h3 {
                font-size: 1.2rem;
            }

            .technekazien-feature-content p {
                font-size: 0.95rem;
            }
        }

         .seo-agency-tagline {
    color: #7aaee8;           /* lighter, less saturated version of #4A90E2 */
    font-size: 14px;          /* smaller font */
    font-weight: 300;         /* lighter weight */
    margin-bottom: 20px;      /* slightly tighter spacing */
    letter-spacing: 0.3px;    /* less emphasis */
    opacity: 0.85;            /* subtle fade */
}

    .ats-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .ats-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f8f8f8;
            padding: 60px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .ats-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        
        .ats-section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .ats-section-tag {
            color: #000000;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .ats-main-title {
            font-size: 48px;
            font-weight: 700;
            color: #000000;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        
        .ats-subtitle {
            font-size: 18px;
            color: #000000;
        }
        
        .ats-subtitle a {
            color: #000000;
            text-decoration: none;
            font-weight: 600;
        }
        
        .ats-content-wrapper {
            display: flex;
            gap: 60px;
            align-items: flex-start;
        }
        
        .ats-testimonials-section {
            flex: 2;
            position: relative;
            perspective: 1000px;
        }
        
        .ats-google-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 20px;
        }
        
        .ats-testimonial-area {
            width: 100%;
            margin-bottom: 40px;
        }
        
        .ats-testimonial-slider {
            position: relative;
            overflow: hidden;
        }
        
        .ats-testimonial {
            background: linear-gradient(145deg, #f5f5f5, #e8e8e8);
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            position: relative;
            box-shadow: 8px 8px 16px rgba(0,0,0,0.06), -8px -8px 16px rgba(255,255,255,0.5);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
            cursor: pointer;
            text-align: center;
        }
        
        .ats-testimonial:hover {
            transform: translateZ(10px) rotateX(5deg) rotateY(-5deg);
            box-shadow: 12px 12px 24px rgba(0,0,0,0.08), -12px -12px 24px rgba(255,255,255,0.6);
        }
        
        @media (hover: none) and (pointer: coarse) {
            .ats-testimonial:active {
                transform: translateZ(10px) rotateX(5deg) rotateY(-5deg);
                box-shadow: 12px 12px 24px rgba(0,0,0,0.08), -12px -12px 24px rgba(255,255,255,0.6);
            }
        }
        
       
        
        .ats-testimonial-text {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 30px;
            padding-left: 30px;
        }
        
        .ats-testimonial-author {
            font-weight: 600;
            color: #333;
            font-size: 16px;
            padding-left: 30px;
        }
        
        .ats-navigation {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .ats-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(145deg, #4a4a4a, #2c2c2c);
            color: white;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 4px 4px 8px rgba(0,0,0,0.15), -4px -4px 8px rgba(255,255,255,0.08);
        }
        
        .ats-nav-btn:hover {
            background: linear-gradient(145deg, #5a5a5a, #3c3c3c);
            transform: translateY(-2px);
            box-shadow: 6px 6px 12px rgba(0,0,0,0.18), -6px -6px 12px rgba(255,255,255,0.1);
        }
        
        .ats-nav-btn:active {
            transform: translateY(0px);
            box-shadow: 2px 2px 4px rgba(0,0,0,0.2), -2px -2px 4px rgba(255,255,255,0.05);
        }
        
        .ats-nav-btn:disabled {
            background: linear-gradient(145deg, #ccc, #aaa);
            cursor: not-allowed;
            transform: none;
            box-shadow: 2px 2px 4px rgba(0,0,0,0.08), -2px -2px 4px rgba(255,255,255,0.2);
        }
        
        .ats-badges-section {
            display: flex;
            gap: 40px;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
            align-items: center;
        }
        
        .ats-award-badge {
            height: 30px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .ats-award-badge:hover {
            transform: scale(1.05);
        }
        
        .ats-google-reviews {
            height: 80px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .ats-google-reviews:hover {
            transform: scale(1.05);
        }
        
        /* Large desktop breakpoint */
        @media (min-width: 1400px) {
            .ats-wrapper {
                padding: 80px 40px;
            }
            
            .ats-container {
                max-width: 95%;
                width: 100%;
            }
            
            .ats-content-wrapper {
                gap: 80px;
            }
            
            .ats-section-header {
                margin-bottom: 100px;
            }
            
            .ats-main-title {
                font-size: 56px;
            }
        }
        
        @media (max-width: 768px) {
            .ats-wrapper {
                padding: 40px 20px;
                min-height: auto;
            }
            
            .ats-main-title {
                font-size: 36px;
            }
            
            .ats-testimonial {
                padding: 30px 20px;
            }
            
            .ats-badges-section {
                gap: 20px;
            }
            
            .ats-award-badge,
            .ats-google-reviews {
                height: 20px;
            }
        }
    
 /* Pricing styles with unique IDs */
        #pricing-container-unique {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            width: 100%;
        }
        
        /* Large desktop breakpoint for better viewport usage */
        @media (min-width: 1400px) {
            #pricing-container-unique {
                max-width: 95%;
                width: 100%;
                padding: 80px 40px;
            }
            
            #subscription-grid-unique {
                gap: 60px !important;
                max-width: 1600px;
                margin: 0 auto 80px;
            }
            
            #card-section-unique {
                width: 500px !important;
                padding: 90px 60px !important;
            }
            
            #pricing-section-unique {
                width: 400px !important;
                padding: 50px 45px !important;
            }
            
            #benefits-section-unique {
                gap: 60px !important;
                max-width: 1400px;
                margin: 0 auto 100px;
            }
            
            .benefit-unique {
                padding: 50px !important;
            }
        }
        
        #hero-section-unique {
            text-align: center;
            margin-bottom: 80px;
        }
        
        #hero-title-unique {
            font-size: 56px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        
        #hero-subtitle-unique {
            font-size: 48px;
            font-weight: 300;
            font-style: italic;
        }
        
        #subscription-grid-unique {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
            justify-items: center;
        }
        
        #card-section-unique {
            position: relative;
            width: 420px;
            padding: 70px 50px;
            border-radius: 32px;
            text-align: center;
            background: linear-gradient(145deg, #fff 0%, #f8f9fb 50%, #f0f2f5 100%);
            box-shadow:
                0 30px 60px rgba(0,0,0,0.12),
                0 20px 40px rgba(0,0,0,0.08),
                0 10px 20px rgba(0,0,0,0.04),
                inset 0 0 0 1px rgba(255,255,255,0.8),
                inset 0 1px 0 rgba(255,255,255,0.9);
            transition: transform .4s cubic-bezier(.175,.885,.32,1.275),
                       box-shadow .4s cubic-bezier(.175,.885,.32,1.275);
        }
        
        #card-section-unique:hover {
            transform: translateY(-5px);
            box-shadow:
                0 40px 80px rgba(0,0,0,0.15),
                0 25px 50px rgba(0,0,0,0.1),
                0 15px 30px rgba(0,0,0,0.06),
                inset 0 0 0 1px rgba(255,255,255,0.9),
                inset 0 1px 0 rgba(255,255,255,1);
        }
        
        #card-section-unique::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
            border-radius: 32px 32px 0 0;
            pointer-events: none;
            z-index: 1;
        }

        /* Card container with unique IDs */
        #card-container-unique {
            width: 300px;
            height: 190px;
            margin: 0 auto 50px;
            perspective: 1000px;
            position: relative;
            z-index: 2;
        }

        #tilt-wrapper-unique {
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transform-origin: center center;
            transform: rotateZ(-8deg) rotateX(5deg);
        }

        #flip-wrapper-unique {
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transform-origin: center center;
            transform: rotateY(0deg);
            transition: transform .8s cubic-bezier(.175,.885,.32,1.275);
            cursor: pointer;
        }
        
        #card-container-unique:hover #flip-wrapper-unique,
        #card-container-unique.is-flipped #flip-wrapper-unique {
            transform: rotateY(180deg);
        }

        .card-face-unique {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 16px;
            backface-visibility: hidden;
            background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #000 100%);
            color: #fff;
            box-shadow:
                0 15px 30px rgba(0,0,0,0.4),
                0 8px 16px rgba(0,0,0,0.3),
                0 4px 8px rgba(0,0,0,0.2),
                inset 0 0 0 1px rgba(255,255,255,0.1);
            overflow: hidden;
        }
        
        #card-front-unique {
            padding: 20px;
            position: relative;
        }
        
        #world-map-unique {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 60"><path d="M20,20 Q30,15 40,20 T60,25 L65,30 Q70,35 75,30 L80,25" stroke="rgba(255,255,255,0.03)" stroke-width="0.5" fill="none"/><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="45" cy="30" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="65" cy="20" r="1" fill="rgba(255,255,255,0.04)"/></svg>') no-repeat;
            background-size: cover;
            opacity: 0.6;
        }
        
        #card-chip-unique {
            width: 35px;
            height: 25px;
            background: linear-gradient(145deg, #ffd93d 0%, #ffcd02 100%);
            border-radius: 4px;
            margin-bottom: 25px;
            box-shadow:
                0 2px 4px rgba(0,0,0,0.3),
                inset 0 0 0 1px rgba(255,255,255,0.1);
        }
        
        #card-number-unique {
            font-family: 'Courier New', monospace;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }
        
        #card-details-unique {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            font-size: 10px;
            text-transform: uppercase;
            opacity: 0.8;
        }
        
        #card-logo-unique {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 25px;
            background: #fff;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        #card-back-unique {
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        #cvv-strip-unique {
            width: 100%;
            height: 40px;
            background: #333;
            margin: 20px 0;
            border-radius: 4px;
            position: relative;
        }
        
        #cvv-box-unique {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            background: #fff;
            color: #333;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: bold;
        }
        
        #signature-strip-unique {
            width: 80%;
            height: 25px;
            background: rgba(255,255,255,0.9);
            margin: 10px auto;
            border-radius: 3px;
            position: relative;
        }
        
        #signature-strip-unique::after {
            content: 'CARDHOLDER NAME';
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #333;
            font-size: 10px;
            font-style: italic;
        }
        
        #card-info-unique {
            font-size: 10px;
            opacity: 0.7;
            margin-top: 20px;
            text-align: center;
        }

        #start-button-unique {
            background: linear-gradient(135deg, #ffd93d 0%, #ffcd02 100%);
            color: #333;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            box-shadow:
                0 8px 16px rgba(255,217,61,0.4),
                0 4px 8px rgba(0,0,0,0.1),
                inset 0 0 0 1px rgba(255,255,255,0.2);
            transition: all .3s ease;
            margin-top: 6rem;
        }
        
        #start-button-unique:hover {
            transform: translateY(-3px);
            box-shadow:
                0 12px 24px rgba(255,217,61,0.5),
                0 6px 12px rgba(0,0,0,0.15),
                inset 0 0 0 1px rgba(255,255,255,0.3);
        }
        
        #start-button-unique::before {
            content: '';
            width: 12px;
            height: 12px;
            background: #ffcd02;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        #join-text-unique {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            line-height: 1.2;
            z-index: 2;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        /* Urgency Badge */
        #urgency-badge-unique {
            position: absolute;
            top: -15px;
            right: -15px;
            background: linear-gradient(135deg, #ff2d55 0%, #ff1744 50%, #d50000 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 10;
            box-shadow: 
                0 8px 20px rgba(255, 45, 85, 0.4),
                0 4px 10px rgba(0, 0, 0, 0.2),
                0 0 0 2px rgba(255, 255, 255, 0.8),
                0 0 0 4px rgba(255, 45, 85, 0.3);
            animation: urgencyPulse 2s ease-in-out infinite;
            transform: rotate(15deg);
            min-width: 120px;
            text-align: center;
        }

        @keyframes urgencyPulse {
            0%, 100% {
                transform: rotate(15deg) scale(1);
                box-shadow: 
                    0 8px 20px rgba(255, 45, 85, 0.4),
                    0 4px 10px rgba(0, 0, 0, 0.2),
                    0 0 0 2px rgba(255, 255, 255, 0.8),
                    0 0 0 4px rgba(255, 45, 85, 0.3);
            }
            50% {
                transform: rotate(15deg) scale(1.05);
                box-shadow: 
                    0 12px 30px rgba(255, 45, 85, 0.6),
                    0 6px 15px rgba(0, 0, 0, 0.25),
                    0 0 0 2px rgba(255, 255, 255, 1),
                    0 0 0 6px rgba(255, 45, 85, 0.5);
            }
        }

        /* Additional urgency text - now next to price */
        #urgency-text-unique {
            display: inline-block;
            background: rgba(255, 45, 85, 0.95);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: urgencyBlink 3s ease-in-out infinite;
            margin-left: 15px;
            vertical-align: middle;
        }

        /* Price container to hold both price and urgency text */
        #price-container-unique {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        @keyframes urgencyBlink {
            0%, 90%, 100% {
                opacity: 1;
            }
            95% {
                opacity: 0.7;
            }
        }

        /* Pricing section with unique IDs */
        #pricing-section-unique {
            background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 50%, #000000 100%);
            padding: 40px 35px;
            border-radius: 24px;
            color: white;
            width: 320px;
            position: relative;
            
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 15px 30px rgba(0, 0, 0, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset,
                0 1px 0 rgba(255, 255, 255, 0.1) inset;
            
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        #pricing-section-unique:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 35px 70px rgba(0, 0, 0, 0.5),
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 10px 20px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset,
                0 1px 0 rgba(255, 255, 255, 0.15) inset;
        }

        #pricing-section-unique::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg, 
                rgba(255,255,255,0.08) 0%, 
                rgba(255,255,255,0.02) 50%, 
                transparent 100%);
            border-radius: 24px 24px 0 0;
            pointer-events: none;
        }

        #pricing-header-unique {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
            font-size: 22px;
            font-weight: 600;
        }

        #pricing-header-unique small {
            background: linear-gradient(135deg, #ff6b35, #ff4757);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 
                0 4px 8px rgba(255, 107, 53, 0.3),
                0 2px 4px rgba(0, 0, 0, 0.2);
        }

        #price-unique {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 255, 255, 0.1);
        }

        #join-button-unique {
            width: 100%;
            background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
            color: white;
            border: none;
            padding: 18px 24px;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            
            box-shadow: 
                0 8px 16px rgba(255, 107, 53, 0.4),
                0 4px 8px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
            
            transition: all 0.3s ease;
        }

        #join-button-unique:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 12px 24px rgba(255, 107, 53, 0.5),
                0 6px 12px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
        }

        #features-unique {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 20px;
            margin-bottom: 35px;
        }

        .feature-unique {
            font-size: 14px;
            color: #e0e0e0;
            position: relative;
            padding-left: 16px;
        }

        .feature-unique::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4ade80;
            font-weight: bold;
        }
        
        /* Benefits section with unique IDs */
        #benefits-section-unique {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .benefit-unique {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .benefit-unique h3 {
            font-size: 24px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .benefit-unique p {
            color: #000000;
            font-size: 16px;
        }


        /* Mobile Media Queries for Pricing Section */

@media (max-width: 768px) {
    #pricing-container-unique {
        padding: 30px 15px;
        max-width: 100%;
    }
    
    #hero-section-unique {
        margin-bottom: 40px;
    }
    
    #hero-title-unique {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    #hero-subtitle-unique {
        font-size: 2rem;
    }
    
    /* Stack the grid vertically on mobile */
    #subscription-grid-unique {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    /* Card section adjustments */
    #card-section-unique {
        width: 100%;
        max-width: 350px;
        padding: 40px 25px;
        margin: 0 auto;
    }
    
    #card-container-unique {
        width: 280px;
        height: 170px;
        margin-bottom: 30px;
    }
    
    #card-number-unique {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    #card-details-unique {
        font-size: 9px;
    }
    
    #start-button-unique {
        padding: 14px 28px;
        font-size: 15px;
        margin-top: 3rem;
        margin-bottom: 20px;
    }
    
    #join-text-unique {
        font-size: 18px;
        line-height: 1.3;
    }
    
    /* Pricing section adjustments */
    #pricing-section-unique {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 30px 25px;
    }
    
    /* Urgency badge positioning */
    #urgency-badge-unique {
        top: -12px;
        right: -12px;
        padding: 8px 16px;
        font-size: 10px;
        min-width: 100px;
    }
    
    #pricing-header-unique {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    /* Price container - stack on mobile */
    #price-container-unique {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    #price-unique {
        font-size: 36px;
        margin-bottom: 0;
    }
    
    #urgency-text-unique {
        margin-left: 0;
        font-size: 9px;
        padding: 4px 8px;
    }
    
    /* Features grid - single column on mobile */
    #features-unique {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .feature-unique {
        font-size: 13px;
        text-align: left;
    }
    
    #join-button-unique {
        padding: 16px 20px;
        font-size: 15px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    #pricing-container-unique {
        padding: 20px 10px;
    }
    
    #hero-title-unique {
        font-size: 2rem;
    }
    
    #hero-subtitle-unique {
        font-size: 1.7rem;
    }
    
    #card-section-unique {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    #card-container-unique {
        width: 260px;
        height: 160px;
    }
    
    #card-number-unique {
        font-size: 15px;
        letter-spacing: 1.5px;
    }
    
    #start-button-unique {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    #join-text-unique {
        font-size: 16px;
    }
    
    #pricing-section-unique {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    #urgency-badge-unique {
        top: -10px;
        right: -10px;
        padding: 6px 12px;
        font-size: 9px;
        min-width: 80px;
    }
    
    #pricing-header-unique {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    #price-unique {
        font-size: 32px;
    }
    
    #urgency-text-unique {
        font-size: 8px;
        padding: 3px 6px;
    }
    
    .feature-unique {
        font-size: 12px;
        padding-left: 14px;
    }
    
    #join-button-unique {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    #pricing-container-unique {
        padding: 15px 8px;
    }
    
    #hero-title-unique {
        font-size: 1.8rem;
    }
    
    #hero-subtitle-unique {
        font-size: 1.5rem;
    }
    
    #card-section-unique {
        padding: 25px 15px;
    }
    
    #card-container-unique {
        width: 240px;
        height: 150px;
    }
    
    #pricing-section-unique {
        padding: 20px 15px;
    }
    
    #urgency-badge-unique {
        display: none; /* Hide on very small screens to prevent overlap */
    }
    
    #price-unique {
        font-size: 28px;
    }
    
    .feature-unique {
        font-size: 11px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    #pricing-container-unique {
        padding: 20px 15px;
    }
    
    #hero-section-unique {
        margin-bottom: 30px;
    }
    
    #hero-title-unique {
        font-size: 2.2rem;
    }
    
    #hero-subtitle-unique {
        font-size: 1.8rem;
    }
    
    #subscription-grid-unique {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    #card-section-unique {
        padding: 30px 20px;
    }
    
    #pricing-section-unique {
        padding: 25px 20px;
    }
}

/* Benefits section mobile adjustments */
@media (max-width: 768px) {
    #benefits-section-unique {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .benefit-unique {
        padding: 30px 25px;
    }
    
    .benefit-unique h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .benefit-unique p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .benefit-unique {
        padding: 25px 20px;
    }
    
    .benefit-unique h3 {
        font-size: 18px;
    }
    
    .benefit-unique p {
        font-size: 14px;
    }
}

/* Disable 3D effects on mobile for better performance */
@media (max-width: 768px) {
    #card-container-unique {
        perspective: none;
    }
    
    #tilt-wrapper-unique {
        transform: none;
    }
    
    #flip-wrapper-unique {
        transform: none;
        transition: none;
    }
    
    #card-container-unique:hover #flip-wrapper-unique,
    #card-container-unique.is-flipped #flip-wrapper-unique {
        transform: rotateY(180deg);
    }
}

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            #subscription-grid-unique {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            #card-section-unique {
                width: 100%;
                max-width: 400px;
                padding: 50px 30px;
            }
            
            #pricing-section-unique {
                width: 100%;
                max-width: 400px;
            }
            
            #benefits-section-unique {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            #hero-title-unique {
                font-size: 40px;
            }
            
            #hero-subtitle-unique {
                font-size: 32px;
            }
        }

          /* FAQ section with unique IDs */
        #faq-booking-section-unique {
            margin-top: 80px;
            text-align: center;
        }
        
        #faq-section-unique {
            max-width: 800px;
            margin: 0 auto;
        }
        
        #faq-section-unique h2 {
            font-size: 56px;
            font-weight: 300;
            margin-bottom: 40px;
            font-style: italic;
            text-align: center;
        }
        
        #faq-card-unique {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin: 0 auto;
        }
        
        .faq-item-unique {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .faq-item-unique:last-child {
            border-bottom: none;
        }
        
        .faq-item-unique summary {
            padding: 28px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            font-size: 18px;
            font-weight: 500;
            list-style: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            text-align: left;
        }
        
        .faq-item-unique summary::-webkit-details-marker {
            display: none;
        }
        
        .faq-item-unique summary:hover {
            background: #f8f8f8;
        }
        
        .faq-arrow-unique {
            font-size: 24px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-item-unique[open] .faq-arrow-unique {
            transform: rotate(180deg);
        }
        
        .faq-item-unique p {
            padding: 0 32px 28px 32px;
            color: #3b3b3b;
            font-size: 16px;
            line-height: 1.6;
            animation: slideDown 0.3s ease-out;
            text-align: left;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Large desktop breakpoint for FAQ section */
        @media (min-width: 1400px) {
            #faq-section-unique {
                max-width: 1000px;
            }
            
            #faq-section-unique h2 {
                font-size: 64px;
                margin-bottom: 50px;
            }
            
            .faq-item-unique summary {
                padding: 35px 40px;
                font-size: 20px;
            }
            
            .faq-item-unique p {
                padding: 0 40px 35px 40px;
                font-size: 18px;
            }
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            #subscription-grid-unique {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            #card-section-unique {
                width: 100%;
                max-width: 400px;
                padding: 50px 30px;
            }
            
            #pricing-section-unique {
                width: 100%;
                max-width: 400px;
            }
            
            #benefits-section-unique {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            #hero-title-unique {
                font-size: 40px;
            }
            
            #hero-subtitle-unique {
                font-size: 32px;
            }
            
            #faq-section-unique h2 {
                font-size: 40px;
                margin-bottom: 30px;
            }
            
            .faq-item-unique summary {
                padding: 20px 24px;
                font-size: 16px;
            }
            
            .faq-item-unique p {
                padding: 0 24px 20px 24px;
                font-size: 14px;
            }
        }

        /* Booking Widget Section */
        .booking-widget-container {
            max-width: 1400px;
            width: 100%;
            margin: 80px auto 0;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 5rem;
        }

        .booking-widget-left-section {
            margin-bottom: 40px;
        }

        .booking-widget-main-heading {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #333;
        }

        .italic-text {
            font-style: italic;
            font-weight: 400;
            color: #424242;
        }

        .booking-widget-description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 0;
            line-height: 1.5;
        }

        .booking-widget-right-section {
            background: white;
            border-radius: 12px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
        }

        .booking-widget-booking-header {
            background: #1a73e8;
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
            line-height: 1.4;
            color: white;
        }

        .booking-widget-booking-header a {
            color: white;
            text-decoration: underline;
        }

        .booking-widget-calendar-container {
            background: white;
            height: 600px;
            position: relative;
            overflow: hidden;
        }

        .booking-widget-calendar-container iframe {
            width: 100%;
            height: 600px;
            border: none;
        }

        /* Large desktop breakpoint for booking widget */
        @media (min-width: 1400px) {
            .booking-widget-container {
                max-width: 95%;
                padding: 0 40px;
            }
            
            .booking-widget-left-section {
                margin-bottom: 50px;
            }
            
            .booking-widget-main-heading {
                font-size: 5rem;
            }
            
            .booking-widget-description {
                font-size: 1.2rem;
            }
            
            .booking-widget-right-section {
                max-width: 700px;
            }
            
            .booking-widget-calendar-container {
                height: 650px;
            }
            
            .booking-widget-calendar-container iframe {
                height: 650px;
            }
        }

        /* Tablet breakpoint */
        @media (max-width: 1024px) {
            .booking-widget-container {
                margin-top: 60px;
            }

            .booking-widget-main-heading {
                font-size: 3.5rem;
            }
            
            .booking-widget-right-section {
                max-width: 100%;
            }
        }

        /* Mobile breakpoint */
        @media (max-width: 768px) {
            .booking-widget-container {
                margin-top: 40px;
                padding: 0 15px;
            }
            
            .booking-widget-left-section {
                margin-bottom: 30px;
            }
            
            .booking-widget-main-heading {
                font-size: 2.5rem;
            }

            .booking-widget-description {
                font-size: 1rem;
            }
            
            .booking-widget-booking-header {
                padding: 15px;
                font-size: 0.8rem;
            }
            
            .booking-widget-calendar-container {
                height: 500px;
            }
            
            .booking-widget-calendar-container iframe {
                height: 500px;
            }
        }

   

/* Menu Button */
        .fsm-menu-button {
            position: fixed;
            top: 24px;
            left: 24px;
            z-index: 50;
            background: black;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .fsm-menu-button:hover {
            background: #333;
        }

        .fsm-hamburger {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 20px;
            height: 20px;
            justify-content: center;
        }

        .fsm-hamburger-line {
            width: 20px;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
        }

        .fsm-close-icon {
            display: none;
            width: 20px;
            height: 20px;
        }

        /* Menu Overlay */
        .fsm-menu-overlay {
            position: fixed;
            inset: 0;
            z-index: 40;
            background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
            transform: translateY(100%);
            transition: transform 0.7s ease-in-out;
        }

        .fsm-menu-overlay.fsm-open {
            transform: translateY(0);
        }

        /* Header */
        .fsm-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 32px;
        }

        .fsm-logo {
            color: white;
            transform: translateX(-100%);
            opacity: 0;
            transition: all 0.7s ease;
        }

        .fsm-logo.fsm-animate {
            transform: translateX(0);
            opacity: 1;
            transition-delay: 0.2s;
        }

        .fsm-logo-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fsm-logo-inner {
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 4px;
        }

        .fsm-search-button {
            background: white;
            color: black;
            padding: 12px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: translateX(100%);
            opacity: 0;
        }

        .fsm-search-button.fsm-animate {
            transform: translateX(0);
            opacity: 1;
            transition-delay: 0.3s;
        }

        .fsm-search-button:hover {
            background: #f0f0f0;
        }

        /* Main Content */
        .fsm-menu-content {
            display: flex;
            justify-content: space-between;
            padding: 48px 32px;
        }

        /* Navigation */
        .fsm-navigation {
            display: flex;
            flex-direction: column;
        }

        .fsm-nav-item {
            position: relative;
            margin-bottom: 16px;
            cursor: pointer;
            transform: translateX(-100%);
            opacity: 0;
            transition: all 0.7s ease;
        }

        .fsm-nav-item.fsm-animate {
            transform: translateX(0);
            opacity: 1;
        }

        .fsm-nav-item-bg {
            position: relative;
            overflow: hidden;
            background: transparent;
            width: 0%;
            min-width: 0px;
            transition: all 0.5s ease-out;
        }

        .fsm-nav-item:hover .fsm-nav-item-bg {
            background: black;
            width: 100%;
            min-width: 600px;
        }

        .fsm-nav-item-content {
            display: flex;
            align-items: center;
            padding: 16px 24px;
        }

        .fsm-nav-item-title {
            font-size: 6rem;
            font-weight: 300;
            color: white;
            transition: color 0.3s ease;
        }

        .fsm-nav-item-icon {
            margin-left: 32px;
            opacity: 0;
            transform: rotate(0deg);
            transition: all 0.3s ease;
        }

        .fsm-nav-item:hover .fsm-nav-item-icon {
            opacity: 1;
            transform: rotate(12deg);
            animation: fsm-pulse 2s infinite;
        }

        .fsm-nav-item-title-static {
            position: absolute;
            top: 0;
            left: 0;
            font-size: 6rem;
            font-weight: 300;
            color: white;
            padding: 16px 0;
            transition: opacity 0.3s ease;
        }

        .fsm-nav-item:hover .fsm-nav-item-title-static {
            opacity: 0;
        }

        /* Subscribe Section */
        .fsm-subscribe-section {
            color: white;
            max-width: 400px;
            transform: translateX(100%);
            opacity: 0;
            transition: all 0.7s ease;
        }

        .fsm-subscribe-section.fsm-animate {
            transform: translateX(0);
            opacity: 1;
            transition-delay: 0.5s;
        }

        .fsm-subscribe-title {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 24px;
        }

        .fsm-subscribe-text {
            font-size: 1.125rem;
            margin-bottom: 32px;
            opacity: 0.9;
        }

        .fsm-email-form {
            display: flex;
            margin-bottom: 48px;
            transform: translateY(32px);
            opacity: 0;
            transition: all 0.7s ease;
        }

        .fsm-email-form.fsm-animate {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.7s;
        }

        .fsm-email-icon {
            background: black;
            padding: 16px;
            border-radius: 6px 0 0 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fsm-email-input {
            flex: 1;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.9);
            color: black;
            border: none;
            border-radius: 0 6px 6px 0;
            font-size: 1rem;
        }

        .fsm-email-input::placeholder {
            color: #252525;
        }

        .fsm-email-input:focus {
            outline: none;
            background: white;
        }

        /* Social Links */
        .fsm-social-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .fsm-social-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            transition: all 0.7s ease;
            transform: translateY(32px);
            opacity: 0;
        }

        .fsm-social-link.fsm-animate {
            transform: translateY(0);
            opacity: 1;
        }

        .fsm-social-link:hover {
            color: #ccc;
        }

        .fsm-social-link-text {
            font-size: 0.875rem;
            letter-spacing: 0.05em;
        }

        /* Footer */
        .fsm-menu-footer {
            position: absolute;
            bottom: 32px;
            left: 32px;
            right: 32px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            color: white;
            transform: translateY(32px);
            opacity: 0;
            transition: all 0.7s ease;
        }

        .fsm-menu-footer.fsm-animate {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 1s;
        }

        .fsm-footer-addresses {
            display: flex;
            gap: 64px;
        }

        .fsm-footer-address {
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            opacity: 0.9;
        }

        .fsm-footer-right {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .fsm-footer-email {
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            opacity: 0.9;
        }

        .fsm-login-button {
            background: black;
            color: white;
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .fsm-login-button:hover {
            background: #333;
        }

        @keyframes fsm-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* SVG Icons */
        .fsm-icon {
            width: 48px;
            height: 48px;
            stroke: white;
            fill: none;
            stroke-width: 1.5;
        }

        .fsm-small-icon {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        /* ticker Styles */

    /* Typing Ticker Section */
.ticker-section {
    background-color: hsl(0, 0%, 100%);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ticker-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 31, 31, 0.5), transparent);
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Bottom border scan (new) */
.ticker-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 31, 31, 0.5), transparent);
    animation: scan 8s linear infinite;
}

/* Scan animation */
@keyframes scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.ticker-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: #000000;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-text {
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    margin-left: 3px;
    font-weight: 300;
    color: #fff;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@media (max-width: 768px) {
    .ticker-container {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .ticker-container {
        font-size: 16px;
    }
}

.title {
            font-family: "Raleway", sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #5D4037;
            text-align: center;
            margin-bottom: 40px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .card-container {
            padding: 40px 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-section {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: "Raleway", sans-serif;
            font-size: clamp(32px, 4vw, 50px);
            font-weight: 700;
            color: #000000;
            text-align: center;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .bottom-text {
            text-align: center;
            font-size: clamp(16px, 1.2vw, 18px);
            color: #000000;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            padding: 0 20px;
            justify-items: center;
        }

        .card-wrap {
            transform: perspective(1000px);
            transform-style: preserve-3d;
            cursor: pointer;
            transition: transform 0.1s ease-out;
            width: 100%;
            max-width: 400px;
        }

        .card-wrap:hover .card-info {
            transform: translateY(0);
        }

        .card-wrap:hover .card-info p {
            opacity: 1;
        }

        .card-wrap:hover .card-info .service-link {
            opacity: 1;
        }

        .card-wrap:hover .card-info,
        .card-wrap:hover .card-info p,
        .card-wrap:hover .card-info .service-link {
            transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .card-wrap:hover .card-info:after {
            transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 1;
            transform: translateY(0);
        }

        .card-wrap:hover .card-bg {
            transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0.8;
            transform: scale(1.1);
        }

        .card-wrap:hover .card {
            transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 
                rgba(255, 255, 255, 0.2) 0 0 40px 5px,
                rgba(255, 255, 255, 0.8) 0 0 0 1px,
                rgba(0, 0, 0, 0.66) 0 30px 60px 0,
                inset #333 0 0 0 5px,
                inset rgba(255, 255, 255, 0.8) 0 0 0 6px;
        }

        .card {
            position: relative;
            width: 100%;
            aspect-ratio: 3/4;
            min-height: 420px;
            background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 
                rgba(0, 0, 0, 0.66) 0 30px 60px 0,
                inset #333 0 0 0 5px,
                inset rgba(255, 255, 255, 0.3) 0 0 0 6px;
            transition: 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
        }

        .card-bg {
            opacity: 0.6;
            position: absolute;
            top: -30px;
            left: -30px;
            width: calc(100% + 60px);
            height: calc(100% + 60px);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            transition: 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
            pointer-events: none;
            filter: brightness(1.1) contrast(1.1);
        }

        .card img {
            object-fit: cover;     
            object-position: center; 
        }

        .card-info {
            padding: clamp(20px, 3vw, 30px);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: #fff;
            transform: translateY(40%);
            transition: 0.6s 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .card-info p {
            opacity: 0;
            text-shadow: rgba(0, 0, 0, 0.8) 0 2px 8px;
            transition: 0.6s 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
            line-height: 1.6;
            margin-top: 10px;
            font-size: clamp(14px, 1vw, 16px);
        }

        .card-info .service-link {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 24px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: clamp(11px, 1vw, 13px);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
        }

        .card-info .service-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #ee5a24, #ff6b6b);
        }

        .card-info * {
            position: relative;
            z-index: 1;
        }

        .card-info:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.8) 100%
            );
            backdrop-filter: blur(2px);
            opacity: 0;
            transform: translateY(100%);
            transition: 0.8s 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
        }

        .card-info h2 {
            
            font-size: clamp(24px, 2.5vw, 32px);
            font-weight: 700;
            text-shadow: rgba(0, 0, 0, 0.8) 0 4px 12px;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #fff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        /* Large Desktop (1200px and up) */
        @media (min-width: 1200px) {
            .card-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 50px;
                max-width: 1200px;
                margin: 0 auto;
            }
            
            .card {
                min-height: 480px;
            }
        }

        /* Medium Desktop (992px to 1199px) */
        @media (max-width: 1199px) and (min-width: 992px) {
            .card-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
            
            .card {
                min-height: 400px;
            }
        }

        /* Tablet Landscape (768px to 991px) */
        @media (max-width: 991px) and (min-width: 768px) {
            .services-section {
                padding: 60px 20px;
            }
            
            .card-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .card {
                min-height: 380px;
            }
            
            .bottom-text {
                margin-bottom: 40px;
            }
        }

        /* Tablet Portrait (576px to 767px) */
        @media (max-width: 767px) and (min-width: 576px) {
            .services-section {
                padding: 50px 15px;
            }
            
            .card-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                padding: 0 10px;
            }
            
            .card {
                min-height: 350px;
                border-radius: 15px;
            }
            
            .bottom-text {
                margin-bottom: 35px;
            }
        }

        /* Mobile (575px and below) */
        @media (max-width: 575px) {
            .services-section {
                padding: 40px 10px;
            }
            
            .card-container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 5px;
            }
            
            .card-wrap {
                max-width: 100%;
            }
            
            .card {
                min-height: 400px;
                border-radius: 15px;
            }
            
            .bottom-text {
                margin-bottom: 30px;
                padding: 0 10px;
            }
            
            .card-info .service-link {
                padding: 10px 20px;
                margin-top: 15px;
            }
        }

        /* Small Mobile (400px and below) */
        @media (max-width: 400px) {
            .services-section {
                padding: 30px 5px;
            }
            
            .card-container {
                gap: 25px;
            }
            
            .card {
                min-height: 350px;
            }
            
            .card-info {
                padding: 15px;
            }
        }

        /* Handle very wide screens */
        @media (min-width: 1600px) {
            .services-section {
                max-width: 1600px;
            }
            
            .card-container {
                max-width: 1400px;
                gap: 60px;
            }
            
            .card {
                min-height: 520px;
            }
        }


        .djb-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .djb-floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .djb-floating-element {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--djb-primary-gold);
            border-radius: 50%;
            opacity: 0.3;
        }

        .djb-intro-text {
            max-width: 700px;
            margin: 0 auto 120px;
            color: var(--djb-medium-gray);
            font-size: 20px;
            line-height: 1.7;
            font-weight: 300;
            letter-spacing: 0.3px;
            opacity: 0;
            transform: translateY(20px);
        }

        .djb-intro-text em {
            color: var(--djb-primary-gold);
            font-style: italic;
            font-weight: 400;
        }

        .djb-benefits-section {
            margin-bottom: 120px;
            position: relative;
            z-index: 2;
        }

        .djb-section-header {
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--djb-primary-gold);
            margin-bottom: 60px;
            font-weight: 500;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
        }

        .djb-section-header::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--djb-primary-gold), transparent);
        }

        .djb-main-headline {
            font-family: 'Playfair Display', serif;
            font-size: 85px;
            font-weight: 400;
            margin-bottom: 40px;
            color: var(--djb-dark-charcoal);
            line-height: 1.1;
            letter-spacing: -2px;
            opacity: 0;
            transform: translateY(20px);
            margin-top: 3rem;
        }

        .djb-main-headline .djb-italic {
            font-style: italic;
            color: var(--djb-medium-gray);
            font-weight: 400;
        }

        .djb-main-headline .djb-bold {
            font-weight: 600;
            background: linear-gradient(135deg, var(--djb-primary-gold), #000000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: black;
            background-clip: text;
        }

        .djb-subtitle {
            font-size: 20px;
            color: var(--djb-medium-gray);
            max-width: 600px;
            margin: 0 auto 100px;
            line-height: 1.6;
            font-weight: 300;
            letter-spacing: 0.3px;
            opacity: 0;
            transform: translateY(20px);
        }
/* Enhanced Benefits Carousel with Glass Effect */
.djb-benefits-carousel {
    position: relative;
    overflow: visible;
    margin: 0 auto;
    padding: 40px 0;
}

.djb-benefits-container {
    display: flex;
    gap: 40px;
    padding: 0 40px;
}

/* Enhanced Benefit Cards with Premium Glass Effect */
.djb-benefit-card {
    min-width: 320px;
    height: 420px;
    border-radius: 28px;
    padding: 50px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%),
        rgba(255,255,255,0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 10px 25px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(20px);
    opacity: 0;
    will-change: transform, opacity;
}

/* Enhanced glass overlay effect */
.djb-benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.djb-benefit-card:hover::before {
    opacity: 1;
}

/* Additional glow effect on hover */
.djb-benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255,255,255,0.1) 100%);
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.djb-benefit-card:hover::after {
    opacity: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

.djb-benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.25),
        0 15px 35px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 0 80px rgba(255,255,255,0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Enhanced gradient backgrounds with shimmer */
.djb-benefit-card .djb-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    transition: all 0.6s ease;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(184, 148, 31, 0.1) 50%, 
        rgba(212, 175, 55, 0.2) 100%);
}

.djb-benefit-card:hover .djb-gradient-bg {
    opacity: 0.08;
    transform: scale(1.1) rotate(1deg);
}

/* Enhanced icon container */
.djb-benefit-card .djb-icon-container {
    width: 80px;
    height: 80px;
    margin-bottom: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.djb-benefit-card .djb-icon-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 20px;
    opacity: 0.3;
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.djb-benefit-card:hover .djb-icon-container::before {
    opacity: 0.5;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.djb-benefit-card .djb-icon {
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.djb-benefit-card:hover .djb-icon {
    transform: scale(1.1) rotate(-5deg);
    color: rgb(0, 0, 0);
}

.djb-benefit-card .djb-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.djb-benefit-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--djb-dark-charcoal);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.djb-benefit-card p {
    font-size: 16px;
    color: var(--djb-medium-gray);
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Enhanced Carousel Controls */
.djb-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
}

.djb-carousel-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%),
        rgba(255,255,255,0.1);
    backdrop-filter: blur(25px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
}

/* Button shimmer effect */
.djb-carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.djb-carousel-btn:hover::before {
    left: 100%;
}

.djb-carousel-btn:hover {
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%),
        rgba(255,255,255,0.15);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 0 30px rgba(255,255,255,0.1);
    transform: translateY(-3px) scale(1.05);
    border: 1px solid rgba(212, 139, 55, 0.3);
}

.djb-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.djb-carousel-btn:disabled:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Enhanced button icons - Fixed and visible */
        .djb-carousel-btn svg {
            width: 24px;
            height: 24px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .djb-carousel-btn svg path {
            stroke: rgba(0,0,0,0.8);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .djb-carousel-btn:hover svg path {
            stroke: rgba(0,0,0,1);
        }

        .djb-carousel-btn:hover svg {
            transform: scale(1.1);
        }

        /* Enhanced Progress Indicator with Black Theme */
        .djb-progress-indicator {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }

        .djb-progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0,0,0,0.3);
            transition: all 0.6s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .djb-progress-dot.djb-active {
            background: rgba(0,0,0,0.8);
            transform: scale(1.4);
            box-shadow: 
                0 4px 15px rgba(0,0,0,0.3),
                0 0 20px rgba(0,0,0,0.2);
            border: 1px solid rgba(0,0,0,0.4);
        }

/* Animation for card entrance */
.djb-benefit-card.djb-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Show carousel controls when carousel is loaded */
.djb-benefits-carousel.djb-loaded .djb-carousel-btn {
    opacity: 1;
    transform: scale(1);
}

/* For Dark Background Contexts */
.dark-context .djb-benefit-card h3 {
    color: rgba(255,255,255,0.95);
}

.dark-context .djb-benefit-card p {
    color: rgba(255,255,255,0.8);
}

.dark-context .djb-carousel-btn svg {
    stroke: rgba(255,255,255,0.8);
}

.dark-context .djb-carousel-btn:hover svg {
    stroke: rgba(255,255,255,1);
}

/* Large Desktop Adjustments */
@media (min-width: 1400px) {
    .djb-benefits-carousel {
        max-width: 1600px;
    }
    
    .djb-benefit-card {
        max-width: 380px;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .djb-benefit-card {
        max-width: 350px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .djb-benefit-card { 
        min-width: 300px; 
        height: 380px; 
        padding: 40px 30px 30px; 
    }
    .djb-benefits-container { 
        gap: 30px; 
        padding: 0 20px; 
    }
}

/* Mobile */
@media (max-width: 768px) {
    .djb-benefit-card { 
        min-width: 280px; 
        height: 360px; 
        padding: 30px 25px 25px;
    }
    .djb-benefits-container { 
        gap: 20px; 
        padding: 0 15px; 
    }
    .djb-carousel-btn { 
        width: 60px; 
        height: 60px; 
    }
    .djb-carousel-btn svg { 
        width: 20px; 
        height: 20px; 
    }
    .djb-benefit-card h3 {
        font-size: 24px;
    }
    .djb-benefit-card p {
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .djb-benefits-container {
        padding: 0 10px;
    }
    
    .djb-benefit-card {
        min-width: 260px;
        height: 340px;
        padding: 25px 20px 20px;
    }
    
    .djb-carousel-controls {
        margin-top: 60px;
    }
}


 .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding: 60px 100px;
        }

        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: hsl(0, 0%, 10%);
            margin-bottom: 60px;
            line-height: 1.2;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-slide {
            min-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .client-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
        }
        .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ensures it fills without distortion */
}

        

        .client-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: hsl(0, 0%, 10%);
        }

        .client-description {
            font-size: 1.1rem;
            color: hsl(0, 0%, 40%);
            margin-bottom: 40px;
            max-width: 800px;
            line-height: 1.6;
        }

        .star-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 25px;
        }

        .star {
            color: #ffd700;
            font-size: 24px;
        }

        .testimonial-quote {
            font-size: 1.2rem;
            color: hsl(0, 0%, 33%);
            line-height: 1.7;
            max-width: 900px;
            margin-bottom: 40px;
            font-style: italic;
            position: relative;
            padding: 20px;
            border-left: 4px solid hsl(0, 0%, 88%);
            background: hsl(0, 0%, 98%);
            border-radius: 8px;
        }

        .result-metric {
            display: flex;
            align-items: baseline;
            gap: 15px;
            justify-content: center;
        }

        

        .metric-number {
  font-size: 4rem;
  font-weight: 900;
  /* Fallback for old browsers */
  color: #000;
  /* Premium black-to-charcoal gradient */
  background: linear-gradient(90deg, #000000, #2c2c2c);
  /* Clip the gradient to the text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Optional subtle shadow for extra depth */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


        .metric-text {
            font-size: 1.3rem;
            color: hsl(0, 0%, 20%);
            font-weight: 600;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: hsla(0, 0%, 0%, 0.1);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: hsl(0, 0%, 40%);
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: hsla(0, 0%, 0%, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: -70px;
        }

        .next-btn {
            right: -70px;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: hsl(0, 0%, 87%);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: hsl(0, 0%, 0%);
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .testimonial-container {
                padding: 40px 20px;
                margin: 20px;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .client-name {
                font-size: 1.4rem;
            }

            .metric-number {
                font-size: 3rem;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .prev-btn {
                left: -50px;
            }

            .next-btn {
                right: -50px;
            }
        }

        /* Enhanced Mobile Media Queries */

@media (max-width: 768px) {
    .testimonial-container {
        padding: 30px 15px;
        margin: 0;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .testimonial-slide {
        padding: 0 10px;
        min-height: auto;
    }

    .client-logo {
        margin-bottom: 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .client-name {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .client-description {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 5px;
        line-height: 1.5;
    }

    .star-rating {
        margin-bottom: 20px;
        justify-content: center;
    }

    .star {
        font-size: 20px;
    }

    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 15px;
        line-height: 1.6;
    }

    .result-metric {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        max-width: 100%;
    }

    .metric-number {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 5px;
    }

    .metric-text {
        font-size: 1rem;
        line-height: 1.4;
        max-width: 90%;
        margin: 0 auto;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .prev-btn {
        left: -40px;
    }

    .next-btn {
        right: -40px;
    }

    .carousel-indicators {
        margin-top: 30px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .testimonial-container {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .client-name {
        font-size: 1.2rem;
    }

    .client-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .testimonial-quote {
        font-size: 0.95rem;
        padding: 12px;
        margin-bottom: 20px;
    }

    .metric-number {
        font-size: 2rem;
    }

    .metric-text {
        font-size: 0.9rem;
        max-width: 95%;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .prev-btn {
        left: -35px;
    }

    .next-btn {
        right: -35px;
    }

    .star {
        font-size: 18px;
    }
}

/* Very small screens - hide navigation arrows */
@media (max-width: 360px) {
    .carousel-nav {
        display: none;
    }

    .testimonial-container {
        padding: 15px 8px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .metric-number {
        font-size: 1.8rem;
    }

    .metric-text {
        font-size: 0.85rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .testimonial-container {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .client-description {
        margin-bottom: 15px;
    }

    .testimonial-quote {
        margin-bottom: 15px;
        padding: 10px;
    }

    .result-metric {
        gap: 8px;
    }
}