@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
    font-display: block;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
    font-display: block;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: block;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Medium.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
    font-display: block;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: block;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-ExtraBold.ttf') format('truetype');
    font-style: normal;
    font-weight: 800;
    font-display: block;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Black.ttf') format('truetype');
    font-style: normal;
    font-weight: 900;
    font-display: block;
}

html[dir='rtl'],
body.rtl {
    font-family: 'Tajawal', Arial, sans-serif;
}

html[dir='ltr'],
body.ltr {
    font-family: 'Inter', Arial, sans-serif;
}

body,
button,
input,
select,
textarea,
.modal,
.dropdown-menu,
.navbar {
    font-family: inherit;
}
:root {
    --bg: #f6fbf8;
    --soft: #eaf8f1;
    --card: #ffffff;
    --text: #12312a;
    --muted: #6b817a;
    --teal: #2ebfa5;
    --teal-dark: #20a890;
    --dark: #073b35;
    --border: #d8eee7;
    --shadow: 0 24px 70px rgba(7, 59, 53, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

body.rtl {
    font-family: 'Tajawal', sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.alert-container {
    padding-top: 110px;
}

/* Navbar */

.landing-navbar {
    background: rgba(246, 251, 248, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    min-height: 82px;
    transition: .25s ease;
}

.landing-brand img {
    max-height: 52px;
    width: auto;
}

.navbar .nav-link {
    color: var(--text);
    font-weight: 800;
    font-size: .96rem;
    padding-inline: 12px !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--teal);
}

.language-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
}

.dropdown-item {
    border-radius: 12px;
    font-weight: 700;
}

.dropdown-item:hover {
    background: var(--soft);
    color: var(--dark);
}

/* Buttons */

.btn-landing-primary,
.btn-landing-outline {
    border-radius: 999px;
    padding: 13px 28px;
    font-weight: 900;
    transition: .25s ease;
}

.btn-landing-primary {
    background: var(--dark);
    color: #fff;
    border: 1px solid var(--dark);
}

.btn-landing-primary:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

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

.btn-landing-outline:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 145px 0 95px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(46, 191, 165, .25), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(7, 59, 53, .12), transparent 30%),
        var(--bg);
}

.hero-shape {
    position: absolute;
    border-radius: 999px;
    background: rgba(46, 191, 165, .16);
    filter: blur(6px);
}

.hero-shape-one {
    width: 220px;
    height: 220px;
    top: 15%;
    inset-inline-start: -90px;
}

.hero-shape-two {
    width: 300px;
    height: 300px;
    bottom: 6%;
    inset-inline-end: -130px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--dark);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
    margin-bottom: 24px;
    box-shadow: 0 10px 35px rgba(7, 59, 53, .06);
}

.section-pill i {
    color: var(--teal);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.08;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 24px;
}

body.rtl .hero-title {
    letter-spacing: 0;
    line-height: 1.18;
}

.hero-description {
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 2;
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.hero-stats strong {
    display: block;
    font-size: 2rem;
    color: var(--dark);
    font-weight: 900;
}

.hero-stats span {
    color: var(--muted);
    font-weight: 700;
}

.hero-dashboard-wrap {
    position: relative;
    z-index: 2;
}

.hero-dashboard-img {
    width: 100%;
    border-radius: 34px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .8);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--dark);
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 900;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.floating-card i {
    color: var(--teal);
}

.floating-card-one {
    top: 18%;
    inset-inline-end: -18px;
}

.floating-card-two {
    bottom: 18%;
    inset-inline-start: -18px;
    background: var(--teal);
}

.floating-card-two i {
    color: #fff;
}

/* Brand Strip */

.brand-strip {
    padding: 26px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brand-strip-inner {
    display: flex;
    gap: 38px;
    justify-content: center;
    flex-wrap: wrap;
}

.brand-strip-inner span {
    color: var(--muted);
    font-weight: 900;
}

/* Sections */

.content-section {
    padding: 100px 0;
}

.soft-section {
    background: var(--soft);
}

.section-heading {
    margin-bottom: 52px;
}

.section-heading span {
    display: inline-block;
    color: var(--teal);
    font-weight: 900;
    margin-bottom: 12px;
}

.section-heading h2 {
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 720px;
    margin-inline: auto;
}

.section-heading:not(.text-center) p {
    margin-inline: 0;
}

/* Services */

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 55px rgba(7, 59, 53, .06);
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-body {
    position: relative;
    padding: 34px;
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: var(--soft);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.9;
    margin: 0;
}

/* Domain */

.domain-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(7, 59, 53, .06);
    padding: 28px;
}

