:root {
    --purple: #0088e6;
    --purple-dark: #0066cc;
    --black: #0d0d10;
    --black-soft: #131217;
    --ink: #16151c;
    --text: #5f5b6c;
    --muted: #8c8799;
    --line: #ece8f6;
    --surface: #ffffff;
    --soft: #f7f5fc;
    --shadow: 0 20px 50px rgba(23, 18, 45, 0.12);
    --radius: 6px;
    --container: 1120px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    min-width: 320px;
    color: var(--ink);
    background: #fff;
    font-family: "Manrope", system-ui, sans-serif;
    line-height: 1.62;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

:focus-visible {
    outline: 3px solid rgba(0, 136, 230, 0.38);
    outline-offset: 4px;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--black);
    font-weight: 800;
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 560px;
    color: #fff;
    font-size: clamp(2.35rem, 4vw, 3.7rem);
}

h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

h3 {
    font-size: 1.12rem;
}

p {
    color: var(--text);
    text-wrap: pretty;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.99);
}

.btn-purple {
    color: #fff;
    background: var(--purple);
    box-shadow: 0 12px 22px rgba(0, 136, 230, 0.22);
}

.btn-purple:hover {
    background: var(--purple-dark);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
}

.btn-outline:hover {
    color: var(--black);
    background: #fff;
}

.topbar {
    color: #fff;
    background: var(--purple);
    font-size: 0.76rem;
}

.topbar-inner {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar a,
.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    white-space: nowrap;
}

.socials,
.footer-socials,
.mini-socials {
    display: flex;
    align-items: center;
    gap: 7px;
}

.socials span,
.footer-socials span,
.mini-socials i {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    color: var(--purple);
    background: #fff;
    font-size: 0.7rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
}

.header-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.brand img {
    width: 82px;
    height: 52px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.brand span {
    font-size: 0.95rem;
    line-height: 1;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
}

.nav-link {
    padding: 9px 12px;
    border-radius: var(--radius);
    color: #4f4b59;
    font-size: 0.82rem;
    font-weight: 800;
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--purple);
    background: rgba(0, 136, 230, 0.08);
}

.mobile-menu-btn,
.nav-mobile-contact {
    display: none;
}

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    visibility: hidden;
    opacity: 0;
    background: rgba(13, 13, 16, 0.55);
    transition: opacity var(--transition), visibility var(--transition);
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.hero {
    position: relative;
    padding: 82px 0 88px;
    background:
        radial-gradient(circle at 6% 88%, rgba(0, 136, 230, 0.18), transparent 170px),
        var(--black);
    overflow: hidden;
}

.hero::after,
.dark-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 34px solid rgba(0, 136, 230, 0.13);
    border-radius: 999px;
    pointer-events: none;
}

.hero::after {
    right: -120px;
    bottom: -110px;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
    gap: 56px;
    align-items: center;
}

.hero-copy .kicker {
    margin-bottom: 18px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy > p:not(.kicker) {
    max-width: 560px;
    margin: 20px 0 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
}

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

.hero-card {
    position: relative;
    margin-bottom: -118px;
}

.hero-card::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -22px;
    width: 84px;
    height: 84px;
    background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0 2px, transparent 2px 9px);
}

.hero-card img {
    position: relative;
    width: 100%;
    aspect-ratio: 1.03 / 1;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    color: var(--purple);
    background: #fff;
    box-shadow: 0 16px 35px rgba(13, 13, 16, 0.22);
}

.proof-section {
    position: relative;
    z-index: 2;
    margin-top: -42px;
    padding-bottom: 56px;
    background: #fff;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    box-shadow: var(--shadow);
}

.proof-grid article {
    min-height: 190px;
    padding: 34px 30px;
    border: 1px solid var(--line);
    background: #fff;
}

.proof-grid article + article {
    border-left: 0;
}

.proof-grid i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: var(--radius);
    color: var(--purple);
    background: #e7f5ff;
    font-size: 1.45rem;
}

.proof-grid h2 {
    margin-bottom: 10px;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 1.18rem;
}

.proof-grid p {
    font-size: 0.92rem;
}

.about-section,
.why-section,
.testimonials-section,
.articles-section {
    position: relative;
    padding: 96px 0 118px;
    background: #fff;
}

.about-grid,
.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.92fr);
    gap: 76px;
    align-items: center;
}

