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

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* HEADER */

.header{
    width: 100%;
    padding: 20px 8%;
    background-color: #001B44;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.logo{
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.15;
}

.logo-img{
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    flex: 0 0 auto;
}

.navbar a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.navbar{
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.navbar a:hover{
    color: #00C2FF;
}

.navbar a.active{
    color: #00C2FF;
    font-weight: 600;
}

/* HERO */

.hero{
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
    background-color: #001B44;
    display: flex;
    align-items: center;

    padding: 0 8%;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-slider,
.hero-slide{
    position: absolute;
    inset: 0;
}

.hero-slider{
    z-index: 0;
}

.hero-slide{
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active{
    opacity: 1;
}

.hero-text{
    color: white;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-text h1{
    font-size: clamp(42px, 6vw, 65px);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-text p{
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border: none;
    background-color: #00C2FF;
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
}

.hero-button svg{
    width: 18px;
    height: 18px;
}

.secondary-button{
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.65);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
}

.secondary-button:hover{
    background-color: white;
    color: #001B44;
}

.hero-actions{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.home-showcase{
    padding: 62px 8% 72px;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.home-heading{
    max-width: 1040px;
    margin-bottom: 34px;
}

.home-heading h2{
    font-size: clamp(38px, 5.4vw, 66px);
    letter-spacing: 0;
}

.home-heading h2::after,
.visual-process .section-heading h2::after,
.portfolio-copy h2::after{
    content: "";
    display: block;
    width: 54px;
    height: 4px;
    margin: 20px auto 0;
    background-color: #00A7DD;
    border-radius: 99px;
}

.home-stats{
    max-width: 980px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 0;
}

.home-stats article{
    min-height: 84px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid #cfdceb;
}

.home-stats article:last-child{
    border-right: 0;
}

.icon-frame,
.step-icon,
.quote-icon,
.mosaic-icon{
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
    border: 1px solid #d5e4f3;
    background-color: #f1f7ff;
    color: #0074F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(0,27,68,0.08);
}

.icon-frame{
    border-radius: 18px;
}

.icon-frame svg,
.step-icon svg,
.quote-icon svg,
.mosaic-icon svg{
    width: 34px;
    height: 34px;
    stroke-width: 2;
}

.home-stats strong{
    display: block;
    color: #001B44;
    font-size: 25px;
    line-height: 1.1;
}

.home-stats p{
    margin-top: 6px;
    color: #263247;
    font-size: 15px;
}

.home-support-copy{
    max-width: 980px;
    margin: 0 auto 38px;
    color: #465266;
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
}

.solution-card-grid{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 28px;
}

.solution-card{
    overflow: hidden;
    background-color: white;
    border: 1px solid #dfe9f3;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0,27,68,0.09);
}

.solution-card > img{
    width: calc(100% - 32px);
    height: 200px;
    margin: 16px 16px 0;
    border-radius: 12px;
    object-fit: cover;
}

.solution-card-body{
    padding: 24px 28px 28px;
    display: grid;
    grid-template-columns: 74px minmax(0,1fr);
    gap: 22px;
    align-items: start;
}

.solution-card h3{
    margin-bottom: 12px;
    color: #001B44;
    font-size: 24px;
    line-height: 1.15;
}

.solution-card p{
    color: #465266;
    line-height: 1.7;
}

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

.solution-list li{
    position: relative;
    padding-left: 20px;
    color: #263247;
    font-size: 14px;
    line-height: 1.5;
}

.solution-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #00A7DD;
}

.solution-card a{
    margin-top: 22px;
    color: #0074F0;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.solution-card a svg{
    width: 18px;
    height: 18px;
}

.quote-ribbon{
    max-width: 1480px;
    margin: 36px auto 0;
    padding: 28px 42px;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(0,27,68,0.96), rgba(0,78,150,0.86)),
        url('img/IMAGEN PARA LA PARTE DE VISION.jpg') center/cover;
    color: white;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 28px;
}

.quote-icon{
    border-radius: 50%;
    background-color: white;
    color: #0074F0;
}

.quote-ribbon h2{
    color: white;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
}

.quote-ribbon p{
    margin-top: 6px;
    color: rgba(255,255,255,0.86);
}

.service-quote-ribbon{
    margin: 0 8% 82px;
    min-height: 150px;
    padding: 32px 44px;
    border-radius: 18px;
    background-color: #002b68;
    background-image:
        linear-gradient(90deg, rgba(0,27,68,0.98), rgba(0,88,164,0.9)),
        var(--service-quote-image);
    background-position: center;
    background-size: cover;
    color: white;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 28px;
    overflow: hidden;
}

.service-quote-ribbon .quote-icon{
    width: 64px;
    height: 64px;
}

.service-quote-ribbon h2{
    color: white;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.12;
}

.service-quote-ribbon p{
    max-width: 980px;
    margin-top: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    line-height: 1.55;
}

.service-quote-ribbon .hero-button{
    min-width: 252px;
    color: #001B44;
    white-space: nowrap;
}

.home-intro,
.home-process,
.home-clients,
.content-section,
.service-detail-grid,
.project-grid,
.client-grid{
    padding: 82px 8%;
}

.impact-strip{
    padding: 34px max(8%, calc((100% - 1120px) / 2));
    background-color: #001B44;
    color: white;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 28px;
    border-bottom: 1px solid #e2e8f0;
}

.impact-strip div{
    padding: 0;
}

.impact-strip strong{
    display: block;
    margin-bottom: 8px;
    color: #00C2FF;
    font-size: 20px;
}

.impact-strip span{
    color: rgba(255,255,255,0.82);
}

.image-story{
    min-height: 430px;
    padding: 86px 8%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
}

.image-story::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,27,68,0.92), rgba(0,27,68,0.72), rgba(0,27,68,0.26));
}

.image-story--right{
    justify-content: flex-end;
}

.image-story--right::before{
    background: linear-gradient(270deg, rgba(0,27,68,0.92), rgba(0,27,68,0.68), rgba(0,27,68,0.22));
}

.image-story-content{
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.image-story-content span{
    display: inline-block;
    margin-bottom: 14px;
    color: #00C2FF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.image-story-content h2{
    margin-bottom: 22px;
    color: white;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
}

.image-story-content p{
    max-width: 700px;
    color: rgba(255,255,255,0.86);
    font-size: 17px;
    line-height: 1.8;
}

.story-points{
    margin-top: 28px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 12px;
}

.story-points li{
    min-height: 78px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.22);
    background-color: rgba(255,255,255,0.12);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.service-intro-panel{
    min-height: auto;
    padding: 92px 8% 56px;
    justify-content: center;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    color: #001B44;
    text-align: center;
}

.service-intro-panel::before{
    display: none;
}

.service-intro-copy{
    max-width: 980px;
}

.service-intro-copy h2{
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    color: #001B44;
}

.service-intro-copy p{
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: #465266;
    font-size: 18px;
}

.service-intro-copy .story-points{
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.service-intro-copy .story-points li{
    min-height: 104px;
    justify-content: center;
    border: 1px solid #cfe3f6;
    border-bottom: 5px solid #00A7DD;
    background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
    color: #001B44;
    box-shadow: 0 18px 42px rgba(0, 71, 145, 0.14);
    border-radius: 16px;
}

.sweep-ready{
    opacity: 0;
    transform: translateX(-96px);
    clip-path: inset(0 100% 0 0);
    filter: blur(5px);
    will-change: opacity, transform, clip-path, filter;
    transition: opacity 0.7s ease, transform 0.85s cubic-bezier(0.18, 0.88, 0.28, 1), clip-path 0.85s cubic-bezier(0.18, 0.88, 0.28, 1), filter 0.7s ease;
    transition-delay: var(--sweep-delay, 0ms);
}

.sweep-ready.sweep-is-visible{
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    filter: blur(0);
}

.title-reveal{
    opacity: 1;
}

.title-reveal.title-ready{
    opacity: 0;
    transform: translateY(42px);
    filter: blur(6px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.18, 0.88, 0.28, 1), filter 0.75s ease;
}

.title-reveal.title-is-visible{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.section-heading{
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading span,
.page-hero span,
.preview-band span{
    display: inline-block;
    margin-bottom: 12px;
    color: #00A7DD;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.section-heading h2,
.page-hero h1,
.preview-band h2,
.page-cta h2{
    color: #001B44;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.12;
}

.section-heading p,
.page-hero p,
.preview-band p,
.page-cta p{
    margin-top: 18px;
    color: #4b5563;
    font-size: 17px;
}

.quick-grid,
.feature-grid,
.process-steps{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
}

.quick-card,
.feature-card{
    min-height: 210px;
    padding: 32px;
    background-color: #f4f8fb;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.quick-card h3,
.feature-card h3{
    margin-bottom: 14px;
    color: #001B44;
    font-size: 22px;
}

.quick-card p,
.feature-card p{
    color: #4b5563;
}

.home-process{
    background-color: #f7fafc;
}

.process-steps{
    grid-template-columns: repeat(4,minmax(0,1fr));
}

.process-steps article{
    padding: 30px;
    background-color: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.process-steps span{
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 50%;
    background-color: #001B44;
    color: white;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-steps h3{
    margin-bottom: 12px;
    color: #001B44;
    font-size: 22px;
}

.process-steps p{
    color: #4b5563;
}

.visual-process{
    margin: 0 8%;
    padding: 64px 5% 72px;
    border: 1px solid #dfe9f3;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(247,251,255,0.98), rgba(235,246,255,0.94)),
        url('img/Imagen 6 de galeria.jpeg') center/cover;
    position: relative;
    overflow: hidden;
}

.visual-process::before{
    content: "";
    position: absolute;
    left: -40px;
    bottom: -35px;
    width: 210px;
    height: 140px;
    opacity: 0.35;
    background-image: radial-gradient(#0074F0 1.7px, transparent 1.7px);
    background-size: 18px 18px;
}

.visual-process .section-heading{
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.visual-steps{
    position: relative;
    z-index: 1;
    gap: 34px;
}

.visual-steps article{
    min-height: 260px;
    padding: 32px;
    position: relative;
    border-color: #dce8f3;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,27,68,0.08);
}

.visual-steps article:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 126px;
    left: calc(100% + 10px);
    width: 28px;
    border-top: 5px dotted #0074F0;
}

.visual-steps .step-number{
    width: 42px;
    height: 42px;
    margin-bottom: 38px;
    background: linear-gradient(135deg, #00C2FF, #005EFF);
    box-shadow: 0 14px 28px rgba(0,116,240,0.24);
}

.visual-steps .step-icon{
    position: absolute;
    top: 28px;
    right: 28px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 0;
    background-color: #eef6ff;
    box-shadow: none;
}

.visual-steps h3{
    position: relative;
    padding-bottom: 16px;
}

.visual-steps h3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 4px;
    background-color: #00A7DD;
    border-radius: 99px;
}

.portfolio-panel{
    margin: 48px 10% 82px;
    padding: 48px 6%;
    border: 1px solid #dfe9f3;
    border-radius: 18px;
    background: linear-gradient(135deg, #f4f9ff, #ffffff);
    display: grid;
    grid-template-columns: minmax(280px,0.75fr) minmax(0,1.25fr);
    gap: 48px;
    align-items: center;
    overflow: hidden;
}

.portfolio-copy span{
    display: inline-block;
    margin-bottom: 12px;
    color: #0074F0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-copy{
    min-width: 0;
}

.portfolio-copy h2{
    color: #001B44;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.12;
}

.portfolio-copy h2::after{
    margin-left: 0;
}

.portfolio-copy p{
    margin-top: 22px;
    color: #465266;
    line-height: 1.8;
}

.portfolio-copy .hero-button{
    margin-top: 28px;
}

.portfolio-mosaic{
    min-height: 340px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px;
}

.portfolio-mosaic img{
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.portfolio-mosaic img:first-child{
    border-top-left-radius: 14px;
}

.portfolio-mosaic img:nth-child(2){
    border-top-right-radius: 14px;
}

.portfolio-mosaic img:nth-child(3){
    border-bottom-left-radius: 14px;
}

.portfolio-mosaic img:nth-child(4){
    border-bottom-right-radius: 14px;
}

.mosaic-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 86px;
    height: 86px;
    transform: translate(-50%,-50%);
    border: 0;
    border-radius: 16px;
    background-color: white;
}

.mini-client-grid{
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    gap: 18px;
    align-items: center;
}

.mini-client-grid img{
    width: 100%;
    height: 92px;
    padding: 16px;
    object-fit: contain;
    background-color: #f4f8fb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.center-action{
    margin-top: 36px;
    text-align: center;
}

.preview-band,
.page-cta{
    margin: 0 8% 82px;
    padding: 55px;
    background-color: #001B44;
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.preview-band h2,
.page-cta h2{
    color: white;
}

.preview-band p,
.page-cta p{
    max-width: 720px;
    color: rgba(255,255,255,0.82);
}

.page-hero{
    min-height: 390px;
    padding: 84px 8%;
    background-color: #001B44;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,15,38,0.86), rgba(0,27,68,0.62), rgba(0,27,68,0.28));
    z-index: 1;
}

.page-hero-slider,
.page-hero-slide{
    position: absolute;
    inset: 0;
}

.page-hero-slider{
    z-index: 0;
}

.page-hero-slide{
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease-in-out, transform 5s ease;
}

.page-hero-slide.active{
    opacity: 1;
    transform: scale(1);
}

.page-hero-content{
    width: 100%;
    position: relative;
    z-index: 2;
}

.page-hero h1{
    max-width: 960px;
    color: white;
}

.page-hero p{
    max-width: 720px;
    color: rgba(255,255,255,0.84);
}

.split-section{
    padding: 100px 8%;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(320px,0.9fr);
    gap: 54px;
    align-items: center;
}

.split-text h2{
    margin-bottom: 16px;
    color: #001B44;
    font-size: clamp(30px, 4vw, 42px);
}

.split-text p{
    margin-bottom: 34px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.8;
}

.split-image img{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.about-proof{
    padding: 86px 8%;
    background-color: #f7fbff;
}

.about-proof-grid{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
}

.about-proof-grid article{
    min-height: 260px;
    padding: 32px;
    background-color: white;
    border: 1px solid #dfe9f3;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0,27,68,0.07);
}

.about-proof-grid strong{
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00C2FF, #005EFF);
    color: white;
    font-weight: 700;
}

.about-proof-grid h3{
    margin-bottom: 14px;
    color: #001B44;
    font-size: 24px;
}

.about-proof-grid p{
    color: #4b5563;
    line-height: 1.8;
}

.about-story-panel,
.about-values-section,
.about-process-gallery,
.about-team-choice{
    padding: 86px 8%;
}

.about-story-panel{
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(280px,0.82fr);
    gap: 30px 40px;
    align-items: start;
    background-color: #ffffff;
}

.about-story-copy span,
.about-values-section .section-heading span,
.about-process .section-heading span,
.about-team .section-heading span,
.about-choice .section-heading span,
.about-final-cta span{
    color: #0074F0;
}

.about-story-copy h2{
    color: #001B44;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.12;
    margin-bottom: 20px;
}

.about-story-copy > p{
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-story-image img{
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0,27,68,0.12);
}

.about-vision-mission{
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
}

.about-vision-mission article,
.about-values-grid article,
.about-team-grid article{
    padding: 28px;
    background-color: white;
    border: 1px solid #dfe9f3;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(0,27,68,0.06);
}

.about-icon{
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background-color: #eef6ff;
    color: #0074F0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon svg{
    width: 34px;
    height: 34px;
}

.about-vision-mission h3,
.about-values-grid h3,
.about-team-grid h3{
    color: #001B44;
    margin-bottom: 12px;
    font-size: 21px;
}

.about-vision-mission p,
.about-values-grid p,
.about-team-grid p{
    color: #4b5563;
    line-height: 1.75;
}

.about-stats-strip{
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    padding: 26px;
    border-radius: 16px;
    background: linear-gradient(135deg, #001B44, #003C78);
    color: white;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
    align-items: center;
}

.about-stats-strip article{
    text-align: center;
}

.about-stats-strip svg{
    width: 28px;
    height: 28px;
    color: #00C2FF;
    margin-bottom: 10px;
}

.about-stats-strip strong{
    display: block;
    font-size: 20px;
    line-height: 1.1;
}

.about-stats-strip p{
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    margin-top: 6px;
}

.about-values-section{
    background-color: #f7fbff;
}

.about-values-grid{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px;
}

.about-quote{
    margin-top: 34px;
    padding: 28px 34px;
    border-radius: 14px;
    background-color: #001B44;
    color: white;
    display: flex;
    gap: 22px;
    align-items: center;
}

.about-quote svg{
    width: 42px;
    height: 42px;
    color: #00C2FF;
    flex: 0 0 auto;
}

.about-quote p{
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.about-process-gallery{
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(320px,0.9fr);
    gap: 54px;
    align-items: center;
}

.about-process .section-heading{
    margin-left: 0;
    text-align: center;
}

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

.about-process-steps article{
    position: relative;
    padding-top: 86px;
    text-align: center;
}

.about-process-steps article:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 34px;
    left: calc(50% + 42px);
    width: calc(100% - 60px);
    border-top: 3px solid #0074F0;
}

.about-process-steps span{
    position: absolute;
    top: 0;
    left: 50%;
    width: 68px;
    height: 68px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(135deg, #00C2FF, #005EFF);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(0,116,240,0.22);
}

.about-process-steps svg{
    width: 30px;
    height: 30px;
}

.about-process-steps h3{
    color: #001B44;
    margin-bottom: 12px;
    font-size: 19px;
}

.about-process-steps p{
    color: #4b5563;
    line-height: 1.7;
    font-size: 14px;
}

.about-gallery-mosaic{
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
}

.about-gallery-mosaic img{
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
}

.about-team-choice{
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(320px,0.9fr);
    gap: 56px;
    border-top: 1px solid #e2e8f0;
}

.about-team .section-heading,
.about-choice .section-heading{
    text-align: center;
    margin-bottom: 34px;
}

.about-team-grid{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
}

.about-choice-list{
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px 24px;
}

.about-choice-list p{
    display: flex;
    gap: 12px;
    color: #263247;
    line-height: 1.7;
}

.about-choice-list svg{
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: #0074F0;
    margin-top: 2px;
}

.about-final-cta{
    margin: 0 8% 86px;
    min-height: 310px;
    padding: 58px 8%;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-final-cta::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,27,68,0.82);
}

.about-final-cta div{
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.about-final-cta span{
    display: inline-block;
    margin-bottom: 14px;
    color: #00C2FF;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.about-final-cta h2{
    color: white;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.12;
}

.about-final-cta p{
    margin: 18px auto 28px;
    color: rgba(255,255,255,0.86);
    line-height: 1.8;
}

.service-detail-grid{
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 30px;
}

.service-detail{
    background-color: #f4f4f4;
    border-radius: 18px;
    overflow: hidden;
}

.service-detail img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-detail div{
    padding: 28px;
}

.service-detail h2,
.client-card h2,
.project-item h2{
    color: #001B44;
    font-size: 24px;
    margin-bottom: 12px;
}

.service-detail p,
.client-card p{
    color: #4b5563;
    line-height: 1.7;
}

.service-tags{
    margin-top: 20px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tags li{
    padding: 8px 12px;
    border-radius: 8px;
    background-color: #E8F7FC;
    color: #005A78;
    font-size: 14px;
    font-weight: 600;
}

.client-intro-panel{
    padding: 92px 8% 42px;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.client-intro-copy{
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.client-intro-copy > span{
    display: inline-block;
    margin-bottom: 14px;
    color: #0074F0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.client-intro-copy h2{
    max-width: 900px;
    margin: 0 auto;
    color: #001B44;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.12;
}

.client-intro-copy h2::after{
    content: "";
    display: block;
    width: 54px;
    height: 4px;
    margin: 22px auto 0;
    background-color: #00A7DD;
    border-radius: 99px;
}

.client-intro-copy > p{
    max-width: 860px;
    margin: 24px auto 0;
    color: #465266;
    font-size: 17px;
    line-height: 1.8;
}

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

.client-intro-points article{
    min-height: 138px;
    padding: 24px;
    border: 1px solid #cfe3f6;
    border-bottom: 5px solid #00A7DD;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
    box-shadow: 0 18px 42px rgba(0, 71, 145, 0.12);
}

.client-intro-points strong{
    display: block;
    color: #001B44;
    font-size: 18px;
    margin-bottom: 10px;
}

.client-intro-points p{
    color: #465266;
    line-height: 1.65;
}

.project-grid{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
}

.project-item{
    overflow: hidden;
    background-color: #f4f4f4;
    border-radius: 16px;
}

.project-item img{
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.project-item h2{
    padding: 22px;
}

.client-grid{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 24px;
}

.client-card{
    padding: 22px;
    background-color: #f4f8fb;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.client-card img{
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 22px;
    padding: 18px;
    background-color: white;
    border-radius: 12px;
}

.client-logo-grid{
    grid-template-columns: repeat(3,minmax(0,1fr));
    max-width: 1120px;
    margin: 0 auto;
    align-items: stretch;
}

.client-logo-card{
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-logo-box{
    height: 160px;
    margin-bottom: 20px;
    padding: 24px;
    background-color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.client-logo-card h2{
    font-size: 20px;
    margin-bottom: 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
}

.client-scroll-item{
    opacity: 0;
    transform: translateY(95px) scale(0.78);
    filter: blur(7px);
    will-change: opacity, transform, filter;
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.client-scroll-item.client-is-visible{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    animation: clientBigJump 0.9s cubic-bezier(0.18, 0.9, 0.24, 1.2) var(--client-delay, 0ms) backwards;
}

.client-scroll-item.client-is-visible:hover{
    transform: translateY(-10px) scale(1.03);
}

@keyframes clientBigJump{
    0%{
        opacity: 0;
        transform: translateY(130px) scale(0.72);
        filter: blur(8px);
    }

    45%{
        opacity: 1;
        transform: translateY(-44px) scale(1.08);
        filter: blur(0);
    }

    65%{
        transform: translateY(16px) scale(0.98);
    }

    82%{
        transform: translateY(-12px) scale(1.02);
    }

    100%{
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce){
    .client-scroll-item,
    .client-scroll-item.client-is-visible,
    .sweep-ready,
    .sweep-ready.sweep-is-visible,
    .title-reveal.title-ready,
    .title-reveal.title-is-visible{
        opacity: 1;
        transform: none;
        clip-path: none;
        filter: none;
        animation: none;
        transition: none;
    }
}

.contact.contact-page{
    text-align: left;
}

.contact-layout{
    display: grid;
    grid-template-columns: minmax(260px,0.85fr) minmax(360px,1fr) minmax(320px,0.95fr);
    gap: 34px;
    align-items: start;
    max-width: 1480px;
    margin: 0 auto;
}

.contact-copy{
    text-align: left;
}

.contact-copy h2{
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 18px;
    line-height: 1.15;
}

.contact-copy > p{
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    line-height: 1.7;
}

.contact-form-panel{
    width: 100%;
    align-self: start;
    padding-top: 103px;
}

.contact-map-card{
    align-self: start;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;
    background-color: rgba(255,255,255,0.08);
}

.contact-map-heading{
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 12px;
    background-color: rgba(0,27,68,0.86);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.contact-map-heading h3{
    color: white;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}

.site-footer{
    padding: 34px 8%;
    background-color: #000f26;
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.map-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    background-color: #00C2FF;
    color: #001B44;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.map-link svg{
    width: 18px;
    height: 18px;
}

.map-frame{
    min-height: 420px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0,0,0,0.22);
    background-color: #eaf3fb;
}

.map-frame iframe{
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

.site-footer-rich{
    padding: 52px 8%;
    display: grid;
    grid-template-columns: minmax(280px,1.2fr) minmax(160px,0.55fr) minmax(260px,0.95fr);
    align-items: start;
    gap: 42px;
}

.footer-brand{
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-brand img{
    width: 64px;
    height: 64px;
    object-fit: contain;
    background-color: transparent;
}

.footer-brand h2,
.footer-links h3,
.footer-contact h3{
    color: white;
    margin-bottom: 10px;
}

.footer-brand h2{
    font-size: 24px;
    line-height: 1.15;
}

.footer-brand p,
.footer-contact p{
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

.footer-links{
    display: grid;
    gap: 8px;
}

.footer-links a,
.footer-contact a{
    color: rgba(255,255,255,0.82);
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover{
    color: #00C2FF;
}

.footer-contact{
    display: grid;
    gap: 8px;
}

/* SERVICIOS */

.services{
    padding: 100px 8%;
}

.services h2{
    text-align: center;
    font-size: clamp(36px, 5vw, 45px);
    margin-bottom: 60px;
    color: #001B44;
}

.cards{
    display: flex;
    gap: 30px;
}

.card{
    background-color: #f4f4f4;
    padding: 40px;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-10px);
}

.card h3{
    margin-bottom: 15px;
    color: #001B44;
}

/* CONTACTO */

.contact{
    background-color: #001B44;
    color: white;
    padding: 80px 8%;
    text-align: center;
}

.contact h2{
    font-size: 40px;
    margin-bottom: 20px;
}
/* NOSOTROS */

.about{
    padding: 100px 8%;

    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text{
    flex: 1;
}

.about-text h2{
    font-size: clamp(32px, 4vw, 40px);
    color: #001B44;
    margin-bottom: 20px;
}

.about-text p{
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.8;
}

.about-img{
    flex: 1;
}

.about-img img{
    width: 100%;
    border-radius: 20px;
}

/* CARDS */

.cards{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 30px;
}

.card{
    background-color: #f4f4f4;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-10px);
}

.card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3{
    padding: 20px 20px 10px;
    color: #001B44;
}

.card p{
    padding: 0 20px 30px;
}

/* GALERIA */

.gallery{
    padding: 100px 8%;
}

.gallery h2{
    text-align: center;
    font-size: clamp(36px, 5vw, 45px);
    margin-bottom: 50px;
    color: #001B44;
}

.gallery-container{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
}

.gallery-container img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
}

.gallery-container img:hover{
    transform: scale(1.03);
}

/* CONTACTO */

.contact{
    padding: 100px 8%;
    background-color: #001B44;
    color: white;
    text-align: center;
}

.contact h2{
    font-size: clamp(36px, 5vw, 45px);
    margin-bottom: 20px;
}

.contact-info{
    margin-top: 30px;
    margin-bottom: 40px;
}

.contact-info p{
    margin: 10px 0;
}

.contact-info a{
    color: white;
    text-decoration: none;
}

.contact-info a:hover{
    color: #00C2FF;
}

.contact-form{
    max-width: 600px;
    margin: auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hidden-field{
    display: none;
}

.form-message{
    display: none;
    max-width: 600px;
    margin: 0 auto 25px;
    padding: 15px 20px;
    background-color: #E9FFF1;
    color: #087A3E;
    border-radius: 10px;
    font-weight: 600;
}

.form-message.show{
    display: block;
}

.thanks-page{
    min-height: 100vh;
    padding: 40px 8%;
    background-color: #001B44;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-card{
    width: 100%;
    max-width: 620px;
    padding: 45px;
    background-color: #ffffff;
    color: #001B44;
    border-radius: 18px;
    text-align: center;
}

.thanks-card h1{
    font-size: clamp(34px, 5vw, 48px);
    margin-bottom: 18px;
}

.thanks-card p{
    margin-bottom: 30px;
    font-size: 17px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

.contact-form textarea{
    height: 150px;
}

.contact-form button{
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #00C2FF;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.whatsapp-button{
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-button:hover{
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(0,0,0,0.32);
}

.whatsapp-button img{
    width: 38px;
    height: 38px;
}

@media (max-width: 600px){
    .whatsapp-button{
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-button img{
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 900px){
    .header{
        justify-content: center;
        text-align: center;
    }

    .navbar{
        justify-content: center;
        gap: 12px 20px;
    }

    .about{
        flex-direction: column;
        text-align: center;
    }

    .cards,
    .gallery-container,
    .quick-grid,
    .feature-grid,
    .about-proof-grid,
    .process-steps,
    .service-detail-grid,
    .project-grid,
    .client-grid{
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .impact-strip,
    .mini-client-grid{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .home-stats{
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 18px 0;
    }

    .home-stats article:nth-child(2),
    .home-stats article:last-child{
        border-right: 0;
    }

    .solution-card-grid,
    .portfolio-panel{
        grid-template-columns: 1fr;
    }

    .about-story-panel,
    .about-process-gallery,
    .about-team-choice{
        grid-template-columns: 1fr;
    }

    .about-vision-mission,
    .about-stats-strip{
        grid-column: auto;
        grid-row: auto;
    }

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

    .client-intro-points{
        grid-template-columns: 1fr;
    }

    .about-process-steps{
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 28px;
    }

    .about-process-steps article:not(:last-child)::after{
        display: none;
    }

    .quote-ribbon{
        grid-template-columns: auto minmax(0,1fr);
    }

    .quote-ribbon .hero-button{
        grid-column: 2;
        justify-self: start;
    }

    .service-quote-ribbon{
        grid-template-columns: auto minmax(0,1fr);
    }

    .service-quote-ribbon .hero-button{
        grid-column: 2;
        justify-self: start;
    }

    .visual-steps article:not(:last-child)::after{
        display: none;
    }

    .split-section,
    .contact-layout{
        grid-template-columns: 1fr;
    }

    .contact-form-panel{
        padding-top: 0;
    }

    .site-footer-rich{
        grid-template-columns: 1fr;
    }

    .preview-band,
    .page-cta{
        flex-direction: column;
        align-items: flex-start;
    }

    .image-story{
        min-height: 380px;
        padding: 76px 8%;
    }

    .visual-process{
        margin: 0 6%;
        padding: 72px 6%;
    }

    .portfolio-panel{
        margin: 42px 6% 72px;
    }
}

@media (max-width: 600px){
    .header{
        padding: 18px 6%;
        gap: 14px;
    }

    .logo{
        width: 100%;
        font-size: 22px;
        line-height: 1.2;
        justify-content: center;
    }

    .logo-img{
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .navbar{
        width: 100%;
        gap: 8px 14px;
    }

    .navbar a{
        font-size: 14px;
    }

    .hero{
        min-height: 72svh;
        height: auto;
        padding: 70px 8%;
    }

    .hero-slide{
        background-position: center;
    }

    .hero-text{
        max-width: 100%;
    }

    .hero-text h1{
        font-size: clamp(38px, 12vw, 48px);
        line-height: 1.08;
    }

    .hero-text p{
        font-size: 16px;
    }

    .hero-button{
        width: 100%;
        max-width: 220px;
        text-align: center;
        padding: 14px 24px;
    }

    .home-showcase{
        padding: 48px 8% 64px;
    }

    .home-heading h2{
        font-size: clamp(34px, 10vw, 44px);
    }

    .home-heading h2::after,
    .visual-process .section-heading h2::after,
    .portfolio-copy h2::after{
        margin-top: 16px;
    }

    .home-stats{
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .home-stats article{
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid #dce8f3;
    }

    .home-stats article:last-child{
        border-bottom: 0;
    }

    .icon-frame,
    .step-icon,
    .quote-icon{
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .icon-frame svg,
    .step-icon svg,
    .quote-icon svg{
        width: 28px;
        height: 28px;
    }

    .solution-card-grid{
        gap: 22px;
    }

    .solution-card > img{
        height: 190px;
        width: calc(100% - 24px);
        margin: 12px 12px 0;
    }

    .solution-card-body{
        padding: 22px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-card h3{
        font-size: 21px;
    }

    .home-support-copy{
        text-align: left;
        font-size: 16px;
    }

    .solution-list li{
        font-size: 14px;
    }

    .quote-ribbon{
        padding: 28px 24px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .quote-ribbon .hero-button{
        grid-column: auto;
        max-width: 260px;
        justify-self: start;
    }

    .service-quote-ribbon{
        margin: 0 8% 70px;
        padding: 28px 24px;
        grid-template-columns: 1fr;
        gap: 18px;
        border-radius: 14px;
    }

    .service-quote-ribbon .quote-icon{
        border-radius: 50%;
    }

    .service-quote-ribbon p{
        font-size: 16px;
    }

    .service-quote-ribbon .hero-button{
        grid-column: auto;
        min-width: 0;
        width: 100%;
        max-width: 280px;
        justify-self: start;
    }

    .client-intro-panel{
        padding: 70px 8% 32px;
    }

    .client-intro-copy h2{
        font-size: clamp(32px, 10vw, 42px);
    }

    .client-intro-copy > p{
        font-size: 16px;
        text-align: left;
    }

    .client-intro-points{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .client-intro-points article{
        min-height: auto;
    }

    .about,
    .services,
    .gallery,
    .contact,
    .home-intro,
    .home-process,
    .home-clients,
    .content-section,
    .service-detail-grid,
    .project-grid,
    .client-grid,
    .split-section{
        padding: 70px 8%;
    }

    .contact-map-heading{
        align-items: flex-start;
        flex-direction: column;
    }

    .map-frame,
    .map-frame iframe{
        min-height: 330px;
    }

    .site-footer-rich{
        padding: 42px 8%;
        gap: 30px;
    }

    .footer-brand{
        align-items: flex-start;
    }

    .page-hero{
        min-height: 330px;
        padding: 70px 8%;
    }

    .image-story{
        min-height: auto;
        padding: 64px 8%;
        background-position: center;
    }

    .image-story::before,
    .image-story--right::before{
        background: linear-gradient(90deg, rgba(0,27,68,0.94), rgba(0,27,68,0.82));
    }

    .image-story-content h2{
        font-size: clamp(30px, 9vw, 40px);
    }

    .image-story-content p{
        font-size: 16px;
    }

    .story-points{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .story-points li{
        min-height: auto;
    }

    .sweep-ready{
        transform: translateX(-48px);
    }

    .page-hero h1,
    .section-heading h2,
    .preview-band h2,
    .page-cta h2{
        font-size: clamp(32px, 10vw, 42px);
    }

    .about{
        gap: 30px;
    }

    .cards,
    .gallery-container,
    .quick-grid,
    .feature-grid,
    .about-proof-grid,
    .process-steps,
    .service-detail-grid,
    .project-grid,
    .client-grid{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-proof{
        padding: 70px 8%;
    }

    .about-proof-grid article{
        min-height: auto;
        padding: 28px 24px;
    }

    .about-story-panel,
    .about-values-section,
    .about-process-gallery,
    .about-team-choice{
        padding: 70px 8%;
    }

    .about-story-image img{
        height: 260px;
    }

    .about-vision-mission,
    .about-values-grid,
    .about-team-grid,
    .about-choice-list,
    .about-process-steps{
        grid-template-columns: 1fr;
    }

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

    .about-process-steps article{
        padding-top: 78px;
    }

    .about-gallery-mosaic img{
        height: 170px;
    }

    .about-quote{
        align-items: flex-start;
        padding: 24px;
    }

    .about-final-cta{
        margin: 0 8% 70px;
        padding: 42px 24px;
        border-radius: 14px;
    }

    .visual-process{
        margin: 0;
        padding: 48px 8% 64px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .visual-steps article{
        min-height: auto;
        padding: 28px 24px;
    }

    .visual-steps .step-number{
        margin-bottom: 28px;
    }

    .visual-steps .step-icon{
        top: 22px;
        right: 22px;
    }

    .portfolio-panel{
        margin: 36px 8% 70px;
        padding: 30px 24px 34px;
        gap: 28px;
    }

    .portfolio-copy h2{
        font-size: clamp(31px, 9vw, 40px);
    }

    .portfolio-copy .hero-button{
        max-width: 220px;
    }

    .portfolio-mosaic{
        min-height: auto;
        gap: 6px;
    }

    .portfolio-mosaic img{
        height: 132px;
    }

    .mosaic-icon{
        width: 62px;
        height: 62px;
        border-radius: 14px;
    }

    .impact-strip{
        grid-template-columns: 1fr;
        padding: 30px 8%;
    }

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

    .quick-card,
    .feature-card,
    .service-detail div,
    .client-card{
        padding: 24px;
    }

    .service-tags li{
        font-size: 13px;
    }

    .preview-band,
    .page-cta{
        margin: 0 8% 70px;
        padding: 32px 24px;
        border-radius: 14px;
    }

    .card{
        border-radius: 14px;
    }

    .card img,
    .gallery-container img,
    .service-detail img,
    .project-item img{
        height: 230px;
    }

    .client-card img{
        height: 130px;
    }

    .services h2,
    .gallery h2,
    .contact h2{
        margin-bottom: 35px;
    }

    .contact-info p{
        font-size: 15px;
        overflow-wrap: anywhere;
    }

    .thanks-card{
        padding: 32px 24px;
        border-radius: 14px;
    }

}
