/* =========================================================
   NINE TAILS DIGITAL
   DIGITAL MARKETING PAGE
   Premium Orange + Navy Theme
========================================================= */

:root {
    --ntd-orange: #ff4b00;
    --ntd-orange-dark: #e63f00;
    --ntd-orange-light: #ff7133;

    --ntd-navy: #071525;
    --ntd-navy-2: #0d1d2e;
    --ntd-navy-3: #13263a;

    --ntd-text: #263546;
    --ntd-muted: #687789;

    --ntd-light: #f6f8fb;
    --ntd-white: #ffffff;

    --ntd-border: rgba(7, 21, 37, 0.09);

    --ntd-shadow:
        0 20px 55px rgba(7, 21, 37, 0.10);

    --ntd-shadow-hover:
        0 30px 75px rgba(7, 21, 37, 0.16);

    --ntd-radius: 22px;
}


/* =========================================================
   GLOBAL
========================================================= */

.ntd-section {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
}

.ntd-section-heading h2,
.ntd-centered-heading h2 {
    color: var(--ntd-navy);
    font-weight: 800;
    line-height: 1.12;
}

.ntd-section-heading h2 span,
.ntd-centered-heading h2 span {
    color: var(--ntd-orange);
}

.ntd-section-heading p,
.ntd-centered-heading p {
    color: var(--ntd-muted);
    line-height: 1.85;
}

.ntd-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ntd-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ntd-section-tag i {
    font-size: 17px;
}

.ntd-centered-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.ntd-centered-heading h2 {
    font-size: clamp(34px, 4vw, 52px);
    margin-bottom: 18px;
}

.ntd-centered-heading p {
    max-width: 680px;
    margin: 0 auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.ntd-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 27px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .35s ease;
    overflow: hidden;
    z-index: 1;
}

.ntd-btn i {
    font-size: 18px;
    transition: transform .3s ease;
}

.ntd-btn:hover i {
    transform: translateX(4px);
}

.ntd-btn-primary {
    color: #fff !important;
    background: var(--ntd-orange);
    box-shadow: 0 12px 30px rgba(255, 75, 0, .28);
}

.ntd-btn-primary:hover {
    color: #fff !important;
    background: var(--ntd-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(255, 75, 0, .35);
}

.ntd-btn-outline {
    color: var(--ntd-navy) !important;
    border: 1px solid rgba(7, 21, 37, .18);
    background: rgba(255, 255, 255, .75);
}

.ntd-btn-outline:hover {
    color: var(--ntd-orange) !important;
    border-color: var(--ntd-orange);
    transform: translateY(-3px);
}

.ntd-btn-light {
    color: var(--ntd-navy) !important;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .16);
}

.ntd-btn-light:hover {
    color: var(--ntd-orange) !important;
    transform: translateY(-3px);
}

.ntd-btn-whatsapp {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
}

.ntd-btn-whatsapp:hover {
    color: #fff !important;
    background: rgba(255,255,255,.16);
    transform: translateY(-3px);
}


/* =========================================================
   HERO
========================================================= */

.ntd-dm-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 78% 25%, rgba(255,75,0,.10), transparent 27%),
        radial-gradient(circle at 15% 80%, rgba(255,75,0,.06), transparent 25%),
        #f7f9fc;
    overflow: hidden;
}

.ntd-dm-hero::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    right: -180px;
    top: -180px;
    border: 1px solid rgba(255,75,0,.12);
}

.ntd-dm-hero::after {
    content: "";
    position: absolute;
    width: 750px;
    height: 750px;
    border-radius: 50%;
    right: -280px;
    top: -280px;
    border: 1px solid rgba(7,21,37,.06);
}

.ntd-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.ntd-glow-one {
    width: 240px;
    height: 240px;
    background: rgba(255,75,0,.10);
    left: 10%;
    bottom: -100px;
}

.ntd-glow-two {
    width: 180px;
    height: 180px;
    background: rgba(7,21,37,.08);
    right: 30%;
    top: 15%;
}

