:root {
    --orange: #ff914d;
    --orange-dark: #ff6b00;
    --orange-soft: #ffb26b;
    --cream: #fff8f0;
    --cream-deep: #ffe4cc;
    --navy: #0b1f4d;
    --navy-deep: #08162f;
    --text: #1f2937;
    --muted: #667085;
    --white: #ffffff;
    --border: rgba(31, 41, 55, 0.08);
    --shadow: 0 22px 60px rgba(31, 41, 55, 0.10);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


.navbar {
    width: 100%;
    min-height: 82px;
    padding: 10px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(31, 41, 55, 0.06);
    box-shadow: 0 8px 30px rgba(31, 41, 55, 0.05);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo {
    transition: 0.35s ease;
}

.logo:hover {
    transform: scale(1.04);
}

.menu {
    display: flex;
    align-items: center;
    gap: 27px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    transition: 0.3s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: var(--orange);
    transition: 0.3s ease;
}

.menu a:hover,
.menu a.active {
    color: var(--orange-dark);
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.quote-btn,
.btn1,
.btn2,
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.35s ease;
}

.quote-btn {
    padding: 12px 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 28px rgba(255, 145, 77, 0.25);
    white-space: nowrap;
}

.quote-btn:hover,
.btn1:hover,
.cta-btn:hover {
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(255, 145, 77, 0.32);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 32px;
    cursor: pointer;
}


.hero {
    min-height: calc(100vh - 82px);
    padding: 85px 7% 90px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 145, 77, 0.15), transparent 28%),
        linear-gradient(135deg, var(--cream) 0%, #fffdfb 48%, var(--cream-deep) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 145, 77, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 145, 77, 0.08) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to right, black, transparent 72%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}

.hero-orb-one {
    width: 480px;
    height: 480px;
    right: -180px;
    top: -180px;
    background: rgba(255, 145, 77, 0.11);
}

.hero-orb-two {
    width: 260px;
    height: 260px;
    left: -130px;
    bottom: -130px;
    background: rgba(11, 31, 77, 0.06);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.eyebrow {
    padding: 9px 15px;
    border: 1px solid rgba(255, 145, 77, 0.22);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.55);
    margin-bottom: 25px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 145, 77, 0.12);
}

.hero h1 {
    margin: 0;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 0.99;
    letter-spacing: -3px;
    font-weight: 900;
    color: var(--navy);
}

.hero h1 span,
.section-heading h2 span,
.why-content h2 span,
.cta-content h2 span {
    color: var(--orange-dark);
}

.hero-content > p {
    max-width: 610px;
    margin: 28px 0 32px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

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

.btn1 {
    padding: 15px 25px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 14px 30px rgba(255, 145, 77, 0.25);
}

.btn2 {
    padding: 14px 24px;
    color: var(--navy);
    border: 1.5px solid rgba(11, 31, 77, 0.16);
    background: rgba(255, 255, 255, 0.7);
}

.btn2:hover {
    color: var(--orange-dark);
    border-color: var(--orange);
    transform: translateY(-4px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 42px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 38px;
    height: 38px;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--cream);
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
}

.trust-avatars span:first-child {
    margin-left: 0;
    background: var(--orange);
}

.trust-avatars span:nth-child(2) {
    background: var(--orange-dark);
}

.hero-trust strong,
.hero-trust small {
    display: block;
}

.hero-trust strong {
    color: var(--navy);
    font-size: 14px;
}

.hero-trust small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}


.hero-visual {
    min-height: 590px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.visual-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 145, 77, 0.27),
        rgba(255, 145, 77, 0.04) 52%,
        transparent 72%
    );
    filter: blur(5px);
}

.dashboard-card {
    width: min(100%, 540px);
    min-height: 410px;
    padding: 28px;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 30px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.91),
        rgba(255, 248, 240, 0.72)
    );
    box-shadow:
        25px 35px 80px rgba(11, 31, 77, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: rotateY(-9deg) rotateX(4deg) rotateZ(1deg);
    backdrop-filter: blur(22px);
    animation: dashboardFloat 6s ease-in-out infinite;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dashboard-label {
    color: var(--orange-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.dashboard-top h3 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: 25px;
}

.dashboard-menu {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.75);
}

.dashboard-chart {
    margin-top: 25px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(31, 41, 55, 0.04);
}

.chart-heading {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12px;
}

.chart-heading strong {
    color: #16834b;
    font-size: 13px;
}

.chart-area {
    height: 150px;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
    background-image: linear-gradient(
        rgba(31, 41, 55, 0.05) 1px,
        transparent 1px
    );
    background-size: 100% 37px;
}

.chart-line {
    position: absolute;
    width: 115%;
    height: 115%;
    left: -5%;
    top: 20%;
    border-top: 4px solid var(--orange);
    border-radius: 50%;
    transform: rotate(-9deg);
    box-shadow: 0 -2px 0 rgba(255, 178, 107, 0.22);
}

.chart-point {
    position: absolute;
    width: 11px;
    height: 11px;
    border: 3px solid white;
    border-radius: 50%;
    background: var(--orange-dark);
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.35);
}

