/*
 Theme Name:   astra child
 Template:     astra
*/


/* ── Top Bar ─────────────────────────────────────────────────── */
/* Hides the top Google Translate Bar */
.skiptranslate, .goog-te-banner-frame {
    visibility: hidden !important;
    display: none !important;
}

/* Hides the 'powered by' iframe */
iframe.skiptranslate {
    visibility: hidden !important;
    display: none !important;
}

body {
    top: 0px !important;
}

/* ── Sticky Header ───────────────────────────────────────────── */
/* ── Sticky Header ───────────────────────────────────────────── */
.custom-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid #E2E8F0;
    border-top: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

/* Ensure sticky works on mobile */
@supports (position: sticky) {
    .custom-header {
        position: sticky;
        top: 0;
    }
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0;
    gap: 20px;
}

/* ── Logo ────────────────────────────────────────────────────── */
.site-logo { flex-shrink: 0; }

.site-logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: inherit;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

/* ── Header Right ────────────────────────────────────────────── */
.header-right {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
}

.primary-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    /* Always start from left */
    justify-content: flex-start;
}

/* Top level items */
.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    padding-bottom: 10px;

    white-space: nowrap;
}

.primary-menu > li > a:hover,
.primary-menu > li:hover > a {
   
    border-bottom:2px solid #155DFC;
}

/* Dropdown arrow on parent items */
.primary-menu > li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #777;
    margin-left: 3px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.primary-menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* ── Dropdown panel ── */
.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 8px;
    list-style: none;
    margin: 0;
    z-index: 9999;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

/* Show on hover (desktop) */
.primary-menu > li:hover > .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Dropdown items */
.primary-menu .sub-menu li {
    position: relative;
}

.primary-menu .sub-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s;
}

.primary-menu .sub-menu li a:hover {
    background: #f5f5f5;
    color: #111;
}

/* Right arrow icon on child items */
.primary-menu .sub-menu li a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: #bbb;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}

.primary-menu .sub-menu li a:hover::after {
    color: #555;
    transform: translateX(3px);
}

/* ── Nested sub-menu (3rd level) ── */
.primary-menu .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 6px);
    right: auto;
}

.primary-menu .sub-menu li:hover > .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Small divider between groups (optional) */
.primary-menu .sub-menu li + li {
    border-top: 1px solid #f5f5f5;
}

