    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

    header#masthead {
        display: none;
    }

    body::before,
    body::after {
        content: none !important;
        display: none !important;
    }

    .site {
        margin: 0px !important;
    }

    .site-inner {
        max-width: 100% !important;
    }

    :root {
        --primary-blue: #0D3D67;
        --accent-green: #63A844;
        --top-bar-bg: #3a8fb7;
        --text-dark: #0D3D67;
        --text-light: #0D3D67;
        --accent-blue: #3498db;
        --green-btn: #6ab04c;
        --pink-accent: #e84393;

    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Roboto", sans-serif;
        color: var(--text-dark);
        line-height: 1.5;
    }

    p,
    span,
    li,
    a {
        font-family: "Lato", sans-serif;
    }

    .container {
        max-width: 90%;
        margin: 0 auto;
        padding: 0 50px;
    }

    /* Top Bar */
    .top-bar {
        overflow: hidden;
        background: linear-gradient(270deg, #44B0E4 0%, #104258 100%);
        color: white;
        padding: 15px 0;
        font-size: 14px;
        font-weight: bold;
    }

    .marquee {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .marquee-content {
        display: flex;
        gap: 60px;
        align-items: center;
        width: max-content;
        animation: scrollMarquee 25s linear infinite;
    }

    /* 🔥 THE MAGIC */
    @keyframes scrollMarquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .top-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Main Nav */
    .main-nav {
        background: white;
    }

    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-img {
        height: auto;
        width: auto;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 25px;
        margin: 0px !important;
    }

    .container.recom-pr {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: bold;
        font-size: 16px;
    }

    .cta-button {
        background-color: var(--accent-green);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 6px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.3s;
    }

    .cta-button:hover, a.bundle-btn {
      background-color: #0d3d67;
      color: white;
      text-decoration: none;
    }

    .mobile-header {
        background: #fff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        padding: 10px 15px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
	button#prevBtn,
        button#nextBtn {
            display: block !important;
        }
    /* HAMBURGER */
    .menu-toggle {
        width: 48px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        border: none;
        gap: 5px;
    }

    .menu-toggle span {
        height: 3px;
        width: 100%;
        background: #0d1b3d;
        border-radius: 3px;
        transition: 0.3s;
    }

    /* CART */
    .cart-icon {
        font-size: 22px;
        cursor: pointer;
        color: #0d1b3d;
    }

    /* SIDE MENU */
    .side-menu {
        position: fixed;
        top: 0;
        left: -260px;
        width: 260px;
        height: 100%;
        background: #fff;
        transition: left 0.3s ease;
        z-index: 1100;
    }

    .side-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .side-menu li {
        border-bottom: 1px solid #eee;
    }

    .side-menu a {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: #0d3d67;
        font-weight: 500;
        font-size: 20px;
    }

    .side-menu a:hover {
        background: #f5f7fb;
    }



    .side-menu.active {
        left: 0;
    }

    .menu-header {
        display: flex;
        justify-content: flex-end;
        padding: 15px 20px 5px;
    }

    .close-btn {
        font-size: 28px;
        cursor: pointer;
        color: #0d1b3d;
        line-height: 1;
    }

    /* OVERLAY */
    .overlay {
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 1050;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Section */
    .hero {
        background: url('https://calc.softprowatersystems.com/wp-content/uploads/2026/01/hero-back.png');
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 80px;
        text-align: center;
    }

    .rating-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .stars {
        color: #ff7a8a;
        font-size: 18px;
    }

    .rating-text {
        font-size: 16px;
        color: var(--text-light);
    }

    .hero-title {
        font-size: 60px;
        font-weight: 800;
        color: var(--primary-blue);
        max-width: 1100px;
        margin: 0 auto 25px;
        line-height: 1.1;
    }

    h2.section-title, .testimonial-title-new-email {
        font-size: 60px;
        font-weight: 800;
        width: 1000px;
        margin: 0 auto;
        text-align: center;
        line-height: 68px;
    }

    .bundling-section .section-subtitle {
        color: white;
        font-size: 20px;
        text-align: center;
        padding: 10px 24%;
        margin-bottom: 20px;
		line-height:24px;
    }
.product-header p {
	font-size:30px;
    line-height: 32px;
}
    .hero-subtitle {
        font-size: 20px;
        color: var(--primary-blue);
        max-width: 850px;
        margin: 0 auto 40px;
    }

    .email-box {
        background: white;
        border: 2px dashed #004a7c;
        display: inline-flex;
        align-items: center;
        padding: 15px 30px;
        border-radius: 4px;
        gap: 15px;
        margin-bottom: 30px;
    }

    .email-text {
        font-weight: 700;
        color: var(--primary-blue);
        font-size: 20px;
    }

    .hero-footer-text {
        font-size: 20px;
        color: var(--primary-blue);
        margin-bottom: 20px;
    }

    .hero-footer-subtext {
        font-size: 20px;
        color: var(--primary-blue);
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Section 1 */
    .bundling-section {
        background-color: var(--primary-blue);
        padding: 100px 0px;
    }

    .card-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .dark-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 40px 30px;
        text-align: center;
        color: white;
    }

    .card-icon {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .dark-card h3 {
        font-size: 25px;
        margin-bottom: 15px;
        line-height: 1.3;
        font-weight: 800;
    }

    .dark-card p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Section 2 */
    .process-section {
        background: url('https://calc.softprowatersystems.com/wp-content/uploads/2026/01/hero-back.png');
        background-repeat: no-repeat;
        background-size: cover;
        padding: 100px 0px;
    }

    .process-section .section-subtitle {
        margin-bottom: 15px;
        text-align: center;
        color: var(--text-dark);
        font-size: 20px;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .white-card {
        background: white;
        border-radius: 12px;
        padding: 40px 40px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .process-icon {
        height: 80px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .process-icon img {
        max-height: 100%;
    }

    .step-number {
        background: var(--accent-green);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-weight: bold;
        font-size: 25px;
        font-family: "Lato", sans-serif;
    }

    .white-card h3 {
        font-size: 25px;
        color: var(--primary-blue);
        font-weight: bold;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .white-card p {
        font-size: 16px;
        color: var(--text-dark);
    }

    /* Section 3 */
    .product-section {
        padding: 100px 0;
        background: url('https://calc.softprowatersystems.com/wp-content/uploads/2026/01/softner-filter.png');
        background-repeat: no-repeat;
        background-position: right center;
    }

    .white-text {
        color: white;
    }

    .product-flex {
        display: flex;
        align-items: center;
        gap: 45px;
    }

    .product-info {
        width: 49%;
    }

    .product-title {
        font-size: 60px;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .product-intro {
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 20px;
        color: var(--text-dark);
        line-height: 28px;
    }

    .product-desc {
        color: var(--text-dark);
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 25px;
    }

    .benefit-list {
        list-style: none;
        margin-bottom: 40px;
        margin-left: 0px;
    }

    .benefit-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 16px;
        align-items: center;
        color: var(--text-dark);
    }

    .benefit-list svg {
        color: var(--accent-green);
        margin-top: 3px;
        flex-shrink: 0;
    }

    .bundle-btn {
        background: var(--accent-green);
        color: white;
        border: none;
        padding: 18px 45px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        margin-bottom: 20px;
    }

    .ticker-bar {
        color: var(--text-dark);
        overflow: hidden;
        white-space: nowrap;
        padding: 30px 0;
    }

    .ticker-track {
        display: flex;
        width: max-content;
        animation: marquee 18s linear infinite;
    }

    .ticker-content {
        display: flex;
        align-items: center;
    }

    .ticker-content span {
        color: var(--text-dark);
        margin: 0 14px;
        font-size: 20px;
        letter-spacing: 0.05em;
        font-weight: bold;
    }

    .dot {
        color: var(--text-dark);
    }

    .testimonials-section {
        background: url(https://calc.softprowatersystems.com/wp-content/uploads/2026/01/hero-back.png);
        background-repeat: no-repeat;
        padding: 100px 0;
        text-align: center;
        overflow: hidden;
        background-size: cover;
    }

    .testimonials-section .section-subtitle,
    .faq-section .section-subtitle {
        margin-bottom: 20px;
        width: auto;
        color: var(--text-dark);
        padding: 10 20px;
        font-size: 20px;
    }

    .testimonials-section h2.section-title {
        font-size: 60px;
        font-weight: 800;
        margin: 0 auto;
        width: auto;
        text-align: center;
        line-height: 68px;
    }

    .testimonial-slider-wrapper {
        position: relative;
        margin: 0 auto;
        padding: 0 60px;
    }

    .testimonial-viewport {
        overflow: hidden;
        padding: 20px 0;
    }

    .testimonial-track {
        display: flex;
        gap: 24px;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 300px;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        text-align: left;
    }

    .card-image {
        height: 360px;
        overflow: hidden;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-content {
        padding: 24px;
    }

    .stars {
        color: #ff6b6b;
        font-size: 18px;
        display: block;
    }

    .card-content h4 {
        font-size: 18px;
        margin-bottom: 12px;
        height: 50px;
        overflow: hidden;
        color: var(--primary-blue);
    }

    .card-content p {
        font-size: 14px;
        color: #0D3D67;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .author {
        font-size: 10px;
        padding-top: 15px;
        color: #0D3D67;
    }

    .verified {
        color: #0D3D67;
        font-weight: 400;
        font-size: 10px;
        margin-left: 5px;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #ddd;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.2s;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-btn:hover {
        background: #f8f8f8;
        border-color: #bbb;
    }

    .nav-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn,
    .prev-btn {
        right: 5px;
        background: var(--primary-blue);
        color: white;
        border: none;
    }

    .next-btn:hover {
        background: #153e6b;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Optional: pause on hover */
    .ticker-bar:hover .ticker-track {
        animation-play-state: paused;
    }

    .rating-footer {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        color: var(--text-dark);
        margin-top: 20px;
    }

    .comparison-container {
        background-color: var(--primary-blue);
        padding: 100px 0px;
    }

    .comparison-header h2 {
        font-size: 60px;
        font-weight: 900;
        margin-bottom: 15px;
        line-height: 1.2;
        color: white;
        text-align: center;
    }

    .comparison-header p {
        font-size: 20px;
        font-weight: 500;
        color: white;
        text-align: center;
        margin-bottom: 15px;
    }

    .comparison-grid {
        padding-top: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        align-items: stretch;
    }

    .features-column {
        display: flex;
        flex-direction: column;
    }

    .feature-header {
        height: 100px;
    }

    .feature-item {
        height: 70px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #1F5F96;
    }

    .feature-item h6 {
        font-size: 20px;
        color: #ffff;
        font-weight: 400;
		line-height:24px;
    }

    .comparison-container .product-column {
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .elite-column {
        background: linear-gradient(135deg, #c7e9f1 0%, #9ed9e8 100%);
        color: #0a3d62;
    }

    .standard-column {
        background-color: white;
        color: #0a3d62;
    }

    .product-header {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 25px;
        font-weight: bold;
    }

    .status-item {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-header,
    .status-item {
        position: relative;
        border-bottom: none;
    }

    .product-header::after,
    .status-item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        /* 👈 control underline length here */
        height: 1px;
        background-color: #79BCD0;
    }

    .icon-check {
        width: 24px;
        height: 24px;
		margin-top:6px;
        background-color: #4caf50;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .icon-check svg {
        width: 20px;
        height: 20px;
    }

    .icon-cross {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-cross svg {
        width: 24px;
        height: 24px;
    }

    .hydration-section {
        padding: 100px 0px;
        margin: 0 auto;
        background-color: #ffffff;
    }

    .hydration-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .hydration-header h2 {
        font-size: 60px;
        font-weight: 800;
        color: #0D3D67;
        line-height: 1.1;
        margin: 0;
    }

    .hydration-content-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 600px;
    }

    .col-rev {
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .col-rev .info-card {
        left: 0;
    }

    .col-rev .info-card {
        left: 0;
        top: 15%;
    }

    .image-container {
        width: 65%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .image-container img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .info-card {
        position: absolute;
        right: 0;
        width: 50%;
        background: url('https://calc.softprowatersystems.com/wp-content/uploads/2026/01/hero-back.png');
        background-repeat: no-repeat;
        background-size: cover;
        padding: 50px 100px;
        border-radius: 10px;
        overflow: hidden;
        /* important */
    }

    /* White overlay */
    .info-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(255 255 255 / 62%);
        /* adjust opacity */
        border-radius: 10px;
        z-index: 1;
    }

    /* Keep content above overlay */
    .info-card>* {
        position: relative;
        z-index: 2;
    }

    .sub-headline {
        color: #e91e63;
        font-weight: 600;
        font-size: 20px;
        display: block;
        margin-bottom: 15px;
    }

    .info-card h2 {
        color: #0a3d62;
        font-size: 60px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .info-card h3 {
        color: #0a3d62;
        font-size: 35px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .description {
        color: #0D3D67;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 30px 0 0 0;
    }

    .hydration-bundle-btn .rating-footer {
        justify-content: center;
    }

    .hydration-bundle-btn.wrap-duplicate {
        text-align: center;
    }

    .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: #0D3D67;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .owner-section {
        background-color: var(--primary-blue);
        color: var(--text-light);
        padding: 100px 0px;
        text-align: center;
        position: relative;
    }

    .owner-hero-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .owner-section h2 {
        font-size: 60px;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.1;
        color: white;
    }

    .owner-hero-subtitle {
        font-size: 20px;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto 40px;
        color: white;
    }

    .video-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -350px;
        width: 90%;
        max-width: 800px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }

    .video-placeholder {
        position: relative;
        aspect-ratio: 16 / 9;
        background: #000;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-placeholder iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
    }

    .feature-list svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        color: #0a3d62;
        border: 1.5px solid #0a3d62;
        border-radius: 50%;
        padding: 2px;
    }
.hydration-section .wrap-duplicate {
        padding-top: 120px;
    }
    .wrap-duplicate {
        padding-top: 60px;
    }

    .features-section {
        padding: 28% 0px 4% 0px;
        text-align: center;
    }

    h3.section-title {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 40px;
        color: var(--primary-blue);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .feature-card {
        border: 1px solid #346B9C;
        padding: 30px 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        border-radius: 10px;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 20px;
        color: var(--primary-blue);
    }

    .feature-card h3 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 16px;
        color: #0D3D67;
        line-height: 24px;
    }

    /****faq****/
    section.faq-section {
        padding: 100px 0;
    }

    .faq-item.active .faq-icon .minus {
        stroke: #ffff !important;
    }

    .faq-container {
        max-width: 80%;
        margin: 0 auto;
        padding: 0 50px;
        text-align: center;
    }

    .faq-title {
        color: var(--primary-blue);
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .faq-subtitle {
        color: var(--text-gray);
        font-size: 16px;
        margin-bottom: 48px;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .show-mobile {
        display: none;
    }

    .faq-item {
        background-color: #F0F7F6;
        border-radius: 4px;
        overflow: hidden;
        transition: all 0.3s ease;
        text-align: left;
    }

    .faq-item:hover {
        border-color: #cbd5e0;
    }

    .faq-header {
        padding: 24px 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
    }

    .faq-question {
        color: var(--primary-blue);
        font-weight: 600;
        font-size: 20px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        border: 2px solid var(--primary-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-blue);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .faq-icon svg {
        width: 28px;
        height: 28px;
    }

    .faq-icon .minus {
        display: none;
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        padding: 0 32px;
    }

    .faq-content p {
        color: var(--text-dark);
        line-height: 1.6;
        font-size: 16px;
        margin-bottom: 24px;
    }

    /* Active State Styles */
    .faq-item.active {
        background-color: #F0F7F6;
    }

    .faq-item.active .faq-content {
        max-height: 200px;
        padding: 0 32px;
    }

    .faq-item.active .faq-icon {
        background-color: #0D3D67;
        color: white;
    }

    .faq-item.active .faq-icon .plus {
        display: none;
    }

    .faq-item.active .faq-icon .minus {
        display: block;
    }

    /*****Slider Section**/
    section.slide-section {
        background: #0D3D67;
    }

    section.slide-section .ticker-content span {
        color: #fff;
    }

    /******Product-Section2****/
    .product-section2 {
        padding: 100px 0;
        background: url('https://calc.softprowatersystems.com/wp-content/uploads/2026/01/product-image.png');
        background-repeat: no-repeat;
        background-position: right center;
    }
	.product-info h2.product-title {
        font-size: 54px;
	}
    /***********Two Column Section*******/
    .expert-section {
        background: url('https://calc.softprowatersystems.com/wp-content/uploads/2026/01/hero-back.png');
        display: flex;
        align-items: center;
        padding: 0 20px 0px 20px;
        color: var(--text-dark);
        background-repeat: no-repeat;
        background-size: cover;
    }
.text-column {
    padding-top: 60px !important;
}

    .expert-section .product-desc p {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .content-wrapper {
        display: flex;
        gap: 60px;
    }

    /* Phone Mockup Styles */
    .image-column {
        width: 100%;
    }

    .softpro-footer {
        background-color: #ffffff;
        padding: 30px 0;
        color: #0D3D67;
    }

    .footer-container {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    span.separator {
        padding: 10px;
    }

    .footer-left p {
        font-size: 16px;
    }

    nav.footer-links a {
        font-size: 13px;
        text-decoration: none;
        color: #0D3D67;
        font-family: 'Lato';
    }

    /* Main Content */
    .product-section-recomm {
        padding: 75px 20px;
        text-align: center;
    }

    .main-title {
        font-size: 36px;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 20px;
    }

    /* Timer */
    .timer-banner {
        margin-top: 15px;
        background-color: #3C9ECD;
        display: inline-flex;
        align-items: center;
        padding: 15px 20px;
        border-radius: 8px;
        color: white;
        justify-content: space-between;
        gap: 30px;
        width: 35%;
        border: 1px solid #0D3D67;
    }

    .discount-info {
        text-align: left;
    }

    .discount-pct {
        display: block;
        font-size: 26px;
        font-weight: 800;
    }

    .discount-sub {
        font-size: 16px;
        opacity: 0.9;
    }

    .timer-slots {
        display: flex;
        gap: 10px;
    }

    .timer-box {}

    .timer-num {
        font-size: 18px;
        font-weight: 800;
        background: white;
        color: #0D3D67;
        padding: 5px 8px;
        border-radius: 4px;
        font-family: 'Lato';
        min-width: 40px;
        margin-bottom: 10px;
    }

    .timer-label {
        font-size: 13px;
        text-transform: uppercase;
        color: #ffff;
        font-family: 'Lato';
    }

    .pricing-note {
        font-size: 16px;
        color: #0D3D67;
        margin-top: 15px;
        margin-bottom: 40px;
        font-family: 'Lato';
    }

    /* Cards Grid */
    .cards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .card {
        background: white;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 40px 30px 30px;
        position: relative;
        text-align: left;
        display: flex;
        flex-direction: column;
    }

    .top-rec {
        border: 2px solid #f8a5c2;
        background-color: #ECFFFE;
    }
.recommended-size {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Lato';
    color: #0d3d66 !important;
}
    .badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 6px 20px;
        border-radius: 20px;
        color: white;
        font-size: 16px;
        font-weight: 700;
        white-space: nowrap;
        font-family: 'Roboto';
    }

    .top-badge {
        background-color: var(--pink-accent);
    }

    .runner-badge {
        background-color: var(--primary-blue);
    }

    .product-card .product-title {
        font-size: 30px;
        font-weight: 800;
        color: var(--primary-blue);
        text-align: center;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .pricing {
        text-align: center;
        font-size: 16px;
        color: var(--primary-blue);
        margin-bottom: 20px;
        font-family: 'Lato';
    }

    .save-tag {
        background-color: var(--accent-blue);
        color: white;
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 11px;
        margin-left: 5px;
    }

    .product-image-container {
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 25px;
    }

    .main-prod-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .thumbnails {
        display: flex;
        justify-content: start;
        gap: 8px;
    }

    .thumbnails img {
        width: 50px;
        height: 50px;
        border: 1px solid #ddd;
        border-radius: 4px;
        object-fit: cover;
    }

    .features {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
        flex-grow: 1;
    }

    .features li {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.5;
        color: var(--primary-blue);
    }

    .features svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .cta-btn {
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 6px;
        font-weight: 800;
        font-size: 16px;
        cursor: pointer;
        transition: opacity 0.2s;
        margin-bottom: 15px;
        text-align: center;
        text-decoration: none;
    }

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

    .cta-btn.secondary {
        background-color: #78b856;
        color: white;
    }

    .shipping-info {
        border: 2px dashed #004a7c;
        padding: 5px;
        font-size: 16px;
        color: var(--primary-blue);
        text-align: center;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 15px;
        font-family: 'Lato';
        width: max-content;
        margin: 0 auto;
    }

    .rating {
        text-align: center;
        font-size: 16px;
        color: var(--primary-blue);
        display: flex;
		gap:6px;
        align-items: center;
        justify-content: center;
        font-family: 'Lato';
    }

    .stars {
        color: #e84393;
        font-size: 14px;
        margin-right: 5px;
    }
@media only screen and (min-width:1921px){
.container, .owner-hero-content, .faq-container {max-width: 1280px;
  margin: 0 auto;    
  padding: 0 20px;   
  box-sizing: border-box;}
}
    @media (min-width: 1921px) {
        .features-section {
            padding: 17% 0 4% 0;
            text-align: center;
        }
    }

    @media (min-width: 1600px) and (max-width: 1920px) {
        .features-section {
            padding: 22% 0 4% 0;
            text-align: center;
        }
    }
@media only screen and (max-width:1920px){
.col-rev .info-card {
    top: 30%;
}
}
@media only screen and (max-width: 1600px) {
    .col-rev .info-card {
        top: 25%;
    }
}
@media only screen and (max-width: 1536px) {
    .col-rev .info-card {
        top: 18%;
    }
}
@media only screen and (max-width:1440px){
	.info-card {
    padding: 50px 50px;
}
.col-rev .info-card {
        top: 22%;
    }
}
@media only screen and (max-width: 1366px) {
    .col-rev .info-card {
        top: 20%;
    }
}
    @media only screen and (max-width: 1280px) {
        .container {
            max-width: 100%;
        }
		.info-card {padding: 50px 50px;}

    }
@media only screen and (max-width:1080px){
	.rating {display:ruby;}
 .hydration-header h2 {
    padding-bottom: 100px;
}
h3.section-title {
    padding-top: 80px;
}
.product-info {
    width: 60%;
}
}

    @media only screen and (max-width: 1024px) {

        h1,
        h2 {
            font-size: 36px !important;
            line-height: 46px !important;
            width: auto !important;
        }

        .container {
            padding: 0 20px !important;
        }

        .info-card {
            padding: 20px !important;
        }

        .col-rev .info-card {
            top: 22% !important;
        }

        .features-section {
            padding: 38% 0 4% 0 !important;
        }

        .feature-card {
            padding: 20px !important;
        }

        .feature-card h3 {
            font-size: 20px !important;
        }

        .testimonial-card {
            min-width: 270px !important;
        }

        .product-section,
        .product-section2 {
            background-size: 50% !important;
            background-position: right bottom !important;
        }

        .expert-section {
            padding-top: 0 !important;
            padding-bottom: 10px;
        }

        .content-wrapper {
            flex-direction: column !important;
        }

        .timer-banner {
            width: 45%;
        }

        .product-card .product-title {
            font-size: 20px !important;
            line-height: 26px !important;
            width: auto !important;
        }

        .cta-button {
            padding: 12px 10px !important;
        }
		.hydration-header h2 {
    padding-bottom: 0px;
}
		h3.section-title {
    padding-top: 0px;
}
		.hydration-section {
    padding: 100px 10px;
}
		.hydration-section .wrap-duplicate {
    padding-top: 50px;
}
		.text-column {
    padding-top: 0px !important;
}
	.testimonial-slider-wrapper {
    
    padding: 0 50px;
}
    }

    @media (max-width: 992px) {

        .hydration-content-wrapper {
            flex-direction: column;
            min-height: auto;
        }

        .image-container {
            width: 100%;
            margin: 20px 0 -50px;
        }

        .info-card {
            position: relative;
            width: 90%;
            right: auto;
            padding: 30px;
        }

        .hydration-header h2 {
            font-size: 32px;
        }

        .card-grid,
        .process-grid {
            grid-template-columns: 1fr;
        }

        .product-flex {
            flex-direction: column;
            text-align: center;
        }

        .benefit-list li {
            justify-content: center;
        }

        .product-title {
            font-size: 32px;
        }
    }

    @media only screen and (max-width: 980px) {
		.info-card {
    margin-bottom: 40px;
}
        .pricing {
            font-size: 20px !important;
        }

        .timer-banner {
            width: 55% !important;
        }

        .bundling-section .section-subtitle,
        p.section-subtitle {
            padding: 10px 5%;
        }

        .card-grid,
        .process-grid {
            width: auto;
            margin: 0 auto;
            margin-top: 15px;
        }

        .show-mobile {
            display: block;
        }

        .hide-mobile {
            display: none;
        }

        .product-info {
            width: 100%;
        }

        section.product-section-no-bg.show-mobile .container.product-flex {
            text-align: left;
            padding: 40px 15px !important;
        }

        .benefit-list li {
            justify-content: left;
            font-size: 18px;
        }

        .info-card {
            width: 100%;
            top: 50px;
        }

        .mobile-image-product {
            text-align: right;
        }

        .mobile-image-product img {
            width: 70%;
            height: 85%;
        }

        .cards-grid {
            grid-template-columns: 1fr !important;
        }
    }
@media only screen and (max-width:834px){
	h3.section-title {
    padding-top: 55px;
}

	button#prevBtn,
        button#nextBtn {
            display: block !important;
        }
}

    @media (max-width: 768px) {

        .top-bar,
        .nav-links {
            display: block;
        }

        section.hero {
            padding: 45px 10px;
        }

        .product-section-recomm,
        .process-section,
        .bundling-section,
        .hydration-section,
        .testimonials-section,
        section.faq-section {
            padding: 45px 20px;
        }

        .comparison-container {
            padding: 45px 10px;
        }

        .owner-section {
            padding: 45px 20px 100px;
        }

        .two-col-wrapper {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .right-col ul li {
            text-align: left;
        }

        .faq-container {
            max-width: 95%;
            padding: 0;
        }

        h1,
        h2 {
            font-size: 36px !important;
            line-height: 40px !important;
        }

        .product-header p {
            font-size: 18px !important;
            line-height: 21px !important;
        }

        .feature-item h6 {
            font-size: 14px !important;
        }

        .icon-check {
            width: 20px !important;
            height: 20px !important;
        }

        .hydration-header {
            margin-bottom: 20px !important;
        }

        .video-container {
            bottom: -267px !important;
        }

        .features-grid {
            display: flex;
            flex-direction: column;
        }

        p,
        li,
        .email-text,
        span {
            font-size: 16px !important;
            line-height: 24px !important;
        }

        p.rating-text,
        span.rating-val {
            font-size: 13px !important;
        }

        .email-box {
            padding: 10px 0px !important;
            gap: 5px !important;
        }

        .email-icon {
            width: 11% !important;
        }

        span.star {
            font-size: 13px !important;
        }

        .cert-bar {
            padding: 30px 10px !important;
        }

        .comparison-grid {
            gap: 10px !important;
        }

        .info-card h3 {
            font-size: 24px !important;
            margin-bottom: 15px !important;
        }

        .bundle-btn {
            font-size: 14px !important;
            padding: 18px 10px !important;
        }

        .features-section .container {
            padding: 10px 15px !important;
        }

        .mobile-image-product img {
            width: 78% !important;
            height: 45% !important;
        }
    }

    @media only screen and (max-width: 667px) {
        .video-container {
            bottom: -220px !important;
        }

        .footer-container {
            flex-direction: column;
            gap: 10px;
        }

        .timer-banner {
            width: 100% !important;
        }

        .shipping-info,
        .rating,
        span.stars {
            font-size: 10px !important;
        }

        h3.section-title {
            font-size: 24px !important;
            line-height: 30px !important;
            margin-bottom: 10px !important;
        }
    }

    @media (max-width: 640px) {

        .faq-title {
            font-size: 32px;
        }

        .faq-header {
            padding: 20px;
        }

        .faq-question {
            font-size: 16px;
            padding-right: 10px;
        }

    }
@media only screen and (max-width:668px){
	    .timer-banner {
        width: 100% !important;
    }
	    .testimonial-slider-wrapper {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 549px){
    .video-container {
        bottom: -158px !important;
    }
    .features-section {
        padding: 33% 0 4% 0 !important;
    }
	h3.section-title {
    padding-top: 10px;
}
}
@media only screen and (max-width:480px){
	section.product-section-no-bg.show-mobile a.bundle-btn {
    display: flex;
    width:max-content;
    margin:0 auto;
}
	.rating-footer {
    display: block;
    text-align: center;
}
	
section.product-section-no-bg.show-mobile h2.product-title {
    font-size: 32px !important;
    line-height: 34px !important;
    text-align:center;
}
	.mobile-image-product img {
        width: 100% !important;
        height: 60% !important;
        margin-bottom: 20px;
    }
.logo img{
    max-width: 87%;
}
	.rating {display: block;}
	.shipping-info{padding:10px !important;}
	p.hero-subtitle, p.hero-footer-text, p.hero-footer-subtext {color:#000;}
.timer-banner {
        width: 90% !important;
    }
	.owner-hero-subtitle {margin-bottom:0px;}
	    h3.section-title {
        padding-top: 30px;
    }
    .testimonial-card {
        min-width: 100% !important;
    }
	.container
 {
        padding: 0 0px !important;
    }
}

@media only screen and (max-width: 390px) {
    h3.section-title {
        padding-top: 50px;
    }
	    .owner-section {
        padding: 45px 20px 65px;
    }
	.testimonial-slider-wrapper {
		padding: 0 0px;}
	.hydration-bundle-btn .rating-footer {
    display: flex;
    padding-top: 10px;
}
}
@media only screen and (max-width:360px){
	.rating-row {
		display: ruby;}
	.rating-footer {gap:0px !important;}
}