.point-one {
    left: 9%;
    top: 82%;
}

.point-two {
    left: 28%;
    top: 63%;
}

.point-three {
    left: 48%;
    top: 57%;
}

.point-four {
    left: 68%;
    top: 33%;
}

.point-five {
    left: 88%;
    top: 12%;
}

.chart-months {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #98a2b3;
    font-size: 9px;
    font-weight: 700;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.75);
}

.metric-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--orange-dark);
    background: #fff0e5;
}

.navy-icon {
    color: var(--navy);
    background: #e9eef8;
}

.metric small,
.metric strong {
    display: block;
}

.metric small {
    color: var(--muted);
    font-size: 10px;
}

.metric strong {
    margin-top: 3px;
    color: var(--navy);
    font-size: 17px;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 11px;
}

.dashboard-status i {
    margin-left: auto;
    color: #16834b;
    font-size: 16px;
}

.status-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1db954;
    box-shadow: 0 0 0 5px rgba(29, 185, 84, 0.12);
}

.floating-chip {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 15px 35px rgba(11, 31, 77, 0.12);
    backdrop-filter: blur(16px);
    font-size: 12px;
    font-weight: 800;
}

.floating-chip i {
    color: var(--orange-dark);
    font-size: 17px;
}

.chip-top {
    top: 95px;
    right: 3%;
    animation: chipFloat 5s ease-in-out infinite;
}

.chip-bottom {
    bottom: 90px;
    left: 1%;
    animation: chipFloat 5s ease-in-out infinite reverse;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(255, 145, 77, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 610px;
    height: 330px;
    transform: rotate(-25deg);
}

.orbit-two {
    width: 500px;
    height: 260px;
    transform: rotate(35deg);
    border-color: rgba(11, 31, 77, 0.08);
}

@keyframes dashboardFloat {
    0%,
    100% {
        transform: rotateY(-9deg) rotateX(4deg) rotateZ(1deg) translateY(0);
    }

    50% {
        transform: rotateY(-7deg) rotateX(5deg) rotateZ(1deg) translateY(-12px);
    }
}

@keyframes chipFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.stats-section {
    padding: 0 7% 80px;
    background: var(--cream);
}

.stats-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 145, 77, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 15px 38px rgba(31, 41, 55, 0.06);
    transition: 0.35s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 145, 77, 0.28);
    box-shadow: 0 20px 45px rgba(255, 145, 77, 0.15);
}

.stat-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--orange-dark);
    background: #fff0e5;
    font-size: 24px;
    transition: 0.35s ease;
}

