:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --navy-deep: #0F172A;
    --navy-mid: #1E293B;
    --navy-light: #334155;
    --gold: #C5A059;
    --gold-dim: #E5D5B7;
    --gold-extralight: #FDFBF7;
    --text-main: #111827;
    --text-muted: #4B5563;
    --text-light: #9CA3AF;
    --danger: #991B1B;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --container-width: 1240px
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-primary)
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--bg-primary);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: var(--navy-deep);
    text-decoration: none;
    transition: all 0.3s var(--transition)
}

a:hover {
    color: var(--gold)
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary)
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 10px;
    border: 2px solid var(--bg-tertiary)
}

.flashlight-cursor {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgb(255 215 0 / .07) 0%, transparent 70%);
    mix-blend-mode: screen;
    transition: opacity .3s;
    opacity: 0
}

body:hover .flashlight-cursor {
    opacity: 1
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px)
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px)
}

.reveal-scale {
    opacity: 0;
    transform: scale(.95)
}

section {
    padding: 120px 0;
    position: relative
}

.section-label {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold)
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--navy-deep);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800
}

.section-title span.gold {
    color: var(--gold);
    font-style: italic
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 680px;
    margin-bottom: 56px
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s var(--transition)
}

header.scrolled {
    background: rgb(255 255 255 / .9);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgb(0 0 0 / .03);
    border-bottom: 1px solid rgb(0 0 0 / .05)
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

header .logo img {
    height: auto;
    transition: transform 0.3s
}

header .logo:hover img {
    transform: scale(1.05)
}

header .menu nav ul {
    display: flex;
    gap: 36px;
    list-style: none
}

header .menu nav ul li a {
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0
}

header .menu nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--transition)
}

header .menu nav ul li a:hover::after,
header .menu nav ul li a.active::after {
    width: 100%
}

header .menu nav ul li a:hover,
header .menu nav ul li a.active {
    color: var(--gold)
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--navy-deep);
    cursor: pointer;
    transition: var(--transition)
}

.close-nav-btn {
    position: absolute;
    top: 24px;
    right: 24px
}

header .actions .whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-deep);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .875rem;
    box-shadow: 0 10px 20px -5px rgb(15 23 42 / .2)
}

header .actions .whatsapp:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -8px rgb(197 160 89 / .35)
}

.persistent-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.persistent-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.4rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgb(0 0 0 / .4)
}

.persistent-cta .cta-phone {
    background: var(--gold);
    color: var(--noir-black)
}

.persistent-cta .cta-whatsapp {
    background: #25D366;
    color: #fff
}

.persistent-cta a:hover {
    transform: scale(1.12)
}

.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: var(--bg-primary)
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px
}

.hero-content {
    max-width: 680px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-extralight);
    border: 1px solid var(--gold-dim);
    padding: 10px 20px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 32px
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: .5
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--bg-secondary);
    line-height: 1;
    margin-bottom: 28px;
    font-weight: 900
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--bg-secondary);
    margin-bottom: 40px;
    line-height: 1.8
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy-deep);
    color: #fff;
    padding: 18px 40px;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px -10px rgb(15 23 42 / .25)
}

.btn-primary:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgb(197 160 89 / .35)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--navy-deep);
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--bg-tertiary);
    box-shadow: var(--shadow-md)
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / .9) 0%, rgb(0 0 0 / .6) 40%, rgb(0 0 0 / .3) 100%);
    z-index: 2
}

.hero-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none
}

.hero-img-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
    transition: transform 6s var(--transition)
}

.hero-visual:hover .hero-img-wrapper picture {
    transform: scale(1.05)
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 24px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-tertiary)
}

.hero-stat h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--bg-secondary);
    font-weight: 800
}

.hero-stat p {
    font-size: .875rem;
    font-weight: 700;
    color: var(--bg-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px
}

.brand-marquee {
    padding: 64px 0;
    background: #fff;
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
    overflow: hidden
}

.marquee-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: marquee 40s linear infinite;
    width: max-content
}

.marquee-item img {
    max-height: 48px;
    filter: grayscale(100%) opacity(.4);
    transition: all 0.4s
}

