﻿:root {
    --ink: #f8f3e8;
    --muted: rgba(248, 243, 232, .72);
    --gold: #d9ad5b;
    --gold2: #f3d99c;
    --navy: #07111f;
    --line: rgba(248, 243, 232, .14);
    --glass: rgba(255, 255, 255, .075);
    --radius: 30px;
    --shadow: 0 28px 90px rgba(0, 0, 0, .38)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at 12% 8%, rgba(217, 173, 91, .18), transparent 34rem), radial-gradient(circle at 86% 12%, rgba(84, 129, 176, .16), transparent 32rem), linear-gradient(135deg, #04070d 0%, #07111f 42%, #130d0a 100%);
    color: var(--ink);
    overflow-x: hidden
}

    body:before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        background-image: linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
        background-size: 58px 58px;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), transparent 72%)
    }

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

button {
    font: inherit
}

.page {
    position: relative;
    z-index: 2
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 32px));
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 12px 20px;
    border: 1px solid rgba(248, 243, 232, .13);
    border-radius: 999px;
    background: rgba(7, 17, 31, .7);
    backdrop-filter: blur(22px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -.02em
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--gold), #a66d3f);
    color: #08101d;
    font-family: "Playfair Display", serif;
    font-size: 22px
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-top: 1px
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0
}

    .desktop-menu > li {
        position: relative
    }

        .desktop-menu > li > a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 13px 12px;
            color: rgba(248, 243, 232, .82);
            font-size: 14px;
            font-weight: 800;
            border-radius: 999px;
            transition: .25s
        }

            .desktop-menu > li:hover > a,
            .desktop-menu > li > a.active {
                background: rgba(255, 255, 255, .08);
                color: #fff
            }

.dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 268px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 17, 31, .95);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    transform: translate(-50%, 14px) scale(.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s cubic-bezier(.22,1,.36,1), visibility 0s linear .28s;
    will-change: opacity, transform
}

.dropdown::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    height: 25px;
}

.desktop-menu li:hover .dropdown {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s
}

.dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 13px;
    border-radius: 15px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    transition: .25s
}

    .dropdown a:hover {
        color: #fff;
        background: rgba(217, 173, 91, .12);
        transform: translateX(3px)
    }

.nav-cta,
.menu-trigger,
.btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 900;
    transition: .25s
}

.nav-cta {
    padding: 13px 18px;
    background: var(--ink);
    color: #07111f
}

.menu-trigger {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    background: rgba(255, 255, 255, .1);
    color: var(--ink);
    font-size: 22px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 21px;
    border: 1px solid rgba(255, 255, 255, .14)
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #07111f
}

.btn-ghost {
    background: rgba(255, 255, 255, .075);
    color: var(--ink);
    backdrop-filter: blur(10px)
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(217, 173, 91, .18)
}

.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 0, 0, .58);
    opacity: 0;
    pointer-events: none;
    transition: .35s
}

    .offcanvas-backdrop.active {
        opacity: 1;
        pointer-events: auto
    }

.offcanvas {
    position: fixed;
    z-index: 80;
    inset: 0 0 0 auto;
    width: min(430px, 92vw);
    padding: 26px;
    background: radial-gradient(circle at 20% 0%, rgba(217, 173, 91, .22), transparent 18rem), rgba(5, 11, 21, .96);
    border-left: 1px solid var(--line);
    transform: translateX(104%);
    transition: .48s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto
}

    .offcanvas.active {
        transform: translateX(0)
    }

.offcanvas-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px
}

.close-menu {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    border-radius: 16px;
    font-size: 22px
}

.mobile-group {
    border-bottom: 1px solid var(--line);
    padding: 12px 0
}

.mobile-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-weight: 900;
    font-size: 18px
}

.mobile-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height .38s cubic-bezier(.22,1,.36,1), opacity .28s ease, transform .28s ease;
    will-change: max-height, opacity, transform
}

    .mobile-links > div {
        overflow: hidden;
        padding-top: 4px
    }

.mobile-group.open .mobile-links {
    max-height: 520px;
    opacity: 1;
    transform: translateY(0)
}

.mobile-links a {
    display: block;
    color: var(--muted);
    padding: 9px 0 9px 14px;
    transition: color .25s ease, transform .25s ease
}

    .mobile-links a:hover {
        color: #fff;
        transform: translateX(4px)
    }

.hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    align-items: center;
    padding: 150px 0 84px;
    overflow: hidden
}

    .hero:after {
        content: "";
        position: absolute;
        inset: 18% -12% auto auto;
        width: 52vw;
        height: 52vw;
        background: radial-gradient(circle, rgba(217, 173, 91, .16), transparent 62%);
        filter: blur(10px);
        animation: floatGlow 6s ease-in-out infinite
    }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 52px
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(217, 173, 91, .32);
    border-radius: 999px;
    background: rgba(217, 173, 91, .09);
    color: var(--gold2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: -.04em
}

h1 {
    margin-top: 22px;
    font-family: "Playfair Display", serif;
    font-size: clamp(54px, 8vw, 116px);
    line-height: .86
}

.gold-text {
    color: transparent;
    background: linear-gradient(135deg, var(--gold2), var(--gold), #fff1c9);
    -webkit-background-clip: text;
    background-clip: text
}

.hero-copy {
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.65;
    margin: 26px 0 0
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px
}

.hero-panel {
    position: relative;
    min-height: 560px;
    perspective: 1100px
}

.visual-card {
    position: absolute;
    inset: 20px 56px 92px 0;
    border: 1px solid var(--line);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotateY(-12deg) rotateX(6deg);
    background: var(--glass)
}

    .visual-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(.86) contrast(1.05)
    }

.mini-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(330px, 72%);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(7, 17, 31, .75);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translateZ(55px) rotateY(8deg)
}

    .mini-card strong {
        display: block;
        font-size: 32px;
        color: var(--gold2);
        letter-spacing: -.05em
    }

    .mini-card span {
        color: var(--muted);
        line-height: 1.55
    }

.page-hero {
    padding: 150px 0 80px
}

    .page-hero .container {
        display: grid;
        grid-template-columns: 1fr .62fr;
        gap: 38px;
        align-items: end
    }

    .page-hero h1 {
        font-size: clamp(42px, 6vw, 82px);
        line-height: .96
    }

.breadcrumb {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px
}

    .breadcrumb a {
        color: var(--gold2)
    }

section {
    padding: 92px 0;
    position: relative
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 38px
}

    .section-head h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(30px, 4vw, 56px);
        line-height: 1.04;
        max-width: 720px
    }

    .section-head p {
        color: var(--muted);
        max-width: 480px;
        line-height: 1.75;
        margin: 0
    }

.glass-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .16)
}

.content-split {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 34px;
    padding: clamp(24px, 4vw, 48px)
}

    .content-split img {
        border-radius: 26px;
        aspect-ratio: 4/3;
        object-fit: cover
    }

.content-body p,
.content-body li {
    color: var(--muted);
    line-height: 1.85;
    font-size: 17px
}

.content-body ul {
    padding-left: 20px
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px
}

.pill {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(217, 173, 91, .11);
    color: var(--gold2);
    border: 1px solid rgba(217, 173, 91, .18);
    font-weight: 900;
    font-size: 12px
}

.grid {
    display: grid;
    gap: 18px
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr)
}

.feature-card,
.service-detail,
.article-card,
.faq-item,
.person-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .063);
    backdrop-filter: blur(14px);
    padding: 24px;
    transition: .28s
}

    .feature-card:hover,
    .article-card:hover,
    .service-detail:hover {
        transform: translateY(-6px);
        border-color: rgba(217, 173, 91, .36)
    }

    .feature-card i,
    .service-detail i {
        color: var(--gold2);
        font-size: 32px
    }

    .feature-card h3,
    .service-detail h3,
    .article-card h3 {
        margin-top: 18px;
        font-size: 22px
    }

    .feature-card p,
    .service-detail p,
    .article-card p,
    .faq-item p {
        color: var(--muted);
        line-height: 1.7
    }

.team-card {
    position: relative;
    min-height: 470px;
    padding: 0;
    overflow: hidden
}

    .team-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(.2) saturate(.9)
    }

    .team-card:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(4, 7, 13, .96), rgba(4, 7, 13, .58), transparent)
    }

