/* Global Design Tokens */
        :root {
            --brand: #3AABD4;
            --ink: #222;
            --ink-2: #444;
            --muted: #F2F5F5;
            --line: #E6E9EA;
            --white: #FFF;
            --black: #000;
            --shadow: 0 6px 20px rgba(0,0,0,.08);
        }


        button {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        /* Typography */
        h1 {
            font-size: 48px;
            line-height: 56px;
            font-weight: 700;
        }

        h2 {
            font-size: 32px;
            line-height: 40px;
            font-weight: 600;
        }

        h3 {
            font-size: 24px;
            line-height: 32px;
            font-weight: 600;
        }

        h4 {
            font-size: 18px;
            line-height: 28px;
            font-weight: 500;
        }

        p {
            font-size: 16px;
            line-height: 24px;
        }

        small {
            font-size: 14px;
            line-height: 22px;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .narrow {
            max-width: 880px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn.primary {
            background: var(--brand);
            color: var(--white);
        }

        .btn.primary:hover {
            background: #2e8fb0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(58, 171, 212, 0.3);
        }

        .btn.primary:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(58, 171, 212, 0.2);
        }

        /* Hero Section */

        /* ========== HERO SECTION ========== */
        /* ===== HERO LAYOUT ===== */
        .hero{
        background:#000;          /* subtle outer frame like your ref */
        color:#fff;
        }

        .hero-inner{
        display:grid;
        grid-template-columns: 0.6fr 1fr; /* equal width columns */
        min-height:68vh;
        }

        /* Left panel */
        .hero-left{
        background:#222;          /* dark panel like the first screenshot */
        padding:56px 56px 48px;
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:28px;
        }

        .hero-left h1{
        font-size: clamp(20px, 2vw, 3vw);
        line-height:1.05;
        font-weight:400;
        max-width:42ch;
        }

        .hero-left p{
        font-size: clamp(16px, 1vw, 30px);
        max-width:44ch;
        opacity:.9;
        }

        /* CTA */
        .cta-button{
        align-self:flex-start;
        background:#00a8e8;
        color:#fff;
        padding:18px 44px;
        border-radius:10px;
        font-size: clamp(16px, 1.8vw, 22px);
        font-weight:700;
        cursor:pointer;
        transition:transform .15s ease, opacity .15s ease;
        }
        .cta-button:hover{ transform:translateY(-1px); opacity:.95; }

        /* Trust badge */
        .trust-badge{
        display:flex;
        align-items:center;
        gap:10px;
        font-size:15px;
        opacity:.9;
        }
        .trust-badge .rating-number{ margin-left: 100px;font-weight:700; }

        /* Right panel (image) */
        .hero-right{
        position: relative;
        background-image:url("/i/hero.png"); /* <-- set your image */
        background-size:cover;
        background-position:center;
        }
        .hero-right::after{              /* subtle dark overlay for legibility */
        content:"";
        position:absolute; inset:0;
        background:linear-gradient(90deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.05) 40%, rgba(0,0,0,0) 100%);
        pointer-events:none;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px){
        .hero-inner{
            grid-template-columns:1fr;   /* stack */
            min-height:unset;
        }
        .hero-left{
            padding:40px 24px;
        }
        .hero-right{
            height:44vh;                 /* image shows below on mobile */
            min-height:260px;
        }
        }


        @keyframes pulse {
            0% { box-shadow: 0 5px 20px rgba(0, 168, 232, 0.4); }
            50% { box-shadow: 0 5px 30px rgba(0, 168, 232, 0.6); }
            100% { box-shadow: 0 5px 20px rgba(0, 168, 232, 0.4); }
        }



        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 75px;
            font-size: 14px;
            margin-left: -120px;
        }

        .trust-badge .rating-number {
            font-size: 48px;
            font-weight: bold;
            color:whited;
        }

        .trust-badge .stars {
            color: #ffd700;
            font-size: 16px;
            letter-spacing: 2px;
        }

        .trust-badge .review-count {
            color: white;
            font-size: 25px;
        }

        /* Category Description */
        .category-desc {
            padding: 64px 0;
            background: var(--white);
            text-align: center;
        }

        .category-desc h2 {
            margin-bottom: 24px;
            color: var(--ink);
        }

        .category-desc p {
            max-width: 800px;
            margin: 0 auto;
            color: var(--ink-2);
            line-height: 28px;
        }

        /* Product List Page (Filter + Grid) */
        .plp {
            padding: 64px 0;
            background: var(--muted);
        }

        .plp__grid {
            display: grid;
            grid-template-columns: 264px 1fr;
            gap: 32px;
            align-items: start;
        }

        /* Filters */
        .filters {
            background: var(--white);
            border-radius: 10px;
            padding: 24px;
            position: sticky;
            top: 88px;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
        }

        .filters .fg {
            padding: 16px 0;
            border-bottom: 1px solid var(--line);
        }

        .filters .fg:last-child {
            border-bottom: none;
        }

        .filters h4 {
            margin-bottom: 12px;
            color: var(--ink);
        }

        .filters label {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            cursor: pointer;
            font-size: 14px;
            color: var(--ink-2);
            transition: color 0.2s ease;
        }

        .filters label:hover {
            color: var(--brand);
        }

        .filters input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--brand);
        }
		
		.filters .subtypename,.filters .productlist{
			padding-left:1em;
		}
		.filters .subtypename + .productlist{
			padding-left:2em;
		}
		

        /* Product Grid */
        .cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .tile {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            background: var(--white);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            aspect-ratio: 5/6;
        }

        .tile:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        }

        .tile a {
            display: block;
            height: 100%;
            position: relative;
        }

        .tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
                        linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
                        linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
                        linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
        }

        .tile__label {
            position: absolute;
            left: 12px;
            bottom: 12px;
            background: rgba(0,0,0,.65);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
        }

        /* Custom Description Section */
        .custom-desc {
            padding: 64px 0;
            background: var(--muted);
        }

        .custom-desc h2 {
            margin-bottom: 32px;
            text-align: center;
        }

        .custom-desc p {
            margin-bottom: 20px;
            color: var(--ink-2);
            line-height: 28px;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 64px 0;
            background: var(--black);
            color: var(--white);
        }

        .two-col {
            display: grid;
            grid-template-columns: 1fr 480px;
            gap: 40px;
            align-items: center;
        }

        .t-left h2 {
            margin-bottom: 16px;
            color: var(--white);
        }

        .t-intro {
            margin-bottom: 32px;
            color: rgba(255, 255, 255, 0.9);
        }

        .reviews-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 24px;
            margin-top: 32px;
        }

        .reviews-card h3 {
            margin-bottom: 16px;
            font-size: 20px;
            color: var(--white);
        }

        /* Customer Stories Slider */
        .customer-stories {
            margin-bottom: 32px;
        }

        .customer-stories h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 20px;
        }

        .stories-slider {
            position: relative;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 24px;
            min-height: 120px;
            overflow: hidden;
        }

        .story-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .story-slide.active {
            display: block;
            opacity: 1;
        }

        .story-slide p {
            color: var(--white);
            font-style: italic;
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 16px;
        }

        .story-author {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 500;
        }

        .story-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 16px;
        }

        .story-controls button {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .story-controls button:hover {
            background: var(--brand);
            border-color: var(--brand);
        }

        .reviews-placeholder {
            background: var(--muted);
            padding: 40px;
            text-align: center;
            color: var(--ink-2);
            border-radius: 8px;
            margin-bottom: 24px;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slides {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 16px;
        }

        .slides button {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--line);
            color: var(--ink-2);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .slides button.active {
            background: var(--brand);
            color: var(--white);
        }

        .rating.small {
            justify-content: center;
            font-size: 14px;
            color: var(--white);
        }

        .rating.small .star {
            color: #ffd700;
        }

        /* Video Section */
        .video {
            position: relative;
        }

        .video-link {
            display: block;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .video-link img {
            width: 100%;
            aspect-ratio: 16/9;
        }

        .video .play {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            background: rgba(58, 171, 212, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .video-link:hover .play {
            background: var(--brand);
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Why Choose Section */
        .why-choose {
            padding: 64px 0;
            background: var(--white);
        }

        .why-choose h2 {
            text-align: center;
            margin-bottom: 16px;
        }

        .why-choose .sub {
            text-align: center;
            color: var(--ink-2);
            margin-bottom: 48px;
        }

        .reasons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .reason h3 {
            margin-bottom: 16px;
            color: var(--ink);
        }

        .reason p {
            color: var(--ink-2);
            line-height: 26px;
            margin-bottom: 16px;
        }

        /* We Make It Easy Section */
        /* Section shell – dark theme like the comp */
        .ease {
        background: #2f2f31;
        padding: 72px 0 80px;
        color: #e9edf0;
        }

        /* 2-column grid */
        .ease-grid {
        display: grid;
        grid-template-columns: minmax(520px, 640px) 1fr;
        gap: 56px;
        align-items: start;
        max-width: 1200px;
        margin: 0 auto 56px;
        }

        /* Left photo panel: two images side-by-side with caption bar */
        .ease-photos {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin: 0;
        }
        .ease-photos img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 2px;
        }
        .ease-photos figcaption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -38px;                 /* sits just under images like the comp */
        background: rgba(0,0,0,.55);
        color: #dfe6ea;
        font-style: italic;
        font-weight: 600;
        padding: 10px 16px;
        border-radius: 0 0 2px 2px;
        }

        /* Right stack: three text blocks */
        .ease-copy {
        display: grid;
        gap: 28px;
        }
        .ease-item h4 {
        color: #f2f5f7;
        font-size: 22px;
        line-height: 1.25;
        margin: 0 0 8px;
        font-weight: 800;
        }
        .ease-item p {
        color: #c9d0d6;
        line-height: 1.65;
        margin: 0;
        }

        /* CTA block under the grid */
        .ease-cta {
        max-width: 820px;
        margin: 32px auto 0;
        text-align: center;
        }
        .ease-cta p {
        color: #d7dde2;
        font-size: 18px;
        margin: 0 0 22px;
        }
        .btn-cta {
        display: inline-block;
        padding: 18px 28px;
        font-size: 20px;
        border-radius: 12px;
        }

        /* Responsive stack */
        @media (max-width: 992px) {
        .ease-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .ease-photos figcaption { position: static; margin-top: -8px; }
        }


        /* Struggles Section */
                /* ========== PAIN POINTS SECTION ========== */
        .pain-points {
            background: var(--muted);
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 36px;
            color: #00a8e8;
            margin-bottom: 10px;
        }

        .section-header p {
            color: #666;
            font-size: 30px;
        }

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

        .pain-icon {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            border-radius: 10px;
            object-fit: contain;
            display: block;
        }

        .pain-icon-a {
            background: url("/i/a.png");
        }

        .pain-icon-b {
            background: url("/i/b.png");
        }

        .pain-icon-c {
            background: url("/i/c.png");
        }

        .pain-icon-d {
            background: url("/i/d.png");
        }

        .pain-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .pain-card p {
            font-size: 14px;
            color: #666;
        }

        /* Section shell */
        .solution {
        padding: 72px 0 56px;
        background: var(--muted); /* light warm gray like the comp */
        }

        /* Heading + subhead */
        .solution-title {
        text-align: center;
        font-size: 36px;
        letter-spacing: 0.06em;
        color: #2e6f9e;           /* blue title like comp */
        margin-bottom: 8px;
        }
        .solution-sub {
        text-align: center;
        font-size: 22px;
        max-width: 960px;
        margin: 0 auto 36px;
        color: #333;
        }
        .solution-sub .accent {
        color: #2e98c9;           /* brighter blue accent phrase */
        font-style: italic;
        }

        /* Two-column grid */
        .solution-grid {
        display: grid;
        grid-template-columns: minmax(520px, 640px) 1fr;
        gap: 56px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto 40px;
        }

        /* Left image */
        .solution-hero {
        margin: 0;
        }
        .solution-hero img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 2px;
        }

        /* Right: vertical features */
        .solution-features {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 28px;
        }
        .feature {
        display: grid;
        align-items: start;
        gap: 18px;
        }


        /* Circular outline icons (placeholder styles) */
        .ico {
        width: 84px;
        height: 84px;
        border-radius: 50%;
        border: 3px solid #7fb6d6;
        display: inline-block;
        position: relative;
        }
        .ico::after {               /* simple glyph placeholders */
        content: "";
        position: absolute;
        inset: 0;
        margin: auto;
        width: 36px;
        height: 36px;
        border: 3px solid #7fb6d6;
        border-radius: 10px;
        }
        .ico-eye::after { border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%; }
        .ico-bulb::after { border-radius: 50% 50% 36% 36% / 50% 50% 40% 40%; }
        .ico-door::after { border-radius: 6px; }

        /* CTA + tagline */
        .btn-xl {
        display: block;
        width: fit-content;
        margin: 0 auto 12px;
        padding: 16px 28px;
        font-size: 18px;
        border-radius: 10px;
        }
        .tagline-bottom {
        text-align: center;
        color: #6a6a6a;
        font-style: italic;
        }

        /* Responsive: stack columns */
        @media (max-width: 992px) {
        .solution-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .feature {
            grid-template-columns: 68px 1fr;
        }
        .solution-sub { font-size: 20px; }
        }


        .feat3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 48px;
        }

        .review-images {
        position: relative;
        max-width: 400px;
        margin: 0 auto 20px;
        }

        .review-images img {
        display: none;
        width: 100%;
        border-radius: 8px;
        }

        .review-images img.active {
        display: block;
        }

        .slides {
        text-align: center;
        }

        .slides button {
        border: none;
        background: #ddd;
        padding: 8px 12px;
        margin: 0 4px;
        cursor: pointer;
        border-radius: 4px;
        }

        .slides button.active {
        background: #00a8e8;
        color: white;
        }

        .feat {
            text-align: center;
            padding: 24px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .feat .ico {
            width: 48px;
            height: 48px;
            background: var(--brand);
            border-radius: 50%;
            margin: 0 auto 16px;
        }

        .feat h4 {
            margin-bottom: 12px;
            color: var(--ink);
        }

        .feat p {
            color: var(--ink-2);
            font-size: 14px;
            line-height: 22px;
        }

        .tagline-bottom {
            text-align: center;
            color: var(--ink-2);
            font-style: italic;
        }

        /* Footer */
        .ftr {
            background: var(--ink);
            color: var(--white);
            padding: 48px 0 24px;
        }

        .foot-links {
            display: flex;
            gap: 32px;
            justify-content: center;
            margin-bottom: 24px;
        }

        .foot-links a {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .foot-links a:hover {
            color: var(--brand);
        }

        .legal {
            text-align: center;
            font-size: 12px;
            color: rgba(255,255,255,0.6);
        }

        /* Mobile Styles */
        @media (max-width: 1023px) {
            /* Tablet adjustments */
            .cards {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .two-col {
                grid-template-columns: 1fr;
            }

            .video {
                margin-top: 32px;
            }
        }

        @media (max-width: 767px) {
            /* Typography scale down */
            h1 {
                font-size: 40px;
                line-height: 48px;
            }

            h2 {
                font-size: 28px;
                line-height: 36px;
            }

            h3 {
                font-size: 22px;
                line-height: 30px;
            }

            /* Header mobile */
            .hdr {
                height: 64px;
            }

            .nav-toggle {
                display: block;
            }

            .nav {
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 24px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav a {
                padding: 12px 0;
                width: 100%;
                text-align: center;
            }

            /* Hero mobile */
            .hero {
                padding: 72px 0 56px;
                min-height: 500px;
            }

            .hero__inner {
                text-align: left;
            }

            /* Product grid mobile */
            .plp__grid {
                grid-template-columns: 1fr;
            }

            .filters {
                position: relative;
                top: auto;
            }

            .cards {
                grid-template-columns: 1fr;
            }

            /* Other sections mobile */
            .reasons {
                grid-template-columns: 1fr;
            }

            .struggle-grid {
                grid-template-columns: 1fr;
            }

            .feat3 {
                grid-template-columns: 1fr;
            }

            .hero-line {
                font-size: 22px;
                line-height: 30px;
            }

            /* Spacing adjustments */
            section {
                padding: 40px 0;
            }

            .container {
                padding: 0 16px;
            }
        }

        /* Hidden elements for non-visible tiles */
        .tile[style*="display: none"] {
            display: none !important;
        }