/* Global Styles - shared across all pages */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-dark);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}


/* Hero Section */
.hero-section {
    background:
        linear-gradient(90deg, rgba(30, 30, 30, 0.8) 0%, rgba(30, 30, 30, 0.42) 32%, rgba(30, 30, 30, 0.04) 70%),
        image-set(
            url('../images/hero_isk.webp') type('image/webp'),
            url('../images/hero_isk.jpg') type('image/jpeg')
        ) center center / cover no-repeat;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 740px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    justify-items: start;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-content-inner {
    max-width: 740px;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    min-height: 380px;
    width: 100%;
    max-width: 380px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 80, 67, 0.15);
    border: 1px solid rgba(255, 80, 67, 0.3);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 18px;
    font-weight: 500;
}

.hero-badge i {
    color: var(--gold-primary);
}

.hero-badge--bottom {
    margin-top: 14px;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.8rem, 5.5vw, 3.4rem);
    margin-bottom: 16px;
    line-height: 1.05;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-title .hero-question {
    display: block;
    font-size: clamp(3.8rem, 9vw, 4.8rem);
    font-weight: 800;
    letter-spacing: 0.0025em;
}

.hero-title .hero-subline {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 10px 0;
}

.highlight {
    color: var(--gold-primary);
    display: inline-block;
}

.hero-title .highlight {
    color: var(--gold-primary);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 30px;
    max-width: 600px;
    text-align: justify;
    hyphens: auto;
}

.hero-buttons {
    display: flex;
    gap: 35px;
    margin-bottom: 30px;
    width: 100%;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    flex: 0 1 280px;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    width: 100%;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    min-height: auto;
}

.hero-feature i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* Hero image wrapper removed – background now set on section */

.hero-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay-text h3 {
    color: var(--gold-primary);
    font-size: 1.75rem;
    margin-bottom: 5px;
}

.overlay-text p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.overlay-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

/* Services Section */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.city-reach-section {
    background-color: rgb(30, 30, 30);
    padding: var(--section-padding) 0;
}

.city-reach-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 40px;
}

.city-reach-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.city-reach-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
}

.city-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ff5043;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 80, 67, 0.75), 0 0 24px rgba(255, 80, 67, 0.35);
    transform: translate(-50%, -50%);
    animation: city-wander 16s ease-in-out infinite alternate, city-pulse 2.4s ease-in-out infinite;
    top: 45%;
    left: 55%;
    pointer-events: none;
}

@keyframes city-wander {
    0%   { top: 20%; left: 25%; }
    20%  { top: 35%; left: 45%; }
    40%  { top: 50%; left: 30%; }
    60%  { top: 65%; left: 55%; }
    80%  { top: 40%; left: 70%; }
    100% { top: 55%; left: 80%; }
}

@keyframes city-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.65; }
    50%      { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

.city-reach-content h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.city-reach-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
}

.city-cta {
    margin-top: 18px;
    display: inline-flex;
}

@media (max-width: 768px) {
    .city-reach-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .city-reach-image {
        justify-content: center;
    }

    .city-reach-content {
        text-align: center;
    }

    .city-reach-content p {
        margin: 0 auto;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 12px;
    font-size: 2.25rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 32px 22px 38px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 3px solid transparent;
    min-height: 240px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold-primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgb(30, 30, 30);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.75rem;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--navy-dark);
    font-size: 1.1rem;
}

.service-card p {
    color: #000000;
    line-height: 1.6;
    hyphens: auto;
    text-align: justify;
}

.service-card--modal {
    cursor: pointer;
}

.service-card--modal:focus-visible {
    outline: 3px solid var(--gold-primary);
    outline-offset: 4px;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}
.pricing-section .section-header p,
.pricing-intro p {
    color: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 15px;
    padding: 26px 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    color: #000;
}

.pricing-card.featured {
    border-color: var(--gold-primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover:not(.featured) {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
}

.pricing-header h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.2rem;
    color: var(--gold-primary);
    font-weight: 700;
    margin: 10px 0;
}

.pricing-card.featured .pricing-price {
    font-size: 1.8rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--gray-600);
    display: block;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin: 18px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.pricing-features li {
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    max-width: 240px;
    color: #000;
}

.pricing-features li span {
    flex: 1;
}

.pricing-features i {
    color: var(--green-accent);
    min-width: 16px;
}

.pricing-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 25px auto 0;
    text-align: center;
    min-height: 50px;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: auto;
}

