.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #231c16;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
}

.hero__bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(35, 28, 22, 0.98) 0%,
        rgba(35, 28, 22, 0.95) 25%,
        rgba(35, 28, 22, 0.88) 50%,
        rgba(35, 28, 22, 0.75) 75%,
        rgba(35, 28, 22, 0.6) 100%
    );
    z-index: 1;
}

.hero__bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(35, 28, 22, 1) 0%,
        rgba(35, 28, 22, 0.92) 30%,
        rgba(35, 28, 22, 0.6) 60%,
        rgba(35, 28, 22, 0.3) 80%
    );
    z-index: 2;
}

.hero__bg-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: 
        linear-gradient(rgba(187, 154, 101, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(187, 154, 101, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__bg-pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(187, 154, 101, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(187, 154, 101, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(187, 154, 101, 0.05) 0%, transparent 50%);
}

.hero__decor {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.hero__decor--1 {
    top: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    border: 1px solid rgb(187 154 101 / 56%);
    border-radius: 50%;
    animation: hero-float 20s ease-in-out infinite;
}

.hero__decor--2 {
    bottom: 20%;
    right: 25%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(187, 154, 101, 56%);
    border-radius: 50%;
    animation: hero-float 15s ease-in-out infinite reverse;
}

.hero__decor--3 {
    top: 40%;
    right: 10%;
    width: 8px;
    height: 8px;
    background: var(--secondary-color-100, #bb9a65);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(187, 154, 101, 56%);
    animation: hero-pulse 3s ease-in-out infinite;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 2rem 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(187, 154, 101, 0.2);
    border: 1px solid rgba(187, 154, 101, 0.5);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--secondary-color-100, #bb9a65);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero__badge svg {
    flex-shrink: 0;
}

.hero__title {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__title span {
    color: var(--secondary-color-100, #bb9a65);
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}


.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero__btn-secondary:hover,
.hero__btn-secondary:focus {
    border-color: var(--secondary-color-100, #bb9a65);
    background: rgba(187, 154, 101, 0.1);
    outline: none;
}

.hero__btn-secondary:focus-visible {
    outline: 2px solid var(--secondary-color-100, #bb9a65);
    outline-offset: 2px;
}

.hero__btn-secondary svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero__btn-secondary:hover svg {
    transform: translateX(4px);
}


.hero__stats {
    display: flex;
    gap: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color-100, #bb9a65);
    font-family: 'AlbertSansBold', sans-serif;
    line-height: 1;
}

.hero__stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 5px;
}


.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    animation: hero-bounce 2s infinite;
    transition: color 0.3s ease;
}

.hero__scroll:hover,
.hero__scroll:focus {
    color: var(--secondary-color-100, #bb9a65);
    outline: none;
}

.hero__scroll:focus-visible {
    outline: 2px solid var(--secondary-color-100, #bb9a65);
    outline-offset: 4px;
    border-radius: 4px;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--secondary-color-100, #bb9a65), transparent);
}


@keyframes hero-float {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    33% { 
        transform: translate(15px, -15px) rotate(3deg); 
    }
    66% { 
        transform: translate(-10px, 10px) rotate(-2deg); 
    }
}

@keyframes hero-pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.5); 
    }
}

@keyframes hero-bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        transform: translateX(-50%) translateY(10px); 
    }
}

@media (max-width: 1024px) {
    .hero__bg-image::before {
        background: linear-gradient(
            180deg,
            rgba(35, 28, 22, 0.96) 0%,
            rgba(35, 28, 22, 0.9) 50%,
            rgba(35, 28, 22, 0.8) 100%
        );
    }
    
    .hero__bg-image::after {
        background: none;
    }
    
    .hero__content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero__cta {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
        margin: 0 auto;
    }
    
    .hero__decor {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .hero__content {
        padding: 1rem 0;
    }
    
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.25rem;
        width: 100%;
    }
    
    .hero__stat {
        text-align: center;
        min-width: 70px;
        flex: 1;
    }
    
    .hero__stat-number {
        font-size: 1.75rem;
    }
    
    .hero__stat-label {
        font-size: 12px;
    }
    
    .hero__badge {
        font-size: 10px;
        padding: 8px 14px;
        letter-spacing: 1px;
        margin-bottom: 1.25rem;
    }
    
    .hero__title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero__cta .primary-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .hero__btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        justify-content: center;
    }

    .hero__scroll {
        display: none;
    }
}


@media (prefers-reduced-motion: reduce) {
    .hero__decor--1,
    .hero__decor--2,
    .hero__decor--3,
    .hero__scroll {
        animation: none;
    }
    
    .hero__btn-secondary svg {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .hero__badge {
        border-width: 2px;
    }
    
    .hero__btn-secondary {
        border-width: 3px;
    }
    
    .hero__title span {
        text-decoration: underline;
    }
}

.hero--split {
    min-height: 75vh;
    background: var(--primary-color-100);
}

.hero--split .hero__bg-image {
    right: 0;
    left: auto;
    width: 60%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero--split .hero__bg-image::before {
    background: linear-gradient(
        90deg,
        var(--primary-color-100) 0%,
        rgba(64, 50, 38, 0.6) 40%,
        rgba(64, 50, 38, 0.3) 70%,
        rgba(64, 50, 38, 0.15) 100%
    );
}

.hero--split .hero__bg-image::after {
    display: none;
}

.hero--split .hero__bg-pattern {
    background-image: radial-gradient(
        circle at 0% 100%,
        rgba(187, 154, 101, 0.15) 0%,
        transparent 50%
    );
}

.hero__decor-line {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translateY(-50%);
    width: 2px;
    height: 200px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--secondary-color-100),
        transparent
    );
    z-index: 2;
}

.hero__decor-line::before,
.hero__decor-line::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--secondary-color-100);
    border-radius: 50%;
}

.hero__decor-line::before {
    top: 0;
}

.hero__decor-line::after {
    bottom: 0;
}

.hero--split .hero__content {
    max-width: 550px;
    padding: 4rem 0;
}

.hero--split .hero__title span {
    display: block;
}

.hero__stats--floating {
    position: absolute;
    right: 10%;
    bottom: 15%;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    gap: 2rem;
}

.hero__stats--floating .hero__stat {
    text-align: center;
}

.hero__stats--floating .hero__stat-number {
    font-size: 2rem;
}

@media (max-width: 1200px) {
    .hero--split .hero__bg-image {
        width: 55%;
    }
    
    .hero__decor-line {
        left: 48%;
    }
    
    .hero__stats--floating {
        right: 5%;
        bottom: 10%;
    }
}

@media (max-width: 1024px) {
    .hero--split {
        min-height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .hero--split .hero__bg-image {
        width: 100%;
        clip-path: none;
    }
    
    .hero--split .hero__bg-image::before {
        background: linear-gradient(
            180deg,
            rgba(64, 50, 38, 0.92) 0%,
            rgba(64, 50, 38, 0.88) 50%,
            rgba(64, 50, 38, 0.85) 100%
        );
    }
    
    .hero__decor-line {
        display: none;
    }
    
    .hero--split .container {
        order: 1;
    }
    
    .hero--split .hero__content {
        max-width: 100%;
        text-align: center;
        padding: 5rem 0 2rem;
    }
    
    .hero--split .hero__title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero--split .hero__title span {
        display: inline;
    }
    
    .hero--split .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero--split .hero__cta {
        justify-content: center;
        margin-bottom: 0;
    }
    
    .hero--split .hero__stats--floating {
        position: relative;
        right: auto;
        bottom: auto;
        order: 2;
        margin: 0 auto;
        padding: 2rem;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        background: rgba(35, 28, 22, 0.95);
    }
}

@media (max-width: 768px) {
    .hero--split .hero__content {
        padding: 4rem 0 2rem;
    }
    
    .hero--split .hero__badge {
        font-size: 10px;
        padding: 8px 14px;
        margin-bottom: 1.25rem;
    }
    
    .hero--split .hero__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero--split .hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero--split .hero__cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero--split .hero__cta .primary-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .hero--split .hero__btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero--split .hero__stats--floating {
        padding: 1.5rem;
    }
    
    .hero--split .hero__stats--floating .hero__stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .hero--split {
        padding: 0;
    }
    
    .hero--split .hero__content {
        padding: 3.5rem 0 1.5rem;
    }
    
    .hero--split .hero__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .hero--split .hero__stats--floating {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }
    
    .hero--split .hero__stats--floating .hero__stat {
        min-width: 80px;
        flex: 1;
    }
    
    .hero--split .hero__stats--floating .hero__stat-number {
        font-size: 1.5rem;
    }
    
    .hero--split .hero__stats--floating .hero__stat-label {
        font-size: 11px;
    }
}


.hero--centered {
    min-height: 60vh;
    background: #403226;
}

.hero--centered .hero__bg-image::before {
    background: linear-gradient(
        135deg,
        rgba(64, 50, 38, 0.95) 0%,
        rgba(64, 50, 38, 0.8) 50%,
        rgba(64, 50, 38, 0.6) 100%
    );
}

.hero--centered .hero__bg-image::after {
    display: none;
}

.hero--centered .hero__bg-pattern {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(187, 154, 101, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(187, 154, 101, 0.08) 0%, transparent 35%);
}

.hero--centered .hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.hero--centered .hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero--centered .hero__subtitle {
    margin-bottom: 2rem;
}

.hero__stats--centered {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    background: none;
    border: none;
    backdrop-filter: none;
    padding: 0;
    width: auto;
}

.hero__stats--centered .hero__stat {
    text-align: center;
}

.hero__stats--centered .hero__stat-number {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .hero--centered {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero__stats--centered {
        gap: 2rem;
    }
    
    .hero__stats--centered .hero__stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero__stats--centered {
        gap: 1.5rem;
    }
    
    .hero__stats--centered .hero__stat {
        min-width: 80px;
    }
    
    .hero__stats--centered .hero__stat-number {
        font-size: 1.75rem;
    }
}

/* Service Variant */
.hero--service {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-color-100);
}

.hero--service .hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(64, 50, 38, 0.95) 0%, rgba(64, 50, 38, 0.6) 60%, rgba(64, 50, 38, 0.4) 100%);
    z-index: 1;
}

