:root {
    --brand-dark: #0f172a;
    --brand-darker: #020617;
    --accent-primary: #1d6db7;
    --accent-secondary: #0284c7;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --wa-green: #25d366;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-accent { color: var(--accent-primary) !important; }

html {
    max-width: 100%;
    overflow-x: visible;
}
@media (max-width: 991px) {
    html, body {
        overflow-x: clip !important;
    }
}
body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.03em;
}

a {
    transition: var(--transition);
    text-decoration: none;
}

.section-badge {
    display: inline-block;
    color: var(--accent-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}
.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background: var(--accent-primary);
}
.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.navbar {
    background: var(--bg-white) !important;
    padding: 1.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-primary) !important;
    letter-spacing: -0.05em;
    gap: 0.5rem;
}
.navbar-brand img {
    max-height: 54px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.navbar-brand span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60vw;
}
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-brand img {
        max-height: 44px;
        max-width: 140px;
    }
    .navbar-brand span {
        max-width: 45vw;
    }
    .nav-link,
    .btn-wa-pulse {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.nav-link {
    font-weight: 700;
    color: var(--brand-dark) !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem !important;
}
.nav-link:hover {
    color: var(--accent-primary) !important;
}

.avant-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    overflow: hidden;
}
.avant-hero-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 55%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}
.avant-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.avant-hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avant-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}
.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: var(--brand-dark);
}
.hero-title .text-accent {
    color: var(--accent-primary);
}
.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    max-width: 460px;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}
@media (max-width: 991px) {
    .avant-hero-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.15;
    }
    .avant-hero-bg video {
        display: none;
    }
    .avant-hero-bg::after { display: none; }
    .hero-content-wrapper { text-align: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
}

.btn-primary-custom {
    background: var(--accent-primary);
    color: white;
    border-radius: 0;
    padding: 1rem 2.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}
.btn-primary-custom:hover {
    background: #be123c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}
.btn-outline-custom {
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    border-radius: 0;
    padding: 0.9rem 2.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
}
.btn-outline-custom:hover {
    background: var(--brand-dark);
    color: white;
}

.why-section {
    background-color: var(--bg-light);
    padding: 8rem 0;
}
.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--bg-white);
    border-left: 3px solid var(--accent-primary);
    transition: var(--transition);
}
.why-feature-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}
.why-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(225, 29, 72, 0.07);
    color: var(--accent-primary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-feature-item h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--brand-dark);
}
.why-feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}
@media (max-width: 575px) {
    .why-features-grid {
        grid-template-columns: 1fr;
    }
}

.process-section {
    background-color: var(--bg-white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 300' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,150 C300,50 600,250 1000,100 L1000,300 L0,300 Z'/%3E%3Cpath fill='%23f1f5f9' d='M0,200 C350,100 650,300 1000,150 L1000,300 L0,300 Z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}
.process-wrapper {
    position: relative;
    margin-top: 4rem;
}
.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--bg-gray);
    z-index: 0;
}
.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 4px solid var(--bg-gray);
    color: var(--accent-secondary);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.process-step:hover .step-circle {
    border-color: var(--accent-secondary);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.2);
}
.process-step h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .process-line { display: none; }

    .process-wrapper .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        row-gap: 2.5rem;
        column-gap: 1rem;
    }
    .process-wrapper .row > div {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .process-wrapper .row > div:nth-child(1) { grid-column: 1; grid-row: 1; }
    .process-wrapper .row > div:nth-child(2) { grid-column: 2; grid-row: 1; }
    .process-wrapper .row > div:nth-child(3) { grid-column: 2; grid-row: 2; }
    .process-wrapper .row > div:nth-child(4) { grid-column: 1; grid-row: 2; }

    .process-step { margin-bottom: 0; position: relative; }
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        border-width: 3px;
    }
    .process-step h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
    .process-step p { font-size: 0.8rem; line-height: 1.4; padding: 0 5px; }


    .process-step::after {
        content: '';
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.4;
    }

    .process-wrapper .row > div:nth-child(1) .process-step::after {
        width: 20px; height: 20px;
        top: 20px;
        right: -18px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
    }

    .process-wrapper .row > div:nth-child(2) .process-step::after {
        width: 20px; height: 20px;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3E%3Cpath fill-rule='evenodd' d='M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z'/%3E%3C/svg%3E");
    }

    .process-wrapper .row > div:nth-child(3) .process-step::after {
        width: 20px; height: 20px;
        top: 20px;
        left: -18px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3E%3Cpath fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z'/%3E%3C/svg%3E");
    }
}