.marquee-item:hover img {
    filter: grayscale(0%) opacity(1)
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.services-section {
    background: var(--bg-secondary)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px
}

.service-card {
    background: #fff;
    padding: 56px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgb(0 0 0 / .02);
    transition: all 0.4s var(--transition);
    overflow: hidden
}

.service-card.has-image {
    padding-top: 0
}

.service-card .card-image {
    width: calc(100% + 80px);
    margin: 0 -40px 32px;
    height: 200px
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-dim)
}

.service-card .card-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-extralight);
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 32px
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 16px;
    font-weight: 800
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px
}

.service-card .card-link {
    font-weight: 800;
    font-size: .875rem;
    color: var(--navy-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.service-card .card-link i {
    transition: transform 0.3s
}

.service-card:hover .card-link i {
    transform: translateX(8px);
    color: var(--gold)
}

.evidence-section {
    background: #fff
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px
}

.evidence-card {
    background: var(--bg-secondary);
    padding: 48px;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid var(--bg-tertiary)
}

.evidence-card::after {
    content: '\f10e';
    font-family: 'line-awesome';
    position: absolute;
    top: 32px;
    right: 40px;
    font-size: 3rem;
    color: var(--gold-dim);
    opacity: .2
}

.ev-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

.ev-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 4px #fff
}

.ev-name {
    font-weight: 800;
    color: var(--navy-deep);
    font-size: 1.125rem
}

.ev-role {
    font-size: .875rem;
    color: var(--text-light)
}

.ev-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--gold)
}

.ev-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 24px
}

.stamp {
    display: inline-block;
    padding: 4px 12px;
    border: 2px solid var(--danger);
    color: var(--danger);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transform: rotate(-3deg);
    opacity: .8
}

.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, white, var(--bg-secondary))
}

.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 180px 0 120px;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 10
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px
}

.page-hero-content p {
    color: rgb(255 255 255 / .8);
    font-size: 1.25rem;
    margin-bottom: 24px;
    max-width: 600px
}

.page-hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.page-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / .9) 0%, rgb(0 0 0 / .6) 40%, rgb(0 0 0 / .3) 100%);
    z-index: 2
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px
}

.about-stat-card {
    text-align: center;
    padding: 48px 32px;
    background: #fff;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.about-stat-card h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 800
}

.about-stat-card p {
    font-size: .875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px
}

.mission-box {
    padding: 56px;
    background: #fff;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow-md)
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold)
}

.mission-box h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--navy-deep);
    margin-bottom: 20px;
    font-weight: 800
}

.mission-box p {
    color: var(--text-muted);
    line-height: 1.8
}

.timeline {
    position: relative;
    padding-left: 48px;
    margin-top: 48px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bg-tertiary)
}

.timeline-item {
    position: relative;
    margin-bottom: 56px
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px var(--gold-dim)
}

.timeline-item h4 {
    font-family: var(--font-heading);
    color: var(--navy-deep);
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 800
}

.timeline-item .year {
    font-family: var(--font-mono);
    font-size: .825rem;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 700
}

.timeline-item p {
    color: var(--text-muted)
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px
}

.contact-form-noir {
    background: #fff;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 64px;
    box-shadow: var(--shadow-lg)
}

.contact-form-noir h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy-deep);
    margin-bottom: 12px;
    font-weight: 800
}

.contact-form-noir>p {
    color: var(--text-muted);
    margin-bottom: 40px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px
}

.form-group {
    margin-bottom: 24px
}

.form-group label {
    display: block;
    font-size: .8125rem;
    color: var(--navy-mid);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 10px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 2px solid var(--bg-tertiary);
    color: var(--text-main);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 5px var(--gold-extralight)
}

.form-group textarea {
    min-height: 160px
}

.contact-info-noir {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.contact-info-card {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius);
    transition: all 0.3s;
    box-shadow: var(--shadow-md)
}

.contact-info-card:hover {
    transform: translateX(12px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg)
}

.contact-info-card .ci-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-extralight);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    color: var(--navy-deep);
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 800
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-weight: 500
}