.pricing-note {
    margin-top: 35px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.process-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}
.process-section .section-header p {
    color: #000;
}

@media (min-width: 992px) {
    .pricing-features {
        align-items: flex-start;
        text-align: left;
    }

    .pricing-features li {
        max-width: 100%;
    }
}

.process-progress {
    margin-top: 36px;
    margin-bottom: 26px;
    position: relative;
    padding-top: 32px;
}

.process-progress-bar {
    position: relative;
    height: 10px;
    background: rgba(30, 30, 30, 0.08);
    border-radius: 999px;
    overflow: visible;
    z-index: 1;
}

.process-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background: var(--gold-primary);
    transition: width 0.3s ease;
    z-index: 1;
}

.process-progress-steps {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 2;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgb(30, 30, 30);
    border: 2px solid var(--gold-primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.progress-step.active {
    background: var(--gold-primary);
    color: var(--white);
}

.process-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    background: var(--white);
}

.process-window {
    overflow: hidden;
    width: 100%;
    max-width: 780px;
    justify-self: center;
    background: var(--white);
}

.process-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.45s ease;
    width: 100%;
    background: var(--white);
}

.process-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 6px;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
}

.process-card {
    background-color: rgb(30, 30, 30);
    color: var(--white);
    padding: 26px 30px;
    border-radius: 18px;
    min-height: 480px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-card-image {
    width: clamp(220px, 24vw, 300px);
    height: clamp(220px, 24vw, 300px);
    object-fit: contain;
    display: block;
    margin: 0 auto 14px;
}

.process-card h3 {
    color: var(--gold-primary);
    margin-bottom: 6px;
    font-size: clamp(1.35rem, 2.4vw, 1.6rem);
    text-align: center;
}

.process-card p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.55;
    text-align: center;
}

.process-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--gold-primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(30, 30, 30, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.process-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(30, 30, 30, 0.3);
}

.process-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 992px) {
    .process-progress {
        margin-top: 28px;
        margin-bottom: 20px;
    }

    .process-slider {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "window window"
            "prev   next";
        row-gap: 12px;
    }

    .process-window {
        grid-column: 1 / -1;
    }

    .process-arrow--prev,
    .process-arrow--next {
        justify-self: center;
    }

    .process-arrow--prev {
        grid-area: prev;
        justify-self: end;
    }

    .process-arrow--next {
        grid-area: next;
        justify-self: start;
    }

    .process-track {
        width: 100%;
    }
}

/* Why Choose Us Section */
.why-section {
    position: relative;
    padding: var(--section-padding) 0;
    background-color: rgb(30, 30, 30);
    color: var(--white);
    overflow: hidden;
}

.why-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 80, 67, 0.18), transparent 55%);
}

.why-section .section-header {
    position: relative;
    z-index: 1;
}