.team-info {
    position: absolute;
    z-index: 2;
    inset: auto 18px 18px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7, 17, 31, .68);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .12)
}

    .team-info span {
        display: block;
        color: var(--gold2);
        font-weight: 900;
        margin: 8px 0
    }

    .team-info p {
        margin: 0;
        color: var(--muted);
        line-height: 1.55
    }

.expertise-slider {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(248, 243, 232, .1);
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 26px 80px rgba(0, 0, 0, .22)
}

    .expertise-slider:before,
    .expertise-slider:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 92px;
        z-index: 2;
        pointer-events: none
    }

    .expertise-slider:before {
        left: 0;
        background: linear-gradient(90deg, rgba(7, 17, 31, .88), transparent)
    }

    .expertise-slider:after {
        right: 0;
        background: linear-gradient(270deg, rgba(7, 17, 31, .88), transparent)
    }

.expertise-track {
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    cursor: grab
}

    .expertise-track.is-dragging {
        cursor: grabbing
    }

.expertise-grid {
    display: flex;
    gap: 18px;
    padding: 18px;
    will-change: transform;
    pointer-events: none;
}

.service-card {
    pointer-events: auto;
    flex: 0 0 calc((100% - 54px)/4);
    min-height: 278px;
    position: relative;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, .065);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: .35s
}

    .service-card:before {
        content: "";
        position: absolute;
        inset: auto -30% -44% -30%;
        height: 160px;
        background: radial-gradient(circle, rgba(217, 173, 91, .28), transparent 62%)
    }

    .service-card:hover {
        transform: translateY(-9px) rotateX(5deg);
        border-color: rgba(217, 173, 91, .42);
        background: rgba(255, 255, 255, .095)
    }

.service-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(217, 173, 91, .13);
    font-size: 30px;
    margin-bottom: 32px
}

.service-card h3 {
    font-size: 20px;
    line-height: 1.18;
    margin-bottom: 12px
}

.service-card p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0
}

.expertise-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 20px 18px
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px
}

.slider-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 99px;
    background: rgba(248, 243, 232, .28);
    cursor: pointer;
    transition: .28s
}

    .slider-dot.active {
        width: 34px;
        background: linear-gradient(135deg, var(--gold), var(--gold2))
    }

.slider-hint {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(217, 173, 91, .22);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(217, 173, 91, .16), rgba(255, 255, 255, .045))
}

.stat {
    padding: 24px;
    border-radius: 24px;
    background: rgba(7, 17, 31, .44)
}

    .stat strong {
        display: block;
        font-size: clamp(38px, 5vw, 62px);
        letter-spacing: -.05em;
        color: var(--gold2)
    }

    .stat span {
        color: var(--muted);
        font-weight: 800
    }

.contact-wrap {
    overflow: hidden;
    border: 1px solid rgba(217, 173, 91, .23);
    border-radius: 42px;
    padding: clamp(28px, 5vw, 58px);
    background: radial-gradient(circle at 90% 15%, rgba(217, 173, 91, .25), transparent 28rem), linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045))
}

    .contact-wrap h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(36px, 5vw, 70px);
        line-height: 1;
        max-width: 780px
    }

    .contact-wrap > p {
        color: var(--muted);
        max-width: 710px;
        font-size: 18px;
        line-height: 1.75
    }

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .063);
    padding: 24px
}

    .contact-card i {
        width: 52px;
        height: 52px;
        display: grid;
        place-items: center;
        border-radius: 18px;
        background: rgba(217, 173, 91, .14);
        color: var(--gold2);
        font-size: 23px
    }

    .contact-card span {
        color: var(--muted);
        display: block;
        font-size: 13px;
        margin-bottom: 5px
    }

.quick-actions {
    position: fixed;
    right: 18px;
    top: 50%;
    z-index: 45;
    display: grid;
    gap: 12px;
    transform: translateY(-50%)
}

