/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #25116f;
    --orange-dark: #000041;
    --text: #333333;
    --dark: #1E1E1E;
    --near-black: #141414;
    --light-gray: #F1F1F1;
    --white: #FFFFFF;
    --muted-white: rgba(255,255,255,0.72);
    --border: rgba(0,0,0,0.08);
    --radius-img: 10px;
    --radius-btn: 7px;
    --font: 'Acid Grotesk', 'Manrope', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-img); }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
::selection { background: var(--orange); color: var(--white); }

.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-orange { color: var(--orange); }

h1, h2, h3, h4 { font-family: var(--font); font-weight: 700; color: var(--dark); line-height: 1.08; letter-spacing: -0.01em; }

.eyebrow {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.h2-split {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 700;
    color: var(--dark);
}
.h2-split span, .h2-split em { color: var(--orange); font-style: normal; }

.section-header {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-header .eyebrow { text-align: center; }
.section-header p {
    margin-top: 18px;
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
}
.section-header p a { color: var(--orange); font-weight: 600; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-btn);
    padding: 17px 30px;
    white-space: nowrap;
    transition: var(--transition);
}
.btn svg { flex-shrink: 0; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--block { width: 100%; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 600;
    font-size: 15px;
}
.link-arrow svg { transition: transform 0.25s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ===== NAVIGATION ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0,0,0,0.95);
    height: 92px;
}
.nav__inner {
    max-width: 1360px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.nav__logo-badge img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; }
.nav__logo-badge span {
    font-weight: 700;
    font-size: 20px;
    color: var(--orange);
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav__links > li { position: relative; }
.nav__links > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 19.2px;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 6px;
}
.nav__links > li > a:hover { background: rgba(255,255,255,0.08); }
.nav__links > li > a svg { width: 11px; height: 11px; transition: transform 0.2s ease; }
.nav__links > li.has-dropdown:hover > a svg { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}
.nav__links > li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    padding: 11px 14px;
    border-radius: 6px;
}
.dropdown li a:hover { background: var(--light-gray); color: var(--orange); }

.nav__contact {
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px 10px 0 0;
    padding: 20px 45px;
    height: 92px;
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: flex-end;
    flex-shrink: 0;
}
.nav__contact:hover { background: var(--orange-dark); }

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.98);
    z-index: 99;
    padding: 24px 24px 40px;
    overflow-y: auto;
}
.nav__mobile.is-open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.nav__mobile > ul > li > a {
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile-sub { padding-left: 16px; display: none; }
.nav__mobile-sub.is-open { display: flex; }
.nav__mobile-sub li a { color: var(--muted-white); font-size: 16px; font-weight: 500; padding: 10px 4px; }
.nav__mobile .btn { width: 100%; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    background: #000;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.88) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 160px 40px 90px;
    text-align: center;
}
.hero__company {
    display: block;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 18px;
    opacity: 0.85;
}
.hero__h1 {
    color: var(--white);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 26px;
}
.hero__body {
    color: var(--muted-white);
    font-size: 18px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 40px;
}
.hero__body strong { color: var(--white); font-weight: 700; }
.hero__ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero__ctas .btn { min-width: 200px; }

/* ===== INTRO / VALUE PROP ===== */
.intro { padding: 120px 0; background: var(--white); }
.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.intro__media img { width: 100%; height: 560px; object-fit: cover; }

.intro__ba-slider {
    position: relative;
    width: 100%;
    height: 560px;
    border-radius: var(--radius-img);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}
.intro__ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    pointer-events: none;
}
.intro__ba-after { z-index: 1; }
.intro__ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.intro__ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    z-index: 3;
    transform: translateX(-50%);
}
.intro__ba-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.intro__ba-label {
    position: absolute;
    bottom: 20px;
    z-index: 3;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 20px;
}
.intro__ba-label--before { left: 16px; }
.intro__ba-label--after { right: 16px; }
.intro__content p { font-size: 18px; line-height: 1.75; color: var(--text); margin: 26px 0 34px; }
.intro__content p strong { color: var(--orange); font-weight: 700; }