.why-section .section-header h2,
.why-section .section-header p {
    color: var(--white);
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.why-item {
    background: rgba(30, 30, 30, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(5, 10, 25, 0.4);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 0;
    align-items: center;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.why-item > * {
    position: relative;
    z-index: 1;
}

.why-item:hover::before {
    opacity: 1;
}

.why-icon {
    color: var(--gold-primary);
    font-size: clamp(2.8rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 6px;
}

.why-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 auto;
}

.why-number {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1;
}

.why-item h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.2rem;
}

.why-item p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    hyphens: auto;
    word-spacing: normal;
}

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

    .why-item {
        padding: 24px;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    color: var(--navy-dark);
}

.faq-section .section-header h2,
.faq-section .section-header p {
    color: var(--navy-dark);
}

.faq-list {
    max-width: 820px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background-color: rgb(30, 30, 30);
    border-radius: 22px;
    padding: 4px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(30, 30, 30, 0.2);
    transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.active {
    border-color: rgba(255, 80, 67, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(30, 30, 30, 0.25);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
}

.faq-question-text {
    flex: 0 0 90%;
    max-width: 90%;
}

.faq-item.active .faq-question-text {
    color: var(--gold-primary);
}

.faq-toggle-icon {
    flex: 0 0 10%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.faq-toggle-symbol {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-toggle-symbol::before,
.faq-toggle-symbol::after {
    content: '';
    position: absolute;
    background: var(--gold-primary);
    transition: transform 0.25s ease;
    border-radius: 1px;
}

.faq-toggle-symbol::before {
    width: 10px;
    height: 2px;
}

.faq-toggle-symbol::after {
    width: 2px;
    height: 10px;
}


.faq-item.active .faq-toggle-symbol::after {
    transform: rotate(90deg);
}

.faq-answer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 0 24px;
}

.faq-answer p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .faq-list {
        margin-top: 40px;
        gap: 16px;
    }
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    text-align: center;
}

.cta-section h2 {
    color: var(--navy-dark);
    margin-bottom: 15px;
    font-size: 2.25rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--navy-medium);
    margin-bottom: 25px;
}

.cta-button {
    background-color: rgb(30, 30, 30);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    background-color: rgb(46, 46, 46);
    transform: translateY(-3px);
}


/* Animations */

/* Responsive Design */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 22px;
    }

}

