* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --accent: #c41e3a;
    --accent-dark: #a01830;
    --accent-light: #e02848;
    --accent-subtle: rgba(196, 30, 58, 0.08);
    --accent-glow: rgba(196, 30, 58, 0.15);
    --text: #1a1a1a;
    --text-muted: #5f6875;
    --text-light: #8b939f;
    --bg: #ffffff;
    --bg-alt: #f8f9fb;
    --bg-warm: #faf8f5;
    --bg-cool: #f1f3f6;
    --bg-dark: #0f1012;
    --border: #e2e5ea;
    --border-light: #eef0f3;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 14px;
    --radius-xl: 14px;
    --shadow-sm: 0 2px 8px rgba(20, 22, 26, 0.045);
    --shadow-md: 0 8px 20px rgba(20, 22, 26, 0.06);
    --shadow-lg: 0 14px 32px rgba(20, 22, 26, 0.075);
    --shadow-accent: 0 6px 16px rgba(20, 22, 26, 0.10);
    --shadow-accent-lg: 0 12px 28px rgba(20, 22, 26, 0.13);
    --transition-fast: 0.15s ease;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; overflow-x: clip; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-visual {
    animation: fadeUp 0.6s ease-out backwards;
    animation-delay: 0.15s;
}
.reveal {
    transform: translateY(24px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 100;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: auto;
    width: 124px;
    transition: transform 0.2s;
}
.logo:hover img {
    transform: scale(1.02);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s;
}
.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
}
.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent-lg);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu .nav-cta {
    text-align: center;
    margin-top: 8px;
}
.hero {
    padding: 132px 0 84px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content { min-width: 0; }
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: clamp(38px, 4.6vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: var(--text);
}
.hero h1 .accent {
    color: var(--accent);
    box-shadow: inset 0 -0.09em 0 rgba(196, 30, 58, 0.28);
}
.hero-desc {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.75;
}
.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::before {
    opacity: 1;
}
.btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover svg {
    transform: translateX(4px);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 2px solid var(--border);
    color: var(--text);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.btn-secondary:hover {
    border-color: var(--accent);
    background: #fff;
    color: var(--accent);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.15);
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    padding: 28px 0 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    position: relative;
}
.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-stat svg {
    stroke: var(--text-light);
    flex-shrink: 0;
}
.hero-stat span {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-stat strong {
    font-weight: 700;
    color: var(--text);
}
.hero-visual {
    position: relative;
}
.hero-visual::before {
    content: '';
    position: absolute;
    top: 24px;
    right: -12px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
    border-radius: var(--radius-xl);
    opacity: 0.15;
    z-index: -1;
}
.hero-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.08);
    pointer-events: none;
}
.hero-img-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.hero-img-float {
    position: absolute;
    bottom: -24px;
    left: -32px;
    width: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}
.hero-img-float img {
    aspect-ratio: 1;
    object-fit: cover;
}
.services {
    padding: 88px 0 72px;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.2), transparent);
}
.services::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.section-title {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text);
}
.work .section-title {
    color: #fff;
}
.section-desc {
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 56px;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-media {
    margin: 0 -32px 26px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: var(--bg-cool);
}
.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card:hover .service-media img { transform: scale(1.04); }
.service-checks {
    list-style: none;
    display: grid;
    gap: 11px;
    padding-top: 22px;
    border-top: 1px solid var(--border-light);
    position: relative;
}
.service-checks li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}
.service-checks li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 6px;
    width: 6px;
    height: 11px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(42deg);
}
.about-checks {
    list-style: none;
    display: grid;
    gap: 13px;
    margin-top: 30px;
}
.about-checks li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.55;
}
.about-checks li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 7px;
    width: 6px;
    height: 11px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(42deg);
}
.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 0 32px 32px;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    border-radius: var(--radius-xl);
}
.service-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.service-card:hover::after {
    opacity: 1;
}
.service-card:hover {
    border-color: var(--accent-glow);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: var(--text);
    transition: color 0.4s;
    position: relative;
}
.service-card:hover h3 {
    color: var(--accent-dark);
}
.service-card > p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
}
.work {
    padding: 88px 0 72px;
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.work::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.work .container {
    position: relative;
    z-index: 1;
}
.work .section-desc {
    color: rgba(255, 255, 255, 0.55);
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.work-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #1a1a1e;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(0) scale(1);
    transition:
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.work-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(196, 30, 58, 0.25) 0%,
        rgba(196, 30, 58, 0.05) 40%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}
.work-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(196, 30, 58, 0.4),
        0 0 80px rgba(196, 30, 58, 0.15);
}
.work-item:hover::before {
    opacity: 1;
}
.work-item.large {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: var(--radius-xl);
}
.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.5s ease;
    filter: brightness(0.92) saturate(1.05);
}
.work-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.05) saturate(1.2);
}
.work-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    z-index: 3;
}
.work-item.large .work-item-overlay {
    padding: 32px;
}
.work-item:hover .work-item-overlay {
    opacity: 1;
}
.work-item-overlay span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    transform: translateY(12px);
    opacity: 0;
    transition:
        transform 0.45s cubic-bezier(0.23, 1, 0.32, 1) 0.08s,
        opacity 0.4s ease 0.08s;
}
.work-item.large .work-item-overlay span {
    font-size: 17px;
}
.work-item:hover .work-item-overlay span {
    transform: translateY(0);
    opacity: 1;
}
.work-item-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}
.work-item:hover .work-item-overlay::after {
    transform: scaleX(1);
}
.about {
    padding: 88px 0 72px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(196, 30, 58, 0.2) 50%, transparent 100%);
}
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(196, 30, 58, 0.2) 50%, transparent 100%);
}
.about .container {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 64px;
    align-items: center;
}
.about-img-wrapper {
    position: relative;
}
.about-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 32px 64px -12px rgba(0, 0, 0, 0.15),
        0 16px 32px -8px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
}
.about-img-wrapper:hover .about-img {
    box-shadow:
        0 40px 80px -12px rgba(0, 0, 0, 0.2),
        0 24px 48px -8px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}
