:root {
    --agency-ink: #17202a;
    --agency-muted: #657080;
    --agency-line: #dfe5ec;
    --agency-soft: #f6f8fb;
    --agency-primary: #0f8b8d;
    --agency-primary-dark: #096c72;
    --agency-coral: #ff6b5f;
    --agency-gold: #ffb84d;
    --agency-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--agency-muted);
    background: var(--agency-white);
}

.agency-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(223, 229, 236, 0.8);
    backdrop-filter: blur(18px);
}

.agency-nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.agency-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.agency-logo img {
    width: 138px;
    height: 48px;
    object-fit: contain;
}

.agency-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.agency-menu a,
.agency-nav-cta,
.agency-text-link {
    color: var(--agency-ink);
    font-weight: 800;
    font-size: 15px;
}

.agency-menu a:hover,
.agency-text-link:hover {
    color: var(--agency-primary);
}

.agency-nav-cta,
.agency-btn,
.agency-price-card a,
.agency-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--agency-primary);
    color: var(--agency-white);
    font-weight: 900;
    transition: 0.2s ease;
}

.agency-nav-cta:hover,
.agency-btn-primary:hover,
.agency-price-card a:hover,
.agency-form button:hover {
    background: var(--agency-primary-dark);
    color: var(--agency-white);
    transform: translateY(-2px);
}

.agency-menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    border: 1px solid var(--agency-line);
    border-radius: 8px;
    background: var(--agency-white);
    color: var(--agency-ink);
}

.agency-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 72px;
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 184, 77, 0.24), transparent 28%),
        linear-gradient(135deg, #f9fbfd 0%, #eef7f6 52%, #fff5f1 100%);
}

.agency-hero-content h1,
.agency-section-head h2,
.agency-results h2,
.agency-contact h2 {
    color: var(--agency-ink);
    font-size: clamp(38px, 6vw, 74px);
    line-height: 1.02;
    letter-spacing: 0;
    margin: 14px 0 20px;
}

.agency-hero-content p,
.agency-section-head p,
.agency-results p,
.agency-contact p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
}

.agency-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--agency-primary-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.agency-eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--agency-coral);
}

.agency-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 32px 0;
}

.agency-btn-outline {
    background: var(--agency-white);
    color: var(--agency-ink);
    border-color: var(--agency-line);
}

.agency-btn-outline:hover {
    background: var(--agency-ink);
    color: var(--agency-white);
}

.agency-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 620px;
}

.agency-proof div {
    padding: 18px;
    border: 1px solid rgba(15, 139, 141, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.agency-proof strong {
    display: block;
    color: var(--agency-ink);
    font-size: 30px;
    line-height: 1;
}

.agency-proof span {
    display: block;
    margin-top: 8px;
    color: var(--agency-muted);
    font-size: 14px;
    line-height: 1.35;
}

.agency-hero-media {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.agency-hero-media::before {
    content: "";
    position: absolute;
    inset: auto 6% 0;
    height: 78%;
    border-radius: 8px;
    background: linear-gradient(150deg, var(--agency-primary), #17484f);
}

.agency-hero-person {
    position: relative;
    z-index: 2;
    max-height: 530px;
    width: min(92%, 470px);
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(23, 32, 42, 0.22));
}

.agency-dashboard,
.agency-lead-card {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(23, 32, 42, 0.16);
}

.agency-dashboard {
    top: 42px;
    left: 0;
    width: min(260px, 52vw);
    padding: 18px;
}

.agency-dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--agency-ink);
    font-weight: 900;
}

.agency-dashboard-head strong {
    color: var(--agency-primary);
}

.agency-chart {
    height: 145px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 10px;
    margin-top: 18px;
}

.agency-chart span {
    display: block;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--agency-coral), var(--agency-gold));
}

.agency-lead-card {
    right: 0;
    bottom: 74px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
}

.agency-lead-card i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(15, 139, 141, 0.12);
    color: var(--agency-primary);
}

.agency-lead-card strong,
.agency-lead-card span {
    display: block;
}

.agency-lead-card strong {
    color: var(--agency-ink);
}

.agency-brand-strip {
    padding: 24px 0;
    background: var(--agency-ink);
}

.agency-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    color: var(--agency-white);
    font-weight: 900;
    text-align: center;
}

.agency-section {
    padding: 104px 0;
}

.agency-section-head {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.agency-section-head .agency-eyebrow {
    justify-content: center;
}

.agency-service-card,
.agency-price-card,
.agency-process-step,
.agency-form,
.agency-quote {
    height: 100%;
    border: 1px solid var(--agency-line);
    border-radius: 8px;
    background: var(--agency-white);
    box-shadow: 0 18px 50px rgba(23, 32, 42, 0.06);
}

.agency-service-card {
    padding: 34px;
}

.agency-service-card i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 8px;
    background: rgba(15, 139, 141, 0.1);
    color: var(--agency-primary);
    font-size: 24px;
}

.agency-service-card h3,
.agency-case-card h3,
.agency-process-step h3,
.agency-price-card h3 {
    color: var(--agency-ink);
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.agency-service-card p,
.agency-process-step p,
.agency-price-card p {
    margin-bottom: 0;
    line-height: 1.65;
}

.agency-results,
.agency-pricing,
.agency-testimonial {
    background: var(--agency-soft);
}

.agency-results h2,
.agency-contact h2 {
    font-size: clamp(32px, 4vw, 54px);
}

.agency-case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.agency-case-card {
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    position: relative;
    border-radius: 8px;
    background: var(--agency-ink);
}

.agency-case-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agency-case-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(23, 32, 42, 0.88));
}

