:root {
    --blue: #1e5a8a;
    --blue-dark: #1a4a6e;
    --blue-darkest: #0f3d5c;
    --yellow: #f7c948;
    --yellow-muted: #fbe79a;
    --soft-black: #0b131f;
    --off-white: #f6fafc;
    --surface: #fafcfe;
    --blue-rgb: 30, 90, 138;
    --card-glow: 0 30px 45px rgba(var(--blue-rgb), 0.08);
    --font-stack: 'Inter', 'Segoe UI', system-ui, sans-serif;
    /* Content width system - consistent across all pages */
    --content-max: 1200px;
    --content-readable: 720px;
    --content-narrow: 600px;
    --content-hero: 960px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-stack);
    background: var(--off-white);
    color: var(--blue);
    min-height: 100vh;
    font-size: 18px;
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    font-size: 1.05rem;
    color: rgba(var(--blue-rgb), 0.85);
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.how-it-works-title,
.how-it-works-step h3,
.process-card h3,
.carousel-title,
.customer-stories-title,
.strategy-copy h2,
.why-work-with-us-title,
.why-work-with-us-item h3,
.faq-resource-link h3 {
    text-transform: uppercase;
}

.top-bar {
    background: var(--blue-dark);
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 101;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.top-bar a {
    color: var(--yellow);
    margin-left: 0.5rem;
}

.page-header {
    position: sticky;
    top: 34px; /* Height of top bar */
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: transparent;
}

.primary-nav {
    width: min(var(--content-max), 100%);
    margin: 0 auto;
    padding: 0.35rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(26, 74, 110, 0.95), rgba(30, 90, 138, 0.9));
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    min-width: 0;
    flex-wrap: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
}

.brand-logo {
    height: 52px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    display: block;
}