.domain-extensions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.domain-extensions span {
    background: var(--soft);
    color: var(--dark);
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 54px;
    border-radius: 16px;
    border-color: var(--border);
    color: var(--text);
    font-weight: 700;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 .2rem rgba(46, 191, 165, .15);
}

/* About */

.about-image {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    inset-inline-start: 24px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 18px 24px;
}

.about-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
}

.about-badge span {
    color: var(--muted);
    font-weight: 800;
}

.about-features {
    display: grid;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    font-weight: 900;
    color: var(--dark);
}

.about-feature i {
    color: var(--teal);
    font-size: 1.25rem;
}

/* Pricing */

.pricing-toggle {
    width: fit-content;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px;
    display: flex;
    gap: 6px;
}

.pricing-toggle button {
    border: 0;
    background: transparent;
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 900;
    color: var(--muted);
}

.pricing-toggle button.active {
    background: var(--dark);
    color: #fff;
}

.pricing-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 36px;
    height: 100%;
    box-shadow: 0 18px 55px rgba(7, 59, 53, .06);
    transition: .25s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--teal);
    transform: translateY(-12px);
}

.pricing-card.featured:hover {
    transform: translateY(-18px);
}

.pricing-badge {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 18px;
}

.pricing-card h3 {
    color: var(--dark);
    font-weight: 900;
}

.pricing-card p {
    color: var(--muted);
}

.price {
    margin: 26px 0;
}

.price span {
    color: var(--dark);
    font-size: 3rem;
    font-weight: 900;
}

.price small {
    color: var(--muted);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing-card li {
    color: var(--text);
    font-weight: 800;
    margin-bottom: 13px;
}

.pricing-card li::before {
    content: "✓";
    color: var(--teal);
    font-weight: 900;
    margin-inline-end: 8px;
}

/* FAQ */

.faq-list {
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(7, 59, 53, .05);
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--dark);
    font-weight: 900;
    font-size: 1.05rem;
    text-align: start;
}

.faq-item button i {
    color: var(--teal);
    transition: .25s ease;
}

.faq-body {
    display: none;
    padding: 0 26px 24px;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 700;
}

.faq-item.active .faq-body {
    display: block;
}

.faq-item.active button i {
    transform: rotate(45deg);
}

/* CTA */

.cta-section {
    padding: 60px 0;
}

.cta-box {
    background:
        radial-gradient(circle at 20% 20%, rgba(46, 191, 165, .35), transparent 30%),
        var(--dark);
    border-radius: 36px;
    padding: 70px 40px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, .74);
    margin-bottom: 26px;
    font-size: 1.1rem;
}

.cta-btn {
    border-radius: 999px;
    padding: 13px 30px;
    font-weight: 900;
    color: var(--dark);
}

/* Contact */

.contact-info,
.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 36px;
    height: 100%;
    box-shadow: 0 18px 55px rgba(7, 59, 53, .06);
}

.contact-info>span {
    color: var(--teal);
    font-weight: 900;
}

.contact-info h2 {
    color: var(--dark);
    font-weight: 900;
    margin: 14px 0;
}

.contact-info p {
    color: var(--muted);
    line-height: 1.9;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.contact-line i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--soft);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */

.landing-footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.footer-logo {
    max-height: 48px;
}

.footer-text {
    color: var(--muted);
    line-height: 1.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text);
    font-weight: 800;
}

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

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

body.rtl .footer-social {
    justify-content: flex-start;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.footer-social a:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 24px;
    color: var(--muted);
    font-weight: 700;
    text-align: center;
}

/* Scroll Top */