.about-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-slow);
}
.about-img-wrapper:hover .about-img::before {
    opacity: 1;
}
.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}
.about-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-img-wrapper:hover .about-img img {
    transform: scale(1.03);
}
.about-content {
    position: relative;
}
.about-content .section-title {
    font-size: clamp(28px, 2.9vw, 38px);
    line-height: 1.18;
    margin-bottom: 20px;
    overflow-wrap: break-word;
}
.about-content .section-desc {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}
.about-content > p:not(.section-desc) {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}
.about-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}
.cta {
    padding: 88px 0 72px;
    overflow: hidden;
    background: var(--bg-dark);
    color: #fff;
    text-align: center;
    position: relative;
}
.cta .container {
    position: relative;
    z-index: 1;
}
.cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
}
.cta p {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.btn-cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent-lg);
}
.btn-cta-primary svg {
    width: 20px;
    height: 20px;
}
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}
.btn-cta-secondary:hover {
    background: #fff;
    color: var(--text);
    border-color: #fff;
}
.btn-cta-secondary svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 768px) {
    .cta {
        padding: 70px 0;
        background-attachment: scroll;
    }
    .cta h2 {
        font-size: 26px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
.contact {
    padding: 100px 0;
    background: var(--bg-alt);
}
.contact .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.contact-item:hover {
    border-color: var(--accent-glow);
    box-shadow: var(--shadow-accent);
    transform: translateX(4px);
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-subtle);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-item:hover .contact-icon {
    background: var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-accent);
}
.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    transition: var(--transition);
}
.contact-item:hover .contact-icon svg {
    stroke: #fff;
}
.contact-item-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.contact-item-value {
    font-size: 16px;
    font-weight: 500;
}
.contact-item a:hover {
    color: var(--accent);
}
.contact-form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}
.contact-form h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}
.contact-form-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}
input, textarea, select {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-alt);
    transition: var(--transition);
}
select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 44px;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% + 2px), calc(100% - 16px) calc(50% + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}
input:hover, textarea:hover, select:hover {
    border-color: var(--text-light);
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-subtle);
    background-color: #fff;
}
select:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
textarea {
    resize: none;
    height: 110px;
}
input::placeholder, textarea::placeholder {
    color: #9ca3af;
}
.contact-form .btn {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}
.contact-form .btn:active {
    transform: translateY(0);
}
.partners {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}
.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.partners::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.partners .container {
    text-align: center;
}
.partners-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 14px;
    text-align: center;
}
.partners-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
}
.process {
    padding: 100px 0;
    background: var(--bg-alt);
}
.process .container {
    text-align: center;
}
.process .section-desc {
    margin-left: auto;
    margin-right: auto;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.process-step {
    position: relative;
    text-align: center;
    padding-top: 34px;
}
.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 11px;
    height: 11px;
    margin-left: -5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px var(--bg-alt);
}
.process-step::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    right: -32px;
    height: 1px;
    background: var(--border);
}
.process-step:last-child::after {
    display: none;
}
.process-step h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
footer {
    padding: 0;
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.5), transparent);
}
footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 80px 0 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}
.footer-brand {
    padding-right: 24px;
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.8;
    margin: 24px 0 28px;
    max-width: 300px;
    letter-spacing: 0.01em;
}
.footer-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}
.footer-logo:hover {
    transform: scale(1.02);
}
.footer-logo img {
    height: auto;
    width: 200px;
    border-radius: 8px;
}
.footer-col h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: #fff;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 14px;
}
.footer-col a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
}
.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.25s ease;
}
.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}
.footer-col a:hover::after {
    width: 100%;
}
.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    align-items: flex-start;
    transition: all 0.25s ease;
}
.footer-contact-item:hover {
    color: rgba(255,255,255,0.8);
}
.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    flex-shrink: 0;
    transition: stroke 0.25s ease;
}
.footer-contact-item:hover svg {
    stroke: #fff;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.55);
    transition: color 0.25s ease;
}
.footer-contact-item a:hover {
    color: var(--accent);
}
.footer-contact-item span {
    line-height: 1.6;
}
.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.01em;
}
.footer-bottom-links {
    display: flex;
    gap: 32px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: all 0.25s ease;
    position: relative;
}
.footer-bottom-links a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.25s ease;
}
.footer-bottom-links a:hover {
    color: #fff;
}
.footer-bottom-links a:hover::before {
    width: 100%;
}
@media (max-width: 1100px) and (min-width: 641px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
        padding: 64px 0 52px;
    }
    .footer-brand {
        grid-column: span 2;
        text-align: left;
        padding-right: 0;
    }
    .footer-brand p {
        max-width: 460px;
    }
    .footer-col {
        text-align: left;
    }
    .footer-col a:hover {
        transform: translateX(0);
    }
    .footer-contact-item {
        justify-content: flex-start;
        align-items: flex-start;
    }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
        background-size: cover;
        background-position: center;
    }
    .hero::before,
    .hero::after {
        display: none;
    }
    .hero h1,
    .hero-desc,
    .hero-stat span {
        color: #fff;
    }
    .hero h1 .accent {
        color: #fff;
        box-shadow: inset 0 -0.09em 0 var(--accent);
    }
    .hero h1 .accent::after {
        display: none;
    }
    .hero-stats {
        border-top-color: rgba(255,255,255,0.2);
    }
    .hero-stat svg {
        stroke: #fff;
    }
    .hero-visual {
        display: none;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .hero-stat {
        padding-right: 20px;
    }
    .services {
        padding: 80px 0;
    }
    .service-card {
        padding: 32px 28px 28px;
    }
    .service-card h3 {
        font-size: 20px;
    }
    .work, .about, .contact, .process {
        padding: 80px 0;
    }
    .work::before {
        width: 600px;
        height: 400px;
    }
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .work-item {
        border-radius: var(--radius);
    }
    .work-item:hover {
        transform: translateY(-6px) scale(1.01);
    }
    .work-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
        border-radius: var(--radius-lg);
    }
    .work-item-overlay {
        padding: 20px;
    }
    .work-item.large .work-item-overlay {
        padding: 24px;
    }
    .work-item-overlay span {
        font-size: 13px;
    }
    .work-item.large .work-item-overlay span {
        font-size: 15px;
    }
    .about {
        padding: 80px 0;
    }
    .about .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-wrapper {
        padding: 16px;
    }
    .contact .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form {
        padding: 28px;
    }
    .form-grid { grid-template-columns: 1fr; }
    .cta { padding: 60px 0; }
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .process-step::after {
        display: none;
    }
    .partners {
        padding: 60px 0;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        padding: 60px 0 48px;
    }
    .footer-brand {
        padding-right: 0;
    }
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
    }
    .footer-logo img {
        margin: 0 auto;
    }
    .footer-col h3 {
        padding-bottom: 14px;
    }
    .footer-col a:hover {
        transform: translateX(0);
    }
    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px 0;
    }
    .footer-bottom::before {
        width: 80%;
    }
    .footer-bottom-links {
        gap: 24px;
    }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
        padding: 24px 0 0;
    }
    .hero-stats::before {
        display: none;
    }
    .hero-stat {
        border-right: none;
        padding-right: 0;
        padding-bottom: 0;
        border-bottom: none;
        background: rgba(255,255,255,0.1);
        padding: 16px 8px;
        border-radius: 12px;
    }
    .hero-stat svg {
        display: none;
    }
    .hero-stat strong {
        font-size: 28px;
    }
    .hero-stat span {
        font-size: 11px;
    }
    .hero-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .work-item,
    .work-item.large {
        grid-column: span 1;
        aspect-ratio: 4/3;
        border-radius: var(--radius);
    }
    .work-item:hover {
        transform: translateY(-4px);
    }
    .work-item-overlay {
        padding: 16px;
        background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            transparent 70%
        );
    }
    .work-item-overlay span {
        font-size: 14px;
    }
}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 55%;
}
.cta-scrim {
    position: absolute;
    inset: 0;
    background: rgba(15, 16, 18, 0.72);
}
.ms-recaptcha-notice { text-align: center; }
#contact-form { max-width: 100%; min-width: 0; }
#contact-form button[disabled] { opacity: 0.55; cursor: not-allowed; }

