:root {
    --bg-deep: #0A0F1A;
    --bg-card: #1A202C;
    --text-main: #F3F4F6;
    --text-sub: #9CA3AF;
    --gold-primary: #D3A745;
    --gold-light: #FCEDA7;
    --gold-dark: #B18336;
    --gold-gradient: linear-gradient(90deg, #D3A745 0%, #FCEDA7 50%, #B18336 100%);
    --glass-border: rgba(211, 167, 69, 0.2);
    --glass-bg: rgba(26, 32, 44, 0.6);

    --font-hero: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-section: clamp(4rem, 8vw, 8rem);
    --container-width: 1280px;
    --header-height-mobile: 72px;
    --sticky-cta-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: 0;
}

html {
    scroll-behavior: auto;
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    width: 100%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .mobile-sticky-cta {
    transform: translateY(100%);
    pointer-events: none;
}

body.menu-open .header {
    z-index: 201;
    background-color: transparent;
    border-bottom: none;
    backdrop-filter: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img,
iframe {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.text-gray {
    color: var(--text-sub);
}

.gold-text {
    color: var(--gold-primary);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    min-height: 48px;
    border: 1px solid transparent;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-deep);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(211, 167, 69, 0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: rgba(211, 167, 69, 0.1);
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}

.header-logo {
    width: 6vh;
}

.header.is-scrolled {
    padding: 0.9rem 0;
    background-color: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: var(--font-hero);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--gold-primary);
}

.header-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 201;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    margin: 0 auto 5px;
    transition: 0.3s;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(15px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 2rem 1.5rem;
}

.mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a {
    font-family: var(--font-hero);
    font-size: 1.5rem;
    margin: 0.9rem 0;
    color: var(--text-main);
    transition: color 0.3s ease;
    text-align: center;
}

.mobile-nav a:hover {
    color: var(--gold-primary);
}

.mobile-nav .header-actions {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    gap: 1rem;
    width: min(100%, 320px);
}

.mobile-nav .btn {
    width: 100%;
}

.hero-section {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 15, 26, 0.55) 0%, rgba(10, 15, 26, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(1.8rem, 8vw, 4.5rem);
    font-family: var(--font-hero);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    overflow-wrap: anywhere;
    word-break: normal;
}

.hero-subtitle-inline {
    font-size: clamp(1.1rem, 3vw, 2rem);
    color: var(--text-main);
    font-weight: 400;
    -webkit-text-fill-color: initial;
    background: none;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-sub);
    margin-bottom: 2.25rem;
    max-width: 700px;
    margin-inline: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badges-container {
    position: relative;
    width: 100%;
    z-index: 20;
    margin-top: 2.5rem;
}

.trust-flex {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
}

.trust-card h4 {
    font-family: var(--font-hero);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-sub);
}

.seo-content-section {
    padding-top: clamp(5rem, 8vw, 8rem);
    padding-bottom: var(--spacing-section);
}

.seo-text-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.seo-feature-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.seo-feature-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
}

.services-section {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-deep);
    overflow: hidden;
}

.services-header {
    margin-bottom: 3rem;
}

.services-gallery-wrapper {
    overflow: hidden;
}

.services-gallery {
    display: flex;
    gap: 2rem;
    padding: 0 1.5rem;
    will-change: transform;
}

.service-card {
    flex: 0 0 450px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 65vh;
    min-height: 500px;
    background: var(--bg-card);
}

.service-img-wrapper {
    position: absolute;
    inset: 0;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.2) 60%, transparent 100%);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-card:hover .service-content {
    transform: translateY(0);
}