.ntd-hero-content {
    position: relative;
    z-index: 2;
    padding: 70px 0;
}

.ntd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 9px 15px;
    border-radius: 50px;
    background: rgba(255,75,0,.07);
    border: 1px solid rgba(255,75,0,.14);
    color: var(--ntd-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.ntd-eyebrow-line {
    width: 24px;
    height: 2px;
    background: var(--ntd-orange);
}

.ntd-hero-content h1 {
    max-width: 760px;
    color: var(--ntd-navy);
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2.2px;
    margin-bottom: 25px;
}

.ntd-hero-content h1 span {
    display: inline;
    color: var(--ntd-orange);
}

.ntd-hero-description {
    max-width: 670px;
    color: var(--ntd-muted);
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 32px;
}

.ntd-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.ntd-hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 42px;
}

.ntd-trust-item {
    display: flex;
    flex-direction: column;
}

.ntd-trust-item strong {
    color: var(--ntd-navy);
    font-size: 20px;
    line-height: 1;
    margin-bottom: 6px;
}

.ntd-trust-item span {
    color: var(--ntd-muted);
    font-size: 11px;
    font-weight: 600;
}

.ntd-trust-divider {
    width: 1px;
    height: 38px;
    background: rgba(7,21,37,.12);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.ntd-hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntd-visual-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255,75,0,.22);
}

.orbit-one {
    width: 490px;
    height: 490px;
    animation: ntdRotate 24s linear infinite;
}

.orbit-two {
    width: 390px;
    height: 390px;
    border-color: rgba(7,21,37,.12);
    animation: ntdRotateReverse 18s linear infinite;
}

@keyframes ntdRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ntdRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}

.ntd-main-visual-card {
    position: relative;
    z-index: 3;
    width: min(440px, 90%);
    padding: 28px;
    border-radius: 25px;
    background:
        linear-gradient(145deg, #0e2032, #071525);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
        0 35px 80px rgba(7,21,37,.28),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.ntd-visual-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ntd-small-label {
    display: block;
    color: rgba(255,255,255,.45);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
}

.ntd-visual-top h3 {
    color: #fff;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
}

.ntd-growth-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--ntd-orange);
    background: rgba(255,75,0,.12);
    font-size: 24px;
}

.ntd-chart {
    position: relative;
    height: 190px;
    margin: 25px 0 15px;
    overflow: hidden;
}

.ntd-chart-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 50px 38px;
}

.ntd-chart svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ntd-visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ntd-visual-stats > div {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.06);
}

.ntd-visual-stats span {
    display: block;
    color: rgba(255,255,255,.45);
    font-size: 10px;
    margin-bottom: 4px;
}

.ntd-visual-stats strong {
    color: #fff;
    font-size: 15px;
}

.ntd-visual-stats strong {
    color: #ff7040;
}

.ntd-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(7,21,37,.14);
    backdrop-filter: blur(12px);
}

.ntd-floating-one {
    top: 92px;
    left: -10px;
    animation: ntdFloat 4s ease-in-out infinite;
}

.ntd-floating-two {
    bottom: 92px;
    right: -10px;
    animation: ntdFloat 4s ease-in-out infinite 1s;
}

.ntd-floating-icon {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--ntd-orange);
    font-size: 18px;
}

.ntd-floating-card strong,
.ntd-floating-card span {
    display: block;
}

.ntd-floating-card strong {
    color: var(--ntd-navy);
    font-size: 12px;
}

.ntd-floating-card span {
    color: var(--ntd-muted);
    font-size: 10px;
    margin-top: 3px;
}

@keyframes ntdFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================================================
   ABOUT
========================================================= */

.ntd-about-section {
    background: #fff;
}

.ntd-image-wrapper {
    position: relative;
    padding: 15px;
}

.ntd-image-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    background:
        radial-gradient(var(--ntd-orange) 1.2px, transparent 1.2px);
    background-size: 10px 10px;
    opacity: .22;
    z-index: 0;
}

