/* Base Styles & Design Tokens */
:root {
    --primary: #0a1628;
    /* Dark Navy */
    --accent: #d4a84b;
    /* Gold */
    --accent-hover: #b98e39;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --text-main: #0a1628;
    --text-light: #475569;
    --success: #22c55e;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accent {
    color: var(--accent);
}

.highlight {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 55px;
    width: auto;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(10, 22, 40, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.phone-link-mobile {
    display: none;
}

.phone-link:hover {
    transform: translateY(-1px);
    border-color: rgba(202, 113, 37, 0.45);
    box-shadow: 0 10px 28px rgba(10, 22, 40, 0.12);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #ca7125;
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(202, 113, 37, 0.39);
}

.btn-primary:hover {
    background-color: #bb6821;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 113, 37, 0.45);
}

/* Icons */
.phone-icon {
    width: 20px;
    height: 20px;
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.ring-animation {
    animation: ring 2s infinite;
}

/* Hero Section V2 */
.hero-v2 {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%);
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 650px;
    text-align: left;
    margin: 0;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary);
}

.hero-v2 .highlight {
    background: linear-gradient(120deg, rgba(212, 168, 75, 0.2) 0%, rgba(212, 168, 75, 0.2) 100%);
    padding: 0 4px;
    text-decoration: none;
}

@keyframes subtle-vibrate {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-1px) rotate(-1deg); }
    20% { transform: translateX(1px) rotate(1deg); }
    30% { transform: translateX(-2px) rotate(0deg); }
    40% { transform: translateX(2px) rotate(1deg); }
    50% { transform: translateX(-1px) rotate(-1deg); }
    60% { transform: translateX(1px) rotate(0deg); }
    70%, 100% { transform: translateX(0); }
}

.vibrate-text {
    display: inline-block;
    animation: subtle-vibrate 2s infinite ease-in-out;
}

.hero-subtext {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 45px;
    font-weight: 500;
}

.btn-hero {
    font-size: 1.25rem;
    padding: 18px 40px;
}

.landing-hero {
    min-height: 760px;
    padding: 78px 0 90px;
}

.landing-hero .hero-overlay {
    background:
        linear-gradient(180deg, rgba(8, 14, 26, 0.52) 0%, rgba(8, 14, 26, 0.72) 100%),
        linear-gradient(90deg, rgba(8, 14, 26, 0.9) 0%, rgba(8, 14, 26, 0.78) 45%, rgba(8, 14, 26, 0.52) 100%);
}

.landing-hero .hero-content {
    max-width: 760px;
    color: var(--white);
}

.landing-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(212, 168, 75, 0.32);
    background: rgba(10, 22, 40, 0.58);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.landing-hero h1 {
    max-width: 11ch;
    margin: 20px 0 18px;
    font-size: clamp(2.3rem, 4.7vw, 3.55rem);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -0.04em;
}

.landing-highlight {
    color: var(--accent);
}

.landing-title-break {
    display: block;
    margin-top: 0.12em;
}

.landing-lead {
    max-width: 640px;
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.landing-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.landing-callout,
.landing-final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: min(100%, 590px);
    padding: 18px 28px;
    border-radius: 24px;
    background: #ca7125;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.landing-callout-compact {
    min-width: 0;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 18px;
}

.landing-callout:hover,
.landing-final-cta-button:hover {
    transform: translateY(-2px);
    background: #bb6821;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
}

.landing-callout-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.landing-callout-compact .landing-callout-icon {
    order: 2;
    width: 40px;
    height: 40px;
    border-radius: 14px;
}

.landing-callout-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.landing-callout-copy strong {
    font-size: 0.98rem;
    font-weight: 700;
    opacity: 0.92;
}

.landing-callout-copy span {
    margin-top: 6px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.landing-callout-copy-inline {
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.landing-callout-copy-inline span {
    margin-top: 0;
}

.landing-callout-compact .landing-callout-copy strong,
.landing-callout-compact .landing-callout-copy span {
    font-size: 1rem;
    letter-spacing: 0;
}

.landing-note {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.6;
}

.quote-fast-section {
    padding: 0;
    background: var(--white);
}

.quote-fast-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.96) 0%, rgba(19, 41, 72, 0.94) 100%);
    box-shadow: 0 22px 40px rgba(10, 22, 40, 0.12);
}

