/* Small custom enhancements on top of Tailwind */
.hero-noise {
    background-image: radial-gradient(circle at 20% 20%, rgba(45,165,229,.25), transparent 34%),
                      radial-gradient(circle at 85% 0%, rgba(45,165,229,.14), transparent 30%);
}

.site-header {
    position: relative;
    z-index: 40;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, .06);
}

.site-header-main {
    background: #fff;
}

.site-header-brand-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 220px;
}

.site-header-brand-logo {
    display: block;
    width: 100%;
    max-height: 92px;
    object-fit: contain;
}

.site-header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    font-size: 14px;
}

.site-header-nav a {
    position: relative;
    padding: 8px 2px;
    transition: color .2s ease;
}

.site-header-nav a.is-active,
.site-header-nav a:hover {
    color: #2DA5E5;
}

.site-header-nav a.is-active::after,
.site-header-nav a:hover::after {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -2px;
    height: 2px;
    background: #2DA5E5;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.site-header-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-header-social a {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid #dbe3ec;
    background: #f8fafc;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.site-header-social a svg {
    width: 14px;
    height: 14px;
}

.site-header-social a:hover {
    border-color: #2DA5E5;
    color: #2DA5E5;
    background: #eef8fd;
}

.site-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    background: #2DA5E5;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .02em;
    transition: background-color .2s ease, transform .2s ease;
}

.site-header-cta:hover {
    background: #1F93D3;
    transform: translateY(-1px);
}

.site-header-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #fff;
    padding: 9px 10px;
}

.site-header-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0f172a;
    margin: 5px 0;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.site-header-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.site-header-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-menu {
    display: none;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.site-mobile-menu.is-open {
    display: block;
}

.site-mobile-links {
    padding: 14px 14px 10px;
    display: grid;
    gap: 6px;
}

.site-mobile-links a {
    color: #334155;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 12px;
}

.site-mobile-links a.is-active {
    border-color: #2DA5E5;
    color: #2DA5E5;
}


.site-mobile-social {
    padding: 2px 14px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-mobile-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #dbe3ec;
    background: #f8fafc;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-mobile-social a svg {
    width: 15px;
    height: 15px;
}

.site-mobile-social a:hover {
    border-color: #2DA5E5;
    color: #2DA5E5;
}

.site-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.site-breadcrumb a {
    color: #1979AD;
}

.site-breadcrumb .is-current {
    color: #0f172a;
}

.site-breadcrumb .sep {
    color: #94a3b8;
    font-weight: 600;
}

.site-breadcrumb-light {
    color: rgba(226, 232, 240, .92);
}

.site-breadcrumb-light a {
    color: #93dbff;
}

.site-breadcrumb-light .is-current {
    color: #ffffff;
}

.site-breadcrumb-light .sep {
    color: rgba(203, 213, 225, .9);
}

.hero-v3 {
    background: linear-gradient(180deg, #f8fbff 0%, #eef7fd 50%, #f7f9fc 100%);
}

.hero-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 76% 18%, rgba(45, 165, 229, .2), transparent 38%),
                radial-gradient(circle at 16% 80%, rgba(45, 165, 229, .14), transparent 35%);
    pointer-events: none;
}

.hero-v3-shape {
    position: absolute;
    border-radius: 999px;
    background: rgba(45,165,229,.14);
    pointer-events: none;
}

.hero-v3-shape-a {
    width: 120px;
    height: 120px;
    right: 7%;
    top: 14%;
}

.hero-v3-shape-b {
    width: 52px;
    height: 52px;
    left: 4%;
    bottom: 12%;
}

.hero-v3-shape-c {
    width: 180px;
    height: 6px;
    left: -28px;
    top: 44%;
    border-radius: 16px;
    transform: rotate(35deg);
}

.hero-v3-kicker {
    color: #2DA5E5;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 800;
}

.hero-v3-search {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #dbeafe;
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, .1);
    padding: 12px;
}

.hero-v3-search select,
.hero-v3-search button {
    height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 14px;
    font-weight: 600;
    background: #fff;
}

.hero-v3-search select {
    color: #374151;
}