/* ── Language Toggle Button ──────────────────────────────────── */
.lang-toggle-btn {
    background: transparent;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-toggle-btn:hover {
    color: black;
    border-bottom: 1px solid rgb(9, 107, 226);
}

/* ── RTL Mode Adjustments ────────────────────────────────────── */
body.rtl-mode .header-inner {
    flex-direction: row-reverse;
}

body.rtl-mode .header-right {
    flex-direction: row-reverse;
}

body.rtl-mode .primary-menu {
    flex-direction: row-reverse;
}

/* Flip top bar content for RTL - left moves to right, right moves to left */
body.rtl-mode .top-bar-inner {
    flex-direction: row-reverse;
}

/* Adjust icon margins for RTL */
body.rtl-mode .top-left i {
    margin-left: 0;
    margin-right: 10px;
}

/* Ensure text alignment flips for top bar */
body.rtl-mode .top-left,
body.rtl-mode .top-right {
    text-align: right;
}

/* If you have top-left and top-right classes, flip them */
body.rtl-mode .top-bar-inner .top-left {
    order: 2;
}

body.rtl-mode .top-bar-inner .top-right {
    order: 1;
}

/* Arabic font when RTL is active */
body.rtl-mode {
    font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
}

/* Flip directional icons in RTL mode */
body.rtl-mode .fa-arrow-right,
body.rtl-mode .fa-arrow-left,
body.rtl-mode .fa-chevron-right,
body.rtl-mode .fa-chevron-left,
body.rtl-mode .fa-angle-right,
body.rtl-mode .fa-angle-left,
body.rtl-mode .fa-long-arrow-alt-right,
body.rtl-mode .fa-long-arrow-alt-left {
    transform: scaleX(-1);
}

/* For custom arrow icons/images */
body.rtl-mode .arrow-icon,
body.rtl-mode .next-arrow,
body.rtl-mode .prev-arrow {
    transform: scaleX(-1);
}

html.translated-rtl {
    direction: rtl;
}
/* RTL ONLY for page content (not full layout) */
html.translated-rtl body {
    direction: rtl;
    text-align: right;
}

/* Keep navbar LTR always */
.header-inner,
.header-right,
.primary-menu,
.top-bar-inner {
    direction: ltr !important;
    text-align: left !important;
}


/* ── Mobile Toggle — HIDDEN (navbar always visible) ──────────── */
.mobile-toggle {
    display: none !important;
}

/* ── Mobile: Nested navigation with click support ────────────── */
@media (max-width: 768px) {
    .header-inner {
        gap: 10px;
        display: block;
    }

    .top-right {
        padding: 5px;
    }

    /* Always visible, no hamburger */
    .header-right {
        display: block !important;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .primary-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        /* Start from left */
        justify-content: flex-start;
    }

    .primary-menu li a {
        font-size: 13px;
        padding: 5px 0;
    }

    /* Make parent items clickable for dropdown */
    .primary-menu > li.menu-item-has-children > a {
        cursor: pointer;
        position: relative;
    }

    /* Mobile dropdown - change from hover to click */
    .primary-menu .sub-menu {
        position: static !important;
        display: none;
        box-shadow: none;
        border: none;
        border-radius: 10px;
        background: #f9f9f9;
        margin: 4px 0 4px 15px;
        opacity: 1;
        transform: none;
        pointer-events: all;
        padding: 4px;
        width: calc(100% - 15px);
    }

    /* Show submenu when parent has 'open' class */
    .primary-menu > li.open > .sub-menu,
    .primary-menu .sub-menu li.open > .sub-menu {
        display: block;
    }

    /* Nested submenu styling on mobile */
    .primary-menu .sub-menu .sub-menu {
        position: static !important;
        left: auto;
        margin-left: 15px;
        width: calc(100% - 15px);
    }

    /* Remove hover effects on mobile */
    .primary-menu > li:hover > .sub-menu {
        display: none;
        opacity: 1;
        transform: none;
    }

    .primary-menu > li.open:hover > .sub-menu {
        display: block;
    }

    .primary-menu .sub-menu li a {
        padding: 10px 14px;
        font-size: 13px;
        white-space: normal;
    }

    /* Rotate arrow when open on mobile */
    .primary-menu > li.menu-item-has-children.open > a::after {
        transform: rotate(180deg);
    }

    .quote-button {
        font-size: 12px;
        padding: 8px 14px;
        text-align: center;
        width: 100%;
    }

    .lang-toggle-btn {
        font-size: 12px;
        padding: 8px 14px;
        text-align: center;
        width: 100%;
    }

    /* Mobile RTL adjustments */
    body.rtl-mode .header-inner {
        display: block;
    }

    body.rtl-mode .primary-menu .sub-menu {
        margin: 4px 15px 4px 0;
        width: calc(100% - 15px);
    }

    body.rtl-mode .primary-menu .sub-menu .sub-menu {
        margin-right: 15px;
    }

    body.rtl-mode .top-bar-inner {
        flex-direction: row-reverse;
    }
}

/* ── Scroll Effect ───────────────────────────────────────────── */
.custom-header.scrolled {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Custom Footer */
.custom-footer {
    background: #ffffff;
    color: #070707;
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #E2E8F0;

}

/* Footer Grid - 3 Columns */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Titles */
.footer-title {
    color: #070707;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

 

/* RTL Adjustment for title underline */
body.rtl-mode .footer-title:after {
    left: auto;
    right: 0;
}

/* Company Description */
.company-desc {
    color: #070707;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    font-weight: bold;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #070707;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0073e6;
}

/* Image Credits */
.credits-text {
    color: #070707;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.credits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credits-list li {
    color: #777;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Footer Divider */
.footer-divider {
    border: none;
    border-top: 1px solid #333;
    margin: 30px 0 20px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #E2E8F0;

}

.footer-bottom p {
    color: #777;
    font-size: 13px;
    margin: 0;
}

/* RTL Adjustments */
body.rtl-mode .footer-title:after {
    left: auto;
    right: 0;
}

body.rtl-mode .footer-links {
    padding-right: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .custom-footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-title {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

 



/* srvice template style */


/* style.css - Acoustic Solutions Template Styles */
/* Fully Responsive — Mobile First */


/* ──────────────────────────────────────────────
   CSS VARIABLES
   ────────────────────────────────────────────── */
:root {
    --sp-black:      #0f0f0f;
    --sp-green:      #1a9e5c;
    --sp-green-l:    #e8f7ef;
    --sp-grey:       #f7f7f5;
    --sp-border:     #e8e8e4;
    --sp-text:       #3a3a3a;
    --sp-muted:      #888880;
    --sp-font-display: 'Fraunces', Georgia, serif;
    --sp-font-body:   ;
}

/* ──────────────────────────────────────────────
   BASE TYPOGRAPHY — Mobile First
   ────────────────────────────────────────────── */

.sp-lead {
    font-family: var(--sp-font-body);
    font-size: 1rem;
    color: var(--sp-text);
    line-height: 1.7;
    margin: 0 0 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sp-border);
}

@media (min-width: 768px) {
    .sp-lead {
        font-size: 1.1rem;
        line-height: 1.9;
        margin: 0 0 48px;
        padding-bottom: 32px;
    }
}

.sp-h2 {
    font-family: var(--sp-font-display);
    font-size: 1.5rem;
    color: var(--sp-black);
    font-weight: 600;
    margin: 40px 0 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .sp-h2 {
        font-size: 1.75rem;
        margin: 56px 0 24px;
    }
}

@media (min-width: 1024px) {
    .sp-h2 {
        font-size: 1.9rem;
    }
}

.sp-body {
    font-family: var(--sp-font-body);
    font-size: 0.9rem;
    color: var(--sp-text);
    line-height: 1.7;
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .sp-body {
        font-size: 0.95rem;
        line-height: 1.85;
        margin: 0 0 24px;
    }
}

/* ──────────────────────────────────────────────
   SCOPE GRID — Fully Responsive
   ────────────────────────────────────────────── */

.sp-scope-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin: 0 0 32px;
    background: var(--sp-border);
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width: 600px) {
    .sp-scope-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 0 48px;
    }
}

.sp-scope-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 16px;
    transition: background 0.2s;
}

@media (min-width: 768px) {
    .sp-scope-item {
        gap: 16px;
        padding: 22px 20px;
    }
}

.sp-scope-item:hover {
    background: var(--sp-grey);
}

.sp-scope-icon {
    color: var(--sp-green);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .sp-scope-icon {
        font-size: 1.1rem;
        margin-top: 3px;
    }
}

.sp-scope-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sp-scope-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sp-black);
    font-family: var(--sp-font-body);
}