.quote-fast-copy h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.02;
}

.quote-fast-copy p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.65;
}

.quote-fast-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 14px 18px;
    border-radius: 18px;
    background: #ca7125;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quote-fast-button:hover {
    transform: translateY(-1px);
    background: #bb6821;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.landing-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    max-width: 640px;
}

.landing-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 17px;
    border-radius: 14px;
    background: rgba(23, 27, 32, 0.92);
    border: 1px solid rgba(212, 168, 75, 0.18);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.landing-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--accent);
    flex-shrink: 0;
}

.landing-point-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.landing-point-kicker {
    color: #f0a13a;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.landing-point-copy strong {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.94);
}

.landing-preview-card {
    margin-top: 28px;
    max-width: 520px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.landing-preview-card img {
    display: block;
    width: 100%;
    height: auto;
}

.landing-process {
    padding: 80px 0;
    background: var(--bg-light);
}

.landing-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.landing-process-title {
    font-size: 2.8rem;
    color: var(--primary);
}

.landing-process-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 10px auto 0;
}

.landing-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.landing-process-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.landing-process-step {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.2), rgba(212, 168, 75, 0.05));
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.landing-process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.landing-process-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Trust Strip */
.trust-strip {
    background: var(--primary);
    padding: 40px 0;
    color: var(--white);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.trust-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stars {
    color: var(--accent);
    font-size: 1.5rem;
}

.stars.small {
    font-size: 1.1rem;
}

.score {
    font-weight: 700;
    color: var(--text-light);
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.review-card::before {
    content: "G";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: #4285F4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-quote {
    font-style: italic;
    margin: 20px 0;
    color: var(--text-light);
}

.reviewer {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Services */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
}

/* Stats Section */
.stats {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

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

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-weight: 600;
    color: var(--text-light);
    margin-top: 10px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Service Area Tags */
.service-areas {
    padding: 40px 0 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-areas h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tag {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Team Gallery */
.team-gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.team-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
    padding: 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
}

.team-item:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-item:hover .team-img {
    transform: scale(1.05);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    padding: 40px 0 100px;
    text-align: center;
    background: var(--primary);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobile Sticky Bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 0 12px calc(env(safe-area-inset-bottom, 0) + 12px);
    box-shadow: none;
    z-index: 2000;
    display: none;
}

.btn-full {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* Responsive Styles */
@media (max-width: 991px) {

    .grid-4,
    .services-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-hero {
        min-height: auto;
        padding: 20px 0 68px;
    }

    .landing-hero .hero-content {
        text-align: left;
    }

    .landing-label {
        font-size: 0.74rem;
        padding: 9px 14px;
        letter-spacing: 0.04em;
    }

    .landing-hero h1 {
        max-width: 11ch;
        margin: 24px 0 16px;
        font-size: clamp(1.95rem, 7vw, 2.45rem);
    }

    .landing-lead {
        font-size: 1.08rem;
        max-width: 100%;
    }

    .landing-cta-group {
        margin-top: 22px;
    }

    .quote-fast-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
    }

    .quote-fast-button {
        width: 100%;
        justify-content: center;
    }

    .landing-callout,
    .landing-final-cta-button {
        width: 100%;
        min-width: 0;
        padding: 16px 18px;
        border-radius: 22px;
        justify-content: center;
    }

    .landing-callout-copy,
    .landing-final-cta-button .landing-callout-copy {
        align-items: center;
        text-align: center;
    }

    .landing-callout-copy-inline {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .phone-link {
        gap: 8px;
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .phone-link-desktop {
        display: none;
    }

    .phone-link-mobile {
        display: inline;
    }

    .landing-callout-copy span,
    .landing-final-cta-button .landing-callout-copy span {
        font-size: 1rem;
    }

    .landing-note {
        font-size: 0.96rem;
    }

    .landing-points li {
        padding: 16px;
    }

    .landing-point-kicker {
        font-size: 0.86rem;
    }

    .landing-point-copy strong {
        font-size: 0.98rem;
    }

    .landing-preview-card {
        margin-top: 22px;
        border-radius: 20px;
    }

    .landing-process {
        padding: 48px 0;
    }

    .landing-process-header {
        margin-bottom: 30px;
    }

    .landing-process-title {
        font-size: 2.15rem;
        line-height: 1.05;
    }

    .landing-process-subtitle {
        font-size: 1rem;
        margin-top: 8px;
    }

    .landing-process-grid {
        gap: 16px;
    }

    .landing-process-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .landing-process-step {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
        margin-bottom: 16px;
    }

    .landing-process-card h3 {
        font-size: 1.24rem;
        margin-bottom: 10px;
    }

    .landing-process-card p {
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .hero-v2 {
        min-height: auto;
        padding: 30px 0 70px;
    }

    .hero-bg-img {
        opacity: 0.3;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.7);
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .btn-hero {
        font-size: 1rem;
        padding: 12px 18px;
        gap: 8px;
        white-space: nowrap;
    }

    .btn-hero .phone-icon {
        width: 18px;
        height: 18px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
    }

    .stat-item {
        flex: 1 1 0;
        min-width: 0;
    }

    .stat-value {
        font-size: clamp(1.9rem, 6vw, 2.4rem);
        line-height: 1.05;
    }

    .stat-label {
        font-size: 0.9rem;
        line-height: 1.25;
    }

    .mobile-cta-bar {
        display: block;
    }

    .header-right .status-badge {
        display: none;
    }

    .sticky-header {
        padding: 15px 0;
    }

    .logo-img {
        height: 45px;
    }

    footer {
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    .landing-highlight {
        white-space: nowrap;
    }

    .landing-title-break {
        margin-top: 0.16em;
        white-space: nowrap;
    }

    .landing-label {
        width: auto;
        justify-content: flex-start;
        text-align: left;
        white-space: nowrap;
        font-size: 0.63rem;
        letter-spacing: 0.02em;
        padding: 8px 10px;
    }

    .landing-hero h1 {
        max-width: none;
        margin-top: 26px;
        font-size: 1.72rem;
        line-height: 0.98;
    }

    .landing-lead {
        max-width: 29ch;
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .landing-note {
        max-width: 28ch;
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .landing-callout,
    .landing-final-cta-button {
        gap: 14px;
    }

    .landing-callout-compact {
        justify-content: center;
        padding: 12px 14px;
    }

    .landing-callout-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .landing-callout-compact .landing-callout-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .landing-callout-copy strong {
        font-size: 0.9rem;
    }

    .landing-callout-copy-inline span {
        font-size: 0.95rem;
    }

    .quote-fast-copy h2 {
        font-size: 1.5rem;
    }

    .quote-fast-copy p,
    .quote-fast-button {
        font-size: 0.98rem;
    }

    .landing-callout-copy-inline {
        align-items: flex-start;
    }

    .landing-callout-copy span,
    .landing-final-cta-button .landing-callout-copy span {
        font-size: 1.45rem;
    }

    .team-gallery .section-header h2 {
        line-height: 1.02;
    }

    .landing-process {
        padding: 40px 0;
    }

    .landing-process-header {
        margin-bottom: 22px;
    }

    .landing-process-title {
        font-size: 1.9rem;
    }

    .landing-process-subtitle {
        font-size: 0.95rem;
    }

    .landing-process-grid {
        gap: 12px;
    }

    .landing-process-card {
        padding: 22px 16px;
    }

    .landing-process-step {
        width: 52px;
        height: 52px;
        font-size: 1.45rem;
        margin-bottom: 12px;
    }

    .landing-process-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .landing-process-card p {
        font-size: 0.94rem;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-v2 {
        padding: 20px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        margin-bottom: 16px;
    }

    .btn-hero {
        font-size: 0.92rem;
        padding: 10px 14px;
        border-radius: 10px;
    }
}