.ntd-image-border {
    position: absolute;
    width: 75%;
    height: 75%;
    top: 0;
    left: 0;
    border: 2px solid var(--ntd-orange);
    border-radius: 22px;
    opacity: .45;
}

.ntd-about-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--ntd-shadow);
}

.ntd-image-badge {
    position: absolute;
    z-index: 4;
    right: -5px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    padding: 18px 23px;
    border-radius: 14px;
    background: var(--ntd-navy);
    box-shadow: 0 20px 45px rgba(7,21,37,.2);
}

.ntd-image-badge strong {
    color: var(--ntd-orange);
    font-size: 28px;
    line-height: 1;
}

.ntd-image-badge span {
    color: #fff;
    font-size: 11px;
    margin-top: 6px;
}

.ntd-section-heading h2 {
    font-size: clamp(34px, 4vw, 49px);
    margin-bottom: 22px;
}

.ntd-check-list {
    margin-top: 30px;
}

.ntd-check-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.ntd-check-item > span {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--ntd-orange);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(255,75,0,.2);
}

.ntd-check-item strong {
    display: block;
    color: var(--ntd-navy);
    margin-bottom: 3px;
}

.ntd-check-item p {
    color: var(--ntd-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   SERVICES
========================================================= */

.ntd-services-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(255,75,0,.05), transparent 25%),
        #f7f9fc;
}

.ntd-service-card {
    position: relative;
    height: 100%;
    padding: 30px;
    border-radius: var(--ntd-radius);
    background: #fff;
    border: 1px solid var(--ntd-border);
    box-shadow: 0 10px 35px rgba(7,21,37,.045);
    transition: all .4s ease;
    overflow: hidden;
}

.ntd-service-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -65px;
    top: -65px;
    border-radius: 50%;
    background: rgba(255,75,0,.06);
    transition: all .4s ease;
}

.ntd-service-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255,75,0,.18);
    box-shadow: var(--ntd-shadow-hover);
}

.ntd-service-card:hover::before {
    transform: scale(2);
}

.ntd-service-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ntd-service-number {
    color: rgba(7,21,37,.13);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}

.ntd-service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ntd-orange);
    background: rgba(255,75,0,.08);
    border-radius: 15px;
    font-size: 27px;
    transition: all .35s ease;
}

.ntd-service-card:hover .ntd-service-icon {
    color: #fff;
    background: var(--ntd-orange);
    transform: rotate(-5deg);
}

.ntd-service-card h3 {
    position: relative;
    z-index: 2;
    color: var(--ntd-navy);
    font-size: 21px;
    font-weight: 800;
    margin: 27px 0 12px;
}

.ntd-service-card p {
    position: relative;
    z-index: 2;
    color: var(--ntd-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ntd-service-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ntd-orange);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.ntd-service-link i {
    transition: transform .3s ease;
}

.ntd-service-link:hover {
    color: var(--ntd-orange-dark);
}

.ntd-service-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   STATS
========================================================= */

.ntd-stats-section {
    position: relative;
    padding: 30px 0;
    background: var(--ntd-orange);
    overflow: hidden;
}

.ntd-stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,.08) 49%, transparent 50%);
    background-size: 35px 35px;
    opacity: .5;
}

.ntd-stats-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ntd-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,.22);
}

.ntd-stat-item:last-child {
    border-right: none;
}

.ntd-stat-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ntd-orange);
    background: #fff;
    border-radius: 12px;
    font-size: 20px;
}

.ntd-stat-item strong,
.ntd-stat-item small {
    display: block;
}

.ntd-stat-item strong {
    color: #fff;
    font-size: 17px;
}

.ntd-stat-item small {
    color: rgba(255,255,255,.72);
    font-size: 10px;
    margin-top: 3px;
}


/* =========================================================
   PROCESS
========================================================= */

.ntd-process-section {
    background: #fff;
}

.ntd-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 65px;
}

.ntd-process-grid::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 56px;
    border-top: 1px dashed rgba(255,75,0,.25);
}

