/* freeres skin — CSS VERBATIM from newsletter-home.html comp, scoped under body.galv-freeres. */

        body.galv-freeres {
            --bg-navy: #13217c;
            --primary-blue: #3b5bff;
            --cta-magenta: #cc00cc;
            --accent-blue: #e6ebff;
            --text-white: #fffdfe;
            --text-dark: #333;
            --text-gray: #808080;
            --success-green: #2d8a4e;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            --container-width: 1920px;
        }

        body.galv-freeres *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body.galv-freeres {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.5;
            background-color: #e6ebff;
        }

        body.galv-freeres h1, body.galv-freeres h2, body.galv-freeres h3, body.galv-freeres h4, body.galv-freeres h5, body.galv-freeres h6{
            font-family: var(--font-heading);
            font-weight: 600;
        }

        body.galv-freeres .container{
            width: 100%;
            max-width: var(--container-width);
            padding: 0 80px;
            margin: 0 auto;
        }

        body.galv-freeres .section-for-desktop{
            display: flex;
            justify-content: center;
            padding: 60px 0;
        }

        /* ── Hero ── */
        body.galv-freeres .hero{
            background-color: var(--bg-navy);
            color: var(--text-white);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        body.galv-freeres .hero .container{
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
        }

        body.galv-freeres .hero-content, body.galv-freeres .hero-testimonial{
            min-width: 0;
        }

        body.galv-freeres .hero-content h1{
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
            overflow-wrap: break-word;
        }

        body.galv-freeres .hero-content p{
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 22px;
            line-height: 30px;
            margin-bottom: 20px;
            overflow-wrap: break-word;
        }

        body.galv-freeres .hero-features{
            list-style: none;
            margin-bottom: 30px;
        }

        body.galv-freeres .hero-feature-item{
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 18px;
            flex-wrap: nowrap;
        }

        body.galv-freeres .hero-feature-item img{
            width: 24px;
            height: 24px;
        }

        body.galv-freeres .hero-testimonial{
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        body.galv-freeres .hero-carousel-container{
            width: 100%;
            max-width: 600px;
            overflow: hidden;
            position: relative;
            padding: 20px 0px;
            margin: -20px -10px;
        }

        body.galv-freeres .hero-carousel-track{
            display: flex;
        }

        body.galv-freeres .hero-carousel-img{
            width: 100%;
            height: auto;
            border-radius: 20px;
            object-fit: contain;
        }

        /* ── Inline iframe wrapper ── */
        body.galv-freeres .inline-form-wrap{
            width: 85%;
            border-radius: 12px;
            overflow: hidden;
        }
        

        body.galv-freeres .inline-form-wrap iframe{
            display: block;
            width: 100%;
            height: auto;
            border: none;
        }

        /* ── Newsletter Section ── */
        body.galv-freeres .newsletter-section{
            background-color: #e6ebff;
            padding: 60px 0;
        }

        body.galv-freeres .filter-container{
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 50px;
            justify-content: left;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        body.galv-freeres .filter-pill{
            background: #fff;
            border: none;
            border-radius: 100px;
            padding: 8px 20px;
            font-size: 18px;
            line-height: 29px;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: var(--font-body);
            -webkit-tap-highlight-color: transparent;
            user-select: none;
        }

        body.galv-freeres .filter-pill.active{
            background: var(--primary-blue);
            color: #fff;
        }

        body.galv-freeres .filter-pill:hover:not(.active){
            background: #f1f5f9;
            color: #334155;
        }

        body.galv-freeres .newsletter-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        body.galv-freeres .newsletter-card{
            background: #fff;
            border-radius: 12px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        body.galv-freeres .newsletter-thumbnail{
            width: 100%;
            height: 200px;
            border-radius: 10px;
            object-fit: cover;
        }

        body.galv-freeres .newsletter-category-badge{
            background: var(--accent-blue);
            color: var(--primary-blue);
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 29px;
            padding: 4px 12px;
            border-radius: 999px;
            display: inline-block;
            margin: 10px 0;
            width: max-content;
        }

        body.galv-freeres .newsletter-title{
            font-size: 18px;
            line-height: 29px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        body.galv-freeres .newsletter-excerpt{
            font-size: 14px;
            color: var(--text-dark);
            line-height: 22px;
            margin-bottom: 20px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        body.galv-freeres .newsletter-meta{
            display: flex;
            align-items: center;
            gap: 16px;
        }

        body.galv-freeres .newsletter-meta-item{
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            line-height: 22px;
            color: var(--text-gray);
        }

        body.galv-freeres .newsletter-meta-item svg{
            width: 16px;
            height: 16px;
        }

        body.galv-freeres .load-more-container{
            text-align: center;
            margin-top: 40px;
        }

        body.galv-freeres .btn-load-more{
            background: var(--primary-blue);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 14px 40px;
            font-size: 18px;
            line-height: 29px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease;
            font-family: var(--font-body);
        }

        body.galv-freeres .btn-load-more:hover{
            background: var(--bg-navy);
        }

        /* ── Why Section ── */
        body.galv-freeres .why-section{
            background-color: #fff;
            padding: 60px 0;
        }

        body.galv-freeres .why-section .container{
            max-width: 1920px;
        }

        body.galv-freeres .why-section__heading{
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 600;
            color: var(--primary-blue);
            text-align: center;
            margin-bottom: 48px;
            line-height: 1.3;
        }

        body.galv-freeres .why-grid-top{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-bottom: 28px;
        }

        body.galv-freeres .why-grid-bottom{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            max-width: calc((100% - 28px) * 2 / 3 + 28px);
            margin: 0 auto 48px;
        }

        body.galv-freeres .why-card{
            background-color: var(--accent-blue);
            border-radius: 16px;
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
        }

        body.galv-freeres .why-card__icon-wrap{
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
        }

        body.galv-freeres .why-card__icon-wrap img{
            width: 52px;
            height: 52px;
            object-fit: contain;
        }

        body.galv-freeres .why-card__title{
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            color: var(--primary-blue);
            line-height: 1.3;
        }

        body.galv-freeres .why-card__body{
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--text-dark);
            line-height: 1.6;
        }

        body.galv-freeres .why-card:hover{
            border: 2px solid #aea0ff;
        }

        body.galv-freeres .why-section__cta{
            /* iframe will sit here — center it with max-width */
            display: flex;
            justify-content: center;
        }

        body.galv-freeres .why-section__cta .inline-form-wrap{
            max-width: 470px;
            width: 100%;
        }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            body.galv-freeres .container{ padding: 0 40px; }
            body.galv-freeres .hero{ padding: 40px 0; }
            body.galv-freeres .hero .container{ grid-template-columns: 1.1fr 1fr; gap: 30px; }
            body.galv-freeres .hero-content h1{ font-size: 38px; }
            body.galv-freeres .hero-content p{ font-size: 16px; margin-bottom: 20px; }
            body.galv-freeres .hero-feature-item{ font-size: 16px; gap: 10px; margin-bottom: 20px; }
            body.galv-freeres .hero-features{ margin-bottom: 30px; }
            body.galv-freeres .newsletter-section{ padding: 40px 0; }
            body.galv-freeres .newsletter-grid{ grid-template-columns: repeat(2, 1fr); }
            body.galv-freeres .why-grid-top{ grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 768px) {
            body.galv-freeres .container{ padding: 0 20px; }
            body.galv-freeres .hero{ padding: 40px 0; }
            body.galv-freeres .hero .container{ grid-template-columns: 1fr; gap: 0px; text-align: left; padding: 0 20px; }
            body.galv-freeres .hero-content h1{ font-size: 36px; line-height: 42px; overflow-wrap: break-word; word-break: break-word; white-space: normal !important; }
            body.galv-freeres .hero-content p{ font-size: 20px; margin-bottom: 20px; }
            body.galv-freeres .hero-feature-item{ font-size: 16px; margin-bottom: 20px; }
            body.galv-freeres .hero-testimonial{ width: 100%; justify-content: center; margin-top: 30px; }
            body.galv-freeres .inline-form-wrap iframe{ height: auto; max-width: 500px; }
            body.galv-freeres .newsletter-section{ padding: 40px 0; }
            body.galv-freeres .filter-container{ flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 15px; -webkit-overflow-scrolling: touch; -ms-overflow-style: none; scrollbar-width: none; gap: 8px; margin-bottom: 20px; }
            body.galv-freeres .filter-container::-webkit-scrollbar{ display: none; }
            body.galv-freeres .filter-pill{ white-space: nowrap; flex-shrink: 0; padding: 8px 16px; font-size: 14px; font-weight: 500; }
            body.galv-freeres .newsletter-grid{ grid-template-columns: 1fr; }
            body.galv-freeres .why-section{ padding: 50px 0; }
            body.galv-freeres .why-section__heading{ font-size: 24px; margin-bottom: 32px; }
            body.galv-freeres .why-grid-top{ grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
            body.galv-freeres .why-grid-bottom{ grid-template-columns: 1fr; gap: 20px; max-width: 100%; margin-bottom: 36px; }
            body.galv-freeres .why-card__title{ font-size: 18px; }
            body.galv-freeres .why-card__body{ font-size: 16px; }
            body.galv-freeres .why-section__cta .inline-form-wrap{ max-width: 100%; }
        }
        
        @media (max-width: 768px) {
        body.galv-freeres nav button, body.galv-freeres nav a{
        padding: 10px 14px;
        }
    }

        