.stat-box:hover .stat-icon {
    transform: rotate(-8deg) scale(1.08);
    background: linear-gradient(135deg, #fff0e5, #ffe1cc);
}

.stat-box strong,
.stat-box div span {
    display: block;
}

.stat-box strong {
    color: var(--navy);
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.stat-box div span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}

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

.section-heading h2 {
    margin: 13px 0 17px;
    color: var(--navy);
    font-size: clamp(34px, 4.2vw, 55px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.section-heading p {
    max-width: 650px;
    margin: auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.services {
    padding: 105px 7% 110px;
    background: #fffdfb;
}

.service-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 330px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(31, 41, 55, 0.07);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(31, 41, 55, 0.07);
    transition: 0.4s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(255, 145, 77, 0.09);
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 145, 77, 0.24);
    box-shadow: 0 25px 60px rgba(255, 145, 77, 0.17);
}

.service-card:hover::before {
    transform: scale(1.35);
}

.card-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: rgba(11, 31, 77, 0.15);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.icon {
    width: 66px;
    height: 66px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--orange-dark);
    background: #fff1e7;
    font-size: 29px;
    transition: 0.4s ease;
}

.service-card:hover .icon {
    transform: rotate(-8deg) scale(1.08);
}

.service-card h3 {
    max-width: 250px;
    margin: 0 0 13px;
    color: var(--navy);
    font-size: 21px;
}

.service-card p {
    min-height: 72px;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.service-card a,
.service-btn a {
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 800;
}

.service-card a i,
.service-btn a i {
    margin-left: 5px;
    transition: 0.3s ease;
}

.service-card a:hover i,
.service-btn a:hover i {
    transform: translate(3px, -3px);
}

.service-btn {
    margin-top: 45px;
    text-align: center;
}

.service-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    color: var(--white);
    border-radius: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 14px 30px rgba(255, 145, 77, 0.22);
}

.why-section {
    padding: 110px 7%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
    background: var(--cream);
}

.why-visual {
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-ring {
    position: absolute;
    border: 1px solid rgba(255, 145, 77, 0.25);
    border-radius: 50%;
}

.ring-one {
    width: 410px;
    height: 410px;
}

.ring-two {
    width: 310px;
    height: 310px;
    border-color: rgba(11, 31, 77, 0.14);
    transform: rotate(45deg);
}

.why-core {
    width: 190px;
    height: 190px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy), #183a80);
    box-shadow: 0 25px 55px rgba(11, 31, 77, 0.25);
}

.core-icon {
    margin-bottom: 8px;
    color: var(--orange-soft);
    font-size: 25px;
}

.why-core strong {
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
}

.why-core span {
    margin-top: 7px;
    color: #bfc8dc;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 50px;
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(31, 41, 55, 0.12);
    font-size: 12px;
    font-weight: 800;
}

.why-badge i {
    color: var(--orange-dark);
}

.badge-one {
    top: 53px;
    left: 8%;
}

.badge-two {
    right: 1%;
    top: 46%;
}

.badge-three {
    bottom: 55px;
    left: 18%;
}

.why-content {
    max-width: 620px;
}

.why-content h2 {
    margin: 15px 0 20px;
    color: var(--navy);
    font-size: clamp(35px, 4.2vw, 57px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.why-content > p {
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.why-list {
    display: grid;
    gap: 18px;
}

.why-item {
    display: flex;
    gap: 15px;
    padding: 17px;
    border: 1px solid rgba(31, 41, 55, 0.06);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
}

.why-item > span {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--orange-dark);
    background: #fff0e5;
    font-size: 20px;
}

.why-item h3 {
    margin: 0 0 5px;
    color: var(--navy);
    font-size: 17px;
}

.why-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.how-it-works {
    padding: 110px 7%;
    background: #fffdfb;
}

.steps-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    padding: 30px;
    border: 1px solid rgba(31, 41, 55, 0.07);
    border-radius: 25px;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(31, 41, 55, 0.06);
    transition: 0.4s ease;
}

.step-card:hover,
.active-step {
    transform: translateY(-8px);
    border-color: rgba(255, 145, 77, 0.25);
    box-shadow: 0 22px 50px rgba(255, 145, 77, 0.14);
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-number {
    color: var(--orange-dark);
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
}

.step-top > i {
    color: var(--navy);
    font-size: 27px;
}

.step-card h3 {
    margin: 25px 0 10px;
    color: var(--navy);
    font-size: 23px;
}

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


.cta-section {
    padding: 0 7% 110px;
    background: #fffdfb;
}

.cta-box {
    max-width: 1250px;
    min-height: 400px;
    margin: auto;
    padding: 80px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 35px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    box-shadow: 0 25px 70px rgba(11, 31, 77, 0.18);
}

.cta-decoration {
    position: absolute;
    border: 1px solid rgba(255, 178, 107, 0.22);
    border-radius: 50%;
}

.cta-decoration-one {
    width: 500px;
    height: 500px;
    top: -290px;
    left: -150px;
}

.cta-decoration-two {
    width: 420px;
    height: 420px;
    right: -170px;
    bottom: -250px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.light-kicker {
    color: var(--orange-soft);
}

.cta-content h2 {
    margin: 15px 0 18px;
    color: var(--white);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.06;
    letter-spacing: -1.5px;
}

.cta-content p {
    max-width: 570px;
    margin: 0 auto 30px;
    color: #c9d0df;
    line-height: 1.75;
}

.cta-btn {
    padding: 16px 25px;
    color: var(--navy);
    background: var(--orange-soft);
}

.cta-btn:hover {
    color: var(--navy);
    background: var(--white);
}


.footer {
    padding-top: 70px;
    color: var(--white);
    background: var(--navy-deep);
}

.footer-container {
    width: 86%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.9fr 1.15fr;
    gap: 45px;
}

.footer-box h3 {
    margin: 0 0 20px;
    color: var(--orange-soft);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.footer-box p {
    color: #c7ccda;
    line-height: 1.8;
    font-size: 14px;
}

.footer-brand p {
    max-width: 280px;
}

.footer-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 11px;
    transition: 0.3s ease;
}

.footer-box ul li:hover {
    transform: translateX(6px);
}

.footer-box ul li a {
    color: #c7ccda;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-box ul li a:hover {
    color: var(--orange-soft);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-icons a {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--white);
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: var(--navy);
    background: var(--orange-soft);
    transform: translateY(-4px);
}

.footer-bottom {
    width: 86%;
    max-width: 1250px;
    margin: 50px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #9ca6b9;
    font-size: 13px;
}



@media (max-width: 1100px) {

    .navbar {
        padding-left: 5%;
        padding-right: 5%;
    }

    .menu {
        gap: 17px;
    }

    .hero,
    .why-section {
        gap: 45px;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .why-section {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 991px) {

    .navbar {
        min-height: 76px;
        position: sticky;
    }

    .logo img {
        height: 56px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        line-height: 1;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 18px 7%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 30px rgba(31, 41, 55, 0.08);
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        font-size: 16px;
    }

    .quote-btn {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 75px;
        padding-bottom: 80px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 760px;
        margin: auto;
    }

    .eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 560px;
        margin-top: 10px;
    }

    .service-container,
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-section {
        grid-template-columns: 1fr;
    }

    .why-visual {
        min-height: 430px;
    }

    .why-content {
        max-width: 800px;
        margin: auto;
        text-align: center;
    }

    .why-list {
        text-align: left;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .stat-box {
        padding: 16px;
        gap: 11px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        font-size: 20px;
    }

    .stat-box strong {
        font-size: 21px;
    }

    .stat-box div span {
        font-size: 10px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 650px) {

    .navbar {
        padding: 8px 5%;
    }

    .logo img {
        height: 52px;
    }

    .hero {
        padding: 55px 5% 65px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 62px);
        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn1,
    .btn2 {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
        text-align: left;
    }

    .hero-visual {
        min-height: 430px;
    }

    .dashboard-card {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
        transform: none;
    }

    .dashboard-top h3 {
        font-size: 20px;
    }

    .dashboard-chart {
        padding: 14px;
    }

    .chart-area {
        height: 110px;
    }

    .dashboard-metrics {
        gap: 8px;
    }

    .metric {
        padding: 10px;
    }

    .metric strong {
        font-size: 14px;
    }

    .floating-chip {
        padding: 10px 13px;
        font-size: 10px;
    }

    .chip-top {
        top: 8px;
        right: -4px;
    }

    .chip-bottom {
        bottom: 15px;
        left: -4px;
    }

    .visual-orbit {
        display: none;
    }

    .stats-section,
    .services,
    .why-section,
    .how-it-works {
        padding-left: 5%;
        padding-right: 5%;
    }

    .stats-section {
        padding-bottom: 60px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-box {
        min-height: 86px;
        padding: 15px 18px;
        border-radius: 18px;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .stat-box strong {
        font-size: 23px;
    }

    .stat-box div span {
        margin-top: 5px;
        font-size: 12px;
    }

    .services,
    .why-section,
    .how-it-works {
        padding-top: 75px;
        padding-bottom: 75px;
    }

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

    .section-heading h2,
    .why-content h2 {
        font-size: 36px;
    }

    .section-heading p,
    .why-content > p {
        font-size: 15px;
    }

    .service-container,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .service-card p {
        min-height: auto;
    }

    .why-visual {
        min-height: 350px;
    }

    .ring-one {
        width: 310px;
        height: 310px;
    }

    .ring-two {
        width: 235px;
        height: 235px;
    }

    .why-core {
        width: 150px;
        height: 150px;
    }

    .why-core strong {
        font-size: 14px;
    }

    .badge-one {
        top: 22px;
        left: 0;
    }

    .badge-two {
        right: -5px;
        top: 44%;
    }

    .badge-three {
        bottom: 25px;
        left: 5%;
    }

    .cta-section {
        padding: 0 5% 75px;
    }

    .cta-box {
        min-height: 390px;
        padding: 55px 20px;
        border-radius: 25px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .footer-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        width: 90%;
    }
}


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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}