.services-section {
    background-color: var(--brand-dark);
    padding: 8rem 0;
    color: white;
}
.services-section .section-title { color: white; }
.services-section .text-muted { color: #94a3b8 !important; }
.service-card-v2 {
    position: relative;
    overflow: hidden;
    background: var(--brand-darker);
    aspect-ratio: 3/4;
    display: block;
}
.service-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    opacity: 0.5;
    transition: transform 0.8s ease, opacity 0.8s ease;
}
.service-card-v2:hover img {
    transform: scale(1.05);
    opacity: 0.2;
}
.service-card-v2 .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}
.service-card-v2:hover .content {
    transform: translateY(0);
}
.service-card-v2 h3 {
    color: var(--bg-white);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.service-card-v2 p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin: 0;
}
.service-card-v2:hover p {
    opacity: 1;
}

.services-slider-wrap {
    padding: 0;
}
.services-track {
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
}
.services-track::-webkit-scrollbar {
    display: none;
}
.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: var(--transition);
}
.services-nav-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}
.services-nav-btn.prev-btn { left: -10px; }
.services-nav-btn.next-btn { right: -10px; }

@media (max-width: 991px) {
    .services-track > div {
        scroll-snap-align: center;
    }
    .service-card-v2 {
        aspect-ratio: 1/1;
    }
    .service-card-v2 h3 {
        font-size: 1.25rem;
    }


    .service-card-v2 .content {
        transform: translateY(0) !important;
        padding: 1.5rem;
    }
    .service-card-v2 p {
        opacity: 1 !important;
    }
    .service-card-v2:hover img {
        transform: none !important;
        opacity: 0.5 !important;
    }
}
@media (min-width: 992px) {
    .services-track {
        overflow: visible !important;
        flex-wrap: wrap !important;
        scroll-snap-type: none;
    }
}

.service-body {
    padding-top: 1rem;
}

.ba-section {
    background-color: var(--bg-light);
    padding: 5rem 0 3rem;
}

.ba-carousel-outer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ba-carousel-clip {
    flex: 1;
    overflow: hidden;
    padding: 2rem 0;
}

.ba-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 10%;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-slide {
    min-width: 80%;
    flex-shrink: 0;
    opacity: 0.35;
    transform: scale(0.90);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
                transform 0.6s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.ba-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.ba-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 32px 80px rgba(15,23,42,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ba-card:hover {
    box-shadow: 0 40px 100px rgba(15,23,42,0.18);
}
.ba-card-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-white);
    text-align: center;
}
.ba-card-footer h4 {
    color: var(--brand-dark);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
}

.ba-slider { position: relative; overflow: hidden; height: clamp(400px, 55vh, 550px); }
.ba-after-img, .ba-before-wrap img {
    width: 100%; height: 100%; object-fit: cover;
}
.ba-before-wrap {
    position: absolute; top: 0; left: 0; bottom: 0;
    width: 50%; overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
}
.ba-before-wrap img { max-width: none; width: 100vw; }
.ba-handle {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-dark);
    font-size: 1.15rem;
    pointer-events: none; z-index: 10;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
}
.ba-range {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; cursor: ew-resize; z-index: 20;
}
.ba-badge {
    position: absolute; top: 1.25rem;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white; padding: 0.4rem 1.1rem;
    font-size: 0.75rem; font-weight: 700; z-index: 5;
    text-transform: uppercase; letter-spacing: 0.1em;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.ba-badge-l { left: 1rem; }
.ba-badge-r { right: 1rem; }

.ba-nav-btn {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: transparent;
    border: 1.5px solid rgba(15, 23, 42, 0.15);
    color: var(--brand-dark);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}
.ba-nav-btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}
.ba-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ba-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.ba-dot {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    position: relative;
}
.ba-dot::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0,0,0,0.18);
    transform: translate(-50%, -50%);
    transition: var(--transition);
}
.ba-dot.active {
    background: rgba(225, 29, 72, 0.12);
}
.ba-dot.active::before {
    width: 16px;
    background: var(--accent-primary);
}