.nav-address-form {
    flex: 1;
    display: flex;
    max-width: 400px; /* Reduced max-width */
    background: #fff;
    border-radius: 999px;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-address-form input {
    flex: 1;
    border: none;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 999px;
    outline: none;
    min-width: 0; /* Allow shrinking */
}

.nav-address-form .btn-nav-submit {
    background: var(--yellow);
    color: var(--blue);
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-right-actions .hero-phone {
    display: none; /* Moved to top bar */
}

.nav-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1001;
    transition: background 0.3s;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.nav-address-form {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 450px;
    background: #fff;
    border-radius: 999px;
    padding: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.nav-address-form::before {
    content: '📍';
    margin-left: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.nav-address-form input {
    flex: 1;
    border: none;
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
    border-radius: 999px;
    outline: none;
    min-width: 0;
    color: var(--blue);
}

.nav-address-form input::placeholder {
    color: #94a3b8;
}

.nav-address-form .btn-nav-submit {
    background: var(--yellow);
    color: var(--blue);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(247, 201, 72, 0.3);
}

.nav-address-form .btn-nav-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(247, 201, 72, 0.4);
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--blue-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    z-index: 1000;
    display: flex;
}

.nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-close:hover {
    background: var(--yellow);
    color: var(--blue);
    transform: rotate(90deg);
}

.nav-links.open {
    right: 0;
}

.nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    display: block;
    font-family: inherit;
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-item {
    width: 100%;
    background: transparent;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    font-family: inherit;
}

.dropdown-toggle::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.nav-item.active .dropdown-toggle::after {
    transform: rotate(45deg);
}

.dropdown-menu {
    position: static;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    padding: 0;
    width: 100%;
    border: none;
    border-left: 2px solid var(--yellow);
    margin-left: 0.5rem;
}

.dropdown-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1rem;
    display: block;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-link:hover {
    color: #fff;
    background: transparent;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--yellow);
    color: var(--blue);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .nav-address-form {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .page-header {
        padding: 0.5rem 0.75rem;
        top: 38px;
    }
    .primary-nav {
        padding: 0.35rem 0.75rem;
        gap: 0.5rem;
        border-radius: 1.5rem;
    }
    .brand-logo {
        height: 42px;
        max-height: 42px;
    }
    .nav-links {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    .top-bar span {
        display: block;
        width: 100%;
    }
    .top-bar a {
        margin-left: 0;
    }
    .page-header {
        top: 52px;
        padding: 0.4rem 0.5rem;
    }
    .primary-nav {
        padding: 0.3rem 0.5rem;
        border-radius: 1.25rem;
    }
    .brand-logo {
        height: 36px;
        max-height: 36px;
    }
    .nav-toggle {
        width: 36px;
        height: 36px;
    }
}

.brand {
    flex: 0 0 auto;
}

.nav-desktop-links {
    display: none;
    align-items: center;
    gap: 0.5rem;
}
@media (min-width: 769px) {
    .nav-desktop-links {
        display: flex;
    }
    .nav-toggle {
        display: none;
    }
}
.nav-link-desktop {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.nav-link-desktop:hover {
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.1);
}

.nav-desktop-item {
    position: relative;
}

.nav-dropdown-trigger {
    border: none;
    cursor: pointer;
    background: transparent;
}

.nav-desktop-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    min-width: 180px;
    background: rgba(26, 74, 110, 0.98);
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 100;
}

.nav-desktop-item:hover .nav-desktop-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-desktop-dropdown-link {
    display: block;
    padding: 0.6rem 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-desktop-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 900px) and (min-width: 769px) {
    .nav-link-desktop {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    .nav-address-form {
        max-width: 260px;
    }
}

.nav-right-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 600px) {
    .nav-right-actions .btn-primary {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.badge-pill.badge-accent {
    background: transparent;
    color: rgba(247, 201, 72, 0.95);
    border-color: rgba(247, 201, 72, 0.7);
    box-shadow: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.btn-primary,
.btn-secondary {
    border: none;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.8rem 1.85rem;
}

.btn-primary {
    background: var(--yellow);
    color: var(--blue);
    box-shadow: 0 15px 30px rgba(var(--blue-rgb), 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.hero {
    background: url('Images/house building.png') center center / cover no-repeat;
    padding: 5rem clamp(1rem, 4vw, 1.5rem) 4rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 9rem;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.hero-grid {
    max-width: var(--content-hero);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1,
.hero-content p,
.hero-content .badge-pill {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
}

.hero-actions .hero-address-form {
    flex: 1;
    min-width: 0;
    min-height: 2.75rem;
    display: flex;
    align-items: stretch;
    max-width: min(100%, 420px);
}

.hero-actions .hero-address-form input {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    min-height: 2.75rem;
}

.hero-actions .hero-address-form .btn-nav-submit {
    padding: 0.8rem 1.85rem;
    font-size: 0.8rem;
    min-height: 2.75rem;
    box-shadow: 0 15px 30px rgba(var(--blue-rgb), 0.25);
}

.hero-actions .hero-address-form .btn-nav-submit:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem clamp(0.75rem, 4vw, 1rem) 3rem;
        padding-top: 6rem;
    }
    .hero-content h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .hero-address-form {
        width: 100%;
        max-width: 100%;
        flex: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0.75rem 2.5rem;
        padding-top: 5rem;
    }
    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    max-width: 480px;
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section {
    padding: 2.25rem clamp(1rem, 4vw, 1.5rem);
}

@media (max-width: 768px) {
    .section {
        padding: 1.75rem clamp(0.75rem, 4vw, 1rem);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 1.5rem 0.75rem;
    }
}

.section-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--blue);
}

.section-lead {
    max-width: var(--content-readable);
    margin-bottom: 2rem;
    color: rgba(var(--blue-rgb), 0.9);
}

.as-seen {
    background: var(--surface);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--card-glow);
    margin-bottom: 3rem;
}

.as-seen-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.as-seen-grid img {
    height: 70px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .as-seen {
        padding: 2rem 1.5rem;
    }
    .as-seen-grid {
        gap: 1.5rem;
    }
    .as-seen-grid img {
        height: 56px;
    }
}

@media (max-width: 480px) {
    .as-seen {
        padding: 1.5rem 1rem;
    }
    .as-seen-grid img {
        height: 48px;
    }
}

/* ========== Homepage About Us (reference design: two-col, photo right, CTA) ========== */
.about-us-home {
    background: #fff;
    padding: 4rem clamp(1.5rem, 5vw, 3rem);
    position: relative;
}

.about-us-home-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 380px);
    gap: 3rem;
    align-items: start;
}

.about-us-home-content {
    min-width: 0;
}

.about-us-home-title {
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
    font-weight: 700;
    color: var(--blue);
    line-height: 1.25;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
    text-transform: none;
    text-align: left;
}

.about-us-home-underline {
    width: 60px;
    height: 4px;
    background: #22c55e;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.about-us-home-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--soft-black);
    margin: 0 0 1rem;
}

.about-us-home-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(var(--blue-rgb), 0.85);
    margin: 0 0 1.75rem;
}

.about-us-home-reasons-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-darkest);
    margin: 0 0 1rem;
    text-transform: none;
}

.about-us-home-reasons {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}

.about-us-home-reasons li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--soft-black);
}