.scroll-top {
    position: fixed;
    bottom: 22px;
    inset-inline-end: 22px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-top.show {
    display: flex;
}

/* RTL / LTR refinements */

body.rtl .navbar-nav {
    text-align: right;
}

body.ltr .navbar-nav {
    text-align: left;
}

body.rtl .dropdown-menu {
    text-align: right;
}

body.ltr .dropdown-menu {
    text-align: left;
}

/* Responsive */

@media (max-width: 991px) {
    .landing-navbar {
        position: fixed;
    }

    .navbar-collapse {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 22px;
        margin-top: 14px;
        padding: 18px;
        box-shadow: var(--shadow);
    }

    .hero-section {
        padding-top: 125px;
        text-align: center;
    }

    .hero-description,
    .section-heading p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .pricing-card.featured,
    .pricing-card.featured:hover {
        transform: none;
    }

    .about-image img {
        height: 420px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    body.rtl .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 70px 0;
    }

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

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

    .hero-stats {
        gap: 20px;
    }

    .hero-stats strong {
        font-size: 1.55rem;
    }

    .pricing-toggle {
        width: 100%;
    }

    .pricing-toggle button {
        flex: 1;
        font-size: .88rem;
        padding: 10px 12px;
    }

    .service-body,
    .pricing-card,
    .contact-info,
    .contact-form,
    .domain-box {
        padding: 26px;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .brand-strip-inner {
        gap: 20px;
    }

    .domain-check-result {
        margin-top: 18px;
        border-radius: 18px;
        padding: 16px 18px;
        font-weight: 900;
        line-height: 1.7;
    }

    .domain-result-success {
        background: #e8fff6;
        color: #087b5d;
        border: 1px solid #9be7cf;
    }

    .domain-result-danger {
        background: #fff1f1;
        color: #b42318;
        border: 1px solid #ffc9c9;
    }

    .domain-result-error {
        background: #fff7e6;
        color: #9a5b00;
        border: 1px solid #ffd48a;
    }

    .domain-result-loading {
        background: #eef9ff;
        color: #075985;
        border: 1px solid #bae6fd;
    }

    .domain-result-modal .modal-content {
        border-radius: 32px;
        background: #ffffff;
        box-shadow: 0 30px 90px rgba(7, 59, 53, .18);
    }

    .domain-modal-icon {
        width: 82px;
        height: 82px;
        border-radius: 999px;
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.6rem;
    }

    .domain-modal-loading {
        background: #eef9ff;
        color: #075985;
    }

    .domain-modal-success {
        background: #e8fff6;
        color: #087b5d;
    }

    .domain-modal-danger {
        background: #fff1f1;
        color: #b42318;
    }

    .domain-modal-error {
        background: #fff7e6;
        color: #9a5b00;
    }

    .domain-modal-title {
        color: var(--dark);
        font-weight: 900;
    }

    .domain-modal-message {
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.8;
        font-weight: 700;
    }

    .domain-check-btn {
        min-width: 120px;
        white-space: nowrap;
    }

    .domain-box .btn {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .auth-section {
        position: relative;
        min-height: 100vh;
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #f4fbf8 0%, #ffffff 55%, #eef8f5 100%);
        overflow: hidden;
    }

    .auth-shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.18;
        pointer-events: none;
    }

    .auth-shape-one {
        width: 280px;
        height: 280px;
        background: #0f4b3f;
        top: 90px;
        left: -100px;
    }

    .auth-shape-two {
        width: 220px;
        height: 220px;
        background: #36b37e;
        right: -70px;
        bottom: 80px;
    }

    .auth-content {
        position: relative;
        z-index: 2;
    }

    .auth-title {
        font-size: 52px;
        font-weight: 800;
        color: #103b34;
        margin: 22px 0 18px;
        line-height: 1.15;
    }

    .auth-description {
        font-size: 18px;
        color: #61736f;
        max-width: 560px;
        line-height: 1.8;
    }

    .auth-features {
        display: grid;
        gap: 16px;
        margin-top: 32px;
    }

    .auth-features div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #173f37;
        font-weight: 600;
    }

    .auth-features i {
        color: #20a875;
        font-size: 20px;
    }

    .auth-card {
        position: relative;
        z-index: 2;
        background: #ffffff;
        padding: 38px;
        border-radius: 28px;
        box-shadow: 0 24px 70px rgba(16, 59, 52, 0.14);
        border: 1px solid rgba(15, 75, 63, 0.08);
    }

    .auth-card-header {
        margin-bottom: 28px;
    }

    .auth-icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 18px;
        border-radius: 22px;
        background: rgba(32, 168, 117, 0.12);
        color: #0f4b3f;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .auth-card h2 {
        color: #103b34;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .auth-card p {
        color: #6b7d79;
        margin-bottom: 0;
    }

    .auth-form .form-label {
        color: #173f37;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .input-icon {
        position: relative;
    }

    .input-icon i {
        position: absolute;
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
        color: #78918b;
        font-size: 18px;
    }

    [dir="rtl"] .input-icon i {
        left: auto;
        right: 18px;
    }

    .input-icon .form-control {
        height: 54px;
        border-radius: 16px;
        border: 1px solid #dce8e4;
        padding-left: 48px;
        color: #103b34;
        box-shadow: none;
    }

    [dir="rtl"] .input-icon .form-control {
        padding-left: 16px;
        padding-right: 48px;
    }

    .input-icon .form-control:focus {
        border-color: #20a875;
        box-shadow: 0 0 0 4px rgba(32, 168, 117, 0.12);
    }

    .remember-check {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #61736f;
        font-weight: 600;
        cursor: pointer;
    }

    .remember-check input {
        width: 16px;
        height: 16px;
        accent-color: #0f4b3f;
    }

    .auth-link,
    .auth-footer a {
        color: #0f4b3f;
        font-weight: 700;
        text-decoration: none;
    }

    .auth-link:hover,
    .auth-footer a:hover {
        color: #20a875;
    }

    .auth-submit {
        height: 54px;
        border-radius: 16px;
        font-weight: 800;
    }

    .auth-footer {
        margin-top: 26px;
        color: #61736f;
        font-weight: 600;
    }

    .auth-footer a {
        margin-inline-start: 6px;
    }

    @media (max-width: 991px) {
        .auth-section {
            padding: 100px 0 60px;
        }

        .auth-title {
            font-size: 38px;
        }

        .auth-card {
            padding: 28px;
        }
    }

    @media (max-width: 575px) {
        .auth-title {
            font-size: 32px;
        }

        .auth-card {
            padding: 24px 18px;
            border-radius: 22px;
        }
    }
}