@media (max-width: 991px) {
    .ba-section {
        padding: 3rem 0 5rem;
    }


    .ba-carousel-outer {
        display: block;
        position: relative;
        padding: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }


    .ba-carousel-clip {
        width: 100%;
        padding: 0 0 1rem 0;
    }


    .ba-nav-btn {
        position: absolute;
        top: 0.75rem;
        z-index: 40;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        background: var(--brand-dark);
        border-color: var(--brand-dark);
        color: #fff;
        transform: none !important;
        box-shadow: 0 4px 16px rgba(15,23,42,0.35);
    }
    .ba-nav-btn:hover,
    .ba-nav-btn:active,
    .ba-nav-btn:focus {
        background: var(--brand-dark);
        border-color: var(--brand-dark);
        color: #fff;
        transform: none !important;
        box-shadow: 0 4px 16px rgba(15,23,42,0.35);
    }

    #baPrev { left: 1rem; }

    #baNext { right: 1rem; }

    .ba-track {
        padding: 0 2%;
        gap: 0.5rem;
    }
    .ba-slide {
        min-width: 96%;
        transform: scale(0.97);
    }
    .ba-slide.active {
        transform: scale(1);
    }


    .ba-slider {
        height: clamp(520px, 75vh, 680px);
    }
    .ba-card {
        border-radius: 16px;
    }
    .ba-card-footer {
        padding: 1.2rem;
    }
    .ba-card-footer h4 {
        font-size: 1.2rem;
    }
}

.faq-section {
    background-color: var(--bg-white);
    padding: 8rem 0;
}
.faq-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: 0 !important;
    margin-bottom: 0;
}
.accordion-button {
    font-weight: 800; font-size: 1.2rem;
    color: var(--brand-dark);
    background: transparent !important;
    box-shadow: none !important;
    padding: 2rem 1rem;
}
.accordion-button:not(.collapsed) {
    color: var(--accent-primary);
}
.accordion-button::after {
    background-size: 1rem;
}
.accordion-body {
    color: var(--text-muted);
    padding: 0 1rem 2rem;
    line-height: 1.8;
}

.cta-section {
    background: var(--bg-light);
    padding: 5rem 0;
}
.cta-card {
    background: var(--brand-dark);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(15,23,42,0.18);
}
.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, #60a5fa 60%, transparent 100%);
}
.cta-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3.5rem 4rem;
}
.cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}
.cta-card-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
.cta-card-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.7;
    max-width: 380px;
}
.cta-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-shrink: 0;
    min-width: 220px;
}
.cta-btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
    letter-spacing: 0.01em;
}
.cta-btn-tel:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    color: white;
    transform: translateY(-2px);
}
.cta-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: var(--wa-green);
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}
.cta-btn-wa:hover {
    background: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
@media (max-width: 768px) {
    .cta-card-inner {
        flex-direction: column;
        padding: 2.5rem 2rem;
        text-align: center;
    }
    .cta-card-actions {
        width: 100%;
    }
    .cta-card-desc {
        max-width: 100%;
    }
}

.btn-wa-pulse {
    background: var(--wa-green);
    color: white !important;
    border: 1.5px solid var(--wa-green);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn-wa-pulse:hover {
    background: white;
    color: var(--wa-green) !important;
    box-shadow: 0 6px 18px rgba(37,211,102,0.2);
}

.cookie-banner--visible ~ .wa-fixed,
.cookie-banner--visible ~ #scrollTopBtn {
    bottom: 8.5rem;
}

.wa-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    background: var(--wa-green);
    color: white;
    height: 52px;
    width: 52px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(37,211,102,0.28);
    transition: width 0.4s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.4s ease;
    text-decoration: none;
}
.wa-fixed:hover {
    width: 172px;
    padding: 0 14px;
    gap: 0.55rem;
    box-shadow: 0 10px 32px rgba(37,211,102,0.38);
    color: white;
}
.wa-fixed i {
    font-size: 1.45rem;
    flex-shrink: 0;
    line-height: 1;
}
.wa-fixed span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.2s ease 0.15s,
                max-width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.wa-fixed:hover span {
    opacity: 1;
    max-width: 120px;
}