.hero-v3-search button {
    border-color: #2DA5E5;
    background: #2DA5E5;
    color: #fff;
    min-width: 148px;
    transition: background-color .25s ease, transform .25s ease;
}

.hero-v3-search button:hover {
    background: #1979AD;
    transform: translateY(-2px);
}

.hero-v3-stage {
    position: relative;
    z-index: 2;
    padding: 24px 70px;
}

.hero-v3-slides {
    position: relative;
    min-height: 360px;
}

.hero-v3-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(34px) scale(.985);
    transition: opacity .55s ease, transform .55s ease;
}

.hero-v3-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.hero-v3-slide img {
    display: block;
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    height: 360px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 24px rgba(15, 23, 42, .28));
}

.hero-v3-slide::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: min(720px, 78%);
    height: 34px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(17, 24, 39, .28), rgba(17, 24, 39, 0));
    z-index: 1;
    pointer-events: none;
}
/*
.hero-v3-accent {
    position: absolute;
    left: clamp(10%, 12vw, 8%);
    top: 15%;
    width: 112px;
    height: 305px;
    border-radius: 14px;
    background: linear-gradient(180deg, #8cd2f4, #2DA5E5);
    transform: skew(-8deg);
    z-index: 3;
    opacity: .92;
    box-shadow: 0 20px 26px rgba(45, 165, 229, .22);
    animation: strapPulse 3.4s ease-in-out infinite;
    pointer-events: none;
}
*/

.hero-v3-accent {
    position: absolute;
    left: 4%;
    top:14%;
    
    width: 120px;
    height: 300px;

    border-radius: 16px;

    background: linear-gradient(180deg, #2DA5E5, #b3def5);

    transform: rotate(-15deg);

    z-index: 3;
    opacity: 0.55;

    box-shadow: 0 25px 40px rgba(255, 90, 44, 0.25);

    pointer-events: none;
}
.hero-v3-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 0;
    background: #111827;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: .9;
}

.hero-v3-prev {
    left: 8px;
}

.hero-v3-next {
    right: 8px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-v2 {
    background: linear-gradient(180deg, #f8fbff 0%, #edf7fe 100%);
    border: 1px solid #dbeafe;
}

.testimonial-v2-card {
    position: relative;
    border-radius: 18px;
    border: 1px solid #dbeafe;
    background: #fff;
    padding: 22px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, .08);
}

.testimonial-v2-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 78px;
    width: 16px;
    height: 62px;
    border-radius: 0 0 8px 8px;
    background: #2DA5E5;
    transform: skew(-24deg);
}

.testimonial-v2-card::after {
    content: '\201D';
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 70px;
    line-height: 1;
    color: rgba(45, 165, 229, .22);
    font-weight: 800;
}

.testimonial-v2-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.testimonial-v2-meta {
    min-width: 0;
    padding-right: 62px;
}

.testimonial-v2-top img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
}

.testimonial-v2-name {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.testimonial-v2-role {
    margin: 2px 0 0;
    font-size: 13px;
    color: #64748b;
}

.testimonial-v2-stars {
    margin: 6px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
    font-size: 14px;
    line-height: 1;
}

.testimonial-v2-stars span {
    display: inline-block;
}

.testimonial-v2-rating {
    margin-left: 6px;
    border-radius: 999px;
    background: #fff5db;
    color: #b45309;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
}

.testimonial-v2-text {
    margin-top: 14px;
    color: #475569;
    line-height: 1.7;
    font-size: 18px;
}
.range-track {
    accent-color: #2DA5E5;
}
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.dual-range {
    position: relative;
    height: 24px;
}

.dual-range-track-base {
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    height: 5px;
    border-radius: 999px;
    background: #d4d4d8;
}

.dual-range-track-fill {
    position: absolute;
    top: 10px;
    height: 5px;
    border-radius: 999px;
    background: #2DA5E5;
}

.range-red {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    background: transparent;
    pointer-events: none;
}

.range-red::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.range-red::-moz-range-track {
    height: 4px;
    background: transparent;
}

.range-red::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    margin-top: -8px;
    border-radius: 50%;
    border: 2px solid #2DA5E5;
    background: #2DA5E5;
    pointer-events: auto;
    cursor: pointer;
}