@media (min-width: 768px) {
    .sp-scope-item strong {
        font-size: 0.88rem;
    }
}

.sp-scope-item span {
    font-size: 0.75rem;
    color: var(--sp-muted);
    line-height: 1.4;
    font-family: var(--sp-font-body);
}

@media (min-width: 768px) {
    .sp-scope-item span {
        font-size: 0.78rem;
        line-height: 1.5;
    }
}

/* ──────────────────────────────────────────────
   FIGURES & IMAGES — Responsive
   ────────────────────────────────────────────── */

.sp-figure {
    margin: 24px 0;
}

@media (min-width: 768px) {
    .sp-figure {
        margin: 40px 0;
    }
}

.sp-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (min-width: 768px) {
    .sp-img {
        border-radius: 16px;
        aspect-ratio: 16/7;
        object-fit: cover;
    }
}

.sp-figure figcaption {
    font-size: 0.7rem;
    color: var(--sp-muted);
    text-align: center;
    margin-top: 8px;
    font-family: var(--sp-font-body);
    font-style: italic;
}

@media (min-width: 768px) {
    .sp-figure figcaption {
        font-size: 0.73rem;
        margin-top: 10px;
    }
}

/* ──────────────────────────────────────────────
   PROCESS STEPS — Responsive
   ────────────────────────────────────────────── */

.sp-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 768px) {
    .sp-steps {
        margin: 0 0 48px;
    }
}

.sp-step {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid var(--sp-border);
    counter-increment: steps;
}

@media (min-width: 640px) {
    .sp-step {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        padding: 24px 0;
    }
}

@media (min-width: 768px) {
    .sp-step {
        gap: 24px;
    }
}

.sp-step:last-child {
    border-bottom: none;
}

.sp-step::before {
    content: counter(steps, decimal-leading-zero);
    font-family: var(--sp-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sp-green);
    line-height: 1;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .sp-step::before {
        font-size: 1.8rem;
        width: 48px;
        margin-top: -2px;
    }
}

.sp-step-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sp-black);
    margin-bottom: 4px;
    font-family: var(--sp-font-body);
}