.quick-action {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    font-size: 25px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
    isolation: isolate;
    transition: .28s
}

    .quick-action:before {
        content: "";
        position: absolute;
        inset: -7px;
        z-index: -1;
        border-radius: inherit;
        opacity: .32;
        animation: quickPulse 1.9s ease-in-out infinite
    }

    .quick-action:hover {
        transform: translateX(-5px) scale(1.06);
        border-radius: 18px
    }

    .quick-action.whatsapp {
        background: linear-gradient(135deg, #20c768, #087f4f)
    }

    .quick-action.phone {
        background: linear-gradient(135deg, var(--gold), #a66d3f);
        color: #07111f
    }

    .quick-action.whatsapp:before {
        background: #20c768
    }

    .quick-action.phone:before {
        background: var(--gold);
        animation-delay: .45s
    }

    .quick-action span {
        position: absolute;
        right: calc(100% + 12px);
        width: max-content;
        padding: 9px 12px;
        border-radius: 999px;
        background: rgba(7, 17, 31, .88);
        border: 1px solid var(--line);
        color: var(--ink);
        font-size: 12px;
        font-weight: 900;
        opacity: 0;
        transform: translateX(8px);
        pointer-events: none;
        transition: .25s;
        backdrop-filter: blur(12px)
    }

    .quick-action:hover span {
        opacity: 1;
        transform: translateX(0)
    }

footer {
    padding: 70px 0 34px;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .18)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px
}

    .footer-grid p,
    .footer-grid a {
        color: var(--muted);
        line-height: 1.75
    }

    .footer-grid h3 {
        font-size: 16px;
        margin-bottom: 16px;
        color: var(--gold2)
    }

    .footer-grid a {
        display: block;
        margin: 9px 0;
        transition: .2s
    }

        .footer-grid a:hover {
            color: #fff;
            transform: translateX(3px)
        }

.footer-bottom {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: rgba(248, 243, 232, .54);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.reveal {
    opacity: 0;
    transform: translateY(28px)
}

@keyframes quickPulse {
    50% {
        transform: scale(1.16);
        opacity: .12
    }
}

@keyframes floatGlow {
    50% {
        transform: translateY(-28px) scale(1.03)
    }
}

@media(max-width:1080px) {

    .desktop-menu,
    .nav-cta {
        display: none
    }

    .menu-trigger {
        display: grid
    }

    .hero-grid,
    .page-hero .container,
    .content-split {
        grid-template-columns: 1fr
    }

    .hero-panel {
        min-height: 500px;
        order: -1
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-band,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-card {
        flex-basis: calc((100% - 18px)/2)
    }
}

@media(max-width:720px) {
    .container {
        width: min(100% - 26px, 1180px)
    }

    .nav {
        top: 10px;
        width: calc(100% - 20px);
        padding: 10px 10px 10px 14px
    }

    .brand span {
        font-size: 14px
    }

    .brand small {
        display: none
    }

    .hero {
        padding: 116px 0 58px;
        min-height: auto
    }

    .page-hero {
        padding: 118px 0 52px
    }

    h1 {
        font-size: clamp(48px, 15vw, 76px)
    }

    .hero-copy {
        font-size: 16px
    }

    .hero-actions .btn {
        width: 100%
    }

    .hero-panel {
        min-height: 390px
    }

    .visual-card {
        inset: 0 18px 74px 0
    }

    .section-head {
        display: block;
        margin-bottom: 28px
    }

        .section-head h2 {
            font-size: clamp(28px, 9vw, 42px);
            line-height: 1.08
        }

        .section-head p {
            margin-top: 14px;
            font-size: 15px
        }

    section {
        padding: 70px 0
    }

    .grid-4,
    .grid-3,
    .grid-2,
    .stats-band,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .expertise-slider {
        border-radius: 28px
    }

        .expertise-slider:before,
        .expertise-slider:after {
            width: 38px
        }

    .expertise-grid {
        gap: 14px;
        padding: 14px
    }

    .service-card {
        flex-basis: min(82vw, 320px);
        min-height: 248px;
        padding: 21px
    }

        .service-card h3 {
            font-size: 18px
        }

    .service-icon {
        width: 54px;
        height: 54px;
        font-size: 26px;
        margin-bottom: 25px
    }

    .expertise-controls {
        padding: 0 15px 15px
    }

    .slider-hint {
        font-size: 12px
    }

    .quick-actions {
        right: 12px;
        top: auto;
        bottom: 18px;
        transform: none;
        grid-template-columns: repeat(2, 1fr)
    }

    .quick-action {
        width: 54px;
        height: 54px;
        border-radius: 19px
    }

        .quick-action span {
            display: none
        }

    .contact-wrap {
        border-radius: 30px
    }

    .footer-bottom {
        display: block
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