.hero--service .hero__bg-image::before {
    display: none;
}

.hero--service .hero__bg-image::after {
    display: none;
}

.hero--service .hero__bg-grid {
    background-image: 
        linear-gradient(rgba(187, 154, 101, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(187, 154, 101, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    border: 1px solid rgba(187, 154, 101, 0.2);
    border-radius: 50%;
}

.hero__shape--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: service-float 20s ease-in-out infinite;
}

.hero__shape--2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: service-float 15s ease-in-out infinite reverse;
}

.hero__shape--3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    background: rgba(187, 154, 101, 0.05);
    animation: service-float 12s ease-in-out infinite;
}

@keyframes service-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(5deg); }
    66% { transform: translate(-10px, 10px) rotate(-3deg); }
}

.hero--service .hero__content-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero--service .hero__content-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }
}

.hero--service .hero__content {
    padding: 3rem 0;
    max-width: 100%;
}

/* Breadcrumb */
.hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    font-size: 14px;
    flex-wrap: wrap;
}

.hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero__breadcrumb a:hover {
    color: var(--secondary-color-100);
}

.hero__breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
}

.hero__breadcrumb span svg {
    opacity: 0.5;
}

.hero__breadcrumb .current {
    color: var(--secondary-color-100);
    font-weight: 500;
}