.range-red::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #2DA5E5;
    background: #2DA5E5;
    pointer-events: auto;
    cursor: pointer;
}

.why-choose-wrap {
    position: relative;
}

.why-choose-panel {
    border-radius: 32px;
    background: linear-gradient(180deg, #f3f9fe 0%, #eaf5fc 100%);
    border: 1px solid #d7ebf8;
    padding: clamp(20px, 3.4vw, 42px);
}

.why-choose-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
}

.why-kicker {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #2DA5E5;
}

.why-title {
    margin: 8px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    color: #0f172a;
}

.why-copy {
    margin: 16px 0 0;
    max-width: 620px;
    color: #475569;
    line-height: 1.72;
    font-size: 20px;
}

.why-visual {
    position: relative;
    margin-top: 24px;
    min-height: 220px;
}

.why-visual img {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 16px 20px rgba(15, 23, 42, .22));
}

.why-visual-strap {
    position: absolute;
    left: 49px;
    top: 10px;
    width: 108px;
    height: 305px;
    border-radius: 12px;
    background: linear-gradient(180deg, #9edcff, #2DA5E5);
    transform: skew(-19deg);
    z-index: 3;
}

.why-visual-strap-shadow {
    position: absolute;
    left: 55px;
    top: 56px;
    width: 108px;
    height: 270px;
    border-radius: 12px;
    background: rgba(45, 165, 229, .22);
    transform: skew(-24deg);
    z-index: 1;
}

.why-right {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
}

.why-service-card {
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dbeafe;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
    padding: 26px 20px 22px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 30px rgba(15, 23, 42, .14);
}

.why-service-card h3 {
    margin: 14px 0 0;
    font-size: 25px;
    font-weight: 800;
    color: #0f172a;
}

.why-service-card p {
    margin: 10px 0 0;
    color: #64748b;
    line-height: 1.65;
    font-size: 17px;
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-weight: 900;
    font-size: 26px;
    color: #fff;
}

.why-icon-a { background: linear-gradient(180deg, #38bdf8, #2DA5E5); }
.why-icon-b { background: linear-gradient(180deg, #2563eb, #1d4ed8); }
.why-icon-c { background: linear-gradient(180deg, #0ea5e9, #0284c7); }
.why-icon-d { background: linear-gradient(180deg, #1f2937, #111827); }

.why-left {
    animation: whyFloat 5.5s ease-in-out infinite;
}

@keyframes whyFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.brand-strip-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.brand-strip-line {
    width: 56px;
    height: 1px;
    background: #a1a1aa;
}

.brand-slider {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    padding: 16px 0;
}

.brand-slider::before,
.brand-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.brand-slider::before {
    left: 0;
    background: linear-gradient(90deg, #f4f4f5, rgba(244,244,245,0));
}

.brand-slider::after {
    right: 0;
    background: linear-gradient(270deg, #f4f4f5, rgba(244,244,245,0));
}

.brand-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brandMarquee 22s linear infinite;
}

.brand-slider:hover .brand-slider-track {
    animation-play-state: paused;
}

.brand-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    width: 168px;
    height: 112px;
    margin: 0 8px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e4e4e7;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .08);
}

.brand-logo-card img {
    max-width: 190px;
    max-height: 145px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.step-card {
    transform: perspective(900px) rotateX(0deg) translateY(0);
    transition: transform .35s ease, background-color .35s ease;
}

.step-card:hover {
    transform: perspective(900px) rotateX(6deg) translateY(-8px);
    background-color: rgba(255, 255, 255, 0.2);
}

.sell-steps-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(22px, 3.5vw, 40px);
    background:
        radial-gradient(120% 100% at 90% 5%, rgba(124, 204, 246, .22), transparent 45%),
        radial-gradient(110% 120% at -10% 120%, rgba(45, 165, 229, .35), transparent 48%),
        linear-gradient(120deg, #0f172a, #1f2937 58%, #334155);
    color: #fff;
}

.sell-steps-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .23em;
    font-size: 12px;
    font-weight: 800;
    color: #7cccf6;
}

.sell-steps-head h2 {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 4.3vw, 56px);
    font-weight: 900;
    line-height: 1.08;
}

.sell-steps-grid {
    margin-top: 24px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sell-step-card {
    border-radius: 18px;
    border: 1px solid rgba(147, 197, 253, .26);
    background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .08));
    backdrop-filter: blur(3px);
    padding: 18px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sell-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 204, 246, .65);
    box-shadow: 0 18px 24px rgba(15, 23, 42, .2);
}

.sell-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #2DA5E5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(45, 165, 229, .35);
}

.sell-step-icon svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.sell-step-num {
    margin: 12px 0 0;
    font-size: 35px;
    font-weight: 900;
    color: #9ddaf9;
    line-height: 1;
}

.sell-step-card h3 {
    margin: 8px 0 0;
    font-family: var(--font-display);
    font-size: 33px;
    font-weight: 800;
    line-height: 1.15;
}

.sell-step-copy {
    margin: 10px 0 0;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.62;
}

.global-cta-shell {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 24px;
}

.global-cta-left {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    background: linear-gradient(90deg, #2DA5E5, #a3ddfc);
    min-height: 280px;
    padding: clamp(26px, 3vw, 42px);
    color: #fff;
}

.global-cta-kicker {
    margin: 0;
    font-size: 12px;
    letter-spacing: .2em;
    font-weight: 700;
    text-transform: uppercase;
    opacity: .8;
}

.global-cta-left h2 {
    margin: 10px 0 0;
    max-width: 430px;
    font-weight: 900;
    font-size: clamp(34px, 3.2vw, 56px);
    line-height: 1.06;
}

.global-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.cta-phone,
.cta-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.cta-phone {
    background: #fff;
    color: #2DA5E5;
}

.cta-contact {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .7);
    color: #fff;
}

.cta-phone:hover,
.cta-contact:hover {
    transform: translateY(-2px);
}

.global-cta-dots {
    position: absolute;
    right: 52px;
    top: 45px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(#fff 4px, transparent 5px);
    background-size: 26px 26px;
    opacity: .65;
}

.global-cta-right {
    position: relative;
    min-height: 320px;
}

.global-cta-circle {
    position: absolute;
    left: -38px;
    bottom: -22px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #2DA5E5;
}

.global-cta-car {
    position: absolute;
    right: 0;
    top: -34px;
    width: min(100%, 460px);
    aspect-ratio: 1.15 / 1;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 32px 44px rgba(15, 23, 42, .22);
}

.global-cta-car img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-contact-cta-wrap {
    margin-bottom: 8px;
}

.home-contact-cta {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(180deg, #f2f4f5 0 66%, #2DA5E5 66% 100%);
    padding: clamp(24px, 4vw, 40px);
}

.home-contact-cta-head {
    text-align: center;
}

.home-contact-cta-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    color: #111827;
}

.home-contact-cta-head p {
    margin: 8px auto 0;
    max-width: 620px;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.home-contact-cta-form {
    max-width: 740px;
    margin: 24px auto 0;
}

.home-contact-cta-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-contact-cta-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #4b5563;
}

.home-contact-cta-field input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #e5e7eb;
    padding: 12px 16px;
    font-size: 14px;
    color: #111827;
    outline: none;
    transition: border-color .2s ease, background-color .2s ease;
}

.home-contact-cta-field input:focus {
    background: #fff;
    border-color: #2DA5E5;
}

.home-contact-cta-field input::placeholder {
    color: #9ca3af;
}

.home-contact-cta-submit {
    margin-top: 14px;
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: #2DA5E5;
    padding: 13px 18px;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    transition: transform .2s ease, filter .2s ease;
}

.home-contact-cta-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.home-contact-cta-info {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    background: #ffffff;
    border-radius: 22px;
    padding: clamp(18px, 2.4vw, 30px);
}

.home-contact-cta-item {
    text-align: center;
    color: #111827;
}

.home-contact-cta-icon {
    width: 84px;
    height: 84px;
    margin: -56px auto 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2DA5E5;
    box-shadow: 0 14px 24px rgba(45, 165, 229, .34);
}

.home-contact-cta-icon svg {
    width: 38px;
    height: 38px;
    fill: #fff;
}

.home-contact-cta-item h3 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
}

.home-contact-cta-item p {
    margin: 9px 0 0;
    font-size: 18px;
    color: #374151;
}

.home-contact-cta-item a {
    color: inherit;
}

.home-contact-cta-item a:hover {
    color: #0f766e;
}

.car-detail-page {
    position: relative;
    overflow-x: hidden;
    background: transparent;
    border-radius: 24px;
}

.car-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.car-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.car-breadcrumb a {
    color: #1979AD;
}

.car-breadcrumb .is-current {
    color: #0f172a;
    font-weight: 700;
}

.car-trust-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.car-trust-badge {
    border: 1px solid #cfe5f3;
    background: #f4fbff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 800;
    color: #145F87;
}

.car-hero-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1.65fr 1fr;
}

.car-hero-grid > * {
    min-width: 0;
}

.car-media-card,
.car-summary-card,
.car-info-panel {
    border: 1px solid #d8e5f2;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.car-media-card {
    border-radius: 20px;
    padding: 14px;
}

.car-main-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.car-main-image {
    width: 100%;
    height: 445px;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform .15s ease;
}

.car-expand-btn {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 10;
    border: 1px solid #cfe5f3;
    border-radius: 999px;
    background: rgba(248, 251, 255, .95);
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 800;
    color: #145F87;
}

.car-thumb-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.car-thumb-btn {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #d6e2ed;
    background: #fff;
}

.car-thumb-btn.is-active {
    border-color: #2DA5E5;
    box-shadow: 0 0 0 2px rgba(45, 165, 229, .28);
}

.car-thumb-img {
    width: 100%;
    height: 64px;
    object-fit: cover;
}

.car-summary-card {
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

.car-price-pill {
    border-radius: 12px;
    background: linear-gradient(180deg, #2DA5E5 0%, #1979AD 100%);
    color: #ffffff;
    padding: 12px 14px;
}

.clr {
    color: white;
}
.car-overview-card {
    margin-top: 16px;
    border-radius: 14px;
    border: 1px solid #d8e5f2;
    background: #f8fbff;
    padding: 14px;
}

.car-facts-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
}

.car-facts-grid p {
    min-width: 0;
    margin: 0;
    padding: 2px 0;
}

.car-facts-grid p:nth-child(odd) {
    color: #334155;
}

.car-facts-grid p:nth-child(even) {
    font-weight: 700;
    color: #0f172a;
}

.car-cta-row {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.car-cta-btn {
    display: block;
    border-radius: 11px;
    border: 1px solid #d0dfec;
    background: #fff;
    padding: 12px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: #145F87;
    transition: all .2s ease;
}

.car-cta-btn:first-child {
    border-color: #145F87;
    background: linear-gradient(180deg, #1F93D3 0%, #145F87 100%);
    color: #fff;
}

.car-cta-btn:last-child {
    border-color: #0f172a;
    background: #0f172a;
    color: #fff;
}

.car-cta-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.car-info-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid #d8e5f2;
    border-radius: 12px;
    background: #f8fbff;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.car-info-tabs::-webkit-scrollbar {
    display: none;
}

.car-info-tab {
    flex: 0 0 auto;
    min-width: max-content;
    border: 0;
    border-right: 1px solid #d8e5f2;
    background: transparent;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 800;
    color: #334155;
}

.car-info-tab:last-child {
    border-right: 0;
}

.car-info-tab.is-active {
    background: #2DA5E5;
    color: #fff;
}

.car-info-body {
    animation: fadeInTab .2s ease;
}

.car-spec-table td {
    font-size: 14px;
}

.car-feature-grid {
    list-style: none;
    margin: 0;
    padding: 0;
}

.car-feature-item {
    border-color: #cfe8f7;
    background: #f4fbff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 46px;
}

.car-feature-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2DA5E5;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    margin-top: 1px;
}

.car-feature-text {
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.car-related-card {
    border-radius: 18px;
    border-color: #d8e5f2;
    transition: transform .2s ease, box-shadow .2s ease;
}

.car-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .11);
}

.car-related-image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.car-related-price {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    border-radius: 999px;
    background: #2DA5E5;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
}

.car-related-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.car-related-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.car-related-chips span {
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #dbe3ec;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.car-related-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.car-related-actions a {
    display: block;
    border-radius: 10px;
    border: 1px solid #d8e5f2;
    padding: 9px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    color: #145F87;
}

.car-related-actions a:last-child {
    border-color: #1979AD;
    background: #1979AD;
    color: #fff;
}

@keyframes fadeInTab {
    from { opacity: .3; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}

.site-footer {
    background: #2DA5E5;
}

.site-footer-main {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(128deg, #0f172a 0%, #1e293b 46%, #0b1220 100%);
}

.site-footer-main::before,
.site-footer-main::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.site-footer-main::before {
    inset: -20% -12% auto auto;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(125, 211, 252, .34), rgba(45, 165, 229, .06) 46%, rgba(15, 23, 42, 0) 72%),
        conic-gradient(from 220deg, rgba(45, 165, 229, .22), rgba(45, 165, 229, 0) 58%, rgba(125, 211, 252, .16));
    filter: blur(1px);
    opacity: .95;
    transform: translate(18%, -8%);
}

.site-footer-main::after {
    inset: 0;
    background:
        linear-gradient(125deg, rgba(148, 163, 184, .09) 0 2px, transparent 2px 42px),
        linear-gradient(305deg, rgba(45, 165, 229, .06) 0 1px, transparent 1px 28px);
    background-size: 190px 190px, 130px 130px;
    mix-blend-mode: screen;
    opacity: .7;
}

.site-footer-accent {
    position: absolute;
    left: 36px;
    top: -34px;
    width: 122px;
    height: 410px;
    border-radius: 14px;
    background: linear-gradient(180deg, #7cccf6, #2DA5E5);
    transform: skew(-18deg);
    opacity: .85;
}

.site-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: rgba(15, 23, 42, .7);
    color: #dbeafe;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform .25s ease, border-color .25s ease, color .25s ease;
}

.site-footer-social:hover {
    transform: translateY(-2px);
    color: #7cccf6;
    border-color: #2DA5E5;
}

.site-footer-logo {
    width: auto;
    max-width: min(100%, 290px);
    max-height: none;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(148, 163, 184, .35);
    box-shadow: 0 12px 20px rgba(15, 23, 42, .22);
}

.site-footer-link {
    position: relative;
    display: block;
    padding-left: 14px;
    line-height: 1.5;
    color: #d4d4d8;
    transition: color .2s ease;
}

.site-footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2DA5E5;
}

.site-footer-link:hover {
    color: #7cccf6;
}

.site-footer-contact {
    color: #dbeafe;
    transition: color .2s ease;
}

.site-footer-contact:hover {
    color: #7cccf6;
}

.site-footer-main .max-w-7xl {
    position: relative;
    z-index: 1;
}

.site-footer-main .text-3xl {
    font-size: clamp(1.55rem, 2.1vw, 2.15rem);
    line-height: 1.2;
}

.site-footer-main .text-2 {
    font-size: clamp(1.05rem, 1.25vw, 1.35rem);
}

.site-footer-bottom {
    border-top: 1px solid #1e293b;
    background: #2DA5E5;
    text-align: center;
    padding: 14px 12px;
    color: #cbd5e1;
    font-size: 14px;
}

.site-whatsapp-float {
    position: fixed;
    right: 38px;
    bottom: 20px;
    z-index: 85;
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: inherit;
    filter: drop-shadow(0 10px 20px rgba(15, 23, 42, .18));
}

.site-whatsapp-float:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.site-whatsapp-float-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(180deg, #25D366 0%, #1eb955 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(30, 185, 85, .40);
    animation: whatsappGlow 1.9s ease-in-out infinite;
}

.site-whatsapp-float-icon svg {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.site-backtop-btn {
    position: fixed;
    right: 38px;
    bottom: 28px;
    z-index: 84;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid #145F87;
    background: linear-gradient(180deg, #2DA5E5 0%, #1979AD 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(25, 121, 173, .32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.95);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease, filter .2s ease;
    animation: backTopPulse 1.8s ease-in-out infinite;
}

.site-backtop-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.site-backtop-btn:hover {
    filter: brightness(1.05);
}

.site-backtop-btn svg {
    width: 22px;
    height: 22px;
}

@keyframes backTopPulse {
    0% {
        box-shadow: 0 10px 24px rgba(25, 121, 173, .28), 0 0 0 0 rgba(45, 165, 229, .30);
    }
    70% {
        box-shadow: 0 10px 24px rgba(25, 121, 173, .34), 0 0 0 10px rgba(45, 165, 229, 0);
    }
    100% {
        box-shadow: 0 10px 24px rgba(25, 121, 173, .28), 0 0 0 0 rgba(45, 165, 229, 0);
    }
}

@keyframes whatsappGlow {
    0% {
        box-shadow: 0 10px 24px rgba(30, 185, 85, .30), 0 0 0 0 rgba(37, 211, 102, .38);
    }
    65% {
        box-shadow: 0 10px 24px rgba(30, 185, 85, .36), 0 0 0 13px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 10px 24px rgba(30, 185, 85, .30), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes brandMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes strapPulse {
    0% {
        transform: skew(-14deg) translateY(0);
    }
    50% {
        transform: skew(-14deg) translateY(-6px);
    }
    100% {
        transform: skew(-14deg) translateY(0);
    }
}

@media (max-width: 767px) {
    .hero-v3-shape {
        display: none;
    }

    .site-header-main {
        background: #fff;
    }

    .site-header-brand-logo-link {
        max-width: 162px;
    }

    .site-header-nav {
        display: none;
    }

    .site-header-cta {
        display: none;
    }

    .site-header-actions {
        margin-left: auto;
    }


    .site-header-burger {
        display: inline-block;
    }

    .site-breadcrumb {
        font-size: 12px;
        gap: 6px;
    }

    .hero-v3-search {
        grid-template-columns: 1fr;
    }

    .hero-v3-search button {
        min-width: 100%;
    }

    .hero-v3-stage {
        padding: 10px 34px 22px;
    }

    .hero-v3-slides {
        min-height: 240px;
    }

    .hero-v3-slide img {
        width: 100%;
        height: 240px;
        object-fit: contain;
    }

    .hero-v3-accent {
        left: 8%;
        top: 14%;
        width: 76px;
        height: 180px;
    }

    .hero-v3-nav {
        width: 34px;
        height: 34px;
        font-size: 16px;
        top: 58%;
    }

    .hero-v3-prev {
        left: 2px;
    }

    .hero-v3-next {
        right: 2px;
    }

    .hero-v3-stage .why-visual-strap {
        left: 6%;
        top: 26px;
        width: 58px;
        height: 124px;
        border-radius: 10px;
        opacity: .9;
    }

    .hero-v3-stage .why-visual-strap-shadow {
        left: 2%;
        top: 54px;
        width: 52px;
        height: 98px;
        border-radius: 10px;
        opacity: .5;
    }

    .testimonial-v2-card {
        padding: 16px 14px 18px;
        border-radius: 16px;
    }

    .testimonial-v2-card::before {
        display: none;
    }

    .testimonial-v2-card::after {
        right: 12px;
        top: 8px;
        font-size: 56px;
    }

    .testimonial-v2-top {
        gap: 10px;
        align-items: flex-start;
        padding-bottom: 12px;
    }

    .testimonial-v2-top img {
        width: 52px;
        height: 52px;
        border-radius: 10px;
    }

    .testimonial-v2-meta {
        padding-right: 48px;
    }

    .testimonial-v2-name {
        font-size: 21px;
        line-height: 1.15;
    }

    .testimonial-v2-role {
        margin-top: 4px;
        font-size: 15px;
    }

    .testimonial-v2-stars {
        margin-top: 7px;
        gap: 2px;
        font-size: 13px;
    }

    .testimonial-v2-rating {
        margin-left: 5px;
        padding: 2px 7px;
        font-size: 10px;
    }

    .testimonial-v2-text {
        margin-top: 12px;
        font-size: 17px;
        line-height: 1.6;
    }

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

    .why-copy {
        font-size: 16px;
    }

    .why-visual img {
        height: 190px;
    }

    .why-visual-strap {
        left: 14px;
        top: 14px;
        width: 76px;
        height: 148px;
    }

    .why-visual-strap-shadow {
        left: 5px;
        top: 44px;
        width: 74px;
        height: 122px;
    }

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

    .why-service-card h3 {
        font-size: 26px;
    }

    .why-service-card p {
        font-size: 16px;
    }

    .brand-logo-card {
        min-width: 136px;
        width: 136px;
        height: 78px;
    }

    .brand-logo-card img {
        max-width: 102px;
        max-height: 52px;
    }

    .sell-steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sell-step-card h3 {
        font-size: 26px;
    }

    .sell-step-copy {
        font-size: 15px;
    }

    .global-cta-shell {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .global-cta-left {
        border-radius: 26px;
        min-height: auto;
    }

    .global-cta-right {
        min-height: 250px;
    }

    .global-cta-car {
        position: relative;
        top: 0;
        width: 100%;
        border-radius: 26px;
    }

    .global-cta-circle {
        width: 140px;
        height: 140px;
        left: -12px;
        bottom: -6px;
    }

    .global-cta-dots {
        display: none;
    }

    .home-contact-cta {
        border-radius: 22px;
        background: linear-gradient(180deg, #f2f4f5 0 78%, #2DA5E5 78% 100%);
    }

    .home-contact-cta-head p {
        font-size: 16px;
    }

    .home-contact-cta-fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-contact-cta-info {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 66px 16px 20px;
    }

    .home-contact-cta-icon {
        margin-top: 0;
    }

    .home-contact-cta-item h3 {
        font-size: 24px;
    }

    .home-contact-cta-item p {
        font-size: 16px;
    }

    .car-hero-grid {
        grid-template-columns: 1fr;
    }

    .car-topbar {
        gap: 10px;
    }

    .car-breadcrumb {
        font-size: 12px;
        gap: 6px;
    }

    .car-trust-badges {
        width: 100%;
        gap: 6px;
    }

    .car-trust-badge {
        padding: 5px 10px;
        font-size: 10px;
    }

    .car-media-card,
    .car-summary-card,
    .car-info-panel {
        border-radius: 18px;
    }

    .car-main-image {
        height: 270px;
    }

    .car-thumb-grid {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 2px;
    }

    .car-thumb-btn {
        flex: 0 0 84px;
    }

    .car-thumb-img {
        height: 60px;
    }

    .car-info-tab {
        padding: 12px 18px;
        font-size: 14px;
    }

    .car-summary-card {
        padding: 14px;
    }

    .car-overview-card h1 {
        font-size: 32px;
        line-height: 1.1;
        word-break: break-word;
    }

    .car-price-pill span {
        font-size: 1.25rem;
        line-height: 1.2;
        color: #ffffff;
    }

    .car-facts-grid {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 6px 8px;
        font-size: 12px;
    }

    .car-cta-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .car-info-panel {
        padding: 12px;
    }

    .car-spec-table {
        table-layout: fixed;
    }

    .car-spec-table td {
        font-size: 14px;
        word-break: break-word;
    }

    .car-related-grid {
        gap: 14px;
    }

    .car-related-card {
        border-radius: 16px;
    }

    .car-related-image {
        aspect-ratio: 1 / 1;
    }

    .car-related-actions a {
        font-size: 13px;
        padding: 8px 10px;
    }

    .site-footer-accent {
        left: -12px;
        top: -28px;
        width: 92px;
        height: 320px;
    }

    .site-footer-main::before {
        width: 390px;
        height: 390px;
        transform: translate(22%, -14%);
        opacity: .82;
    }

    .site-footer-main::after {
        background-size: 120px 120px, 82px 82px;
        opacity: .56;
    }

    .site-footer-main .text-3xl {
        font-size: 2rem;
    }

    .site-footer-main .text-2 {
        font-size: 1.15rem;
    }

    .site-footer-logo {
        max-width: 220px;
        padding: 8px 12px;
        border-radius: 12px;
    }

    .site-whatsapp-float {
        right: 22px;
        bottom: 14px;
    }

    .site-whatsapp-float-icon {
        width: 50px;
        height: 50px;
    }

    .site-whatsapp-float-icon svg {
        width: 33px;
        height: 33px;
    }

    .site-backtop-btn {
        right: 22px;
        bottom: 74px;
        width: 42px;
        height: 42px;
    }

    .site-backtop-btn svg {
        width: 20px;
        height: 20px;
    }
}