.service-title {
    font-family: var(--font-hero);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-content p {
    color: #D1D5DB;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-cta {
    color: var(--gold-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.service-cta:hover {
    border-color: var(--gold-primary);
}

.split-section {
    padding: var(--spacing-section) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.split-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-left {
    display: block;
}

.split-left .btn {
    margin-bottom: 1rem !important;
    position: relative;
    z-index: 10;
    display: inline-flex !important;
}

.split-left-image {
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.responsive-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 45vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.reason-card {
    padding: 2.5rem;
}

.reason-card h4 {
    font-size: 1.5rem;
    font-family: var(--font-hero);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.timeline-section {
    padding: var(--spacing-section) 1.5rem;
}

.timeline-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gold-primary);
    height: 0%;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 2px solid var(--gold-primary);
    z-index: 2;
}

.timeline-content h3 {
    font-family: var(--font-hero);
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.faq-section {
    padding: var(--spacing-section) 1.5rem;
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.5rem 0;
    cursor: pointer;
    text-align: left;
}

.faq-question h4 {
    font-family: var(--font-body);
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.is-active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    color: var(--text-sub);
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

.final-cta-section {
    padding: calc(var(--spacing-section) * 1.5) 1.5rem;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(211,167,69,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.final-cta-title {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    overflow-wrap: anywhere;
}

.main-footer {
    background: #05080c;
    padding-top: var(--spacing-section);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
}

.footer-title {
    font-family: var(--font-hero);
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-seo-links ul li {
    margin-bottom: 0.8rem;
}

.footer-seo-links a {
    color: var(--text-sub);
    font-size: 0.95rem;
    transition: color 0.3s;
    overflow-wrap: anywhere;
}

.footer-seo-links a:hover,
.hover-gold:hover {
    color: var(--text-main);
}

.footer-map iframe,
.map-placeholder {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sub);
}

.footer-bottom {
    padding: 2rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: env(safe-area-inset-bottom);
    transition: transform 0.3s ease;
}

.m-cta-btn {
    flex: 1;
    text-align: center;
    padding: 1.1rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.m-cta-call {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.m-cta-wa {
    background: #25D366;
    color: white;
}

.d-desktop-only {
    display: inline-flex;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 6.5rem;
        padding-bottom: 3rem;
        align-items: flex-start;
    }

    .hero-content {
        margin-top: 10vh;
        max-width: 100%;
    }

    .trust-badges-container {
        margin-top: 2rem;
    }

    .trust-flex {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .services-gallery {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        padding: 0 1.25rem;
        transform: none !important;
    }

    .service-card {
        flex: auto;
        width: 100%;
        height: 440px;
        min-height: auto;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .split-right {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        align-items: start;
    }

    .split-left {
        position: relative !important;
        top: auto !important;
        transform: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .seo-text-columns {
        column-count: 1;
        column-gap: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-content-section {
        padding-top: 4.5rem;
        padding-bottom: var(--spacing-section);
    }

    .faq-section {
        margin-top: 10vh;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.95rem 0;
    }

    .header.is-scrolled {
        padding: 0.8rem 0;
    }

    .desktop-nav {
        display: none;
    }

    .header .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: calc(var(--header-height-mobile) + 1.25rem);
        padding-bottom: 2.5rem;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
        padding-inline: 0;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8.5vw, 3rem);
        line-height: 1.05;
        margin-bottom: 1rem;
    }

    .hero-subtitle-inline {
        display: inline-block;
        font-size: clamp(1rem, 4vw, 1.25rem);
        line-height: 1.2;
        margin-top: 0.35rem;
    }

    .hero-description {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.75rem;
    }

    .hero-cta-group {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .trust-badges-container {
        margin-top: 1.75rem;
        width: 100%;
        padding: 0;
    }

    .trust-flex {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-card {
        width: 100%;
        padding: 1.25rem;
    }

    .trust-card h4 {
        font-size: 1.05rem;
        line-height: 1.3;
        margin-bottom: 0.45rem;
    }

    .trust-card p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .seo-content-section {
        padding-top: 3.5rem;
        padding-bottom: var(--spacing-section);
    }

    .seo-text-columns {
        column-count: 1;
        column-gap: 0;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .services-section {
        overflow: visible;
    }

    .services-gallery-wrapper {
        overflow: visible;
    }

    .services-gallery {
        display: flex !important;
        flex-direction: column;
        gap: 1.25rem;
        padding: 0 1rem;
        transform: none !important;
    }

    .service-card {
        width: 100%;
        height: 400px;
        min-height: auto;
        flex: auto;
    }

    .service-content {
        padding: 1.75rem 1.35rem;
        transform: none;
    }

    .service-card:hover .service-content {
        transform: none;
    }

    .service-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .service-content p {
        font-size: 0.95rem;
        -webkit-line-clamp: 4;
    }

    .reason-card {
        padding: 1.5rem;
    }

    .reason-card h4 {
        font-size: 1.2rem;
    }

    .timeline-section,
    .faq-section,
    .final-cta-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-question {
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1.25rem 0;
    }

    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.45;
    }

    .faq-icon {
        font-size: 1.35rem;
        margin-top: 0.1rem;
    }

    .footer-grid {
        gap: 1.75rem;
    }

    .footer-seo-links ul li {
        margin-bottom: 0.7rem;
    }

    .mobile-sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom));
    }

    .d-desktop-only {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.9rem;
    }

    .section-title {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
        line-height: 1.15;
    }

    .hero-section {
        padding-top: calc(var(--header-height-mobile) + 1rem);
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(1.7rem, 9vw, 2.4rem);
        line-height: 1.05;
    }

    .hero-subtitle-inline {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero-cta-group {
        max-width: 100%;
    }

    .trust-badges-container {
        margin-top: 1.5rem;
    }

    .trust-flex {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 1.1rem;
        border-radius: 14px;
    }

    .trust-card h4 {
        font-size: 1rem;
    }

    .trust-card p {
        font-size: 0.9rem;
    }

    .seo-content-section {
        padding-top: 3rem;
    }

    .services-gallery {
        padding: 0 0.9rem;
    }

    .service-card {
        height: 380px;
    }

    .service-content {
        padding: 1.5rem 1.2rem;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .glass-panel,
    .reason-card {
        padding: 1.25rem;
    }

    .timeline-item {
        padding-left: 2.5rem;
        margin-bottom: 2rem;
    }

    .timeline-line {
        left: 12px;
    }

    .timeline-dot {
        left: 7px;
    }

    .faq-question {
        padding: 1.1rem 0;
    }

    .faq-question h4 {
        font-size: 0.97rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .final-cta-title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        line-height: 1.1;
    }

    .btn,
    .m-cta-btn {
        min-height: 52px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(1.55rem, 9vw, 2.1rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .trust-card,
    .service-content,
    .reason-card {
        padding: 1rem;
    }

    .service-card {
        height: 360px;
    }

    .m-cta-btn {
        font-size: 0.9rem;
        padding: 1rem 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}