@media (max-width: 992px) {
    .main-nav ul {
        gap: 18px;
    }

    .logo img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .mobile-toggle {
        display: block;
    }

    .hero-section {
        background:
            linear-gradient(90deg, rgba(30, 30, 30, 0.8) 0%, rgba(30, 30, 30, 0.42) 32%, rgba(30, 30, 30, 0.04) 70%),
            image-set(
                url('../images/isk-hero-2.webp') type('image/webp'),
                url('../images/isk-hero-2.jpeg') type('image/jpeg')
            ) center center / cover no-repeat;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image {
        max-width: 100%;
        min-height: 340px;
    }

    .hero-section {
        padding: 450px 0 60px;
    }

    .hero-content-inner {
        max-width: 100%;
        text-align: left;
        margin: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .hero-question {
        font-size: clamp(2.9rem, 10vw, 3.4rem);
    }

    .hero-title .hero-subline {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
        hyphens: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: none;
        width: min(240px, 90%);
        max-width: 260px;
    }

    .hero-features {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        text-align: left;
        font-size: 0.65rem;
    }

    .hero-feature {
        font-size: 0.65rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-price {
        font-size: 2rem;
    }

    .why-number {
        font-size: 2.75rem;
    }

    .logo img {
        height: 56px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .overlay-text h3 {
        font-size: 1.5rem;
    }

    .overlay-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .pricing-features {
        align-items: flex-start;
        text-align: left;
    }
}


/* Legal Modals (Pop-ups) */
.legal-modal {
    position: fixed;
    inset: 0;
    background: rgba(30, 30, 30, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.legal-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.legal-modal__dialog {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 840px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.legal-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: none;
    font-size: 1.8rem;
    color: var(--navy-dark);
    cursor: pointer;
    line-height: 1;
}

body.modal-open {
    overflow: hidden;
}

/* === Google Fonts (von fonts.css migriert) === */
/* Google Fonts - Roboto Condensed & Open Sans as fallbacks/body */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* Utility class if needed */
.instrument-sans {
    font-family: "Instrument Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
/* === Icon System - Replaces 560KB Font Awesome Pro === */
/* Only the 14 icons actually used on this site */

/* Base icon styles */
.fas, .fab, .far, .fa {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

/* SVG icons as background-image - no font loading needed */
[class*="fa-"]::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    content: "";
}

.fa-phone::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
}

.fa-phone-volume::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M301.5 4.6c5-5 13.3-5 18.4 .1L473 158c5 5 5 13.3 .1 18.4l-50 50c-5 5-13.3 5-18.4-.1l-48-48c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0L420 174.9l32-32L306.9 6.8C302.2 2.1 294.6 2.1 289.9 6.8L256 40.7l32 32 17-17c4.7-4.7 12.3-4.7 17 0l48 48c4.7 4.7 4.7 12.3 0 17l-50 50c-5 5-13.3 5-18.4-.1L145.6 17.1C140.5 12 140.5 3.7 145.6-1.3zm-229 229c7.8-7.8 20.5-7.8 28.3 0l96 96c7.8 7.8 7.8 20.5 0 28.3L72.5 472.2c-7.8 7.8-20.5 7.8-28.3 0l-96-96c-7.8-7.8-7.8-20.5 0-28.3l50-50zM164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M301.5 4.6c5-5 13.3-5 18.4 .1L473 158c5 5 5 13.3 .1 18.4l-50 50c-5 5-13.3 5-18.4-.1l-48-48c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0L420 174.9l32-32L306.9 6.8C302.2 2.1 294.6 2.1 289.9 6.8L256 40.7l32 32 17-17c4.7-4.7 12.3-4.7 17 0l48 48c4.7 4.7 4.7 12.3 0 17l-50 50c-5 5-13.3 5-18.4-.1L145.6 17.1C140.5 12 140.5 3.7 145.6-1.3zm-229 229c7.8-7.8 20.5-7.8 28.3 0l96 96c7.8 7.8 7.8 20.5 0 28.3L72.5 472.2c-7.8 7.8-20.5 7.8-28.3 0l-96-96c-7.8-7.8-7.8-20.5 0-28.3l50-50zM164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
}

.fa-bars::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}

.fa-key::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V448h40c13.3 0 24-10.7 24-24V384h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zm40-176a40 40 0 1 1 -80 0 40 40 0 1 1 80 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V448h40c13.3 0 24-10.7 24-24V384h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zm40-176a40 40 0 1 1 -80 0 40 40 0 1 1 80 0z'/%3E%3C/svg%3E");
}

.fa-euro-sign::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M193.3 0C135.4 0 78.3 30.7 49.1 82.6L32 64 0 96l60.8 60.8C57 172.7 55.1 188.2 55.1 204c0 5.4 .2 10.8 .6 16.1L0 220.4v40l58.7-1.4c5.7 25.8 16.8 49.4 32.1 70L40 360l20 60 64-24c26.5 17.2 57 27 89.4 27c55.9 0 106.8-24.3 141.9-62.7l-23.9-34.6C307.4 357.3 272.1 376 233.4 376c-22.6 0-43.9-5.7-62.6-15.6L240 328l-20-60-84.5 31.4c-14.8-18.5-24.5-41-27.3-65.4L320 231.6v-40l-211.8 2.4C108.1 191 108 188.5 108 186c0-12.9 1.5-25.5 4.3-37.6L320 144v-40L143 109.4C166.5 84.3 199.5 72 233.4 72c24.9 0 48.3 7.3 68.1 20.7l23.9-34.6C299 24.1 247.9 0 193.3 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M193.3 0C135.4 0 78.3 30.7 49.1 82.6L32 64 0 96l60.8 60.8C57 172.7 55.1 188.2 55.1 204c0 5.4 .2 10.8 .6 16.1L0 220.4v40l58.7-1.4c5.7 25.8 16.8 49.4 32.1 70L40 360l20 60 64-24c26.5 17.2 57 27 89.4 27c55.9 0 106.8-24.3 141.9-62.7l-23.9-34.6C307.4 357.3 272.1 376 233.4 376c-22.6 0-43.9-5.7-62.6-15.6L240 328l-20-60-84.5 31.4c-14.8-18.5-24.5-41-27.3-65.4L320 231.6v-40l-211.8 2.4C108.1 191 108 188.5 108 186c0-12.9 1.5-25.5 4.3-37.6L320 144v-40L143 109.4C166.5 84.3 199.5 72 233.4 72c24.9 0 48.3 7.3 68.1 20.7l23.9-34.6C299 24.1 247.9 0 193.3 0z'/%3E%3C/svg%3E");
}

.fa-check::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
}

.fa-check-circle::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
}

