.front-hero-slider {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    margin: 0;
}

.front-hero-track {
    position: relative;
    width: 100%;
    height: 70vh;
}

.front-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.front-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.front-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.32) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
    display: flex;
    align-items: center;
    padding: 40px 6vw;
}

.front-hero-content {
    max-width: 700px;
    color: #fff;
}

.front-hero-content .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.front-hero-content h1,
.front-hero-content h2 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.05;
    color: #fff;
}

.front-hero-content p {
    margin: 0 0 24px;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    max-width: 620px;
}

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

.front-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.front-hero-btn.primary {
    background: #ffffff;
    color: #0b2239;
}

.front-hero-btn.primary:hover {
    transform: translateY(-2px);
    background: #f3f4f6;
}

.front-hero-btn.secondary {
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.front-hero-btn.secondary:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.14);
}

.front-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}

.front-hero-arrow:hover {
    background: rgba(255,255,255,0.28);
}

.front-hero-arrow.prev {
    left: 24px;
}

.front-hero-arrow.next {
    right: 24px;
}

.front-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.front-hero-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: 0.25s ease;
}

.front-hero-dot.active {
    background: #fff;
    transform: scale(1.15);
}

.upsell-spacing {
    padding: 48px 24px 0;
}

@media (max-width: 768px) {
    .front-hero-slider,
    .front-hero-track {
        height: 78vh;
        min-height: 560px;
    }

    .front-hero-overlay {
        padding: 32px 20px;
        align-items: flex-end;
    }

    .front-hero-arrow {
        width: 44px;
        height: 44px;
    }

    .front-hero-arrow.prev {
        left: 12px;
    }

    .front-hero-arrow.next {
        right: 12px;
    }
}

.frontpage-content {
    width: 100%;
    padding: 48px 24px 0;
    box-sizing: border-box;
}

.frontpage-content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.frontpage-content-inner > *:first-child {
    margin-top: 0;
}

.frontpage-content-inner .wp-block-group,
.frontpage-content-inner .wp-block-columns,
.frontpage-content-inner .wp-block-cover,
.frontpage-content-inner .wp-block-media-text {
    margin-bottom: 32px;
}

.frontpage-content-inner p,
.frontpage-content-inner ul,
.frontpage-content-inner ol,
.frontpage-content-inner h1,
.frontpage-content-inner h2,
.frontpage-content-inner h3,
.frontpage-content-inner h4,
.frontpage-content-inner h5,
.frontpage-content-inner h6 {
    max-width: 100%;
}

.frontpage-content-inner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.frontpage-content-inner hr {
    border: none;
    width: 40vw;
    height: 1px;
    background: #0b2239;
    border-radius: 999px;
    margin: 48px auto;
}

.rounded-cta{
	border-radius:50px;
}

.cta-btn:hover{
	transform: scale(1.02);
}