.about-us-home-reasons-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--blue);
}

.about-us-home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 0.9rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: var(--font-stack);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.about-us-home-cta-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.about-us-home-cta-icon {
    flex-shrink: 0;
}

.about-us-home-photo-wrap {
    position: sticky;
    top: 6rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--off-white);
    box-shadow: 0 20px 50px rgba(var(--blue-rgb), 0.1);
}

.gavin-photo-wrap {
    position: relative;
}

.gavin-photo-coming-soon {
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    background: linear-gradient(160deg, rgba(var(--blue-rgb), 0.06) 0%, rgba(var(--blue-rgb), 0.12) 100%);
    padding: 2rem 1.5rem;
}

.gavin-photo-name {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--blue);
    line-height: 1.3;
}

.gavin-photo-label {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 500;
    color: rgba(var(--blue-rgb), 0.65);
    letter-spacing: 0.02em;
}

.about-us-home-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

@media (max-width: 900px) {
    .about-us-home-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-us-home-photo-wrap {
        order: -1;
        position: static;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-us-home {
        padding: 3rem 1.25rem;
    }
    .about-us-home-reasons {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .about-us-home {
        padding: 2.5rem 1rem;
    }
    .about-us-home-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* How it works - 3 simple steps */
.how-it-works {
    background: var(--surface);
    border-radius: 1.5rem;
    box-shadow: var(--card-glow);
}

.how-it-works-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(var(--blue-rgb), 0.6);
    text-align: center;
    margin-bottom: 0.25rem;
}

.how-it-works-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--blue);
    text-align: center;
    margin-bottom: 1.5rem;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: var(--content-max);
    margin: 0 auto;
}

.how-it-works-step {
    text-align: center;
}

.how-it-works-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    color: var(--blue);
}

.how-it-works-icon svg,
.how-it-works-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how-it-works-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.how-it-works-step p {
    font-size: 1rem;
    color: rgba(var(--blue-rgb), 0.85);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .how-it-works-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .how-it-works-icon {
        width: 80px;
        height: 80px;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(min(280px, 100%), 1fr));
    gap: 1.75rem;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .process-grid {
        gap: 1.25rem;
    }
}

.process-card {
    background: var(--surface);
    border-radius: 1.75rem;
    padding: 2rem;
    box-shadow: var(--card-glow);
    border: 1px solid rgba(var(--blue-rgb), 0.08);
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.process-card img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.process-card h3 {
    font-size: 1.3rem;
    margin: 0;
}

.process-card p {
    color: rgba(var(--blue-rgb), 0.85);
    margin: 0;
    padding-left: calc(100px + 1.25rem);
}

@media (max-width: 480px) {
    .process-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .process-card p {
        padding-left: 0;
    }
}

/* Why work with us - situations */
.why-work-with-us {
    background: var(--surface);
}

.why-work-with-us-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(var(--blue-rgb), 0.6);
    text-align: center;
    margin-bottom: 0.5rem;
}

.why-work-with-us-title {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: var(--blue);
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-work-with-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.why-work-with-us-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-work-with-us-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    color: var(--blue);
}

.why-work-with-us-icon svg,
.why-work-with-us-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-work-with-us-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.why-work-with-us-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 0.5rem;
    max-width: var(--content-readable);
    margin: 0 auto;
}

.why-work-with-us-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: rgba(var(--blue-rgb), 0.06);
    border-radius: 1rem;
    border: 1px solid rgba(var(--blue-rgb), 0.12);
}

.why-work-with-us-flow-icon {
    width: 40px;
    height: 40px;
    color: var(--blue);
}

.why-work-with-us-flow-icon svg {
    width: 100%;
    height: 100%;
}

.why-work-with-us-flow-step span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap;
}

.why-work-with-us-flow-arrow {
    width: 24px;
    height: 24px;
    color: rgba(var(--blue-rgb), 0.4);
}