.fa-route::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 256C0 167.6 71.6 96 160 96h192c53 0 96 43 96 96s-43 96-96 96H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c88.4 0 160-71.6 160-160S504.4 32 416 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416C504.4 0 576 71.6 576 160S504.4 320 416 320H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c88.4 0 160 71.6 160 160s-71.6 160-160 160H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H384c53 0 96-43 96-96s-43-96-96-96H192C85.6 448 0 362.4 0 256z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 256C0 167.6 71.6 96 160 96h192c53 0 96 43 96 96s-43 96-96 96H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c88.4 0 160-71.6 160-160S504.4 32 416 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416C504.4 0 576 71.6 576 160S504.4 320 416 320H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c88.4 0 160 71.6 160 160s-71.6 160-160 160H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H384c53 0 96-43 96-96s-43-96-96-96H192C85.6 448 0 362.4 0 256z'/%3E%3C/svg%3E");
}

.fa-door-open::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M320 32c0-9.9-4.5-19.2-12.3-25.2S289.8-1.4 280.2 1l-179.9 45C79 51.3 64 70.5 64 92.5V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 288h32V480 32zM256 256c0 17.7-10.7 32-24 32s-24-14.3-24-32s10.7-32 24-32s24 14.3 24 32zm96-128h96V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H512V128c0-35.3-28.7-64-64-64H352v64z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M320 32c0-9.9-4.5-19.2-12.3-25.2S289.8-1.4 280.2 1l-179.9 45C79 51.3 64 70.5 64 92.5V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 288h32V480 32zM256 256c0 17.7-10.7 32-24 32s-24-14.3-24-32s10.7-32 24-32s24 14.3 24 32zm96-128h96V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H512V128c0-35.3-28.7-64-64-64H352v64z'/%3E%3C/svg%3E");
}

.fa-hand-holding-usd::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M312 24V34.5c6.4 1.2 12.6 2.7 18.2 4.2c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17c-10.9-2.9-21.1-4.9-30.2-5c-7.3-.1-14.7 1.7-19.4 4.4c-2.1 1.3-3.1 2.4-3.5 3c-.3 .5-.7 1.2-.7 2.8c0 .3 0 .5 0 .6c.2 .2 .9 1.2 3.3 2.4c5.8 2.8 14.4 5.6 26.9 9.4l.6 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.8 39.9c.5 19.6-9.5 33.9-22.2 43.1c-7.1 5.1-15.3 8.7-24.1 10.9V224c0 13.3-10.7 24-24 24s-24-10.7-24-24V214.6c-9.4-2.3-18.7-5.3-26.5-7.8c-5.8-1.8-11-3.5-15.5-4.7c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17c6.3 1.7 12.6 3.6 18.4 5.4c12.7 4 22.8 7.2 32.5 7.3c8.4 .1 16.1-2.2 20.4-5.5c3.7-2.8 5.3-5.7 5.2-9.8c-.1-3.2-.8-4.5-2.4-5.7c-2.8-1.8-8.5-4.3-20.5-7.9l-1.2-.4c-11.2-3.4-25.1-7.6-36.2-14.6c-5.7-3.5-11.2-8-15.6-14C258 147.8 256 140.2 256 132c0-18.4 9.4-32.2 21.5-40.9c5.5-3.9 11.7-6.9 18.2-9V96c0-13.3 10.7-24 24-24s24 10.7 24 24v.6zM0 480c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64v32H0V480zM192 256c0-35.3 28.7-64 64-64s64 28.7 64 64v32H192V256z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M312 24V34.5c6.4 1.2 12.6 2.7 18.2 4.2c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17c-10.9-2.9-21.1-4.9-30.2-5c-7.3-.1-14.7 1.7-19.4 4.4c-2.1 1.3-3.1 2.4-3.5 3c-.3 .5-.7 1.2-.7 2.8c0 .3 0 .5 0 .6c.2 .2 .9 1.2 3.3 2.4c5.8 2.8 14.4 5.6 26.9 9.4l.6 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.8 39.9c.5 19.6-9.5 33.9-22.2 43.1c-7.1 5.1-15.3 8.7-24.1 10.9V224c0 13.3-10.7 24-24 24s-24-10.7-24-24V214.6c-9.4-2.3-18.7-5.3-26.5-7.8c-5.8-1.8-11-3.5-15.5-4.7c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17c6.3 1.7 12.6 3.6 18.4 5.4c12.7 4 22.8 7.2 32.5 7.3c8.4 .1 16.1-2.2 20.4-5.5c3.7-2.8 5.3-5.7 5.2-9.8c-.1-3.2-.8-4.5-2.4-5.7c-2.8-1.8-8.5-4.3-20.5-7.9l-1.2-.4c-11.2-3.4-25.1-7.6-36.2-14.6c-5.7-3.5-11.2-8-15.6-14C258 147.8 256 140.2 256 132c0-18.4 9.4-32.2 21.5-40.9c5.5-3.9 11.7-6.9 18.2-9V96c0-13.3 10.7-24 24-24s24 10.7 24 24v.6zM0 480c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64v32H0V480zM192 256c0-35.3 28.7-64 64-64s64 28.7 64 64v32H192V256z'/%3E%3C/svg%3E");
}