.page-hero {
    background: var(--bg-light);
    padding: 10rem 0 5rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.page-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}
.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-section {
    padding: 8rem 0;
    background: var(--bg-white);
}
.timeline-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-secondary);
    margin-bottom: 3rem;
    margin-left: 2rem;
    letter-spacing: -0.03em;
}
.custom-timeline {
    border-left: 3px solid var(--accent-secondary);
    padding-left: 2.5rem;
    margin-left: 10px;
}
.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: calc(-2.5rem - 7.5px);
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-secondary);
}
.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-secondary);
    margin-bottom: 0.3rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.timeline-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.8rem;
}
.timeline-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.mission-vision-section {
    padding: 5rem 0 6rem;
    background: var(--bg-light);
}
.mv-card {
    background: transparent;
    border-radius: 0;
    padding: 2rem 2.5rem;
    height: 100%;
    position: relative;
    border: none;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mv-card::before { content: none; }
.mv-card:hover { transform: none; box-shadow: none; }

.mv-card::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 28px;
    height: 28px;
    border-top: 3px solid var(--accent-primary);
    border-left: 3px solid var(--accent-primary);
    border-radius: 2px;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border-top: 3px solid var(--accent-primary);
    border-right: 3px solid var(--accent-primary);
    border-radius: 2px;
}

.mv-line {
    display: block;
    width: 44px;
    height: 3px;
    background: var(--accent-primary);
    margin-top: 1.4rem;
    border-radius: 2px;
}
.mv-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    opacity: 0.15;
    margin-bottom: 1.25rem;
    user-select: none;
}
.mv-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.mv-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 38ch;
}

.contact-section {
    padding: 3rem 0 6rem;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}
.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-header-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.06);
    margin-bottom: 3rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-stat-card {
    background: var(--bg-white);
    padding: 2rem 2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.contact-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.contact-stat-card:hover::after,
.contact-stat-card:focus::after {
    transform: scaleX(1);
}
.contact-stat-card:hover {
    background: var(--bg-light);
}
.cs-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(225,29,72,0.08);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}
.contact-stat-card:hover .cs-icon {
    background: var(--accent-primary);
    color: white;
}
.cs-wa .cs-icon {
    background: rgba(37,211,102,0.1);
    color: var(--wa-green);
}
.contact-stat-card:hover .cs-wa-icon,
.cs-wa:hover .cs-icon {
    background: var(--wa-green);
    color: white;
}
.cs-text small {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.cs-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.3;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

.contact-form-panel {
    background: var(--bg-white);
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 2rem; right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, #60a5fa 100%);
    border-radius: 0 0 4px 4px;
}
.contact-form-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: var(--brand-dark);
    letter-spacing: -0.04em;
    margin-bottom: 0.4rem;
    line-height: 1.1;
}
.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    margin-bottom: 0;
}
.cf-field label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.cf-field:focus-within label {
    color: var(--accent-primary);
}
.cf-field label span {
    color: var(--accent-primary);
}
.cf-field input,
.cf-field textarea {
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-size: 0.97rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--brand-dark);
    background: var(--bg-light);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    resize: none;
    width: 100%;
}
.cf-field input:focus,
.cf-field textarea:focus {
    border-color: var(--accent-primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(225,29,72,0.08);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.92rem;
}

.cf-field-line { display: none; }

.contact-form-panel .btn-primary-custom {
    border-radius: 10px;
    padding: 0.85rem 2.5rem;
    font-size: 0.88rem;
    box-shadow: 0 4px 16px rgba(225,29,72,0.2);
}
.contact-form-panel .btn-primary-custom:hover {
    box-shadow: 0 8px 24px rgba(225,29,72,0.35);
    transform: translateY(-2px);
}

.contact-form-actions {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 1rem;
    min-height: 78px;
}
.contact-recaptcha-wrap {
    margin-right: auto;
}
.contact-recaptcha-wrap .g-recaptcha {
    transform-origin: left bottom;
}

.contact-info-panel {
    background: var(--brand-dark);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border-radius: 16px;
}
.contact-panel-title {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.contact-panel-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-info-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: var(--transition);
}
.contact-info-item:last-child {
    border-bottom: none;
}
a.contact-info-item:hover .cii-icon {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.05);
}
a.contact-info-item:hover small {
    color: rgba(255,255,255,0.6);
}
a.contact-info-item:hover span {
    color: white;
}
.cii-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}
.cii-wa {
    background: rgba(37,211,102,0.12);
    color: #4ade80;
}
.contact-info-item small {
    display: block;
    color: rgba(255,255,255,0.35);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-bottom: 0.15rem;
}
.contact-info-item span {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.4;
}