/* Accessibility */

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 2000;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-weight: 800;
}

.skip-to-content:focus {
    top: 16px;
}

/* Statistics */

.stats-section {
    background:
        radial-gradient(circle at top, rgba(32, 201, 151, 0.12), transparent 34%),
        #ffffff;
}

.stat-card {
    text-align: center;
    padding: 28px 18px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1;
    color: var(--dark);
    margin-bottom: 10px;
}

.stat-card span {
    color: var(--muted);
    font-weight: 800;
}

/* Testimonials */

.testimonial-card {
    padding: 28px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.testimonial-quote {
    color: var(--teal);
    font-size: 28px;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: var(--text);
    line-height: 1.9;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--muted);
    font-weight: 700;
    font-size: .92rem;
}

.domain-prices-wrapper {
    position: relative;
}

.domain-price-card {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
    transition: 0.25s ease;
}

.domain-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px rgba(16, 24, 40, 0.12);
}

.domain-price-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.domain-price-label {
    display: inline-flex;
    margin-bottom: 6px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.domain-price-card-header h3 {
    margin: 0;
    color: #101828;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.domain-price-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #0f766e;
    background: rgba(32, 201, 151, 0.12);
    font-size: 24px;
    flex: 0 0 auto;
}

.domain-currency-list {
    display: grid;
    gap: 12px;
}

.domain-currency-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(16, 24, 40, 0.06);
}

.domain-currency-info {
    min-width: 0;
}

.domain-currency-code {
    color: #101828;
    font-size: 16px;
    font-weight: 900;
}

.domain-currency-meta {
    margin-top: 3px;
    color: #667085;
    font-size: 13px;
    font-weight: 600;
}

.domain-currency-price {
    text-align: end;
    white-space: nowrap;
    margin-inline-start: auto;
}

.current-price {
    color: #101828;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.current-price span,
.old-price span {
    margin-inline-end: 3px;
}

.old-price {
    margin-top: 3px;
    color: #98a2b3;
    font-size: 13px;
    font-weight: 700;
    text-decoration: line-through;
}

.domain-custom-badge {
    position: absolute;
    top: -9px;
    inset-inline-end: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(18, 183, 106, 0.12);
    color: #027a48;
    font-size: 11px;
    font-weight: 900;
    border: 1px solid rgba(18, 183, 106, 0.18);
}

.domain-pagination {
    display: flex;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .domain-price-card {
        padding: 18px;
        border-radius: 22px;
    }

    .domain-price-card-header h3 {
        font-size: 24px;
    }

    .domain-currency-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .domain-currency-price {
        width: 100%;
        text-align: start;
    }

    .current-price {
        font-size: 18px;
    }
}

</style>