.fa-crown::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M309 106c11.4-7.6 19-20.3 19-34c0-22.1-17.9-40-40-40s-40 17.9-40 40c0 13.7 7.6 26.4 19 34L209.7 220.3c-2.4 4.9-7.5 7.7-12.8 7.1L117.8 218c-2.6-2.2-5.3-4.4-8.2-6.3c-8.5-5.6-18.7-8.6-29.5-6.9c-21.8 3.4-36.5 24.1-33.1 45.9S71.1 288 92.9 284.6c10.2-1.6 19-7.3 24.8-15.2l75.9 9.6c5.3 .7 9.9 4.3 11.8 9.3L235 384c-1.3 4-2 8.2-2 12.6C233 423.9 255.1 448 283 448h10c27.9 0 50-24.1 50-51.4c0-4.4-.7-8.6-2-12.6l30.7-95.7c1.9-5 6.5-8.6 11.8-9.3l75.9-9.6c5.8 7.9 14.6 13.5 24.8 15.2c21.8 3.4 42.3-11.4 45.7-33.1s-11.3-42.5-33.1-45.9c-10.8-1.7-21 1.3-29.5 6.9c-2.9 1.9-5.6 4.1-8.2 6.3l-79.1 9.4c-5.3 .6-10.4-2.2-12.8-7.1L309 106z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M309 106c11.4-7.6 19-20.3 19-34c0-22.1-17.9-40-40-40s-40 17.9-40 40c0 13.7 7.6 26.4 19 34L209.7 220.3c-2.4 4.9-7.5 7.7-12.8 7.1L117.8 218c-2.6-2.2-5.3-4.4-8.2-6.3c-8.5-5.6-18.7-8.6-29.5-6.9c-21.8 3.4-36.5 24.1-33.1 45.9S71.1 288 92.9 284.6c10.2-1.6 19-7.3 24.8-15.2l75.9 9.6c5.3 .7 9.9 4.3 11.8 9.3L235 384c-1.3 4-2 8.2-2 12.6C233 423.9 255.1 448 283 448h10c27.9 0 50-24.1 50-51.4c0-4.4-.7-8.6-2-12.6l30.7-95.7c1.9-5 6.5-8.6 11.8-9.3l75.9-9.6c5.8 7.9 14.6 13.5 24.8 15.2c21.8 3.4 42.3-11.4 45.7-33.1s-11.3-42.5-33.1-45.9c-10.8-1.7-21 1.3-29.5 6.9c-2.9 1.9-5.6 4.1-8.2 6.3l-79.1 9.4c-5.3 .6-10.4-2.2-12.8-7.1L309 106z'/%3E%3C/svg%3E");
}

.fa-arrow-left::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
}

.fa-arrow-right::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
}

.fa-chevron-left::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z'/%3E%3C/svg%3E");
}

.fa-chevron-right::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
}

.fa-map-marker-alt::before, .fa-location-dot::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z'/%3E%3C/svg%3E");
}

.fa-shield-alt::before, .fa-shield-halved::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.7 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm0 66.8V444.8C394 378 431.1 230.1 432 141.4L256 66.8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.7 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm0 66.8V444.8C394 378 431.1 230.1 432 141.4L256 66.8z'/%3E%3C/svg%3E");
}