.why-work-with-us-flow-arrow svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .why-work-with-us-icon {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .why-work-with-us-icon {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 768px) {
    .why-work-with-us-flow {
        flex-direction: column;
        gap: 0.5rem;
    }
    .why-work-with-us-flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .why-work-with-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .why-work-with-us-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Explore by Situation grid */
.faq-resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.faq-resource-link {
    flex: 0 0 calc(33.333% - 0.84rem);
    min-width: 200px;
    display: block;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid rgba(var(--blue-rgb), 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-resource-link:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(var(--blue-rgb), 0.12);
}

@media (max-width: 768px) {
    .faq-resource-link {
        flex: 0 0 calc(50% - 0.625rem);
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .faq-resource-link {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* Image carousel section */
.image-carousel-section {
    background: var(--surface);
}

.carousel-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.carousel-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(var(--blue-rgb), 0.08);
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.carousel-title {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: var(--blue);
    margin: 0 0 0.5rem;
}

.carousel-subtitle {
    font-size: 1.05rem;
    color: rgba(var(--blue-rgb), 0.85);
    margin: 0;
    max-width: var(--content-readable);
}

.carousel-nav {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(var(--blue-rgb), 0.2);
    background: #fff;
    color: var(--blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
    background: var(--off-white);
    border-color: var(--blue);
}

.carousel-wrapper {
    overflow: hidden;
    margin: 0 -0.5rem;
}

.carousel-track {
    display: flex;
    gap: 1.25rem;
    padding: 0.5rem 0;
    width: max-content;
    animation: carousel-scroll 80s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    scrollbar-width: none;
}

@keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-card {
    flex: 0 0 min(320px, 85vw);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.carousel-card-image {
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--off-white);
}

.carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.carousel-card:hover .carousel-card-image img {
    transform: scale(1.03);
    filter: brightness(1.02);
}

.strategy-card {
    padding: 3.5rem clamp(1rem, 4vw, 1.5rem);
}

.strategy-card-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    background: var(--surface);
    border-radius: 2.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.strategy-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.strategy-copy {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(var(--blue-rgb), 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .strategy-card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .strategy-card-inner {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .strategy-card {
        padding: 2rem clamp(0.75rem, 4vw, 1rem);
    }
    .strategy-card-inner {
        border-radius: 1.5rem;
    }
    .strategy-card-grid {
        gap: 1.5rem;
    }
    .strategy-copy {
        padding: 2rem 1.5rem;
        border-radius: 1.25rem;
    }
    .strategy-copy h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    .strategy-lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .strategy-copy textarea {
        min-height: 140px;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 1rem;
    }
    .strategy-generate-btn {
        width: 100%;
        align-self: stretch;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    .strategy-highlight {
        padding: 2rem 1.5rem;
        border-radius: 1.25rem;
    }
    .strategy-badge-wrapper {
        margin-bottom: 1.5rem;
    }
    .strategy-badge {
        padding: 0.4rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }
    .strategy-visual {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    .strategy-dialogue {
        padding: 1rem 1.25rem;
        margin-top: 0.75rem;
    }
    .strategy-note {
        font-size: 1rem;
    }
    .strategy-dialogue-attribution {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .strategy-card {
        padding: 1.25rem 0.75rem;
    }
    .strategy-card-inner {
        border-radius: 1.25rem;
    }
    .strategy-card-grid {
        gap: 1.25rem;
    }
    .strategy-copy {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }
    .strategy-copy h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .strategy-lead {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    .strategy-copy textarea {
        min-height: 120px;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
    .strategy-generate-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
    .strategy-highlight {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }
    .strategy-badge-wrapper {
        margin-bottom: 1rem;
    }
    .strategy-badge {
        padding: 0.35rem 1.25rem;
        font-size: 0.75rem;
    }
    .strategy-visual {
        padding: 0.75rem;
    }
    .strategy-dialogue {
        padding: 0.85rem 1rem;
    }
    .strategy-note {
        font-size: 0.95rem;
    }
    .strategy-copy h2 {
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
    margin-bottom: 2rem;
}
}
@media (min-width:720px)
{
    .strategy-copy h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
    margin-bottom: 2rem;
}
}

.strategy-lead {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.strategy-input-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.strategy-copy textarea {
    width: 100%;
    min-height: 180px;
    border-radius: 1.5rem;
    border: 3px solid #e2e8f0;
    padding: 1.5rem;
    font-family: inherit;
    font-size: 1.1rem;
    color: #2d3748;
    resize: none;
    background: #fff;
    transition: all 0.3s ease;
}

.strategy-copy textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(var(--blue-rgb), 0.1);
}

.strategy-generate-btn {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.strategy-highlight {
    background: var(--blue-darkest);
    border-radius: 2rem;
    padding: 3rem;
    color: #fff;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.strategy-badge-wrapper {
    margin-bottom: 2.5rem;
    width: 100%;
}

.strategy-badge {
    display: inline-block;
    border: 1px solid #c5a059;
    border-radius: 2rem;
    padding: 0.5rem 2.5rem;
    color: #c5a059;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.strategy-powered {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.strategy-visual {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.strategy-visual img {
    width: auto;
    object-fit: contain;
}

.strategy-freddy {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-freddy img {
    display: block;
    max-width: 45%;
    width: auto;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.strategy-dialogue {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-top: 0.5rem;
}

.strategy-dialogue::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.12);
}

.strategy-note {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 0.5rem;
    font-style: italic;
}

.strategy-dialogue-attribution {
    font-size: 0.9rem;
    color: rgba(247, 201, 72, 0.95);
    font-weight: 600;
    font-style: normal;
}

/* Strategy Modal Specifics */
.strategy-modal-content {
    max-width: 95vw !important;
    width: 95% !important;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 95vh;
    border: none;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.strategy-modal-header {
    background: var(--blue-darkest);
    padding: 2.5rem 4rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #c5a059;
}

.strategy-modal-header h2 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 2.2rem !important;
    letter-spacing: -0.02em;
}

.strategy-modal-body {
    padding: 4rem;
    overflow-y: auto;
    background: #fff;
}

@media (max-width: 768px) {
    .strategy-modal-header {
        padding: 1.5rem 1.5rem;
    }
    .strategy-modal-header h2 {
        font-size: 1.4rem !important;
    }
    .strategy-modal-body {
        padding: 1.5rem;
    }
    .strategy-summary {
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

@media (max-width: 480px) {
    .strategy-modal-header {
        padding: 1.25rem 1rem;
    }
    .strategy-modal-header h2 {
        font-size: 1.2rem !important;
    }
    .strategy-modal-body {
        padding: 1rem;
    }
    .strategy-summary {
        padding: 1rem;
    }
}

.strategy-summary {
    background: #f8fafc;
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.strategy-report-text h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--blue-dark);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.strategy-report-text h3:first-child {
    margin-top: 0;
}

.strategy-report-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.report-icon {
    font-size: 1.6rem;
}

.report-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 1.25rem;
}

@media (max-width: 480px) {
    .report-list li {
        padding: 1rem 1rem 1rem 2.75rem;
    }
}

.report-list li {
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #edf2f7;
    position: relative;
    padding-left: 3.5rem;
    font-size: 1.05rem;
    color: #2d3748;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
}

.report-list li::before {
    content: '✓';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #c5a059;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.strategy-lead-form-wrapper {
    border-top: 2px solid #e2e8f0;
    padding-top: 3rem;
    max-width: var(--content-narrow);
    margin: 0 auto;
}

.form-instruction {
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.strategy-report-form .form-row input {
    background: #fff;
    color: #2d3748;
    border: 2px solid #cbd5e0;
    border-radius: 0.9rem;
    padding: 1.1rem;
    font-size: 1.1rem;
    transition: border-color 0.2s;
}

.strategy-report-form .form-row input:focus {
    border-color: var(--blue);
    outline: none;
}

.strategy-report-submit {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.2rem !important;
    font-size: 1.2rem !important;
}

.strategy-report-status {
    margin-top: 1.5rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
}

.modal-close-styled {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close-styled:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}


.support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(min(280px, 100%), 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.support-grid article {
    min-height: 260px;
}

@media (max-width: 900px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .support-card img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .support-card {
        padding: 1.5rem;
    }
    .support-card img {
        height: 140px;
    }
}

.support-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(var(--blue-rgb), 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(var(--blue-rgb), 0.9);
}

.support-card img {
    width: 100%;
    border-radius: 1rem;
    height: 200px;
    object-fit: contain;
    background: rgba(var(--blue-rgb), 0.04);
    padding: 0.6rem;
}

.support-card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--blue);
}

.support-card p {
    color: rgba(var(--blue-rgb), 0.85);
}

/* Customer Stories testimonial section */
.customer-stories {
    background: var(--off-white);
}

.customer-stories-title {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: var(--blue);
    text-align: center;
    margin: 0 0 0.5rem;
}

.customer-stories-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--yellow);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.customer-stories-subtitle {
    text-align: center;
    color: rgba(var(--blue-rgb), 0.8);
    font-size: 1.05rem;
    margin: 0 0 2.5rem;
}

.customer-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.customer-story-card {
    background: var(--surface);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(var(--blue-rgb), 0.08);
    box-shadow: 0 2px 12px rgba(var(--blue-rgb), 0.06);
    position: relative;
}

.customer-story-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(var(--blue-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.customer-story-avatar span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue);
}

.customer-story-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(var(--blue-rgb), 0.15);
    font-family: Georgia, serif;
}

.customer-story-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(var(--blue-rgb), 0.9);
    margin: 0 0 1.25rem;
}

.customer-story-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
    font-style: normal;
    margin-bottom: 0.25rem;
}

.customer-story-location {
    display: block;
    font-size: 0.9rem;
    color: var(--blue);
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .customer-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .customer-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .customer-stories .section-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .customer-story-card {
        padding: 1.5rem;
    }
}

.calc-section {
    background: linear-gradient(180deg, rgba(15, 61, 92, 0.95), rgba(26, 74, 110, 1));
    color: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.55);
    margin-top: 3rem;
}

.calc-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
}

.calc-copy h2 {
    font-size: clamp(2.5rem, 4vw, 3.3rem);
    margin: 0.5rem 0 1rem;
}

.calc-copy p {
    color: rgba(255, 255, 255, 0.75);
    max-width: var(--content-readable);
}

.calc-metrics {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.metric strong {
    font-size: 1.1rem;
    color: var(--yellow);
}

.calc-panel {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.75rem;
    padding: 2rem;
    border: 1px solid rgba(247, 201, 72, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-slider {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-slider input[type="range"] {
    width: 100%;
    accent-color: var(--yellow);
}

.slider-value {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.listing-net-card {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-align: center;
    border: 1px solid rgba(247, 201, 72, 0.4);
}

.listing-net-card p {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(247, 201, 72, 0.85);
    margin-bottom: 0.35rem;
}

.listing-net-card strong {
    display: block;
    font-size: clamp(2.5rem, 6vw, 3.6rem);
    color: white;
}

.listing-note {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.75rem;
}

@media (max-width: 900px) {
    .calc-panel {
        padding: 1.5rem;
    }
}

.testimonials {
    margin-top: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: white;
    box-shadow: var(--card-glow);
    border: 1px solid rgba(var(--blue-rgb), 0.08);
}

.testimonial-card p {
    font-size: 1rem;
}

.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 700;
    color: var(--blue);
}

.contact-section {
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding: 4rem 3rem;
    background: var(--surface);
    border-radius: 1.5rem;
}

@media (max-width: 768px) {
    .contact-section {
        margin-top: 3rem;
        margin-bottom: 3rem;
        padding: 2rem 1.5rem;
    }
    .contact-inner {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
}

.contact-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.contact-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-copy .section-title {
    margin: 0;
    color: var(--blue);
}

.contact-copy .section-lead,
.contact-copy ul {
    color: rgba(var(--blue-rgb), 0.85);
}

.contact-copy ul {
    margin: 0;
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-visual {
    margin: 0;
    border-radius: 2rem;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.as-seen {
    padding: 1.5rem;
    background: var(--yellow);
    border-radius: 1.2rem;
    color: #0b131f;
}

.as-seen .section-title,
.as-seen-lead {
    text-align: center;
}

.as-seen-lead {
    margin-left: auto;
    margin-right: auto;
}

.support-card-emphasis {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--blue) !important;
}

.as-seen .section-title,
.as-seen-lead {
    text-align: center;
}

.as-seen-lead {
    margin-left: auto;
    margin-right: auto;
}

.support-card-emphasis {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
}

/* Bottom-of-fold CTA section */
.bottom-cta-section {
    background: linear-gradient(135deg, #1a4a6e, #2563a8 60%, #1e5a8a);
    color: white;
    padding: 4rem clamp(1rem, 4vw, 1.5rem);
}

@media (max-width: 768px) {
    .bottom-cta-section {
        padding: 2.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .bottom-cta-section {
        padding: 2rem 0.75rem;
    }
}

.bottom-cta-inner {
    max-width: var(--content-narrow);
    margin: 0 auto;
    text-align: center;
}

.bottom-cta-section h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.bottom-cta-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
}

.bottom-cta-form {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.bottom-cta-form::before {
    display: none;
}

.bottom-cta-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.bottom-cta-trust li {
    margin: 0;
}

.row-banner {
    margin-top: 3rem;
    overflow: hidden;
    border-radius: 1.5rem;
}

.row-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .row-banner {
        margin-top: 2rem;
        border-radius: 1rem;
    }
    .row-banner img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .row-banner img {
        height: 140px;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 10, 0.85);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--surface);
    border-radius: 1.75rem;
    padding: 2.5rem;
    width: 100%;
    max-width: var(--content-narrow);
    position: relative;
    box-shadow: var(--card-glow);
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    .modal-content {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(var(--blue-rgb), 0.1);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.progress-step {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.progress-step span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(var(--blue-rgb), 0.3);
    margin-bottom: 0.35rem;
}

.progress-step.active span {
    background: var(--yellow);
    border-color: var(--yellow);
}

.offer-step {
    display: none;
    animation: slideFade 0.4s ease;
}

.offer-step.active {
    display: block;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(var(--blue-rgb), 0.15);
    font-family: inherit;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(var(--blue-rgb), 0.3);
    color: var(--blue);
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.btn-ghost:hover {
    border-color: var(--blue);
}

.footer {
    background: var(--blue-dark);
    color: white;
    padding: 3rem clamp(1rem, 4vw, 1.5rem);
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-inner img {
        max-height: 44px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0.75rem;
        margin-top: 2rem;
    }
}

.footer-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    text-align: center;
}

.footer-inner p,
.footer-inner small {
    color: rgba(255, 255, 255, 0.9);
}

.row-banner {
    max-width: 100%;
}

/* ========== Page-specific: About ========== */
.team-member-section {
    padding: 3rem clamp(1rem, 4vw, 2rem);
    max-width: var(--content-max);
    margin: 0 auto;
}

.team-member-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.team-member-bio h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.team-member-bio p {
    margin-bottom: 1rem;
}

.team-member-photo-placeholder {
    position: relative;
    background: rgba(var(--blue-rgb), 0.08);
    border-radius: 1.5rem;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--blue-rgb), 0.5);
    font-weight: 600;
    overflow: hidden;
}

.team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.about-content {
    max-width: var(--content-readable);
    margin: 0 auto;
    padding: 2rem clamp(1rem, 4vw, 2rem);
}

.about-content h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: var(--blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid rgba(var(--blue-rgb), 0.08);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--yellow);
    margin: 0 0 0.25rem;
    text-transform: none;
}

.stat-item p {
    margin: 0;
    font-size: 0.95rem;
}

.mission-box {
    background: var(--surface);
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(var(--blue-rgb), 0.1);
    margin: 2rem 0;
}

.mission-box h2 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .team-member-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .team-member-photo-placeholder {
        max-height: 320px;
        aspect-ratio: 4/3;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .team-member-section {
        padding: 1.5rem 0.75rem;
    }
    .about-content {
        padding: 1.5rem 0.75rem;
    }
    .stat-item {
        padding: 1rem;
    }
    .mission-box {
        padding: 1.5rem;
    }
}

/* ========== Page-specific: Contact ========== */
.contact-hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    padding: 4rem clamp(1rem, 4vw, 2rem);
    text-align: center;
}

.contact-hero h1 {
    margin: 0 0 0.5rem;
}

.contact-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 3rem clamp(1rem, 4vw, 2rem);
}

.contact-info h2,
.contact-form-container h3 {
    color: var(--blue);
    margin-top: 0;
}

.contact-method {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.contact-text p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-container .form-row {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 2.5rem 1rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 2rem 0.75rem;
    }
    .contact-grid {
        padding: 1.5rem 0.75rem;
    }
    .contact-method {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========== Page-specific: FAQ ========== */
.faq-hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    padding: 4rem clamp(1rem, 4vw, 2rem);
    text-align: center;
}

.faq-hero h1 {
    margin: 0 0 0.5rem;
}

.faq-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.faq-container {
    max-width: var(--content-readable);
    margin: 0 auto;
    padding: 2rem clamp(1rem, 4vw, 2rem);
}

.faq-item {
    border-bottom: 1px solid rgba(var(--blue-rgb), 0.12);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    text-align: left;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    margin: 0 0 1rem;
    padding: 0 0 1.25rem;
}

.faq-cta {
    padding: 3rem clamp(1rem, 4vw, 2rem);
    text-align: center;
    background: var(--surface);
}

.faq-cta h2 {
    margin: 0 0 0.5rem;
    color: var(--blue);
}

.faq-cta p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 2.5rem 1rem;
    }
    .faq-container {
        padding: 1.5rem 1rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 2rem 0.75rem;
    }
    .faq-container {
        padding: 1rem 0.75rem;
    }
    .faq-cta {
        padding: 2rem 0.75rem;
    }
}

/* ========== Page-specific: Why Work With Us ========== */
.why-page-hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    padding: 4rem clamp(1rem, 4vw, 2rem);
    text-align: center;
}

.why-page-hero h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.why-page-hero p {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.why-page-situations {
    padding: 3rem clamp(1rem, 4vw, 2rem);
    max-width: var(--content-max);
    margin: 0 auto;
}

.why-page-situations h2 {
    text-align: center;
    color: var(--blue);
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.why-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-page-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid rgba(var(--blue-rgb), 0.08);
}

.why-page-item h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--blue);
    text-transform: none;
}

.why-page-item p {
    margin: 0;
    font-size: 0.95rem;
}

.icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    color: var(--blue);
}

.icon-wrap svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .why-page-hero {
        padding: 2.5rem 1rem;
    }
    .why-page-situations {
        padding: 2rem 1rem;
    }
    .why-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-page-hero {
        padding: 2rem 0.75rem;
    }
    .why-page-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .why-page-item {
        padding: 1rem;
    }
}

/* ========== Equity audit / calc section responsive ========== */
@media (max-width: 768px) {
    .calc-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .calc-section {
        padding: 1.5rem 0.75rem;
    }
}

.open-offer {
    cursor: pointer;
}

/* ========== Client doc updates ========== */
.about-us-home {
    padding: 2.5rem clamp(1rem, 4vw, 1.5rem);
}

.about-us-home-reasons-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.about-us-home-reasons-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.contact-copy ul.contact-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: rgba(var(--blue-rgb), 0.85);
}

.contact-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #22c55e;
    margin-top: 0.1rem;
}

.contact-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.contact-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 2.5rem 2rem;
}

.strategy-card {
    padding: 2rem clamp(1rem, 4vw, 1.5rem);
}

.strategy-card-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
}

@media (max-width: 1024px) {
    .strategy-card-grid {
        grid-template-columns: 1fr;
    }
}

.strategy-copy {
    padding: 2rem;
}

.strategy-copy h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.strategy-highlight {
    padding: 1.25rem;
}

.strategy-badge-wrapper {
    margin-bottom: 1rem;
}

.strategy-visual {
    padding: 0.75rem;
}

.strategy-dialogue {
    padding: 0.85rem 1rem;
    margin-top: 0.5rem;
}

.strategy-note {
    font-size: 0.95rem;
}

.resource-key-points {
    background: var(--surface);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--card-glow);
    border: 1px solid rgba(var(--blue-rgb), 0.08);
}

.resource-key-points h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--blue);
    margin: 0 0 1rem;
}