.contact-panel-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 0 0 1.75rem;
}

.contact-wa-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.9rem 1.5rem;
    background: var(--wa-green);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.contact-wa-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    border-radius: 10px;
}
.contact-wa-cta:hover::before {
    transform: translateX(0);
}
.contact-wa-cta:hover {
    background: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.contact-alert {
    border-radius: 0;
    border-left: 4px solid;
    font-weight: 600;
}

.contact-map {
    margin-top: 3rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.contact-map iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}
.contact-map:hover iframe {
    filter: grayscale(0%);
}

.ci-section {
    padding: 3rem 0 6rem;
}

.ci-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.ci-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
a.ci-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: transparent;
    text-decoration: none;
    color: inherit;
}
a.ci-card:hover .ci-card-cta { color: var(--accent-primary); }
a.ci-card.ci-card-wa:hover .ci-card-cta { color: #25d366; }

.ci-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}
.ci-icon-red  { background: #eff6ff; color: var(--accent-primary); }
.ci-icon-wa   { background: #f0fdf4; color: #25d366; }
.ci-icon-blue { background: #eff6ff; color: #2563eb; }
.ci-icon-gray { background: #f8fafc; color: #64748b; }

.ci-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.ci-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}
.ci-card-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
    line-height: 1.4;
}
.ci-card-cta {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    margin-top: 4px;
    transition: color 0.2s;
}

.ci-page-intro {
    padding: 2rem 0 0.5rem;
}
.ci-page-intro-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}
.ci-page-intro-desc {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0;
}

.ci-map-full {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}
.ci-map-full iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s;
}
.ci-map-full:hover iframe { filter: grayscale(0); }

@media (max-width: 991px) {
    .ci-cards-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .ci-contact-btn {
        flex: 1 1 30%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem 0.5rem;
        gap: 0.5rem;
    }
    .ci-contact-btn .ci-card-icon {
        margin-bottom: 0.25rem;
        width: 42px;
        height: 42px;
    }
    .ci-contact-btn .ci-card-icon i { font-size: 1.25rem; }
    .ci-contact-btn .ci-card-body { align-items: center; gap: 0.25rem; }
    .ci-contact-btn .ci-card-label { font-size: 0.65rem; }
    .ci-contact-btn .ci-card-value { font-size: 0.8rem; word-break: break-all; }
    .ci-contact-btn .ci-card-cta { display: none; }

    .ci-info-box {
        flex: 1 1 100%;
        margin-top: 0.5rem;
    }
    .ci-map-full iframe { height: 260px; }
}

@media (max-width: 991px) {
    .contact-header-row {
        grid-template-columns: 1fr;
    }
    .contact-wrap {
        grid-template-columns: 1fr;
    }
    .contact-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-recaptcha-wrap {
        margin-right: 0;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }
    .contact-form-panel .btn-primary-custom {
        width: 100%;
        justify-content: center;
    }
    .contact-info-panel {
        position: static;
    }
}

