/* =============================================
   STEPENERGY - Main Stylesheet
   Design System: Minimal, Elegant, Tech-forward
   ============================================= */

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --color-bg: #ffffff;
    --color-bg-dark: #0a0a0f;
    --color-bg-section: #f8f9fc;
    --color-text: #1a1a2e;
    --color-text-light: #6b7280;
    --color-text-on-dark: #e5e7eb;
    --color-primary: #00c2a8;
    --color-primary-hover: #00a890;
    --color-accent: #7c3aed;
    --color-gradient: linear-gradient(135deg, #00c2a8 0%, #7c3aed 100%);
    --color-border: #e5e7eb;
    --color-card-bg: #ffffff;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 6rem 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- UTILITY --- */
.text-gradient {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

/* --- ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 168, 0.3);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--color-bg-dark);
    border-color: #fff;
}

.btn--white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    transition: var(--transition-base);
    z-index: 1001;
}

.header.scrolled .logo {
    color: var(--color-text);
}

.logo__icon {
    font-size: 1.75rem;
}

.logo__highlight {
    color: var(--color-primary);
}

/* Navigation */
.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition-base);
}

.header.scrolled .nav__link {
    color: var(--color-text-light);
}

.nav__link:hover,
.nav__link--active {
    color: #fff;
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__link--active {
    color: var(--color-primary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger__line {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: var(--transition-base);
    border-radius: 2px;
}

.header.scrolled .hamburger__line {
    background: var(--color-text);
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- HERO SECTION (Home) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.7) 0%, rgba(10,10,15,0.85) 60%, rgba(10,10,15,0.95) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    max-width: 800px;
}

.hero__badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat__label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* --- SECTIONS GENERAL --- */
.section {
    padding: var(--section-padding);
}

.section--dark {
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
}

.section--dark .section__desc {
    color: rgba(255,255,255,0.65);
}

.section--gradient {
    background: linear-gradient(135deg, #0a0a15 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
}

.section__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: inherit;
}

.section__title--light {
    color: #fff;
}

.section__desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section__desc--center {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section__desc--light {
    color: rgba(255,255,255,0.7);
}

.section__header {
    margin-bottom: 3.5rem;
}

/* --- SHOWCASE (Home) --- */
.showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase__img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-list__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-text-light);
}

.feature-list__icon {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- HOW PREVIEW (Home) --- */
.how-preview__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 194, 168, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.step-card__visual {
    height: 200px;
    overflow: hidden;
}

.step-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-card:hover .step-card__img {
    transform: scale(1.05);
}

.step-card__title {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-card__desc {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* --- TESTIMONIALS --- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-bg-section);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card__stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-card__text {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* --- PAGE HERO (Inner Pages) --- */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.8) 0%, rgba(10,10,15,0.9) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    max-width: 700px;
}

/* --- TECHNOLOGY PAGE --- */
.tech-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-detail__img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: var(--color-primary);
    background: rgba(0, 194, 168, 0.05);
}

.benefit-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card__desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.schema__img-full {
    width: 100%;
    border-radius: var(--radius-xl);
    margin-top: 2rem;
}

/* --- AZIENDA PAGE --- */
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline__item {
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -2.45rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--color-primary);
}

.timeline__year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.timeline__item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline__item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.story__visual {
    position: relative;
}

.story__img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
}

.story__card {
    background: var(--color-bg-section);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.story__card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.story__card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Founders */
.founders__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.founder-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.founder-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.founder-card__img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--color-primary);
}

.founder-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.founder-card__role {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.founder-card__bio {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- CONTACTS PAGE --- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.contact__item h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact__item a,
.contact__item address,
.contact__item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact__item a:hover {
    color: var(--color-primary);
}

/* Form */
.contact__form-wrapper {
    background: var(--color-bg-section);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.contact__form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition-base);
    background: #fff;
    color: var(--color-text);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 194, 168, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__privacy {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    text-align: center;
}

/* Map */
.map__wrapper {
    margin-top: 2rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.map__iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* --- FOOTER --- */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
    padding: 4rem 1.5rem 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 350px;
}

.footer__title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer__links ul li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer__links a:hover {
    color: var(--color-primary);
}

.footer__legal address,
.footer__legal p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__vat {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--color-primary) !important;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer .logo {
    color: #fff;
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
    .showcase__grid,
    .tech-detail__grid,
    .story__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase__image {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .how-preview__steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto;
    }
    
    .hero__stats {
        gap: 2rem;
    }
    
    .stat__number {
        font-size: 2rem;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1rem;
    }
    
    /* Navigation Mobile */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__link {
        color: var(--color-text) !important;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        gap: 1.5rem;
    }
    
    .stat {
        text-align: center;
        flex: 1;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .founders__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .page-hero {
        min-height: 50vh;
    }
    
    .hero__title {
        font-size: clamp(2.8rem, 7vw, 4rem);
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stat {
        text-align: left;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact__form-wrapper {
        padding: 1.5rem;
    }
}