.agency-case-card div {
    position: relative;
    z-index: 2;
    padding: 26px;
}

.agency-case-card span {
    color: var(--agency-gold);
    font-weight: 900;
}

.agency-case-card h3 {
    color: var(--agency-white);
    margin: 8px 0 0;
}

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

.agency-process-step {
    padding: 28px;
}

.agency-process-step strong {
    display: block;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 8px;
    background: var(--agency-ink);
    color: var(--agency-white);
}

.agency-price-card {
    padding: 34px;
}

.agency-price-card.is-featured {
    border-color: rgba(15, 139, 141, 0.4);
    background: linear-gradient(180deg, #ffffff 0%, #eef9f7 100%);
}

.agency-price-card strong {
    display: block;
    color: var(--agency-ink);
    font-size: 42px;
    line-height: 1;
    margin: 26px 0;
}

.agency-price-card strong span {
    color: var(--agency-muted);
    font-size: 16px;
}

.agency-price-card ul {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.agency-price-card li {
    display: flex;
    gap: 10px;
    color: var(--agency-ink);
    font-weight: 700;
}

.agency-price-card li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    color: var(--agency-primary);
}

.agency-quote {
    max-width: 920px;
    margin: 0 auto;
    padding: 42px;
}

.agency-quote > i {
    color: var(--agency-coral);
    font-size: 34px;
    margin-bottom: 20px;
}

.agency-quote p {
    color: var(--agency-ink);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.25;
    font-weight: 900;
}

.agency-quote div {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}

.agency-quote img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.agency-quote span,
.agency-quote strong {
    display: block;
}

.agency-contact-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.agency-contact-list a {
    color: var(--agency-ink);
    font-weight: 800;
}

.agency-contact-list i {
    width: 32px;
    color: var(--agency-primary);
}

.agency-form {
    padding: 34px;
}

.agency-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--agency-ink);
    font-weight: 900;
}

.agency-form input,
.agency-form select,
.agency-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid var(--agency-line);
    border-radius: 8px;
    background: var(--agency-soft);
    color: var(--agency-ink);
    outline: none;
}

.agency-form textarea {
    resize: vertical;
}

.agency-form input:focus,
.agency-form select:focus,
.agency-form textarea:focus {
    border-color: var(--agency-primary);
    background: var(--agency-white);
}

.agency-form button {
    width: 100%;
    min-height: 54px;
}

.agency-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.agency-footer {
    padding: 56px 0 24px;
    background: var(--agency-ink);
    color: rgba(255, 255, 255, 0.72);
}

.agency-footer-grid,
.agency-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.agency-footer .agency-logo img {
    background: var(--agency-white);
    border-radius: 8px;
    padding: 4px;
}

.agency-footer p {
    max-width: 500px;
    margin: 0;
}

.agency-socials {
    display: flex;
    gap: 10px;
}

.agency-socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--agency-white);
}

.agency-socials a:hover {
    background: var(--agency-primary);
    color: var(--agency-white);
}

.agency-copyright {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.agency-copyright a {
    color: var(--agency-white);
    font-weight: 800;
}

@media (max-width: 1199px) {
    .agency-menu {
        gap: 20px;
    }

    .agency-hero-media {
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    .agency-nav {
        min-height: 76px;
    }

    .agency-menu-toggle {
        display: grid;
    }

    .agency-menu {
        position: absolute;
        top: 76px;
        left: 12px;
        right: 12px;
        display: none;
        padding: 16px;
        border: 1px solid var(--agency-line);
        border-radius: 8px;
        background: var(--agency-white);
        box-shadow: 0 20px 50px rgba(23, 32, 42, 0.12);
    }

    .agency-menu.is-open {
        display: grid;
    }

    .agency-nav-cta {
        display: none;
    }

    .agency-hero {
        padding-top: 72px;
    }

    .agency-proof,
    .agency-strip-grid,
    .agency-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agency-section {
        padding: 76px 0;
    }
}

@media (max-width: 767px) {
    .agency-hero-content h1,
    .agency-section-head h2,
    .agency-results h2,
    .agency-contact h2 {
        font-size: 38px;
    }

    .agency-hero-content p,
    .agency-section-head p,
    .agency-results p,
    .agency-contact p {
        font-size: 16px;
    }

    .agency-proof,
    .agency-strip-grid,
    .agency-case-grid,
    .agency-process-grid {
        grid-template-columns: 1fr;
    }

    .agency-hero-media {
        min-height: 460px;
    }

    .agency-dashboard {
        top: 12px;
        left: 8px;
        width: 220px;
    }

    .agency-lead-card {
        right: 8px;
        bottom: 36px;
    }

    .agency-case-card {
        min-height: 340px;
    }

    .agency-footer-grid,
    .agency-copyright {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .agency-logo img {
        width: 124px;
    }

    .agency-actions {
        display: grid;
    }

    .agency-btn {
        width: 100%;
    }

    .agency-hero {
        padding-top: 52px;
    }

    .agency-hero-media {
        min-height: 390px;
    }

    .agency-hero-person {
        width: 100%;
    }

    .agency-dashboard {
        width: 190px;
        padding: 14px;
    }

    .agency-chart {
        height: 96px;
        gap: 7px;
    }

    .agency-lead-card {
        max-width: 210px;
        padding: 12px;
    }

    .agency-service-card,
    .agency-price-card,
    .agency-process-step,
    .agency-form,
    .agency-quote {
        padding: 24px;
    }
}