nav.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transition: opacity 0.06s linear; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
    .service-card { padding: 0 26px 28px; }
    .service-checks li, .about-checks li { font-size: 15px; }
    .hero-stats { gap: 12px 26px; }
    .partners-title { font-size: 20px; }
}
@media (hover: none) {
    .service-card:hover { transform: none; box-shadow: var(--shadow-sm); }
    .work-item:hover { transform: none; }
    .service-card:hover .service-media img { transform: none; }
}

.page-hero {
    position: relative;
    padding: 160px 0 72px;
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 55%;
}
.page-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 16, 18, 0.93) 0%, rgba(15, 16, 18, 0.78) 48%, rgba(15, 16, 18, 0.42) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 900px;
}
.page-hero p {
    margin-top: 18px;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}
.page-hero .hero-btns { margin-top: 32px; }
.page-hero--plain { background: var(--bg-alt); color: var(--text); padding-bottom: 56px; }
.page-hero--plain h1 { color: var(--text); }
.page-hero--plain p { color: var(--text-muted); }
.crumbs { font-size: 14px; margin-bottom: 16px; color: rgba(255, 255, 255, 0.65); }
.crumbs a { color: rgba(255, 255, 255, 0.85); }
.crumbs a:hover { color: #fff; }
.crumbs span { padding: 0 8px; }
.page-hero--plain .crumbs { color: var(--text-light); }
.page-hero--plain .crumbs a { color: var(--text-muted); }
.page-hero--plain .crumbs a:hover { color: var(--accent); }

.prose { max-width: 760px; }
.prose p { margin-top: 18px; font-size: 17px; line-height: 1.75; color: var(--text-muted); }
.prose h2 { margin-top: 42px; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.prose h2:first-child { margin-top: 0; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.places { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.places li {
    padding: 9px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.faq { max-width: 820px; margin: 40px auto 0; text-align: left; }
.faq details { border-bottom: 1px solid var(--border); }
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    cursor: pointer;
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '';
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg) translate(-3px, -3px);
    transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq details p { padding-bottom: 24px; font-size: 16px; line-height: 1.7; color: var(--text-muted); }

.contact-map {
    margin-top: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    line-height: 0;
}
.contact-map iframe { display: block; width: 100%; height: 300px; border: 0; }

@media (max-width: 900px) {
    .page-hero { padding: 120px 0 56px; }
    .faq summary { font-size: 17px; }
}

.nav-links .nav-cta, .nav-links .nav-cta:hover { color: #fff; }
.mobile-menu .nav-cta { color: #fff; }
@media (max-width: 900px) {
    .service-media { margin: 0 -26px 24px; }
}

.hero-mobile-bg, .hero-mobile-scrim { display: none; }
@media (max-width: 900px) {
    .hero-mobile-bg {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 55%;
    }
    .hero-mobile-scrim {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(15, 16, 18, 0.7);
    }
    .hero .container { position: relative; z-index: 1; }
    .hero-stat strong { color: #fff; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.visible { transform: none; transition: none; }
    .hero-visual { animation: none; }
    * { scroll-behavior: auto; }
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.2s ease;
}
.card-link::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}
.card-link:hover { gap: 12px; }
.services--plain { background: var(--bg); }
.section-actions { margin-top: 44px; text-align: center; }
.section-actions--left { margin-top: 28px; text-align: left; }
.work .section-actions .btn { border-color: rgba(255, 255, 255, 0.25); color: #fff; background: transparent; }
.work .section-actions .btn:hover { border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.06); }
.about-content .section-actions--left .btn { margin-top: 0; }
.nav-links a.active { color: var(--text); font-weight: 600; }
.mobile-menu a.active { color: var(--accent); }

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
}