@media (max-width: 768px) {

    .why-section,
    .process-section,
    .services-section,
    .ba-section,
    .faq-section,
    .timeline-section {
        padding: 4rem 0;
    }
    .mission-vision-section {
        padding: 3rem 0 4rem;
    }


    .process-section::before {
        display: none;
    }


    .ba-slider {
        height: 240px;
    }
    .ba-carousel-outer {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
    .ba-track {
        padding: 0 8%;
    }
    .ba-slide {
        min-width: 84%;
    }
    .ba-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .ba-card-footer {
        padding: 1rem;
    }


    .cta-section {
        padding: 4rem 0;
    }
    .cta-section h2 {
        font-size: 2rem;
    }


    .why-feature-item {
        padding: 1rem 0.75rem;
        gap: 0.85rem;
    }
    .why-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .why-feature-item h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    .why-feature-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .mv-card {
        padding: 2rem 1.5rem;
    }


    .accordion-button {
        padding: 1.5rem 0.5rem;
        font-size: 1.1rem;
    }
    .accordion-body {
        padding: 0 0.5rem 1.5rem;
    }


    .hero-content-wrapper {
        padding: 3rem 0;
    }


    .contact-section {
        padding: 3rem 0 5rem;
    }
    .contact-info-panel,
    .contact-form-panel {
        padding: 2.5rem 1.5rem;
    }


    .timeline-main-title {
        font-size: 1.7rem;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .custom-timeline {
        padding-left: 1.25rem;
    }
    .timeline-dot {
        left: calc(-1.25rem - 6px);
        width: 10px;
        height: 10px;
        top: 0.4rem;
    }
    .timeline-item {
        margin-bottom: 2rem;
    }
    .timeline-year {
        font-size: 1.5rem;
    }
    .timeline-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    .timeline-desc {
        font-size: 0.95rem;
    }
}

img { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; }

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin: -0.25rem 0 1rem;
    font-size: 0.8rem;
    opacity: 0.82;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.92);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255,255,255,0.45);
}
.footer-legal-links a:hover {
    color: #fff;
    text-decoration-color: rgba(255,255,255,0.78);
}
.footer-legal-links span {
    color: rgba(255,255,255,0.35);
}
.footer-title {
    font-size: 1rem;
    line-height: 1.3;
}
.footer-copy-muted {
    color: rgba(255,255,255,0.82);
}
.footer-copyright {
    color: rgba(255,255,255,0.82);
}
.footer-credit-link {
    color: rgba(255,255,255,0.92);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-credit-link:hover {
    color: #fff;
}

.policy-hero {
    padding: 4.75rem 0 2rem;
}
.policy-hero .section-badge {
    margin-bottom: 0.75rem;
}
.policy-hero .page-title {
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    line-height: 1.02;
    margin-bottom: 0.75rem;
    max-width: 16ch;
}
.policy-hero .page-subtitle {
    font-size: 1rem;
    max-width: 760px;
    margin-bottom: 0;
}
.policy-section {
    padding: 2rem 0 5rem;
    background: var(--bg-white);
}
.policy-card {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 3rem);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}
.policy-card p {
    margin: 0 0 1.15rem;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.9;
}
.policy-card p:last-child {
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%) translateY(calc(100% + 2rem));
    width: min(1120px, calc(100% - 1.5rem));
    z-index: 1080;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.20, 0.64, 1), opacity 0.35s ease;
    pointer-events: none;
    will-change: transform, opacity;
}
.cookie-banner--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-banner--hiding {
    transform: translateX(-50%) translateY(calc(100% + 2rem));
    opacity: 0;
    pointer-events: none;
}
.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.1rem 1.4rem;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.97);
    color: #fff;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.50), 0 0 0 1px rgba(225,29,72,0.18) inset;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 3px solid var(--accent-primary);
}
.cookie-banner-copy {
    flex: 1;
    min-width: 0;
}
.cookie-banner-copy strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
}
.cookie-banner-copy p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.68);
}
.cookie-banner-copy a {
    color: #60a5fa;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(251,113,133,0.35);
    transition: color 0.15s, text-decoration-color 0.15s;
}
.cookie-banner-copy a:hover {
    color: #fda4af;
    text-decoration-color: rgba(253,164,175,0.6);
}
.cookie-banner-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.cookie-banner-btn {
    border: none;
    border-radius: 999px;
    background: var(--accent-primary);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    padding: 0.85rem 1.6rem;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.38);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
    white-space: nowrap;
}
.cookie-banner-btn:hover:not(:disabled) {
    background: #be123c;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(225, 29, 72, 0.48);
}
.cookie-banner-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.30);
}
.cookie-banner-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

