/* Shared Nadigit IMS CTA and footer system */
.faq-section { background: var(--off-white); }

.faq-container,
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-list {
    display: block;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md, 14px);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--navy); }

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    text-align: left;
    font-family: var(--font-body, inherit);
}

.faq-question span:first-child {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
}

.faq-toggle,
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100, #f1f3f8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--navy);
    font-size: 0;
}

.faq-icon::before {
    content: '+';
    font-size: 18px;
    line-height: 1;
    color: currentColor;
}

.faq-item.open .faq-toggle,
.faq-item.open .faq-icon {
    background: var(--navy);
    transform: rotate(45deg);
    color: var(--white, #fff);
}

.faq-item.open .faq-toggle svg { color: var(--white, #fff); }
.faq-toggle svg { color: var(--navy); transition: color 0.3s; }

.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
    transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 720px;
    padding-bottom: 20px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-answer-content p,
.faq-answer p {
    margin: 0;
}

.final-cta {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}

.final-cta > .container,
.footer > .container,
.seo-footer > .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244,183,64,0.1) 0%, transparent 70%);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.final-cta .section-label,
.final-cta .section-label--light {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cyan-tech, #18C5D8);
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 16px;
}

.final-cta h2 {
    font-family: var(--font-display, 'Poppins', sans-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white, #fff);
    margin: 0 0 16px;
}

.final-cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 48px;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md, 14px);
    padding: 24px 20px;
    text-decoration: none;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.cta-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm, 8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card-label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    letter-spacing: .06em;
    font-weight: 600;
}

.cta-card-value {
    font-family: var(--font-display, 'Poppins', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white, #fff);
}

.footer,
.seo-footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(200px, 1.25fr) minmax(320px, 2.5fr) minmax(200px, 1fr);
    gap: 40px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 24px;
}

.footer-nav-col h4,
.footer-section h4 {
    font-family: var(--font-display, 'Poppins', sans-serif);
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: .06em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.footer-links--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
}

.footer-links--cols a {
    font-size: .8125rem;
}

.footer-nav-col--locale .footer-locale-details {
    margin: 0;
}

.footer-locale-summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: .875rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
    user-select: none;
}

.footer-locale-summary::-webkit-details-marker,
.footer-locale-summary::marker {
    display: none;
    content: '';
}

.footer-locale-summary:hover {
    color: var(--accent-light, #F4B740);
}

.footer-locale-chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.footer-locale-details[open] .footer-locale-chevron {
    transform: rotate(180deg);
}

.footer-locale-details[open] .footer-locale-summary {
    color: rgba(255,255,255,0.65);
}

.footer-locale-details .footer-links--cols {
    margin-top: 12px;
}

.footer-locale-summary:focus-visible {
    outline: 2px solid var(--accent, #F4B740);
    outline-offset: 3px;
    border-radius: 4px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img,
.footer-logo-img {
    height: 52px;
    width: auto;
    display: block;
    /* Light SVG has transparent bg; invert yields white wordmark on dark footer */
    filter: brightness(0) invert(1);
}

.footer-logo span {
    display: none;
}

.footer-description {
    font-size: .875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0 0 20px;
}

.footer-langs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-lang-tag {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 99px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.footer-links a {
    font-size: .875rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover { color: var(--accent-light); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm, 8px);
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.footer-contact .contact-icon svg [stroke] { stroke: currentColor; }
.footer-contact .contact-icon svg [fill="#25d366"] { fill: currentColor; }

.contact-info { display: flex; flex-direction: column; }

.contact-info h5 {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: .06em;
    margin: 0 0 2px;
}

.contact-info a {
    font-size: .875rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color .2s;
}

.contact-info a:hover { color: var(--accent-light); }

.footer-consent-trigger {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
    padding: 0;
    font-family: inherit;
}

.footer-consent-trigger:hover { color: var(--accent-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .82rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-info {
        grid-column: 1 / -1;
    }

    .footer-nav {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .cta-cards,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links--cols {
        grid-template-columns: 1fr;
    }

    .final-cta { padding: 64px 0; }
}