@media (min-width: 768px) {
    .sp-step-label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
}

.sp-step p,
.sp-step > div {
    font-size: 0.85rem;
    color: var(--sp-text);
    line-height: 1.6;
    margin: 0;
    font-family: var(--sp-font-body);
}

@media (min-width: 768px) {
    .sp-step p,
    .sp-step > div {
        line-height: 1.7;
    }
}

/* ──────────────────────────────────────────────
   PROOF POINTS & STATS — Responsive
   ────────────────────────────────────────────── */

.sp-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--sp-border);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 24px;
}

@media (min-width: 600px) {
    .sp-proof-grid {
        grid-template-columns: repeat(4, 1fr);
        border-radius: 16px;
        margin: 0 0 32px;
    }
}

.sp-proof-card {
    background: var(--sp-grey);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

@media (min-width: 768px) {
    .sp-proof-card {
        padding: 28px 20px;
        gap: 6px;
    }
}

.sp-proof-num {
    font-family: var(--sp-font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sp-black);
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .sp-proof-num {
        font-size: 2.4rem;
        letter-spacing: -0.03em;
    }
}

.sp-proof-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--sp-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: var(--sp-font-body);
}

@media (min-width: 768px) {
    .sp-proof-label {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }
}

.sp-proof-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 768px) {
    .sp-proof-list {
        margin: 0 0 48px;
        gap: 10px;
    }
}

.sp-proof-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--sp-text);
    font-family: var(--sp-font-body);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .sp-proof-list li {
        gap: 12px;
        font-size: 0.88rem;
    }
}

.sp-proof-list li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sp-green);
    flex-shrink: 0;
    margin-top: 7px;
}

@media (min-width: 768px) {
    .sp-proof-list li::before {
        width: 6px;
        height: 6px;
        margin-top: 8px;
    }
}

/* ──────────────────────────────────────────────
   SPECIFICATIONS TABLE — FULLY RESPONSIVE
   ────────────────────────────────────────────── */

.sp-table-wrapper {
    overflow-x: auto;
    margin: 0 0 32px;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .sp-table-wrapper {
        margin: 0 0 48px;
        overflow-x: visible;
    }
}

.sp-table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-family: var(--sp-font-body);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.sp-table tr {
    border-bottom: 1px solid var(--sp-border);
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
}

@media (min-width: 640px) {
    .sp-table tr {
        display: table-row;
        padding: 0;
    }
}

.sp-table tr:last-child {
    border-bottom: none;
}

.sp-table th,
.sp-table td {
    text-align: left;
    padding: 8px 0;
    font-size: 0.85rem;
    vertical-align: top;
    display: block;
}

@media (min-width: 640px) {
    .sp-table th,
    .sp-table td {
        display: table-cell;
        padding: 14px 16px;
        font-size: 0.82rem;
    }
}

@media (min-width: 768px) {
    .sp-table th,
    .sp-table td {
        padding: 14px 20px;
    }
}

.sp-table th {
    font-weight: 600;
    color: var(--sp-muted);
    width: auto;
}

@media (min-width: 640px) {
    .sp-table th {
        width: 35%;
        font-weight: 600;
    }
}

@media (min-width: 768px) {
    .sp-table th {
        width: 30%;
    }
}

.sp-table td {
    font-weight: 500;
    color: var(--sp-black);
    padding-bottom: 12px;
}

@media (min-width: 640px) {
    .sp-table td {
        padding-bottom: 14px;
    }
}

/* Alternative card-style table for very small screens */
@media (max-width: 480px) {
    .sp-table thead {
        display: none;
    }
    
    .sp-table tr {
        border: 1px solid var(--sp-border);
        border-radius: 12px;
        margin-bottom: 12px;
        padding: 16px;
        display: block;
    }
    
    .sp-table th,
    .sp-table td {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 8px 0;
        border: none;
    }
    
    .sp-table th::before,
    .sp-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--sp-muted);
        width: 40%;
        font-size: 0.8rem;
    }
    
    .sp-table td {
        padding: 8px 0;
    }
}

/* ──────────────────────────────────────────────
   FAQ SECTION — Responsive
   ────────────────────────────────────────────── */

.sp-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 40px;
}

@media (min-width: 768px) {
    .sp-faq {
        gap: 12px;
        margin: 0 0 56px;
    }
}

.sp-faq-item {
    border: 1.5px solid var(--sp-border);
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    transition: border-color 0.2s;
}