.cta-banner {
    background: var(--navy-deep);
    text-align: center;
    padding: 120px 0;
    color: #fff
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 24px;
    font-weight: 800
}

.cta-banner p {
    color: rgb(255 255 255 / .7);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.25rem
}

footer {
    background: #fff;
    border-top: 1px solid var(--bg-tertiary);
    padding: 100px 0 40px
}

footer .row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px
}

footer .description p {
    color: var(--text-muted);
    line-height: 1.8
}

footer .contact {
    margin-top: 32px
}

footer .contact div:first-child {
    font-size: .75rem;
    color: var(--navy-deep);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 4px
}

footer .contact div:last-child {
    color: var(--navy-deep);
    font-weight: 800;
    font-size: 1.125rem
}

footer .menu .title {
    font-family: var(--font-heading);
    color: var(--navy-deep);
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-weight: 800
}

footer .menu a {
    display: block;
    color: var(--text-muted);
    padding: 8px 0;
    transition: all 0.3s;
    font-weight: 500
}

footer .menu a:hover {
    color: var(--gold);
    padding-left: 10px
}

footer .copyright {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-tertiary);
    display: flex;
    justify-content: space-between;
    align-items: center
}

footer .copyright .text {
    font-size: .875rem;
    color: var(--text-light);
    font-weight: 500
}

footer .copyright .policy a {
    color: var(--text-light);
    margin-left: 32px;
    font-size: .875rem;
    font-weight: 500
}

footer .copyright .policy a:hover {
    color: var(--gold)
}

.newsletter-bg {
    background: var(--bg-secondary);
    padding: 80px 0;
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary)
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px
}

.newsletter .title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy-deep);
    font-weight: 800;
    margin-bottom: 8px
}

.newsletter .description {
    color: var(--text-muted);
    font-size: 1.125rem
}

.newsletter form {
    display: flex;
    gap: 16px;
    flex-shrink: 0
}

.newsletter input {
    background: #fff;
    border: 2px solid var(--bg-tertiary);
    color: var(--text-main);
    padding: 16px 24px;
    border-radius: var(--radius);
    min-width: 320px;
    font-family: var(--font-body)
}

.newsletter button,
.button-baykus {
    background: var(--navy-deep);
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .875rem;
    transition: all 0.3s
}

.newsletter button:hover,
.button-baykus:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgb(197 160 89 / .2)
}

@media (max-width:1024px) {
    section {
        padding: 80px 0
    }

    .hero .container,
    .about-hero .container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .hero-visual {
        max-width: none;
        width: 100%;
        height: 100%;
        order: -1
    }

    .hero-visual::after {
        background: linear-gradient(to bottom, rgb(0 0 0 / .9) 0%, rgb(0 0 0 / .6) 60%, rgb(0 0 0 / .3) 100%)
    }

    .hero {
        text-align: center;
        padding-top: 80px
    }

    .hero-actions,
    .hero-stats {
        justify-content: center
    }

    footer .row {
        grid-template-columns: 1fr 1fr
    }

    .actions {
        display: block !important;
        position: relative;
        z-index: 1001
    }

    .mobile-nav-toggle {
        display: flex !important;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--navy-deep) !important;
        padding: 5px
    }

    .mobile-toggle {
        display: flex !important
    }

    header .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        z-index: 2000;
        padding: 100px 32px;
        box-shadow: -10px 0 50px rgb(0 0 0 / .1);
        transition: right 0.5s cubic-bezier(.4, 0, .2, 1);
        display: block
    }

    header .menu.active {
        right: 0
    }

    header .menu .close-nav-btn {
        display: block
    }

    header .menu nav ul {
        flex-direction: column;
        gap: 0
    }

    header .menu nav ul li a {
        display: block;
        padding: 16px 0;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--bg-tertiary)
    }

    .page-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px
    }

    .page-hero {
        min-height: 60vh;
        padding: 140px 0 80px
    }

    .page-hero-content h1 {
        max-width: 100%
    }

    .page-hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto
    }

    .page-hero-visual::after {
        background: linear-gradient(to bottom, rgb(0 0 0 / .9) 0%, rgb(0 0 0 / .7) 50%, rgb(0 0 0 / .4) 100%)
    }

    .contact-form-noir {
        padding: 32px 24px !important;
        margin: 0 !important;
        width: 100% !important;
        border-radius: var(--radius) !important
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important
    }

    .about-stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
        margin-top: 40px
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .form-group {
        margin-bottom: 20px !important
    }

    .form-group label {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px !important;
        font-size: 0.95rem !important
    }

    .page-hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto
    }

    .bg-layers {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 1999
    }

    .bg-layers span {
        position: absolute;
        inset: 0;
        background: rgb(15 23 42 / .4);
        backdrop-filter: blur(4px);
        opacity: 0;
        transition: opacity 0.4s
    }

    header.menu-active .bg-layers span,
    header .menu.active+.bg-layers span {
        opacity: 1;
        pointer-events: all
    }
}