.image-collage {
    position: relative;
    min-height: 430px;
}

.dots {
    position: absolute;
    left: 8px;
    top: 0;
    width: 190px;
    height: 190px;
    opacity: 0.35;
    background-image: radial-gradient(#cfc8e8 1.4px, transparent 1.4px);
    background-size: 12px 12px;
}

.collage-main {
    position: absolute;
    left: 50px;
    top: 52px;
    width: 230px;
    height: 310px;
    object-fit: cover;
}

.collage-small {
    position: absolute;
    left: 238px;
    top: 88px;
    width: 230px;
    height: 230px;
    object-fit: cover;
    border: 14px solid #fff;
    box-shadow: var(--shadow);
}

.experience {
    position: absolute;
    left: 238px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    background: #fff;
    padding: 10px 14px;
    box-shadow: var(--shadow);
}

.experience strong {
    color: var(--purple);
    font-size: 2rem;
    line-height: 1;
}

.experience span {
    max-width: 85px;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.15;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--purple);
    font-size: 0.78rem;
    font-weight: 900;
}

.section-copy > p:not(.section-label) {
    margin: 16px 0 0;
    max-width: 610px;
}

.section-copy .expertise-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--ink);
    font-size: 1.03rem;
    font-weight: 900;
}

.section-copy .expertise-line i {
    color: var(--purple);
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-top: 24px;
}

.check-grid span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 800;
}

.check-grid i {
    color: var(--purple);
}

.signature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.avatar-dot {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: #fff;
    background: var(--black);
    font-size: 0.75rem;
    font-weight: 900;
}

.signature-row div {
    display: grid;
    line-height: 1.2;
}

.signature-row small {
    color: var(--muted);
    font-weight: 800;
}

.dark-section {
    position: relative;
    padding: 92px 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 136, 230, 0.16), transparent 210px),
        var(--black);
    overflow: hidden;
}

.dark-section::after {
    right: -128px;
    top: -98px;
}

.section-head {
    margin-bottom: 44px;
}

.section-head.split {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.72fr) auto;
    gap: 32px;
    align-items: end;
}

.section-head.centered {
    max-width: 610px;
    margin-inline: auto;
    text-align: center;
}

.dark-section h2,
.dark-section h3 {
    color: #fff;
}

.dark-section .section-head p:not(.section-label),
.dark-section .centered-cta p:not(.section-label) {
    color: rgba(255, 255, 255, 0.6);
}

.service-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 0;
}

.service-card {
    min-height: 250px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(13, 13, 16, 0.08);
}

.service-card.featured {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--black-soft);
}

.service-card.featured img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.service-card.featured div {
    position: relative;
    z-index: 1;
}

.service-icon {
    color: var(--purple);
    font-size: 2.1rem;
    margin-bottom: 22px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
}

.service-card a {
    display: inline-block;
    margin-top: 20px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
}

.service-card.featured p,
.service-card.featured a {
    color: rgba(255, 255, 255, 0.76);
}

.services-section {
    padding: 94px 0;
    background: #f7f8fb;
}

.services-title {
    margin-bottom: 58px;
    text-align: center;
}

.services-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.services-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 88px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--purple);
}

.service-grid-large {
    gap: 34px;
}

.service-grid-large .service-card {
    min-height: auto;
    padding: 30px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(13, 13, 16, 0.08);
}

.service-media {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(13, 13, 16, 0.14);
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 16, 0.28);
}

.service-media img {
    width: 100%;
    aspect-ratio: 2.25 / 1;
    object-fit: cover;
}

.service-media i {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.1rem;
    filter: drop-shadow(0 8px 14px rgba(13, 13, 16, 0.3));
}

.service-grid-large .service-card h3 {
    margin-bottom: 14px;
    font-size: 1.24rem;
}

.service-grid-large .service-card p {
    color: #5f5b6c;
    font-size: 0.98rem;
    line-height: 1.72;
}

.why-image {
    position: relative;
}

.why-image::before {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 190px;
    height: 190px;
    opacity: 0.32;
    background-image: radial-gradient(#cfc8e8 1.4px, transparent 1.4px);
    background-size: 12px 12px;
}

.why-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 1.05 / 1;
    object-fit: cover;
    border-radius: 48% 0 48% 0;
}