@media (max-width: 991px) {
    .policy-hero {
        padding: 3.5rem 0 1.5rem;
    }
    .policy-hero .page-title {
        font-size: clamp(1.7rem, 8vw, 2.6rem);
        max-width: none;
    }
    .policy-hero .page-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .cookie-banner {
        width: calc(100% - 1rem);
        bottom: 0.6rem;
    }
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
        padding: 1rem 1rem 1.1rem;
        border-radius: 18px;
    }
    .cookie-banner-actions {
        width: 100%;
    }
    .cookie-banner-btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        width: 100%;
        bottom: 0;
        left: 0;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.34, 1.10, 0.64, 1), opacity 0.35s ease;
    }
    .cookie-banner--visible {
        transform: translateY(0);
        opacity: 1;
    }
    .cookie-banner--hiding {
        transform: translateY(100%);
        opacity: 0;
    }
    .cookie-banner-inner {
        border-radius: 18px 18px 0 0;
        padding: 1.1rem 1rem 1.4rem;
    }
}

/* ════════════════════════════════════════════════════════════
   GALERİ SAYFASI
   ════════════════════════════════════════════════════════════ */



/* ── Sayaç şeridi ── */

/* ── Grid ── */
.gallery-section {
    background: var(--bg-white);
    padding: 4rem 0 6rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
@media (max-width: 1199px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-gray);
    display: block;
    aspect-ratio: 4 / 3;
}
/* Giriş animasyonu sadece galeri sayfasında */
.page-galeri .gallery-item {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-galeri .gallery-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(15, 23, 42, 0.3) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 0.3rem;
    letter-spacing: -0.01em;
}
.gallery-overlay-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}
.gallery-overlay-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay-zoom {
    opacity: 1;
    transform: scale(1);
}

/* Mobil: overlay daima görünür */
@media (max-width: 767px) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(15,23,42,0.75) 0%, transparent 60%);
    }
    .gallery-overlay-zoom { opacity: 0 !important; }
}

/* ── Galeri Sayfalama ── */
.galeri-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 2.5rem 0 1rem;
    flex-wrap: wrap;
}
.gp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    background: var(--bg-gray);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.gp-btn:hover { background: var(--accent-primary); color: #fff; }
.gp-btn.gp-active { background: var(--accent-primary); color: #fff; pointer-events: none; }
.gp-prev, .gp-next { font-size: 1rem; }

/* ════════════════════════════════════════════════════
   FİYAT LİSTESİ SAYFASI (.page-fiyat)
   ════════════════════════════════════════════════════ */
.fl-section {
    background: var(--bg-white);
    padding: 3rem 0 6rem;
}
/* Tablo wrapper */
.fl-table-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
}
.fl-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.95rem;
}
.fl-table thead tr {
    background: var(--accent-primary);
    color: #fff;
}
.fl-table th {
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
    border: none;
}
.fl-th-price { text-align: right; }
.fl-table tbody tr { border-bottom: 1px solid rgba(0,0,0,0.05); transition: background 0.18s; }
.fl-table tbody tr:last-child { border-bottom: none; }
.fl-table tbody tr:hover { background: rgba(249,115,22,0.04); }
.fl-table td { padding: 1rem 1.25rem; vertical-align: middle; }
.fl-td-num { color: var(--text-muted); font-size: 0.82rem; font-weight: 700; width: 44px; }