.ntd-process-card {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.ntd-process-number {
    position: absolute;
    right: 20px;
    top: 0;
    color: rgba(255,75,0,.08);
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}

.ntd-process-icon {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--ntd-navy);
    border: 7px solid #fff;
    outline: 1px solid rgba(255,75,0,.18);
    border-radius: 50%;
    font-size: 25px;
    box-shadow: 0 10px 25px rgba(7,21,37,.13);
    transition: all .35s ease;
}

.ntd-process-card:hover .ntd-process-icon {
    background: var(--ntd-orange);
    transform: translateY(-5px);
}

.ntd-process-card h3 {
    color: var(--ntd-navy);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ntd-process-card p {
    color: var(--ntd-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   WHY US
========================================================= */

.ntd-why-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(255,75,0,.06), transparent 25%),
        #f7f9fc;
}

.ntd-benefit-card {
    height: 100%;
    padding: 27px;
    background: #fff;
    border: 1px solid var(--ntd-border);
    border-radius: 18px;
    transition: all .35s ease;
}

.ntd-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,75,0,.16);
    box-shadow: var(--ntd-shadow);
}

.ntd-benefit-card > span {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ntd-orange);
    background: rgba(255,75,0,.08);
    border-radius: 14px;
    font-size: 23px;
    margin-bottom: 20px;
}

.ntd-benefit-card h3 {
    color: var(--ntd-navy);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 9px;
}

.ntd-benefit-card p {
    color: var(--ntd-muted);
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
}


/* =========================================================
   CONTENT
========================================================= */

.ntd-content-section {
    background: #fff;
}

.ntd-content-box {
    position: relative;
    padding: 55px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,75,0,.13), transparent 30%),
        linear-gradient(135deg, #f8fafc, #eef2f6);
    border: 1px solid rgba(7,21,37,.06);
    overflow: hidden;
}

.ntd-content-box::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    border: 35px solid rgba(255,75,0,.07);
    border-radius: 50%;
}

.ntd-content-box h2 {
    color: var(--ntd-navy);
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 800;
    margin-bottom: 20px;
}

.ntd-content-box h2 span {
    color: var(--ntd-orange);
}

.ntd-content-box p {
    max-width: 760px;
    color: var(--ntd-muted);
    font-size: 14px;
    line-height: 1.85;
}

.ntd-content-highlight {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 20px;
    border-radius: 18px;
    background: var(--ntd-navy);
}

.ntd-content-highlight > span {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--ntd-orange);
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 16px;
}

.ntd-content-highlight strong {
    color: #fff;
    font-size: 21px;
}

.ntd-content-highlight small {
    color: rgba(255,255,255,.58);
    font-size: 11px;
    margin-top: 5px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.ntd-final-cta {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,75,0,.25), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(255,75,0,.16), transparent 30%),
        var(--ntd-navy);
    overflow: hidden;
}

.ntd-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 45px 45px;
}

.ntd-cta-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,75,0,.18);
}

.shape-one {
    width: 500px;
    height: 500px;
    right: -220px;
    top: -220px;
}

.shape-two {
    width: 320px;
    height: 320px;
    left: -160px;
    bottom: -160px;
}

.ntd-cta-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin: 0 auto;
}

.ntd-cta-label {
    display: inline-block;
    color: var(--ntd-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 17px;
}

.ntd-cta-content h2 {
    color: #fff;
    font-size: clamp(38px, 5vw, 61px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
}

.ntd-cta-content h2 span {
    color: var(--ntd-orange);
}

.ntd-cta-content p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.64);
    font-size: 16px;
    line-height: 1.8;
}

.ntd-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .ntd-hero-content h1 {
        font-size: 58px;
    }

    .ntd-hero-visual {
        min-height: 520px;
    }

    .ntd-floating-one {
        left: -5px;
    }

    .ntd-floating-two {
        right: -5px;
    }

    .orbit-one {
        width: 430px;
        height: 430px;
    }

    .orbit-two {
        width: 350px;
        height: 350px;
    }

}