.resource-key-points ul {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.65rem;
}

.resource-key-points li {
    color: rgba(var(--blue-rgb), 0.9);
    line-height: 1.5;
}

.resource-page .hero {
    padding: 4rem clamp(1rem, 4vw, 1.5rem) 3rem;
    padding-top: 7rem;
}

.offer-step-success {
    text-align: center;
    padding: 1rem 0 0.5rem;
}

.offer-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
}

.offer-step-success h3 {
    color: var(--blue);
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.offer-step-success p {
    color: rgba(var(--blue-rgb), 0.85);
    margin-bottom: 0.75rem;
}

.offer-form-hidden {
    display: none !important;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.address-ac-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
}

.address-ac-wrap > input {
    width: 100%;
}

.address-ac-list {
    position: fixed;
    display: none;
    z-index: 10000;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(var(--blue-rgb), 0.12);
    border-radius: 0.85rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    max-height: 280px;
    overflow-y: auto;
    text-align: left;
}

.address-ac-item {
    padding: 0.65rem 0.85rem;
    border-radius: 0.6rem;
    font-size: 0.9rem;
    color: var(--blue);
    cursor: pointer;
    line-height: 1.35;
    white-space: normal;
}

.address-ac-item.active,
.address-ac-item:hover {
    background: rgba(var(--blue-rgb), 0.08);
}