.skill-bars {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.skill-bars span {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 900;
}

.skill-bars strong {
    color: var(--purple);
}

.skill-bars i {
    display: block;
    height: 9px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, var(--purple) var(--value), #e7f5ff var(--value));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 790px;
    margin-inline: auto;
}

.team-card {
    min-height: 230px;
    background: #18171d;
}

.team-card.text-only {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.team-card h3 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.team-card span {
    color: var(--purple);
    font-size: 0.78rem;
    font-weight: 900;
}

.team-card p {
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
}

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

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f4f9 0%, #ffffff 100%);
}

/* ===== Google Reviews Header ===== */
.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.google-reviews-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-icon {
    width: 36px;
    height: 36px;
}

.google-reviews-info h2 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: #202124;
}

.google-score-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-score-num {
    font-size: 1.8rem;
    color: #4285f4;
    line-height: 1;
    font-weight: 900;
}

.google-stars {
    display: flex;
    gap: 1px;
    color: #fbbc04;
    font-size: 0.95rem;
}

.google-count {
    color: var(--muted);
    font-size: 0.82rem;
}

.google-count strong {
    color: var(--text);
}

/* ===== Reviews Carousel — single row ===== */
.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc(33.333% - 11px);
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.review-card:nth-child(1)  { border-top-color: #4285f4; }
.review-card:nth-child(2)  { border-top-color: #ea4335; }
.review-card:nth-child(3)  { border-top-color: #fbbc04; }
.review-card:nth-child(4)  { border-top-color: #34a853; }
.review-card:nth-child(5)  { border-top-color: #4285f4; }
.review-card:nth-child(6)  { border-top-color: #ea4335; }
.review-card:nth-child(7)  { border-top-color: #fbbc04; }
.review-card:nth-child(8)  { border-top-color: #34a853; }
.review-card:nth-child(9)  { border-top-color: #4285f4; }
.review-card:nth-child(10) { border-top-color: #ea4335; }
.review-card:nth-child(11) { border-top-color: #fbbc04; }
.review-card:nth-child(12) { border-top-color: #34a853; }

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

.review-card:nth-child(1)  .review-avatar { background: #4285f4; }
.review-card:nth-child(2)  .review-avatar { background: #ea4335; }
.review-card:nth-child(3)  .review-avatar { background: #fbbc04; color: #5f4b00; }
.review-card:nth-child(4)  .review-avatar { background: #34a853; }
.review-card:nth-child(5)  .review-avatar { background: #4285f4; }
.review-card:nth-child(6)  .review-avatar { background: #ea4335; }
.review-card:nth-child(7)  .review-avatar { background: #fbbc04; color: #5f4b00; }
.review-card:nth-child(8)  .review-avatar { background: #34a853; }
.review-card:nth-child(9)  .review-avatar { background: #4285f4; }
.review-card:nth-child(10) .review-avatar { background: #ea4335; }
.review-card:nth-child(11) .review-avatar { background: #fbbc04; color: #5f4b00; }
.review-card:nth-child(12) .review-avatar { background: #34a853; }

.review-top > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.review-top > div strong {
    font-size: 0.88rem;
    color: #202124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-top > div .review-stars {
    font-size: 0.72rem;
}

.review-card p {
    color: #3c4043;
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}

.review-card > small {
    color: #adb5bd;
    font-size: 0.72rem;
}

/* Carousel arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: #fff;
    color: #5f6368;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 0.25s, background 0.2s, color 0.2s;
}

.reviews-carousel:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background: var(--purple);
    color: #fff;
}

.carousel-arrow-left { left: -4px; }
.carousel-arrow-right { right: -4px; }

/* ===== Mobile Call Bar ===== */
.mobile-call-bar {
    display: none;
}

@media (max-width: 980px) {
    .review-card {
        flex: 0 0 calc(50% - 8px);
    }

    .mobile-call-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: linear-gradient(135deg, #0088e6 0%, #005bb5 100%);
        box-shadow: 0 -2px 20px rgba(0, 100, 200, 0.3);
    }

    .mobile-call-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
    }

    .mobile-call-bar i {
        font-size: 1.6rem;
    }

    .mobile-call-bar div {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .call-label {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
    }

    .call-number {
        font-size: 1.2rem;
        font-weight: 900;
        letter-spacing: 0.5px;
    }

    body {
        padding-bottom: 68px;
    }

    .footer-bottom {
        padding-bottom: 88px;
    }

    .carousel-arrow {
        opacity: 1;
    }
}

@media (max-width: 680px) {
    .review-card {
        flex: 0 0 calc(100% - 0px);
    }

    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .google-score-row {
        flex-wrap: wrap;
    }
}

.centered-cta {
    position: relative;
    z-index: 1;
    max-width: 690px;
    text-align: center;
}

.centered-cta h2 {
    margin-bottom: 14px;
}

.centered-cta .btn {
    margin-top: 22px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 860px;
    margin-inline: auto;
}

.article-grid article {
    position: relative;
    background: #fff;
    box-shadow: var(--shadow);
}

.article-grid img {
    width: 100%;
    height: 166px;
    object-fit: cover;
}

.article-grid h3,
.article-grid p,
.article-grid a {
    margin-inline: 18px;
}

.article-grid h3 {
    margin-top: 20px;
    margin-bottom: 8px;
}

.article-grid p {
    font-size: 0.84rem;
}

.article-grid a {
    display: inline-block;
    margin-top: 14px;
    margin-bottom: 20px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
}

.date {
    position: absolute;
    left: 18px;
    top: 130px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 52px;
    color: var(--purple);
    background: #fff;
    box-shadow: 0 12px 24px rgba(13, 13, 16, 0.16);
}

.date strong {
    line-height: 1;
}

.date span {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
}

.newsletter {
    padding: 22px 0;
    color: #fff;
    background: var(--black);
}

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

.newsletter h2 {
    color: #fff;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 1.18rem;
}

.footer {
    padding: 78px 0 28px;
    color: rgba(255, 255, 255, 0.64);
    background: #050507;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 0.9fr 1fr;
    gap: 44px;
}

.footer-brand {
    margin-bottom: 16px;
    color: #fff;
}

.footer-brand img {
    width: 82px;
    height: 56px;
    object-fit: cover;
    object-position: center;
    background: #fff;
}

.footer p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.footer h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1rem;
}

.footer-grid > div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer a,
.footer span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer a:hover {
    color: #fff;
}

.footer-socials {
    margin-top: 12px;
}

.footer-socials span {
    width: 28px;
    height: 28px;
    color: #fff;
    background: var(--purple);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.work-grid img {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
}

.footer-bottom {
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    max-width: none;
    margin: 0;
}

@media (max-width: 980px) {
    .topbar-inner {
        justify-content: center;
    }

    .topbar-inner span,
    .socials {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .nav {
        position: fixed;
        top: 102px;
        left: 20px;
        right: 20px;
        z-index: 999;
        display: grid;
        visibility: hidden;
        transform: translateY(-8px);
        opacity: 0;
        padding: 16px;
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .nav.active {
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-mobile-contact {
        display: inline-flex;
    }

    .hero-grid,
    .about-grid,
    .why-grid,
    .section-head.split {
        grid-template-columns: 1fr;
    }

    .hero-card {
        margin-bottom: 0;
    }

    .service-grid,
    .team-grid,
    .article-grid,
    .footer-grid,
    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proof-grid article + article {
        border-left: 1px solid var(--line);
    }
}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 82px;
    }

    .container {
        width: min(100% - 30px, var(--container));
    }

    .brand img {
        width: 68px;
        height: 48px;
    }

    .brand span {
        font-size: 0.86rem;
    }

    .hero {
        padding: 62px 0 66px;
    }

    .hero-grid {
        gap: 36px;
    }

    .hero-actions,
    .hero-actions .btn,
    .newsletter .btn {
        width: 100%;
    }

    .about-section,
    .why-section,
    .testimonials-section,
    .articles-section,
    .dark-section {
        padding: 72px 0;
    }

    .image-collage {
        min-height: 360px;
    }

    .collage-main {
        left: 10px;
        width: 48%;
        height: 250px;
    }

    .collage-small {
        left: 42%;
        width: 54%;
        height: 200px;
    }

    .experience {
        left: 42%;
        bottom: 8px;
    }

    .check-grid,
    .service-grid,
    .team-grid,
    .article-grid,
    .footer-grid,
    .proof-grid,
    .newsletter-inner {
        grid-template-columns: 1fr;
    }

    .proof-section {
        margin-top: 0;
        padding-top: 28px;
    }

    .proof-grid article + article {
        border-left: 1px solid var(--line);
        border-top: 0;
    }

    .signature-row {
        flex-wrap: wrap;
    }

    .newsletter-inner {
        display: grid;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}