@media (max-width: 991px) {

    .ntd-section {
        padding: 80px 0;
    }

    .ntd-dm-hero {
        min-height: auto;
    }

    .ntd-hero-content {
        padding: 75px 0 30px;
        text-align: center;
    }

    .ntd-hero-content h1,
    .ntd-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .ntd-hero-buttons,
    .ntd-hero-trust {
        justify-content: center;
    }

    .ntd-hero-visual {
        min-height: 570px;
    }

    .ntd-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .ntd-stat-item:nth-child(2) {
        border-right: none;
    }

    .ntd-stat-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.22);
    }

    .ntd-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ntd-process-grid::before {
        display: none;
    }

    .ntd-content-box {
        padding: 40px;
    }

}


@media (max-width: 767px) {

    .ntd-section {
        padding: 65px 0;
    }

    .ntd-hero-content {
        padding-top: 55px;
    }

    .ntd-hero-content h1 {
        font-size: 43px;
        letter-spacing: -1.3px;
    }

    .ntd-hero-description {
        font-size: 15px;
    }

    .ntd-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ntd-btn {
        width: 100%;
    }

    .ntd-hero-trust {
        gap: 13px;
    }

    .ntd-trust-item strong {
        font-size: 17px;
    }

    .ntd-trust-item span {
        font-size: 9px;
    }

    .ntd-hero-visual {
        min-height: 470px;
    }

    .ntd-main-visual-card {
        width: 94%;
        padding: 22px;
    }

    .orbit-one {
        width: 350px;
        height: 350px;
    }

    .orbit-two {
        width: 290px;
        height: 290px;
    }

    .ntd-floating-card {
        padding: 10px 12px;
    }

    .ntd-floating-one {
        left: -3px;
        top: 70px;
    }

    .ntd-floating-two {
        right: -3px;
        bottom: 60px;
    }

    .ntd-floating-icon {
        width: 33px;
        height: 33px;
        font-size: 15px;
    }

    .ntd-about-image {
        height: 350px;
    }

    .ntd-image-badge {
        right: 0;
        bottom: 20px;
    }

    .ntd-centered-heading h2 {
        font-size: 34px;
    }

    .ntd-section-heading h2 {
        font-size: 34px;
    }

    .ntd-service-card {
        padding: 25px;
    }

    .ntd-stats-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .ntd-stat-item {
        padding: 14px 8px;
        justify-content: flex-start;
    }

    .ntd-stat-item strong {
        font-size: 14px;
    }

    .ntd-stat-item small {
        font-size: 9px;
    }

    .ntd-process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ntd-content-box {
        padding: 30px 22px;
    }

    .ntd-content-highlight {
        margin-top: 25px;
    }

    .ntd-final-cta {
        padding: 75px 0;
    }

    .ntd-cta-content h2 {
        font-size: 39px;
    }

}


@media (max-width: 480px) {

    .ntd-hero-content h1 {
        font-size: 37px;
    }

    .ntd-eyebrow {
        font-size: 10px;
    }

    .ntd-hero-trust {
        gap: 8px;
    }

    .ntd-trust-divider {
        height: 30px;
    }

    .ntd-hero-visual {
        min-height: 410px;
    }

    .ntd-main-visual-card {
        padding: 18px;
    }

    .ntd-visual-top h3 {
        font-size: 21px;
    }

    .ntd-chart {
        height: 145px;
    }

    .ntd-visual-stats {
        gap: 5px;
    }

    .ntd-visual-stats > div {
        padding: 8px;
    }

    .ntd-floating-card {
        transform: scale(.85);
    }

    .ntd-floating-one {
        left: -18px;
    }

    .ntd-floating-two {
        right: -18px;
    }

    .ntd-about-image {
        height: 290px;
    }

    .ntd-image-wrapper {
        padding: 8px;
    }

    .ntd-image-badge {
        right: -5px;
        bottom: 10px;
    }

    .ntd-stats-wrapper {
        grid-template-columns: 1fr;
    }

    .ntd-stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

    .ntd-stat-item:last-child {
        border-bottom: none;
    }

    .ntd-cta-content h2 {
        font-size: 34px;
    }

}