@media (max-width:768px) {
    .hero h1 {
        font-size: 2.5rem
    }

    .hero-stat h3 {
        font-size: 1.5rem
    }

    .hero-desc {
        font-size: 1rem
    }

    .hero-actions {
        flex-wrap: nowrap
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 16px;
        font-size: .7rem
    }

    footer .row {
        grid-template-columns: 1fr;
        gap: 40px
    }

    footer .copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center
    }

    footer .copyright .policy a {
        margin: 0 16px
    }

    .about-stats-row {
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin-top: 32px
    }

    .about-stat-card {
        padding: 30px 20px
    }

    .mission-box {
        padding: 32px 24px
    }

    .timeline {
        padding-left: 32px
    }

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

    .newsletter form {
        width: 100%;
        flex-direction: column
    }

    .newsletter input {
        min-width: 0;
        width: 100%
    }
}

.reviews-container {
    max-width: 1100px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    padding: 0 40px
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px
}

.reviews-header img {
    height: 24px;
    max-width: 100px;
    object-fit: contain
}

.reviews-header span {
    font-size: 18px;
    color: #5f6368
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center
}

.reviews-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 12px
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-out;
    padding: 10px 0
}

.review-card {
    min-width: calc(33.333% - 14px);
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgb(0 0 0 / .1);
    box-sizing: border-box
}

@media (max-width:900px) {
    .review-card {
        min-width: calc(50% - 10px)
    }
}

@media (max-width:600px) {
    .review-card {
        min-width: 100%
    }
}

.rev-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px
}

.avatar.blue {
    background: #4285F4
}

.avatar.red {
    background: #EA4335
}

.avatar.yellow {
    background: #FBBC05
}

.avatar.green {
    background: #34A853
}

.rev-stars {
    color: #fbbc05;
    margin-bottom: 8px;
    font-size: 14px
}

.review-card p {
    font-size: 13.5px;
    color: #3c4043;
    line-height: 1.5;
    margin: 0
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dadce0;
    background: #fff;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgb(0 0 0 / .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368
}

.nav-btn:hover {
    background: #f8f9fa;
    color: #1a73e8;
    transform: translateY(20%) !important
}

.nav-btn.prev {
    left: -30px;
    transform: translateY(20%) !important
}

.nav-btn.next {
    right: -30px;
    transform: translateY(20%) !important
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 64px;
    align-items: start;
    max-width: 100%
}

.reveal-right {
    position: sticky;
    top: 120px
}

@media (max-width:1100px) {
    .detail-grid {
        grid-template-columns: 1fr 380px;
        gap: 40px
    }
}

@media (max-width:991px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .reveal-right {
        position: static !important;
        margin-top: 0
    }

    .contact-form-noir {
        padding: 32px 20px !important
    }

    .hero-actions {
        flex-direction: column;
        width: 100%
    }

    .hero-actions a {
        width: 100%;
        justify-content: center
    }

    .page-hero-content h1 {
        font-size: 2.5rem !important
    }
}

.premium-content p {
    margin-bottom: 24px
}

.premium-content ul {
    margin-bottom: 24px;
    padding-left: 20px
}

.premium-content li {
    margin-bottom: 12px
}