@media (min-width: 768px) {
    .sp-faq-item {
        padding: 22px 24px;
        border-radius: 14px;
    }
}

.sp-faq-item:hover {
    border-color: #ccc;
}

.sp-faq-q {
    font-family: var(--sp-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sp-black);
    margin: 0 0 8px;
}

@media (min-width: 768px) {
    .sp-faq-q {
        font-size: 0.93rem;
        margin: 0 0 10px;
    }
}

.sp-faq-a {
    font-family: var(--sp-font-body);
    font-size: 0.85rem;
    color: var(--sp-text);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .sp-faq-a {
        line-height: 1.75;
    }
}

/* ──────────────────────────────────────────────
   CALL TO ACTION BLOCK — Responsive
   ────────────────────────────────────────────── */

.sp-cta {
    background: lightgreen;
    border-radius: 16px;
    padding: 32px 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .sp-cta {
        border-radius: 20px;
        padding: 48px;
        margin-top: 60px;
    }
}

.sp-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .sp-cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }
}

.sp-cta-left {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .sp-cta-left {
        text-align: left;
    }
}

.sp-cta-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sp-green);
    margin: 0 0 8px;
    font-family: var(--sp-font-body);
}

@media (min-width: 768px) {
    .sp-cta-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 1.5px;
        margin: 0 0 10px;
    }
}

.sp-cta-heading {
    font-family: var(--sp-font-display);
    font-size: 1.3rem;
    color: #fff;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .sp-cta-heading {
        font-size: 1.6rem;
        margin: 0 0 12px;
    }
}

@media (min-width: 1024px) {
    .sp-cta-heading {
        font-size: 1.9rem;
    }
}

.sp-cta-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
    font-family: var(--sp-font-body);
}

@media (min-width: 768px) {
    .sp-cta-text {
        line-height: 1.7;
    }
}

.sp-cta-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .sp-cta-right {
        min-width: 200px;
        align-items: flex-end;
    }
}

.sp-cta-btn-primary,
.sp-cta-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--sp-font-body);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    width: 100%;
}

@media (min-width: 640px) {
    .sp-cta-btn-primary,
    .sp-cta-btn-wa {
        width: auto;
        padding: 13px 26px;
    }
}

@media (min-width: 768px) {
    .sp-cta-btn-primary,
    .sp-cta-btn-wa {
        padding: 14px 28px;
    }
}

.sp-cta-btn-primary {
    background: #fff;
    color: var(--sp-black);
}

.sp-cta-btn-primary:hover {
    background: #f0f0f0;
    color: var(--sp-black);
    transform: translateY(-1px);
}

.sp-cta-btn-wa {
    background: #25D366;
    color: #fff;
}

.sp-cta-btn-wa:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-1px);
}

/* ──────────────────────────────────────────────
   ADDITIONAL RESPONSIVE UTILITIES
   ────────────────────────────────────────────── */

/* Hide on mobile, show on desktop */
@media (max-width: 640px) {
    .sp-hide-mobile {
        display: none;
    }
}

/* Show on mobile, hide on desktop */
@media (min-width: 641px) {
    .sp-show-mobile {
        display: none;
    }
}

/* Touch-friendly tap targets */
button,
a,
.sp-faq-item,
.sp-scope-item {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    button,
    a,
    .sp-cta-btn-primary,
    .sp-cta-btn-wa {
        min-height: 44px;
    }
}



/* // products  */
 
:root {
  --pd-black:   #0f0f0f;
  --pd-green:   #1a9e5c;
  --pd-grey:    #f7f7f5;
  --pd-border:  #e8e8e4;
  --pd-text:    #3a3a3a;
  --pd-muted:   #888880;
  --pd-font-d:  ;
  --pd-font-b:  ;
}
 
.pd-lead {
  font-family: var(--pd-font-b);
  font-size: 1.1rem;
  color: var(--pd-text);
  line-height: 1.9;
  margin: 0 0 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--pd-border);
}
 
.pd-h2 {
  font-family: var(--pd-font-d);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--pd-black);
  font-weight: 600;
  margin: 52px 0 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
 

 
/* Quick specs strip */
.pd-specs-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 48px;
}
.pd-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pd-grey);
  border: 1px solid var(--pd-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-family: var(--pd-font-b);
  color: var(--pd-text);
}
.pd-spec-pill i { color: var(--pd-green); font-size: 12px; }
.pd-spec-pill strong { color: var(--pd-black); font-weight: 600; }
 