/* Hizmet adı + görseli */
.fl-service-wrap { display: flex; align-items: center; gap: 0.85rem; }
.fl-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-gray);
}
.fl-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fl-service-name { display: block; font-weight: 700; color: var(--text-main); line-height: 1.3; }
.fl-service-desc  { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }

/* Fiyat */
.fl-td-price { text-align: right; white-space: nowrap; }
.fl-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: -0.02em;
}
.fl-currency { font-size: 0.82rem; font-weight: 600; margin-left: 2px; }
.fl-price-ask {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--bg-gray);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

/* Empty state */
.fl-empty { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
.fl-empty-icon { font-size: 3rem; display: block; margin-bottom: 1rem; color: var(--bg-gray); }

/* Mobil */
@media (max-width: 991px) {
    .fl-table th, .fl-table td { padding: 0.75rem 0.85rem; }
    .fl-thumb { width: 40px; height: 40px; border-radius: 8px; }
    .fl-service-desc { display: none; }
    .fl-price { font-size: 0.95rem; }
    .fl-td-num { width: 32px; font-size: 0.75rem; }
}
@media (max-width: 575px) {
    .fl-table-wrap { border-radius: 10px; }
    .fl-thumb { display: none; }
    .fl-table th, .fl-table td { padding: 0.65rem 0.65rem; }
    .fl-service-name { font-size: 0.88rem; }
}

/* ── Empty state ── */
.gallery-empty {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-muted);
}
.gallery-empty-icon {
    font-size: 4rem;
    color: var(--bg-gray);
    margin-bottom: 1.5rem;
    display: block;
}
.gallery-empty h2 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}
.gallery-empty p {
    font-size: 0.95rem;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── LIGHTBOX ── */
.glb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 8, 20, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.glb-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.glb-inner {
    position: relative;
    max-width: min(90vw, 1100px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.glb-img-wrap {
    position: relative;
    max-height: 80vh;
    display: flex;
    align-items: center;
}
.glb-img {
    max-width: min(90vw, 1100px);
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    transition: opacity 0.25s ease;
}
.glb-img.fading { opacity: 0; }
.glb-caption {
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
}
.glb-caption-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}
.glb-caption-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}
.glb-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10001;
}
.glb-close:hover { background: rgba(255,255,255,0.2); }
.glb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10001;
}
.glb-nav:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}
.glb-nav.glb-prev { left: 1rem; }
.glb-nav.glb-next { right: 1rem; }
.glb-counter {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    z-index: 10001;
}
@media (max-width: 575px) {
    .glb-nav { width: 40px; height: 40px; font-size: 1.1rem; }
    .glb-nav.glb-prev { left: 0.4rem; }
    .glb-nav.glb-next { right: 0.4rem; }
}

/* ── Home preview bölümü ── */
.gallery-preview-section {
    background: var(--bg-light);
    padding: 3rem 0 5rem;
}
/* ── Gallery Preview Carousel ── */
.gp-carousel-wrap {
    position: relative;
    margin-top: 3rem;
}
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Mobil carousel — sadece ≤991px */
@media (max-width: 991px) {
    .gp-clip {
        overflow: hidden;
        border-radius: 12px;
    }
    .gallery-preview-grid {
        display: flex;
        gap: 0.75rem;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform;
    }
    .gallery-preview-grid .gallery-item {
        flex: 0 0 calc(100% - 1rem);
        min-width: 0;
        aspect-ratio: 4/3;
        opacity: 1 !important;
        transform: none !important;
    }
    .gp-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: rgba(15,23,42,0.80);
        color: #fff;
        font-size: 1.1rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        transition: background 0.2s, opacity 0.2s;
        padding: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    }
    .gp-arrow:active { background: rgba(15,23,42,0.97); }
    .gp-arrow-prev { left: -14px; }
    .gp-arrow-next { right: -14px; }
    .gp-arrow:disabled { opacity: 0.25; pointer-events: none; }
}