.intro__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.feature-card img { width: 100%; height: 240px; object-fit: cover; margin-bottom: 24px; }
.feature-card h3 { font-size: 26px; margin-bottom: 12px; }
.feature-card p { font-size: 15.5px; color: var(--text); line-height: 1.65; margin-bottom: 18px; }

/* ===== SERVICES FOCUS ===== */
.services-focus { background: var(--light-gray); padding: 120px 0; }
.service-row {
    display: flex;
    align-items: center;
    gap: 70px;
    background: var(--white);
    border-radius: var(--radius-img);
    padding: 48px;
    margin-bottom: 32px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row:nth-child(even) { flex-direction: row-reverse; }
.service-row__media, .service-row__content { flex: 1 1 48%; }
.service-row__media img { width: 100%; height: 460px; object-fit: cover; }
.service-row__content h3 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 20px; }
.service-row__content p { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 24px; }
.service-row__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 30px;
}
.service-row__tags .divider { color: var(--border); font-weight: 400; }

/* ===== ABOUT OUR WORK ===== */
.about-work { padding: 120px 0; background: var(--white); }
.about-work__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 90px;
}
.about-work__block:last-child { margin-bottom: 0; }
.about-work__block--reverse .about-work__media { order: 2; }
.about-work__media img { width: 100%; height: 460px; object-fit: cover; }
.about-work__block h3 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 20px; }
.about-work__block h4 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.about-work__block p { font-size: 16px; line-height: 1.75; color: var(--text); }
.about-work__block p strong { color: var(--orange); }

/* ===== REMODELING PATHS ===== */
.paths { padding: 120px 0; background: var(--white); }
.path-card {
    background: var(--dark);
    border-radius: var(--radius-img);
    padding: 56px;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.7fr;
    gap: 48px;
}
.path-card:last-child { margin-bottom: 0; }
.path-card--reverse .path-card__text { order: 3; }
.path-card--reverse .path-card__why { order: 2; }
.path-card--reverse .path-card__media { order: 1; }
.path-card__text h3 { color: var(--white); font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.path-card__text h3 span { color: var(--orange); }
.path-card__text p { color: var(--muted-white); font-size: 15.5px; line-height: 1.7; margin-bottom: 16px; }
.path-card__text .btn { margin-top: 12px; }
.path-card__why { display: flex; flex-direction: column; }
.path-card__why-label { color: var(--muted-white); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 18px; }
.path-card__why ul { display: flex; flex-direction: column; gap: 16px; }
.path-card__why li { display: flex; align-items: flex-start; gap: 12px; color: var(--white); font-size: 15px; line-height: 1.5; }
.path-card__why li::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 6px;
    flex-shrink: 0;
}
.path-card__media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }

/* ===== PORTFOLIO / TESTIMONIALS ===== */
.portfolio { padding: 120px 0; background: var(--white); }
.portfolio__sub-header { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.portfolio__closing-header { margin-top: 80px; margin-bottom: 0; }

.portfolio__videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 56px;
}
.video-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius-img);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-card::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.video-card__play {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.video-card:hover .video-card__play { transform: scale(1.08); background: var(--orange-dark); }
.video-card__brand {
    position: absolute;
    z-index: 2;
    bottom: 18px;
    left: 18px;
    background: rgba(0,0,0,0.65);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.project-tile img { width: 100%; height: 320px; object-fit: cover; margin-bottom: 16px; }
.project-tile span { display: block; font-size: 15px; font-weight: 600; color: var(--dark); }

.book-today {
    background: var(--dark);
    border-radius: var(--radius-img);
    padding: 44px 36px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.book-today h3 { color: var(--white); font-size: 28px; margin-bottom: 2px; }
.book-today p { color: var(--muted-white); font-size: 15px; margin-bottom: 12px; }
.book-today .btn { width: 100%; }

/* ===== GOOGLE REVIEWS ===== */
.google-reviews { padding: 120px 0 140px; background: var(--white); position: relative; }
.reviews-layout {
    display: flex;
    align-items: center;
    gap: 56px;
}
.reviews-intro {
    flex: 0 0 340px;
    max-width: 340px;
}
.reviews-intro .eyebrow { text-align: left; }
.reviews-intro p { margin-top: 18px; font-size: 15.5px; line-height: 1.7; color: var(--text); }

.reviews-carousel-wrap { position: relative; flex: 1; min-width: 0; }
.reviews-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 4px 8px;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card {
    scroll-snap-align: start;
    flex: 0 0 340px;
    background: var(--light-gray);
    border-radius: 16px;
    padding: 26px 26px 22px;
    position: relative;
}
.review-card__google { position: absolute; top: 24px; right: 24px; }
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-right: 26px; }
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.review-card__meta { flex: 1; }
.review-card__name { font-size: 15px; font-weight: 700; color: var(--dark); }
.review-card__sub { font-size: 13px; color: #8a8a8a; }
.review-card__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.review-stars { color: #FBBC05; font-size: 15px; letter-spacing: 2px; }
.review-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card.is-expanded .review-card__text { -webkit-line-clamp: unset; overflow: visible; }
.review-card__more {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #8a8a8a;
}
.review-card__more:hover { color: var(--dark); }

.reviews-nav { display: block; }
.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    z-index: 4;
}
.reviews-arrow--prev { left: -22px; }
.reviews-arrow--next { right: -22px; }
.reviews-arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ===== CHAT FAB ===== */
.chat-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(223,84,44,0.45);
    z-index: 90;
    transition: var(--transition);
}
.chat-fab:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 90px 0 0; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}
.footer__brand-badge img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.footer__brand-badge span { font-weight: 700; color: var(--orange); font-size: 22px; }
.footer__col a, .footer__col p { display: block; color: var(--muted-white); font-size: 15px; margin-bottom: 12px; }
.footer__col a:hover { color: var(--orange); }
.footer h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer__map iframe { width: 100%; height: 200px; border: 0; border-radius: var(--radius-img); }

.footer__privacy {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__privacy a { color: var(--muted-white); font-size: 14px; }
.footer__privacy a:hover { color: var(--orange); }

.footer__bottom-bar { background: var(--near-black); padding: 40px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__bottom-left { display: flex; align-items: center; gap: 24px; }
.footer__bottom-badge {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.footer__bottom-badge img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.footer__bottom-badge span { font-weight: 700; color: var(--orange); font-size: 30px; }
.footer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer__social a:hover { background: var(--orange); }

.footer__copyright {
    max-width: 1360px;
    margin: 0 auto;
    padding: 24px 40px 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .intro__grid, .about-work__block { grid-template-columns: 1fr; gap: 40px; }
    .about-work__block--reverse .about-work__media { order: 0; }
    .intro__media img, .about-work__media img { height: 380px; }
    .intro__cards { grid-template-columns: 1fr; }
    .service-row, .service-row:nth-child(even) { flex-direction: column; }
    .service-row__media img { height: 320px; }
    .path-card { grid-template-columns: 1fr; }
    .path-card__media img { min-height: 220px; }
    .portfolio__videos { grid-template-columns: 1fr; }
    .portfolio__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .reviews-layout { flex-direction: column; align-items: stretch; gap: 32px; }
    .reviews-intro { flex: none; max-width: none; }
    .reviews-arrow--prev { left: 4px; }
    .reviews-arrow--next { right: 4px; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .nav__inner { padding: 0 20px; }
    .nav__contact { padding: 20px 24px; font-size: 15px; }
    .hero__content { padding: 130px 20px 70px; }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; }
    .service-row { padding: 24px; }
    .path-card { padding: 32px 24px; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
    .footer__copyright { flex-direction: column; }
}