/* Images */
.pd-figure { margin: 36px 0; }
.pd-figure--hero .pd-img { aspect-ratio: 16/8; }
.pd-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}
.pd-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 36px 0;
}
@media (max-width: 600px) { .pd-gallery { grid-template-columns: 1fr; } }
.pd-gallery .pd-img { aspect-ratio: 4/3; }
 
/* Benefits grid */
.pd-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 48px;
}
@media (max-width: 600px) { .pd-benefit-grid { grid-template-columns: 1fr; } }
.pd-benefit {
  background: var(--pd-grey);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-benefit-icon {
  font-size: 1.2rem;
  color: var(--pd-green);
}
.pd-benefit strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pd-black);
  font-family: var(--pd-font-b);
}
.pd-benefit p {
  font-size: 0.8rem;
  color: var(--pd-text);
  line-height: 1.6;
  margin: 0;
  font-family: var(--pd-font-b);
}
 
/* Specs table */
.pd-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 52px;
  font-family: var(--pd-font-b);
}
.pd-table tr { border-bottom: 1px solid var(--pd-border); }
.pd-table tr:last-child { border-bottom: none; }
.pd-table th {
  text-align: left;
  padding: 14px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pd-muted);
  width: 36%;
  vertical-align: top;
}
.pd-table td {
  padding: 14px 10px;
  font-size: 0.88rem;
  color: var(--pd-black);
  font-weight: 500;
}
 
/* Use grid */
.pd-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--pd-border);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 52px;
}
@media (max-width: 640px) { .pd-use-grid { grid-template-columns: repeat(2, 1fr); } }
.pd-use-item {
  background: #fff;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd-use-item strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pd-black);
  font-family: var(--pd-font-b);
}
.pd-use-item p {
  font-size: 0.75rem;
  color: var(--pd-muted);
  line-height: 1.5;
  margin: 0;
  font-family: var(--pd-font-b);
}
 
/* Install steps */
.pd-install-steps {
  padding-left: 0;
  list-style: none;
  counter-reset: install;
  margin: 0 0 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pd-install-steps li {
  counter-increment: install;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--pd-border);
  font-size: 0.88rem;
  color: var(--pd-text);
  font-family: var(--pd-font-b);
  line-height: 1.6;
}
.pd-install-steps li:last-child { border-bottom: none; }
.pd-install-steps li::before {
  content: counter(install);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--pd-green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--pd-font-b);
}
 
/* FAQ */
.pd-faq { display: flex; flex-direction: column; gap: 10px; margin: 0 0 56px; }
.pd-faq-item {
  border: 1.5px solid var(--pd-border);
  border-radius: 14px;
  padding: 20px 22px;
  background: #fff;
}
.pd-faq-q {
  font-family: var(--pd-font-b);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pd-black);
  margin: 0 0 8px;
}
.pd-faq-a {
  font-family: var(--pd-font-b);
  font-size: 0.84rem;
  color: var(--pd-text);
  line-height: 1.75;
  margin: 0;
}
 
/* CTA — dark block */
.pd-cta {
  background: lightseagreen;
  border-radius: 20px;
  padding: 48px;
  margin-top: 60px;
}
@media (max-width: 640px) { .pd-cta { padding: 32px 24px; } }
.pd-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pd-cta-left { flex: 1; min-width: 240px; }
.pd-cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pd-green);
  margin: 0 0 10px;
  font-family: var(--pd-font-b);
}
.pd-cta-heading {
  font-family: var(--pd-font-d);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #fff;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pd-cta-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
  font-family: var(--pd-font-b);
}
.pd-cta-right { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }
.pd-cta-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: var(--pd-black); border-radius: 999px;
  padding: 14px 26px; font-size: 0.85rem; font-weight: 700;
  font-family: var(--pd-font-b); text-decoration: none;
  transition: background 0.2s; white-space: nowrap;
}
.pd-cta-btn-primary:hover { background: #f0f0f0; color: var(--pd-black); }
.pd-cta-btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: #25D366; color: #fff; border-radius: 999px;
  padding: 13px 26px; font-size: 0.85rem; font-weight: 700;
  font-family: var(--pd-font-b); text-decoration: none;
  transition: background 0.2s; white-space: nowrap;
}
.pd-cta-btn-wa:hover { background: #1ebe5d; color: #fff; }