:root {
    --primary: #155DFC;
    --primary-dark: #0e4bc2;
    --accent-light: #f4f8ff;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --bg-gray: #f9f9f9;
    --border: #dfe6e9;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 93, 252, 0.3);
}

.btn--outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn--outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn--cta {
    width: 100%;
    max-width: 400px;
    font-size: 1.2rem;
    padding: 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.logo__icon {
    font-size: 1.8rem;
    margin-right: 8px;
}

.logo__text span {
    color: var(--primary);
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link:hover {
    color: var(--primary);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 10px;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nav__link {
        font-size: 1.5rem;
        font-weight: 700;
    }
}

/* Hero */
.hero {
    background-color: var(--accent-light);
    padding: 80px 0;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.hero__badge {
    color: #f1c40f;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero__list {
    margin-bottom: 40px;
}

.hero__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero__list span {
    color: var(--primary);
    font-weight: 900;
}

.hero__image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Trust Bar */
.trust-bar {
    background: var(--text-main);
    color: var(--white);
    padding: 20px 0;
}

.trust-bar__inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    font-weight: 600;
    opacity: 0.9;
}

/* Services */
.services {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 15px;
    transition: 0.3s;
    text-align: left;
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* CTA Box */
.cta-box-section {
    padding: 80px 0;
}

.cta-box {
    background: var(--accent-light);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    margin-top: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box__label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cta-box__title {
    font-size: 3rem;
    margin-bottom: 25px;
}

.cta-box__text {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta-box__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-box__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.cta-box__list span {
    color: var(--primary);
}

/* Why Choose */
.why-choose {
    padding: 100px 0;
    background: var(--bg-gray);
}

.why-choose__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefit {
    margin-bottom: 30px;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.why-choose__image img {
    border-radius: 20px;
    opacity: 0.8;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.faq__item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--text-main);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer__brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer__links ul li {
    margin-bottom: 12px;
}

.footer__links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 20px;
}

/* Content Section & Layout */
.content-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.content-layout {
    display: flex;
    gap: 60px;
}

.sidebar-wrapper {
    flex: 0 0 370px;
}

.main-content {
    flex: 1;
}

.sidebar {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 30px;
    position: sticky;
    top: 120px;
}

.sidebar h5 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sidebar strong {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.sidebar p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.sidebar a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

.sidebar-list {
    margin-bottom: 40px;
}

.sidebar-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.sidebar-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--white);
}

.sidebar-btn {
    display: block !important;
    background: var(--white);
    color: var(--primary) !important;
    text-align: center;
    padding: 20px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.3s;
}

.sidebar-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Main Content Typography */
.main-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
}

.main-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.heading-divider {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

/* Lists */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin: 30px 0;
}

.services-list-grid li,
.issues-list li,
.benefits-detailed li,
.faq-detailed li {
    position: relative;
    padding-left: 25px;
}

.services-list-grid li::before,
.issues-list li::before,
.benefits-detailed li::before,
.faq-detailed li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.issues-list li {
    padding: 15px 0 15px 25px;
    border-bottom: 1px solid var(--border);
}

.benefits-detailed li,
.faq-detailed li {
    margin-bottom: 30px;
}

.benefits-detailed strong,
.faq-detailed strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
    color: var(--text-main);
}

.how-it-works-list {
    counter-reset: steps;
    list-style: none;
}

.how-it-works-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.how-it-works-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.how-it-works-list strong {
    font-size: 1.2rem;
}

/* CTA & Boxes */
.box-cta {
    background: var(--accent-light);
    border-left: 4px solid var(--primary);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.box-cta p {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--text-main);
}

.box-cta a {
    color: var(--primary);
    text-decoration: underline;
}

.note-box {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.note-box p {
    margin-bottom: 0;
}

/* Subpage & Legal Styling */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--text-main);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-main);
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.content-list {
    margin-bottom: 30px;
}

.content-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.content-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* Contact Page Specifics */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

@media (max-width: 600px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.contact-card:hover {
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-top: 15px;
}

/* About Page Specifics */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.about-feature {
    background: var(--accent-light);
    padding: 30px;
    border-radius: 15px;
}

.about-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

/* Opt-out Box */
.opt-out-box {
    background: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.opt-out-box h3 {
    margin-top: 0;
}

.opt-out-note {
    font-style: italic;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .content-layout {
        flex-direction: column;
    }

    .sidebar-wrapper {
        flex: 1;
        order: 2;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .main-content h2 {
        font-size: 2rem;
    }
}

/* Footer Refined */
.footer {
    background: var(--text-main);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: none;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.footer__column {
    flex: 1;
    min-width: 200px;
}

.footer__column--wide {
    flex: 2;
    min-width: 600px;
}

@media (max-width: 1200px) {
    .footer__column--wide {
        min-width: 400px;
    }
}

@media (max-width: 600px) {

    .footer__column,
    .footer__column--wide {
        min-width: 100%;
    }
}

.logo--white {
    color: var(--white);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 400px;
    gap: 8px 30px;
}

.footer__column--wide .footer__nav {
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
}

.footer__column--wide .footer__nav li {
    flex: 0 0 calc(33.333% - 20px);
}

.footer__nav li {
    margin-bottom: 0;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-size: 0.95rem;
}

.footer__nav a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer__phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
    display: block;
    margin-bottom: 10px;
}

.footer__column p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer__disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer__disclaimer p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .hero {
        padding-top: 40px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero__title,
    .page-header h1 {
        font-size: 2.5rem;
    }

    .cta-box__title {
        font-size: 2.25rem;
    }

    .hero__list li {
        justify-content: center;
    }

    .header__cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero__title,
    .page-header h1 {
        font-size: 2rem;
    }

    .cta-box__title {
        font-size: 1.8rem;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .main-content h2,
    .legal-content h2 {
        font-size: 1.75rem;
    }

    .heading-divider {
        font-size: 1.3rem;
    }

    .footer__column--wide .footer__nav li {
        flex: 0 0 calc(50% - 15px);
    }

    .footer__nav {
        max-height: none;
    }
}

@media (max-width: 600px) {
    .footer__column--wide .footer__nav li {
        flex: 0 0 100%;
    }

    .footer__content {
        text-align: left;
        align-items: flex-start;
    }
}

/* Sticky Mobile CTA Styling */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 18px;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mobile-sticky-cta__icon {
    font-size: 1.5rem;
}

.mobile-sticky-cta:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .mobile-sticky-cta {
        display: flex;
    }
}