/* Service Variant Badge */
.hero--service .hero__badge {
    background: linear-gradient(135deg, var(--secondary-color-100) 0%, #8C6629 100%);
    border: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(187, 154, 101, 0.3);
}

/* Title Highlight */
.hero__title-highlight {
    position: relative;
    display: inline-block;
    color: var(--secondary-color-100);
}

.hero--service .hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(187, 154, 101, 0.3);
    z-index: -1;
    transform: skewX(-12deg);
}

.hero--service .hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
}

.hero--service .hero__subtitle {
    max-width: 550px;
}

/* Service Hero Card */
.hero__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color-100), #8C6629);
}

.hero__card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero__card-stat {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.hero__card-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero__card-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color-100);
    font-family: 'AlbertSansBold', sans-serif;
    line-height: 1;
}

.hero__card-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero__card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__card-features li:last-child {
    border-bottom: none;
}

.hero__card-features li svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    fill: var(--secondary-color-100);
}

/* Service Variant Responsive */
@media (max-width: 1024px) {
    .hero--service {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
    
    .hero--service .hero__content {
        text-align: center;
    }
    
    .hero__breadcrumb {
        justify-content: center;
    }
    
    .hero--service .hero__subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero--service .hero__cta {
        justify-content: center;
    }
    
    .hero__card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero--service {
        padding: 5rem 0 3rem;
    }
    
    .hero--service .hero__title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .hero--service .hero__badge {
        font-size: 11px;
        padding: 10px 18px;
    }
    
    .hero__breadcrumb {
        font-size: 13px;
        margin-bottom: 1.5rem;
    }
    
    .hero__card {
        padding: 2rem;
    }
    
    .hero__card-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__card-stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .hero--service {
        padding: 4rem 0 2.5rem;
    }
    
    .hero--service .hero__cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero--service .primary-button,
    .hero--service .hero__btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero__card-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero__card-stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 0.75rem;
    }
    
    .hero__card-stat-label {
        margin-top: 0;
    }
    
    .hero__shape--1 {
        width: 200px;
        height: 200px;
    }
    
    .hero__shape--2 {
        width: 150px;
        height: 150px;
    }
    
    .hero__shape--3 {
        width: 80px;
        height: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__shape--1,
    .hero__shape--2,
    .hero__shape--3 {
        animation: none;
    }
}
