:root{
    --bg: #f6f7fb;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --surface-dark: #0f172a;
    --surface-dark-soft: #162236;
    --text: #0f172a;
    --text-soft: #475569;
    --text-faint: #94a3b8;
    --line: rgba(148, 163, 184, 0.24);
    --line-strong: rgba(148, 163, 184, 0.38);
    --accent: #f97316;
    --accent-soft: #fb923c;
    --accent-pale: rgba(249, 115, 22, 0.12);
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
    --shadow-strong: 0 30px 80px rgba(15, 23, 42, 0.24);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --site-width: min(1180px, calc(100% - 32px));
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 26%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.08), transparent 24%),
        var(--bg);
    color: var(--text);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img{
    display: block;
    max-width: 100%;
}

a{
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea{
    font: inherit;
}

.site-header{
    position: sticky;
    top: 0;
    z-index: 140;
    padding-top: 16px;
}

.nav{
    width: var(--site-width);
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.logo{
    flex: 0 1 auto;
}

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

.brand-copy{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-copy span,
.footer-logo strong{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    letter-spacing: -0.03em;
}

.brand-copy small{
    color: var(--text-soft);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.menu{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a{
    color: var(--text-soft);
    font-size: 0.98rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible{
    color: var(--text);
}

.menu-toggle{
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span{
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cont,
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cont{
    flex: 0 0 auto;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
    color: white;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24);
    font-size: 0.95rem;
    font-weight: 700;
}

.cont:hover,
.btn:hover{
    transform: translateY(-2px);
}

.cont:focus-visible,
.menu-toggle:focus-visible,
.btn:focus-visible{
    outline: 3px solid rgba(249, 115, 22, 0.24);
    outline-offset: 3px;
}

#slider{
    position: relative;
    width: var(--site-width);
    height: clamp(680px, calc(100vh - 140px), 780px);
    min-height: 680px;
    margin: 26px auto 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--surface-dark);
    box-shadow: var(--shadow-strong);
}

.slide{
    position: absolute;
    inset: 0;
    background-position: var(--bg-position, center center);
    background-size: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(112deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.5) 46%, rgba(15, 23, 42, 0.76) 100%);
}

.slide.active{
    opacity: 1;
}

.slide-shell{
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
    align-items: center;
    gap: 36px;
    padding:
        clamp(40px, 6vw, 72px)
        clamp(40px, 6vw, 72px)
        clamp(128px, 14vw, 156px);
}

.content{
    max-width: 660px;
    color: white;
    align-self: start;
    padding-top: clamp(6px, 1.6vw, 22px);
}

.eyebrow,
.section-kicker,
.hero-panel__label,
.insight-meta{
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
}

.eyebrow{
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
}

.content h1,
.section-heading h2,
.cta-band__copy h2,
.contact-modal__title{
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.content h1{
    font-size: clamp(2.7rem, 5.1vw, 4.85rem);
    max-width: 9.3ch;
}

.slide--compact .content h1{
    font-size: clamp(2.4rem, 4.3vw, 4.1rem);
    max-width: 8.2ch;
}

.hero-copy{
    margin-top: 20px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.slide--compact .hero-copy{
    max-width: 470px;
}

.hero-actions{
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.slide--compact .hero-actions{
    margin-top: 20px;
}

.hero-actions .btn{
    min-width: 160px;
}

.slide--compact .hero-actions .btn{
    min-width: 148px;
}

.btn{
    padding: 13px 18px;
    font-size: 0.92rem;
    font-weight: 700;
}

.btn-primary{
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
    color: white;
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.22);
}

.btn-secondary{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: white;
}

.hero-panel{
    align-self: end;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(14px);
}

.hero-panel__label{
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 18px;
}

.hero-points{
    display: grid;
    gap: 12px;
    list-style: none;
    color: rgba(255, 255, 255, 0.88);
}

.hero-points li{
    position: relative;
    padding-left: 22px;
}

.hero-points li::before{
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #facc15 100%);
}

.hero-metrics{
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hero-metrics div{
    padding: 16px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.24);
}

.hero-metrics strong{
    display: block;
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.hero-metrics span{
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.arrow{
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.28);
    color: white;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.arrow:hover{
    transform: translateY(-50%) scale(1.04);
    background: rgba(249, 115, 22, 0.84);
    border-color: rgba(249, 115, 22, 0.92);
}

.arrow:focus-visible,
.dot:focus-visible{
    outline: 3px solid rgba(249, 115, 22, 0.26);
    outline-offset: 3px;
}

.dots{
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(12px);
}

.dot{
    width: 13px;
    height: 13px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.dot.active{
    background: var(--accent-soft);
    transform: scale(1.18);
}

.left{
    left: 20px;
}

.right{
    right: 20px;
}

.trust-strip,
.section,
.site-footer{
    width: var(--site-width);
    margin: 0 auto;
}

.trust-strip{
    margin-top: 24px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.trust-strip p{
    font-size: 1.02rem;
    font-weight: 700;
}

.trust-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.trust-items span,
.feature-list span{
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 600;
}

.section{
    padding: 96px 0 0;
}

.section-heading{
    display: grid;
    gap: 18px;
    max-width: 760px;
}

.section-kicker{
    color: var(--accent);
}

.section-heading h2,
.cta-band__copy h2{
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.section-heading p,
.service-card p,
.overview-card p,
.process-step p,
.insight-card__body p,
.footer-brand p,
.footer-section-contact p{
    color: var(--text-soft);
}

.overview-grid{
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 24px;
}

.overview-card,
.service-card,
.process-step,
.insight-card,
.cta-band,
.footer-content,
.contact-modal__panel{
    box-shadow: var(--shadow);
}

.overview-card,
.service-card,
.process-step,
.insight-card{
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
}

.overview-card{
    padding: 30px;
}

.overview-card--story{
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 247, 237, 0.88) 100%);
}

.overview-card h3,
.service-card h3,
.process-step h3,
.insight-card__body h3{
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.03em;
}

.overview-card h3{
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.feature-list{
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.overview-stack{
    display: grid;
    gap: 24px;
}

.stat-card strong{
    display: block;
    font-size: 1.24rem;
    margin-bottom: 10px;
}

.services-grid{
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-card{
    padding: 30px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.process-step:hover,
.insight-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.service-index{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 22px;
    background: var(--accent-pale);
    color: var(--accent);
    font-weight: 700;
}

.service-card h3{
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.service-points{
    margin-top: 18px;
    display: grid;
    gap: 10px;
    list-style: none;
}

.service-points li{
    position: relative;
    padding-left: 18px;
    color: var(--text-soft);
}

.service-points li::before{
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.process-grid{
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.process-step{
    padding: 30px;
}

.process-step span{
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.process-step h3{
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.insights-grid{
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.insights-empty{
    grid-column: 1 / -1;
    padding: 30px;
    border: 1px dashed var(--line-strong);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.68);
    text-align: center;
    color: var(--text-soft);
}

.insight-card{
    overflow: hidden;
}

.insight-card__image{
    aspect-ratio: 1.35 / 1;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%),
        #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.insight-card__image--placeholder{
    color: var(--text-soft);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.insight-card__image img{
    /* max-height: 140px; */
    object-fit: contain;
}

.insight-card__body{
    padding: 26px;
}

.insight-meta{
    color: var(--accent);
    margin-bottom: 10px;
}

.insight-card__body h3{
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.insight-card__body a{
    display: inline-flex;
    margin-top: 18px;
    color: var(--text);
    font-weight: 700;
}

.cta-band{
    margin-top: 96px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 247, 237, 0.96) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.cta-band__copy{
    max-width: 700px;
}

.cta-band__copy p:last-child{
    margin-top: 16px;
    color: var(--text-soft);
}

.cta-band__actions{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.cta-band .btn-secondary{
    background: transparent;
    border-color: var(--line-strong);
    color: var(--text);
}

.site-footer{
    margin-top: 96px;
    padding-bottom: 28px;
}

.footer-content{
    padding: 34px;
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.85fr 0.85fr 1fr;
    gap: 24px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-dark-soft) 100%);
    color: white;
}

.footer-logo{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo p{
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
}

.footer-content h2{
    font-size: 1rem;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.92);
}

.footer-links{
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links a,
.footer-section-contact a{
    color: rgba(255, 255, 255, 0.72);
}

.footer-section-map iframe{
    width: 100%;
    min-height: 200px;
    border-radius: 20px;
}

.footer-bottom{
    padding-top: 18px;
    color: var(--text-faint);
    text-align: center;
    font-size: 0.92rem;
}

.whatsapp-float{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 180;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible{
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.4);
    background: #1ebe5b;
}

.whatsapp-float:focus-visible{
    outline: 3px solid rgba(255, 255, 255, 0.88);
    outline-offset: 3px;
}

.whatsapp-float svg{
    width: 28px;
    height: 28px;
}

.contact-modal{
    position: fixed;
    inset: 0;
    z-index: 250;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.74);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal__panel{
    width: min(100%, 560px);
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.3s ease;
    overscroll-behavior: contain;
}

.contact-modal.is-open .contact-modal__panel{
    transform: translateY(0) scale(1);
}

.contact-modal__close{
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text);
    font-size: 26px;
    cursor: pointer;
}

.contact-modal__eyebrow{
    margin: 18px 0 8px;
    color: var(--accent);
}

.contact-modal__title{
    font-size: clamp(2rem, 4vw, 2.9rem);
}

.contact-modal__description{
    margin: 14px 0 26px;
    color: var(--text-soft);
}

.contact-modal__form{
    display: grid;
    gap: 14px;
}

.contact-modal__label{
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-modal__input,
.contact-modal__textarea{
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    color: var(--text);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-modal__input::placeholder,
.contact-modal__textarea::placeholder{
    color: var(--text-faint);
}

.contact-modal__input:focus,
.contact-modal__textarea:focus{
    outline: none;
    border-color: rgba(249, 115, 22, 0.82);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
    transform: translateY(-1px);
}

.contact-modal__textarea{
    min-height: 150px;
    resize: vertical;
}

.contact-modal__submit{
    margin-top: 8px;
    padding: 15px 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
    color: white;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(249, 115, 22, 0.24);
}

.contact-modal__submit:disabled{
    cursor: wait;
    opacity: 0.82;
}

.form-status{
    min-height: 1.5rem;
    margin-top: 4px;
    font-size: 0.92rem;
    font-weight: 600;
}

.form-status[data-state="pending"]{
    color: var(--text-soft);
}

.form-status[data-state="success"]{
    color: #15803d;
}

.form-status[data-state="error"]{
    color: #b91c1c;
}

body.modal-open{
    overflow: hidden;
}

@media (max-width: 1180px){
    .slide-shell{
        grid-template-columns: 1fr;
        align-items: end;
    }

    .content h1{
        max-width: 12ch;
    }

    .hero-panel{
        max-width: 620px;
    }

    .services-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insights-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 960px){
    .nav{
        flex-wrap: wrap;
    }

    .menu{
        order: 3;
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    #slider{
        height: 700px;
        min-height: 700px;
    }

    .slide-shell{
        min-height: 700px;
        padding: 48px 40px 144px;
    }

    .overview-grid,
    .cta-band{
        grid-template-columns: 1fr;
    }

    .overview-grid{
        display: grid;
    }

    .process-grid{
        grid-template-columns: 1fr;
    }

    .trust-strip{
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band{
        display: grid;
    }

    .cta-band__actions{
        justify-content: flex-start;
    }
}

@media (max-width: 768px){
    .site-header{
        padding-top: 12px;
        position: static;
        z-index: 99;
    }

    .nav{
        padding: 14px 16px;
        gap: 14px;
    }

    .brand-copy{
        display: none;
    }

    .menu-toggle{
        display: inline-flex;
        margin-left: auto;
        order: 2;
    }

    .menu{
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 6px;
    }

    .nav.menu-open .menu{
        display: flex;
    }

    .menu a{
        padding: 14px 0;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        text-align: center;
    }

    .cont{
        display: none;
        order: 4;
        width: 100%;
        justify-content: center;
    }

    .nav.menu-open .cont{
        display: inline-flex;
    }

    .nav.menu-open .menu-toggle span:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    .nav.menu-open .menu-toggle span:nth-child(2){
        opacity: 0;
    }

    .nav.menu-open .menu-toggle span:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    #slider{
        height: 700px;
        margin-top: 18px;
        border-radius: 28px;
    }

    .slide-shell{
        min-height: 660px;
        padding: 34px 24px 140px;
    }

    .content h1{
        max-width: none;
        font-size: clamp(2.3rem, 10.5vw, 3.6rem);
    }

    .slide--compact .content h1{
        font-size: clamp(2.05rem, 8.8vw, 3.05rem);
    }

    .hero-copy{
        font-size: 1rem;
    }

    .slide--compact .hero-copy{
        max-width: 100%;
    }

    .hero-actions,
    .cta-band__actions{
        width: 100%;
    }

    .hero-actions .btn,
    .cta-band .btn{
        width: 100%;
        min-width: 0;
    }

    .slide--compact .hero-actions .btn{
        min-width: 0;
    }

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

    .arrow{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .left{
        left: 14px;
    }

    .right{
        right: 14px;
    }

    .section{
        padding-top: 76px;
    }

    .services-grid,
    .insights-grid,
    .footer-content{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px){
    :root{
        --site-width: min(100%, calc(100% - 20px));
    }

    .slide-shell{
        min-height: 620px;
        padding: 28px 18px 132px;
    }

    #slider{
        height: 620px;
    }

    .dots{
        bottom: 18px;
        gap: 8px;
        padding: 9px 12px;
    }

    .slide--compact .content h1{
        font-size: clamp(1.95rem, 10vw, 2.65rem);
    }

    .hero-panel,
    .overview-card,
    .service-card,
    .process-step,
    .insight-card__body,
    .cta-band,
    .footer-content{
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-panel{
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .trust-strip{
        padding: 22px 20px;
    }

    .section-heading h2,
    .cta-band__copy h2{
        font-size: 2rem;
    }

    .contact-modal{
        padding: 16px;
    }

    .whatsapp-float{
        right: 18px;
        bottom: 18px;
        width: 54px;
        height: 54px;
    }

    .contact-modal__panel{
        padding: 24px 18px;
        border-radius: 24px;
        max-height: calc(100dvh - 32px);
    }

    .contact-modal__submit{
        width: 100%;
    }
}

.footer-social{
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 10px;
    text-align: center;
}

.social-icons{
    display: flex;
    gap: 8px;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.social-icons a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-icons a:hover,
.social-icons a:focus-visible{
    transform: translateY(-2px);
    color: white;
}

.social-icons a:nth-child(1):hover{
    background: #1877F2;
}

.social-icons a:nth-child(2):hover{
    background: #E4405F;
}

.social-icons a:nth-child(3):hover{
    background: #0A66C2;
}

.social-icons a:nth-child(4):hover{
    background: #000000;
}

.social-icons svg{
    width: 16px;
    height: 16px;
}
