/* Lighter font-weight for headings, nav, footer, and body text */
h1, h2, h3, h4, h5, h6, .footer-col h3, .section-title, .main-nav a, .main-nav .nav-link-active {
    font-weight: 400 !important;
}
body, p, a, li, span, label, input, button, select, textarea, .footer-brand p, .footer-col p, .footer-col a {
    font-weight: 300 !important;
}
.contact-whatsapp-box {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.contact-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eaf3d8;
    border-radius: 18px;
    padding: 7px 16px 7px 7px;
    color: #1a2a1a;
    font-weight: 500;
    font-size: 1.01rem;
    box-shadow: 0 2px 10px rgba(37,211,102,0.08);
    border: 1.5px solid #d2f5c8;
    transition: box-shadow 0.18s, border-color 0.18s, background 0.18s;
    text-decoration: none;
}
.contact-whatsapp-link:hover {
    background: #d2f5c8;
    border-color: #25D366;
    box-shadow: 0 6px 18px rgba(37,211,102,0.16);
}
.contact-whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}
.contact-whatsapp-link strong {
    color: #25D366;
    font-weight: 700;
    font-size: 1.08em;
}
@media (max-width: 700px) {
    .contact-whatsapp-box {
        margin-top: 12px;
    }
    .contact-whatsapp-link {
        font-size: 0.98rem;
        padding: 6px 10px 6px 6px;
    }
    .contact-whatsapp-icon {
        width: 22px;
        height: 22px;
    }
}
/* WhatsApp Floating Chat Button */
.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1000;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(37,211,102,0.18);
    transition: box-shadow 0.18s, transform 0.18s;
    cursor: pointer;
    text-decoration: none;
}
.whatsapp-float:hover {
    box-shadow: 0 12px 32px rgba(37,211,102,0.28);
    transform: scale(1.08) translateY(-2px);
}
.whatsapp-float-icon {
    width: 56px;
    height: 56px;
    display: block;
}
@media (max-width: 700px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }
    .whatsapp-float-icon {
        width: 42px;
        height: 42px;
    }
}
.why-choose-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 0 0 0 18px;
    background: linear-gradient(135deg, #f7f8f2 60%, #eaf3d8 100%);
    border-radius: 28px;
    box-shadow: 0 8px 48px rgba(60,80,40,0.10);
    transition: box-shadow 0.22s;
}
.why-choose-img {
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(60,80,40,0.13);
    max-width: 380px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f7f8f2;
    border: 2px solid #e6e9e2;
    transition: box-shadow 0.22s, transform 0.22s;
    display: block;
}
.why-choose-img:hover {
    box-shadow: 0 18px 64px rgba(60,80,40,0.18);
    transform: scale(1.018) translateY(-3px);
}

@media (max-width: 900px) {
    .why-choose-img-wrap {
        min-height: 140px;
        padding: 0;
        border-radius: 16px;
    }
    .why-choose-img {
        max-width: 220px;
        height: 110px;
        border-radius: 12px;
    }
}

@media (max-width: 700px) {
    .why-choose-img-wrap {
        min-height: 60px;
        margin-top: 18px;
        justify-content: flex-start;
        border-radius: 8px;
    }
    .why-choose-img {
        max-width: 100%;
        height: 60px;
        border-radius: 8px;
    }
}
/* Hero Section Animation and Responsive Image Hide (for all service pages except contact) */
.hero-animate {
    opacity: 0;
    transform: translateY(28px);
    animation: heroFadeLift 0.8s cubic-bezier(0.22,0.68,0.36,1) forwards;
}
.hero-animate:nth-child(1) { animation-delay: 0.08s; }
.hero-animate:nth-child(2) { animation-delay: 0.18s; }
.hero-animate:nth-child(3) { animation-delay: 0.32s; }
.hero-animate:nth-child(4) { animation-delay: 0.44s; }

@keyframes heroFadeLift {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Match hero heading/text size to index.html */
.service-hero h1, .service-hero .hero-animate h1 {
    margin: 24px 0 18px;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.service-hero .service-hero-copy, .service-hero .hero-animate .service-hero-copy {
    max-width: 610px;
    margin: 0 0 30px;
    color: rgba(38, 48, 40, 0.7);
    font-size: 0.93rem;
    line-height: 1.7;
}
.service-hero .service-kicker, .service-hero .hero-animate .service-kicker {
    color: #74a531;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.5em;
}

@media (max-width: 700px) {
    /* Hide hero image/art on mobile for all service pages except contact */
    .about-hero-image-premium,
    .service-hero-art,
    .hero-visual,
    .accounting-hero-image,
    .tax-hero-art,
    .advisory-hero-image,
    .it-hero-visual {
        display: none !important;
    }
    .service-hero h1, .service-hero .hero-animate h1 {
        font-size: 2rem;
    }
    .service-hero .service-hero-copy, .service-hero .hero-animate .service-hero-copy {
        font-size: 0.98rem;
    }
}
.about-hero-shape-square {
    /* ...existing code... */
    animation: floatSquare 4.5s ease-in-out infinite alternate;
}
.about-hero-shape-circle {
    /* ...existing code... */
    animation: floatCircle 5.2s ease-in-out infinite alternate;
}

@keyframes floatSquare {
    0% { transform: translateY(0) scale(1) rotate(-2deg); }
    50% { transform: translateY(-16px) scale(1.06) rotate(4deg); }
    100% { transform: translateY(0) scale(1) rotate(-2deg); }
}

@keyframes floatCircle {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(10px) scale(1.09) rotate(8deg); }
    100% { transform: translateY(0) scale(1) rotate(0deg); }
}
.about-hero-img-shapes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.about-hero-shape {
    position: absolute;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.22s;
}
.about-hero-shape-square {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #74a531 0%, #eaf3d8 100%);
    border-radius: 18px;
    top: 18px;
    left: -38px;
    box-shadow: 0 8px 32px rgba(116,165,49,0.10);
}
.about-hero-shape-circle {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #ff9000 0%, #ffe5b2 100%);
    border-radius: 50%;
    bottom: 18px;
    right: -28px;
    box-shadow: 0 4px 18px rgba(255,144,0,0.10);
}
.about-hero-image-premium {
    position: relative;
    /* ...existing code... */
}

@media (max-width: 900px) {
    .about-hero-shape-square {
        width: 54px;
        height: 54px;
        top: 8px;
        left: -18px;
    }
    .about-hero-shape-circle {
        width: 32px;
        height: 32px;
        bottom: 8px;
        right: -10px;
    }
}
@media (max-width: 700px) {
    .about-hero-shape-square {
        width: 28px;
        height: 28px;
        top: 2px;
        left: -8px;
    }
    .about-hero-shape-circle {
        width: 16px;
        height: 16px;
        bottom: 2px;
        right: -4px;
    }
}
.about-hero-image-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 0 0 0 18px;
    background: linear-gradient(135deg, #f7f8f2 60%, #eaf3d8 100%);
    border-radius: 32px;
    box-shadow: 0 8px 48px rgba(60,80,40,0.10);
    transition: box-shadow 0.22s;
}
.about-hero-image-premium-img {
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(60,80,40,0.13);
    max-width: 440px;
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: #f7f8f2;
    border: 2.5px solid #e6e9e2;
    transition: box-shadow 0.22s, transform 0.22s;
    display: block;
}
.about-hero-image-premium-img:hover {
    box-shadow: 0 18px 64px rgba(60,80,40,0.18);
    transform: scale(1.018) translateY(-3px);
}

@media (max-width: 900px) {
    .about-hero-image-premium {
        min-height: 180px;
        padding: 0;
        border-radius: 18px;
    }
    .about-hero-image-premium-img {
        max-width: 320px;
        height: 160px;
        border-radius: 18px;
    }
}

@media (max-width: 700px) {
    .about-hero-image-premium {
        min-height: 100px;
        margin-top: 28px;
        justify-content: flex-start;
        border-radius: 12px;
    }
    .about-hero-image-premium-img {
        max-width: 100%;
        height: 100px;
        border-radius: 12px;
    }
}
.about-hero-image-geo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 0 0 0 18px;
}

.about-hero-img-geo-wrap {
    position: relative;
    display: inline-block;
    max-width: 420px;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(60,80,40,0.13);
    background: #f7f8f2;
}

.about-hero-image-geo-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    background: #f7f8f2;
    transition: box-shadow 0.22s, transform 0.22s;
}
.about-hero-img-geo-wrap:hover .about-hero-image-geo-img {
    box-shadow: 0 24px 64px rgba(60,80,40,0.18);
    transform: scale(1.025) translateY(-4px);
}

.about-hero-geo-svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.about-hero-geo-logo {
    position: absolute;
    top: 18px;
    right: 32px;
    z-index: 3;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    padding: 10px 12px 8px 12px;
    box-shadow: 0 2px 12px rgba(255,144,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero-geo-logo img {
    width: 48px;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .about-hero-image-geo {
        min-height: 220px;
        padding: 0;
    }
    .about-hero-img-geo-wrap {
        max-width: 320px;
        border-radius: 18px;
    }
    .about-hero-image-geo-img {
        height: 180px;
        border-radius: 18px;
    }
    .about-hero-geo-logo {
        top: 10px;
        right: 12px;
        padding: 7px 8px 6px 8px;
    }
    .about-hero-geo-logo img {
        width: 32px;
    }
}

@media (max-width: 700px) {
    .about-hero-image-geo {
        min-height: 120px;
        margin-top: 28px;
        justify-content: flex-start;
    }
    .about-hero-img-geo-wrap {
        max-width: 100%;
        border-radius: 12px;
    }
    .about-hero-image-geo-img {
        height: 120px;
        border-radius: 12px;
    }
    .about-hero-geo-logo {
        top: 4px;
        right: 4px;
        padding: 4px 5px 3px 5px;
    }
    .about-hero-geo-logo img {
        width: 22px;
    }
}
/* Bookkeeping Features Row (No Box) */
.about-hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 0 0 0 18px;
}

.about-hero-image {
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(60,80,40,0.13);
    max-width: 480px;
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #f7f8f2;
    transition: box-shadow 0.22s, transform 0.22s;
}
.about-hero-image:hover {
    box-shadow: 0 24px 64px rgba(60,80,40,0.18);
    transform: scale(1.025) translateY(-4px);
}

@media (max-width: 900px) {
    .about-hero-image-wrap {
        min-height: 220px;
        padding: 0;
    }
    .about-hero-image {
        max-width: 320px;
    }
}

@media (max-width: 700px) {
    .about-hero-image-wrap {
        min-height: 160px;
        margin-top: 28px;
        justify-content: flex-start;
    }
    .about-hero-image {
        max-width: 100%;
        border-radius: 18px;
    }
}
.bookkeeping-features-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    margin: 38px auto 32px auto;
    flex-wrap: nowrap;
    width: auto;
    max-width: none;
}
@media (max-width: 700px) {
    .bookkeeping-features-row {
        flex-wrap: wrap;
        gap: 28px;
    }
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: 160px;
    max-width: 220px;
}
.feature-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 16px;
    background: none;
    box-shadow: none;
}
.feature-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #223323;
    text-align: center;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.01em;
}
.value-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin: 48px 0 0 0;
    flex-wrap: wrap;
}
.value-card.small-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(116, 165, 49, 0.10);
    padding: 32px 22px 22px 22px;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.22s, transform 0.22s;
    margin: 0 8px;
}
.value-card.small-card:hover {
    box-shadow: 0 16px 48px rgba(116, 165, 49, 0.18);
    transform: translateY(-6px) scale(1.04);
}
.value-icon-square {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f7fbe9 0%, #eaf3d8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(116, 165, 49, 0.10);
    transition: box-shadow 0.18s, transform 0.18s;
}
.value-card.small-card:hover .value-icon-square {
    box-shadow: 0 8px 24px rgba(116, 165, 49, 0.16);
    transform: scale(1.08);
}
.value-icon-square .icon {
    width: 32px;
    height: 32px;
    color: var(--brand-strong);
}
.value-card.small-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #5b8d18;
    margin: 0;
    margin-top: 8px;
    text-align: center;
    letter-spacing: 0.01em;
}
@media (max-width: 900px) {
    .value-grid {
        gap: 18px;
    }
    .value-card.small-card {
        min-width: 140px;
        padding: 22px 8px 16px 8px;
    }
    .value-icon-square {
        width: 44px;
        height: 44px;
    }
    .value-icon-square .icon {
        width: 22px;
        height: 22px;
    }
    .value-card.small-card h3 {
        font-size: 0.98rem;
    }
}
.value-icon-square {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f8f2;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(116, 165, 49, 0.10);
    transition: box-shadow 0.18s, transform 0.18s;
}
.value-icon-square .icon {
    width: 28px;
    height: 28px;
    color: var(--brand-strong);
}
.value-card.small-card {
    padding: 18px 10px 14px 10px;
    min-width: 0;
    max-width: 220px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(116, 165, 49, 0.07);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.18s, transform 0.18s;
}
.value-card.small-card h3 {
    font-size: 1.01rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #1a2a1a;
}
.value-card.small-card:hover {
    box-shadow: 0 8px 24px rgba(116, 165, 49, 0.16);
    transform: scale(1.04) translateY(-2px);
}
:root {
    --bg-soft: #eef2ea;
    --bg-cream: #f7f8f2;
    --text: #263028;
    --muted: #6e756f;
    --dark: #25282b;
    --dark-soft: #303538;
    --brand: #74a531;
    --brand-strong: #5b8d18;
    --line: #dfe5d8;
    --white: #ffffff;
    --shadow: 0 14px 34px rgba(33, 43, 28, 0.11);
    --radius: 24px;
    --container: min(1120px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fafbf7 0%, #eef3ea 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 8;
    background: rgba(22, 28, 23, 0.16);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

body.nav-open::before {
    opacity: 1;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(116, 165, 49, 0.1);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-logo-large {
    width: 180px;
    height: auto;
}

.brand-text {
    min-width: 0;
}

.brand-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
}

.brand-subtitle {
    display: block;
    margin-top: 3px;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    color: var(--muted);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    font-size: 0.95rem;
    color: #4b524c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 11px;
    border: 1px solid rgba(116, 165, 49, 0.28);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #223127;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-cta {
    display: none;
}

.main-nav a {
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
    transform: scaleX(1);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.is-open .nav-caret {
    transform: rotate(225deg) translateY(-1px);
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 30;
    width: min(390px, 82vw);
    padding: 16px;
    border: 1px solid rgba(116, 165, 49, 0.16);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 242, 0.98) 100%);
    box-shadow: 0 28px 60px rgba(31, 44, 18, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-submenu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 18px;
    height: 18px;
    border-top: 1px solid rgba(116, 165, 49, 0.16);
    border-left: 1px solid rgba(116, 165, 49, 0.16);
    background: rgba(255, 255, 255, 0.98);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-submenu-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px;
    border-radius: 22px;
    color: #1b2a1e;
    transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.nav-submenu-item + .nav-submenu-item {
    margin-top: 8px;
}

.nav-submenu-item strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 600;
}

.nav-submenu-item small {
    display: block;
    margin-top: 6px;
    color: #637164;
    font-size: 0.75rem;
    line-height: 1.6;
}

.nav-submenu-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: var(--brand-strong);
    background: linear-gradient(135deg, rgba(116, 165, 49, 0.18) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: inset 0 0 0 1px rgba(116, 165, 49, 0.12);
}

.nav-submenu-item:hover,
.nav-submenu-item:focus-visible,
.nav-submenu-item-active {
    background: linear-gradient(135deg, rgba(116, 165, 49, 0.14) 0%, rgba(116, 165, 49, 0.06) 100%);
    color: #172319;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(95, 130, 44, 0.12);
}

.nav-submenu-item:hover small,
.nav-submenu-item:focus-visible small,
.nav-submenu-item-active small {
    color: #526153;
}

.nav-submenu-item:hover .nav-submenu-icon,
.nav-submenu-item:focus-visible .nav-submenu-icon,
.nav-submenu-item-active .nav-submenu-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #85b93a 0%, #5e8f19 100%);
    box-shadow: 0 14px 24px rgba(94, 143, 25, 0.24);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.main-nav a.nav-link-active,
.nav-dropdown-toggle.nav-link-active {
    color: var(--brand-strong);
}

.main-nav a.nav-link-active::after,
.nav-dropdown-toggle.nav-link-active::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(180deg, #82b537 0%, #679820 100%);
    color: var(--white);
    box-shadow: 0 14px 24px rgba(91, 141, 24, 0.26);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 22%, rgba(116, 165, 49, 0.16), transparent 24%),
        radial-gradient(circle at 80% 32%, rgba(153, 224, 72, 0.12), transparent 28%),
        linear-gradient(180deg, #262a2c 0%, #212426 100%);
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -110px;
    height: 230px;
    background:
        radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.16), transparent 24%),
        radial-gradient(circle at 55% 50%, rgba(255, 255, 255, 0.14), transparent 28%),
        radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.12), transparent 22%);
    filter: blur(26px);
    opacity: 0.38;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
    min-height: 660px;
    padding: 76px 0 122px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    margin: 24px 0 18px;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero h1 .accent {
    color: #91cf39;
}

.hero p {
    max-width: 610px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.93rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    min-height: 480px;
}

.glow-orb,
.gear,
.leaf,
.person,
.chat-bubble,
.desk,
.screen {
    position: absolute;
}

.glow-orb {
    inset: 70px 30px 70px 30px;
    border-radius: 40px;
    background: radial-gradient(circle at 50% 50%, rgba(169, 237, 76, 0.4), rgba(74, 124, 186, 0.08) 55%, transparent 76%);
    filter: blur(8px);
}

.screen {
    top: 92px;
    left: 68px;
    right: 58px;
    height: 245px;
    border-radius: 24px;
    padding: 16px;
    background: linear-gradient(180deg, #3b87f2 0%, #2f5ab3 100%);
    box-shadow: 0 24px 38px rgba(5, 10, 18, 0.45);
    transform: perspective(920px) rotateY(-13deg) rotateX(5deg);
}

.screen::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #c7f3ff 0%, #d1f5bf 44%, #7edbff 100%);
}

.screen::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -62px;
    width: 176px;
    height: 92px;
    background: linear-gradient(180deg, #2e4369 0%, #161d26 100%);
    clip-path: polygon(24% 0%, 76% 0%, 100% 100%, 0% 100%);
    transform: translateX(-50%);
}

.desk {
    left: 110px;
    right: 102px;
    bottom: 44px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, #253750 0%, #1a222b 100%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.person {
    width: 108px;
    height: 190px;
    bottom: 116px;
    z-index: 2;
}

.person-left {
    left: 138px;
}

.person-right {
    right: 138px;
}

.person .head {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1b2f46;
    margin: 0 auto;
}

.person .body {
    width: 58px;
    height: 72px;
    margin: 8px auto 0;
    border-radius: 20px 20px 16px 16px;
    background: linear-gradient(180deg, #9ee33d 0%, #7bb82f 100%);
}

.person .legs {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 68px;
    height: 88px;
    transform: translateX(-50%);
}

.person .legs::before,
.person .legs::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 18px;
    height: 88px;
    border-radius: 12px;
    background: #23344f;
}

.person .legs::before {
    left: 10px;
    transform: rotate(8deg);
}

.person .legs::after {
    right: 10px;
    transform: rotate(-10deg);
}

.person-left .arm,
.person-right .arm {
    position: absolute;
    top: 62px;
    width: 54px;
    height: 16px;
    border-radius: 999px;
    background: #c6f061;
}

.person-left .arm {
    right: -6px;
    transform: rotate(20deg);
}

.person-right .arm {
    left: -4px;
    transform: rotate(-20deg);
}

.leaf {
    width: 86px;
    height: 126px;
    border-radius: 60% 10% 60% 10%;
    background: linear-gradient(180deg, #355ea7 0%, #29457b 100%);
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.24));
}

.leaf-left {
    left: 54px;
    bottom: 72px;
    transform: rotate(24deg);
}

.leaf-right {
    right: 34px;
    bottom: 72px;
    transform: rotate(-26deg);
}

.gear {
    width: 88px;
    height: 88px;
    right: 8px;
    top: 106px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #daff84 0 32%, transparent 33%),
        conic-gradient(from 0deg, #9ddf42 0deg 28deg, transparent 28deg 46deg, #9ddf42 46deg 74deg, transparent 74deg 92deg, #9ddf42 92deg 120deg, transparent 120deg 138deg, #9ddf42 138deg 166deg, transparent 166deg 184deg, #9ddf42 184deg 212deg, transparent 212deg 230deg, #9ddf42 230deg 258deg, transparent 258deg 276deg, #9ddf42 276deg 304deg, transparent 304deg 322deg, #9ddf42 322deg 350deg, transparent 350deg 360deg);
    box-shadow: 0 0 24px rgba(157, 223, 66, 0.32);
}

.chat-bubble {
    top: 52px;
    right: 118px;
    width: 88px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-home .eyebrow,
.hero-home h1,
.hero-home p,
.hero-home .hero-actions {
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeLift 0.8s ease forwards;
}

.hero-home .eyebrow {
    animation-delay: 0.08s;
}

.hero-home h1 {
    animation-delay: 0.2s;
}

.hero-home p {
    animation-delay: 0.34s;
}

.hero-home .hero-actions {
    animation-delay: 0.48s;
}

.hero-home .hero-actions .btn {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeLift 0.7s ease forwards;
}

.hero-home .hero-actions .btn:first-child {
    animation-delay: 0.56s;
}

.hero-home .hero-actions .btn:last-child {
    animation-delay: 0.68s;
}

.hero-home .glow-orb {
    animation: heroGlowPulse 6s ease-in-out infinite;
}

.hero-home .screen {
    animation: heroScreenFloat 7.2s ease-in-out infinite;
    transform-origin: center center;
}

.hero-home .chat-bubble {
    animation: heroFloatSoft 4.8s ease-in-out infinite;
}

.hero-home .gear {
    animation: heroGearSpin 16s linear infinite;
}

.hero-home .leaf-left {
    animation: heroLeafDriftLeft 5.8s ease-in-out infinite;
}

.hero-home .leaf-right {
    animation: heroLeafDriftRight 6.4s ease-in-out infinite;
}

.hero-home .person-left {
    animation: heroCharacterBobLeft 5.6s ease-in-out infinite;
}

.hero-home .person-right {
    animation: heroCharacterBobRight 5.6s ease-in-out infinite 0.28s;
}

@keyframes heroFadeLift {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlowPulse {
    0%,
    100% {
        transform: scale(0.98);
        opacity: 0.72;
        filter: blur(8px);
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
        filter: blur(12px);
    }
}

@keyframes heroScreenFloat {
    0%,
    100% {
        transform: perspective(920px) rotateY(-13deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: perspective(920px) rotateY(-11deg) rotateX(4deg) translateY(-10px);
    }
}

@keyframes heroFloatSoft {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes heroGearSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes heroLeafDriftLeft {
    0%,
    100% {
        transform: rotate(24deg) translateY(0);
    }
    50% {
        transform: rotate(20deg) translateY(-12px);
    }
}

@keyframes heroLeafDriftRight {
    0%,
    100% {
        transform: rotate(-26deg) translateY(0);
    }
    50% {
        transform: rotate(-22deg) translateY(-10px);
    }
}

@keyframes heroCharacterBobLeft {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

@keyframes heroCharacterBobRight {
    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }
    50% {
        transform: translateY(-9px) rotate(-1deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-home .eyebrow,
    .hero-home h1,
    .hero-home p,
    .hero-home .hero-actions,
    .hero-home .hero-actions .btn,
    .hero-home .glow-orb,
    .hero-home .screen,
    .hero-home .chat-bubble,
    .hero-home .gear,
    .hero-home .leaf-left,
    .hero-home .leaf-right,
    .hero-home .person-left,
    .hero-home .person-right {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.section {
    padding: 92px 0;
}

.section-light {
    background: var(--bg-cream);
}

.section-alt {
    background: linear-gradient(180deg, #f8faf6 0%, #eef3eb 100%);
}

.section-header {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--brand-strong);
    text-transform: none;
    letter-spacing: 0.01em;
}

.section-copy {
    margin: 20px 0 0;
    color: #788078;
    line-height: 1.88;
    font-size: 0.96rem;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(116, 165, 49, 0.12);
    border-radius: 18px;
    padding: 26px 24px 22px;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(33, 43, 28, 0.15);
}

.service-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7fbef 0%, #edf6dd 100%);
    color: var(--brand-strong);
}

.service-card h3 {
    margin: 0;
    color: var(--brand-strong);
    font-size: 1.28rem;
    font-weight: 600;
}

.service-card p {
    margin: 12px 0 20px;
    color: #7b817a;
    line-height: 1.76;
    font-size: 0.9rem;
    font-weight: 400;
}

.service-card .btn {
    padding: 11px 18px;
    font-size: 0.88rem;
}

/* ─── Redesigned Services Section ─────────────────────────── */
.svc-section {
    padding: 82px 0;
    background:
        radial-gradient(circle at top center, rgba(116, 165, 49, 0.08) 0%, transparent 34%),
        linear-gradient(180deg, #f8fbf4 0%, #eef4e8 100%);
    position: relative;
    overflow: hidden;
}

.svc-section::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(116, 165, 49, 0.09) 0%, transparent 68%);
    pointer-events: none;
}

.svc-section .section-header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.svc-section .section-title {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    color: #203119;
    letter-spacing: 0;
}

.svc-section .section-copy {
    max-width: 700px;
    margin: 14px auto 0;
    color: #677160;
    font-size: 0.97rem;
    line-height: 1.85;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 940px;
    margin: 0 auto;
    align-items: stretch;
}

.svc-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px 20px 20px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(24, 42, 14, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    border: 1px solid rgba(116, 165, 49, 0.12);
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 42px rgba(24, 42, 14, 0.12);
    border-color: rgba(116, 165, 49, 0.24);
}

.svc-card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.svc-card-top::before {
    display: none;
}

.svc-card-top::after {
    display: none;
}

.svc-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
    display: grid;
    place-items: center;
    flex: 0 0 56px;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(116, 165, 49, 0.22);
}

.svc-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.svc-num {
    display: none;
}

.svc-card-body {
    padding: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.svc-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.12rem;
    font-weight: 700;
    color: #203119;
    line-height: 1.35;
}

.svc-card-body p {
    margin: 0 0 14px;
    color: #6d7669;
    font-size: 0.86rem;
    line-height: 1.68;
    flex: 1 1 auto;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--brand-strong);
    transition: gap 0.22s ease, color 0.22s ease;
    margin-top: auto;
}

.svc-link:hover { gap: 14px; }

.svc-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    transition: transform 0.22s ease;
}

.svc-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 860px) {
    .svc-section .section-header {
        margin-bottom: 28px;
    }

    .svc-section .section-title {
        font-size: clamp(1.82rem, 7vw, 2.3rem);
    }

    .svc-section .section-copy {
        max-width: 620px;
        font-size: 0.92rem;
        line-height: 1.74;
    }

    .svc-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        gap: 16px;
    }

    .svc-card {
        padding: 20px 18px 18px;
    }
}

@media (max-width: 560px) {
    .svc-section {
        padding: 52px 0;
    }
    .svc-section .section-header {
        margin-bottom: 22px;
    }
    .svc-section .section-title {
        font-size: 1.95rem;
        line-height: 1.02;
    }
    .svc-section .section-copy {
        font-size: 0.88rem;
        line-height: 1.68;
        margin-top: 10px;
    }
    .svc-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        flex: 0 0 48px;
    }
    .svc-icon-wrap svg {
        width: 23px;
        height: 23px;
    }
    .svc-card {
        padding: 18px 16px 16px;
        border-radius: 18px;
    }
    .svc-card-body h3 {
        font-size: 1rem;
        margin-bottom: 7px;
    }
    .svc-card-body p {
        font-size: 0.82rem;
        line-height: 1.62;
        margin-bottom: 12px;
    }
    .svc-link {
        font-size: 0.82rem;
    }
}
/* ─────────────────────────────────────────────────────────── */

.cta-band {
    background: linear-gradient(90deg, #679820 0%, #557d1e 100%);
    color: var(--white);
    padding: 38px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-inner h2 {
    margin: 0 0 10px;
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.82rem, 2.7vw, 2.45rem);
    font-weight: 500;
}

.cta-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    font-weight: 400;
}

.cta-band-home {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    margin: 16px auto 0;
    width: min(1120px, calc(100% - 48px));
    background:
        radial-gradient(circle at 84% 20%, rgba(220, 248, 167, 0.2) 0%, transparent 36%),
        radial-gradient(circle at 10% 100%, rgba(255, 255, 255, 0.12) 0%, transparent 34%),
        linear-gradient(128deg, #5f941c 0%, #4d7f1a 54%, #3f6f15 100%);
    box-shadow: 0 24px 50px rgba(35, 59, 16, 0.24);
}

.cta-band-home::before {
    content: "";
    position: absolute;
    right: -48px;
    top: -34px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid rgba(230, 246, 202, 0.22);
}

.cta-band-home .cta-inner {
    min-height: 170px;
    position: relative;
    z-index: 1;
}

.cta-band-home .cta-inner h2 {
    margin-bottom: 12px;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 20px rgba(18, 36, 7, 0.26);
}

.cta-band-home .cta-inner p {
    max-width: 630px;
    font-size: 1.04rem;
    color: rgba(245, 252, 234, 0.95);
}

.cta-band-home .btn {
    border-color: rgba(238, 250, 212, 0.78);
    color: #f5fbe8;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3px);
    padding: 15px 28px;
    font-weight: 700;
}

.cta-band-home .btn:hover {
    color: #365d12;
    background: #f2f9dd;
    border-color: #f2f9dd;
}

.cta-panel,
.about-appointment {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 84% 20%, rgba(220, 248, 167, 0.2) 0%, transparent 36%),
        radial-gradient(circle at 10% 100%, rgba(255, 255, 255, 0.12) 0%, transparent 34%),
        linear-gradient(128deg, #5f941c 0%, #4d7f1a 54%, #3f6f15 100%);
    box-shadow: 0 24px 50px rgba(35, 59, 16, 0.24);
}

.cta-panel::before,
.about-appointment::before {
    content: "";
    position: absolute;
    right: -48px;
    top: -34px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid rgba(230, 246, 202, 0.22);
}

.cta-panel > *,
.about-appointment > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2,
.about-appointment h2 {
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 20px rgba(18, 36, 7, 0.26);
}

.cta-panel p,
.about-appointment p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.04rem;
    color: rgba(245, 252, 234, 0.95);
}

.cta-panel .btn,
.about-appointment .btn {
    border-color: rgba(238, 250, 212, 0.78);
    color: #f5fbe8;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3px);
    padding: 15px 28px;
    font-weight: 700;
}

.cta-panel .btn:hover,
.about-appointment .btn:hover {
    color: #365d12;
    background: #f2f9dd;
    border-color: #f2f9dd;
}

.why-grid {
    display: grid;
    gap: 42px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    text-align: center;
    padding: 16px;
}

.feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #f5faeb 0%, #e8f2d8 100%);
    color: var(--brand-strong);
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    color: var(--brand-strong);
}

.feature-card .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
}


.client-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 22px 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.client-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(60,80,40,0.10));
    background: #fff;
    border-radius: 10px;
    padding: 4px 12px;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(60,80,40,0.08);
}
.client-logo:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(60,80,40,0.16);
}

.why-section-home {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf7 100%);
}

.why-section-home::before,
.why-section-home::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.why-section-home::before {
    top: -160px;
    right: 5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(116, 165, 49, 0.07) 0%, transparent 70%);
}

.why-section-home::after {
    left: -120px;
    bottom: -140px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(116, 165, 49, 0.06) 0%, transparent 68%);
}

.why-section-home .why-grid {
    position: relative;
    z-index: 1;
    gap: 48px;
    display: grid;
    grid-template-columns: 1fr;
}

.why-header-top {
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
}

.why-header-top .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 12px;
}

.why-header-top .section-title {
    color: #171d26;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: none;
    margin: 0 0 0;
}

.why-two-col {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 42px;
    align-items: center;
}

.why-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image-stack {
    position: relative;
    width: 380px;
    height: 420px;
}

.why-main-image {
    position: absolute;
    width: 330px;
    height: 330px;
    left: 25px;
    top: 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: 0 28px 48px rgba(38, 48, 78, 0.16);
}

.why-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-testimonial-circle {
    position: absolute;
    width: 130px;
    height: 130px;
    right: -15px;
    bottom: 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 7px solid #ffffff;
    box-shadow: 0 12px 28px rgba(38, 48, 78, 0.18);
}

.why-testimonial-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-experience-badge {
    position: absolute;
    left: -10px;
    bottom: -8px;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: linear-gradient(135deg, #74a531 0%, #5b8d18 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(91, 141, 24, 0.28);
    border: 4px solid #ffffff;
}

.why-badge-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.why-badge-label {
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-section-home .section-copy {
    max-width: none;
    margin: 0;
    color: #596270;
    font-size: 0.9rem;
    line-height: 1.68;
}

.why-features {
    display: none;
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}



.why-bpo-bullets {
    list-style: disc inside;
    margin: 18px 0 18px 0;
    padding: 0 0 0 8px;
    font-size: 1.08rem;
    color: #1a2a1a;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
    .why-bpo-bullets li {
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }

.why-founder {
    margin-top: 8px;
}

.founder-quote {
    margin: 0;
    color: #596270;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.6;
}

.founder-name {
    margin: 6px 0 0;
    color: #20262f;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.why-section-home .btn.btn-primary {
    align-self: flex-start;
}

.why-section-home .partner-strip {
    margin-top: 12px;
}

.why-section-home .partner {
    min-height: 64px;
    padding: 10px;
    border-right: none;
    border-radius: 12px;
    border: 1px solid rgba(116, 165, 49, 0.09);
    background: rgba(255, 255, 255, 0.9);
    color: #6a7368;
    font-size: 0.84rem;
    line-height: 1.35;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.process-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(116, 165, 49, 0.16);
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

.process-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #f1fde2 0%, #e0f3c3 100%);
    color: var(--brand-strong);
}

.process-card h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 48px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #74a531 0%, #5b8d18 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(91, 141, 24, 0.25);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.contact-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-bar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.contact-bar-text {
    flex: 0 1 auto;
    text-align: center;
}

.contact-bar-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.contact-bar-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
}

.contact-bar-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-shrink: 0;
}

.contact-bar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #5b8d18;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.28s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
}

.contact-bar-link:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.contact-bar-link.contact-bar-whatsapp:hover {
    color: #25d366;
    border-color: #25d366;
}

.contact-bar-link.contact-bar-email:hover {
    color: #74a531;
    border-color: #74a531;
}

.contact-bar-link .icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.contact-badge {
    display: none;
}

.process-section-home {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(116, 165, 49, 0.08) 0%, transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(116, 165, 49, 0.07) 0%, transparent 26%),
        linear-gradient(180deg, #f4f7f0 0%, #edf2e8 100%);
}

.process-section-home::before,
.process-section-home::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.process-section-home::before {
    width: 280px;
    height: 280px;
    left: -110px;
    top: -120px;
    background: radial-gradient(circle, rgba(116, 165, 49, 0.09) 0%, transparent 70%);
}

.process-section-home::after {
    width: 320px;
    height: 320px;
    right: -130px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(116, 165, 49, 0.08) 0%, transparent 70%);
}

.process-section-home .container {
    position: relative;
    z-index: 1;
}

.process-section-home .section-header {
    margin-bottom: 34px;
    animation: processFadeUp 0.55s ease both;
}

.process-section-home .section-title {
    color: #2a5c1f;
    font-size: clamp(2.15rem, 3.5vw, 3rem);
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.process-section-home .process-grid {
    counter-reset: process-step;
    gap: 26px;
    align-items: start;
    margin-top: 52px;
}

.process-section-home .process-card {
    --step-color: #1f7fe5;
    --step-soft: rgba(31, 127, 229, 0.16);
    position: relative;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    transition: transform 0.22s ease;
    opacity: 0;
    animation: processCardReveal 0.55s cubic-bezier(0.25, 0.7, 0.28, 1) forwards;
}

.process-section-home .process-card:nth-child(2) {
    --step-color: #ef9308;
    --step-soft: rgba(239, 147, 8, 0.16);
}

.process-section-home .process-card:nth-child(3) {
    --step-color: #00b7a8;
    --step-soft: rgba(0, 183, 168, 0.16);
}

.process-section-home .process-card:nth-child(4) {
    --step-color: #6a4bd9;
    --step-soft: rgba(106, 75, 217, 0.16);
}

.process-section-home .process-card:nth-child(1) {
    animation-delay: 0.1s;
}

.process-section-home .process-card:nth-child(2) {
    animation-delay: 0.2s;
}

.process-section-home .process-card:nth-child(3) {
    animation-delay: 0.3s;
}

.process-section-home .process-card:nth-child(4) {
    animation-delay: 0.4s;
}

.process-section-home .process-card::before {
    counter-increment: process-step;
    content: "0" counter(process-step);
    position: absolute;
    top: -8px;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
    background: var(--step-color);
    transform: translateX(-50%);
    box-shadow: 0 8px 18px rgba(26, 35, 24, 0.2);
    z-index: 2;
}

.process-section-home .process-card::after {
    content: "";
    position: absolute;
    top: 62px;
    left: calc(50% + 66px);
    width: calc(100% - 68px);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--step-color) 0%, rgba(106, 75, 217, 0.35) 100%);
    opacity: 0.48;
}

.process-section-home .process-card:last-child::after {
    display: none;
}

.process-section-home .process-card:hover::after,
.process-section-home .process-card:focus-within::after {
    animation: processConnectorGlow 1.1s ease-out infinite;
    opacity: 0.85;
}

.process-section-home .process-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.process-section-home .process-icon {
    position: relative;
    width: 132px;
    height: 132px;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: var(--step-color);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf4 100%);
    border: 4px solid var(--step-color);
    box-shadow: inset 0 0 0 8px var(--step-soft), 0 18px 30px rgba(26, 40, 18, 0.12);
}

.process-section-home .process-icon::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid var(--step-color);
    opacity: 0.36;
}

.process-section-home .process-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.38;
    color: #1f2920;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.process-section-home .contact-bar {
    width: min(980px, 100%);
    margin: 42px auto 0;
    padding: 28px 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #74a531 0%, #5b8d18 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 40px rgba(91, 141, 24, 0.25);
    opacity: 0;
    animation: processFadeUp 0.55s ease forwards;
    animation-delay: 0.52s;
}

.process-section-home .contact-badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
}

@keyframes processConnectorGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes processCardReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.985);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes processFadeUp {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-section-home .section-header,
    .process-section-home .process-card,
    .process-section-home .contact-bar {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .process-section-home .process-card::after,
    .process-section-home .process-card:hover::after,
    .process-section-home .process-card:focus-within::after {
        animation: none;
    }
}

.site-footer {
    background: linear-gradient(180deg, #262a2d 0%, #202326 100%);
    color: rgba(255, 255, 255, 0.9);
}

.newsletter {
    padding: 32px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.newsletter-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.newsletter-row span {
    color: rgba(255, 255, 255, 0.86);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.newsletter input {
    width: 100%;
    min-height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 0 12px;
    font: inherit;
    margin-bottom: 4px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 26px;
    padding: 46px 0 34px;
}

@media (max-width: 700px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px 0 12px 0;
    }
    .footer-col, .footer-brand {
        align-items: flex-start;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        text-align: left;
        padding: 0 0 8px 0;
    }
    .footer-links {
        justify-items: flex-start;
        align-items: flex-start;
        text-align: left;
        gap: 4px;
    }
    .footer-col h3 {
        margin-bottom: 6px;
        font-size: 1rem;
    }
    .footer-brand p, .footer-col p, .footer-col a {
        font-size: 0.95rem;
        line-height: 1.25;
        margin-bottom: 2px;
    }
    .footer-cta {
        margin-top: 10px;
    }
    .footer-bottom {
        padding: 0 0 16px 0;
        font-size: 0.82rem;
    }
    /* Newsletter section already compact above */
}
}

.footer-brand p,
.footer-col a,
.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.78;
    font-size: 0.88rem;
}

.footer-col h3 {
    margin: 0 0 12px;
    color: #9fd548;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-links {
    display: grid;
    gap: 6px;
}

.footer-cta {
    margin-top: 18px;
}

.footer-cta .btn {
    padding: 10px 18px;
    font-size: 0.82rem;
    white-space: nowrap;
}

.footer-bottom {
    padding: 0 0 28px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.84rem;
}

.icon {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1080px) {
    .why-two-col {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .why-left {
        order: -1;
    }

    .why-image-stack {
        width: 340px;
        height: 380px;
    }

    .why-main-image {
        width: 300px;
        height: 300px;
        left: 20px;
        top: 20px;
    }

    .why-testimonial-circle {
        width: 110px;
        height: 110px;
        right: -2px;
        bottom: 18px;
        border-width: 6px;
    }

    .why-experience-badge {
        width: 95px;
        height: 95px;
        left: -5px;
        bottom: -6px;
        border-width: 4px;
    }

    .why-badge-number {
        font-size: 1.7rem;
    }

    .why-badge-label {
        font-size: 0.7rem;
    }

    .why-section-home .section-title {
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    }

    .why-header-top {
        margin-bottom: 20px;
    }

    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-row,
    .process-grid,
    .partner-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner:nth-child(2n) {
        border-right: none;
    }

    .why-section-home .partner-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .why-section-home .feature-icon {
        width: 50px;
        height: 50px;
    }

    .why-features-list {
        gap: 14px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-item .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-item h3 {
        font-size: 0.92rem;
    }

    .why-section-home .feature-card {
        padding: 16px 12px;
    }

    .why-section-home .feature-card h3 {
        font-size: 0.88rem;
    }

    .why-section-home .feature-row::before {
        display: none;
    }

    .why-section-home .feature-card::before {
        display: none;
    }

    .process-section-home .process-card {
        padding: 24px 16px 20px;
    }

    .process-section-home .process-card::after {
        display: none;
    }

    .process-section-home .contact-bar {
        padding: 24px 28px;
        gap: 24px;
    }

    .contact-bar-content {
        flex-direction: row;
        gap: 24px;
    }

    .contact-bar-actions {
        gap: 12px;
    }

    .contact-bar-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 860px) {
    .cta-inner,
    .newsletter-row {
        grid-template-columns: 1fr;
        display: grid;
        justify-items: start;
    }

    .header-bar {
        position: relative;
        min-height: auto;
        padding: 14px 0;
        align-items: center;
    }

    .header-bar > .btn:not(.nav-mobile-cta) {
        display: none;
        margin-left: auto;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-left: 0;
        padding: 14px;
        border: 1px solid rgba(116, 165, 49, 0.18);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 24px 48px rgba(24, 31, 22, 0.18);
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(0.98);
        transform-origin: top center;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .main-nav > a,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 15px 16px;
        border-radius: 16px;
        background: #f6f9f1;
    }

    .main-nav > a::after,
    .nav-dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-submenu {
        position: static;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        max-width: 100%;
        margin-top: 6px;
        padding: 0;
        border: 0 solid rgba(116, 165, 49, 0.1);
        border-radius: 18px;
        background: #ffffff;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: block;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        overflow: hidden;
        transition: max-height 0.24s ease, opacity 0.2s ease, visibility 0.2s ease, padding 0.2s ease, border-width 0.2s ease;
    }

    .nav-submenu::before {
        display: none;
    }

    .nav-dropdown.is-open .nav-submenu {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
        padding: 6px;
        border-width: 1px;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }

    .nav-dropdown:not(.is-open) .nav-submenu {
        max-height: 0;
        margin-top: 0;
        padding: 0;
        border-width: 0;
        opacity: 0;
        visibility: hidden;
    }

    .nav-submenu-item {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        align-items: start;
        padding: 14px 12px;
        border-radius: 18px;
        background: #f8fbf4;
    }

    .nav-submenu-item strong {
        color: #1b2a1e;
    }

    .nav-submenu-item small {
        color: #5c695d;
    }

    .nav-submenu-item-active strong,
    .nav-submenu-item-active small {
        color: #172319;
    }

    .nav-submenu-item + .nav-submenu-item {
        margin-top: 6px;
        border-top: 0;
    }

    .nav-submenu-icon {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .nav-submenu-item small {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .nav-mobile-cta {
        display: inline-flex;
        width: 100%;
        margin-top: 6px;
    }

    .services-grid,
    .feature-row,
    .process-grid,
    .partner-strip,
    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .partner {
        border-right: none;
        border-bottom: 1px solid rgba(111, 118, 109, 0.14);
    }

    .partner:last-child {
        border-bottom: none;
    }

    .hero {
        text-align: left;
    }

    .hero-grid {
        min-height: auto;
        padding-bottom: 104px;
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .why-header-top {
        margin-bottom: 16px;
        text-align: center;
    }

    .why-header-top .section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 0;
    }

    .why-section-home .section-copy {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .why-features {
        display: none;
    }

    .why-features-list {
        gap: 12px;
        margin-top: 6px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-item .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-item h3 {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .why-section-home .feature-card {
        padding: 12px 10px;
        border-radius: 14px;
    }

    .why-section-home .feature-card h3 {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .why-section-home .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .why-image-stack {
        width: 300px;
        height: 340px;
    }

    .why-main-image {
        width: 260px;
        height: 260px;
        left: 20px;
        top: 20px;
    }

    .why-testimonial-circle {
        width: 100px;
        height: 100px;
        right: -8px;
        bottom: 12px;
        border-width: 5px;
    }

    .why-experience-badge {
        width: 85px;
        height: 85px;
        left: -6px;
        bottom: -10px;
        border-width: 3px;
    }

    .why-badge-number {
        font-size: 1.5rem;
    }

    .why-badge-label {
        font-size: 0.66rem;
    }

    .founder-quote {
        font-size: 0.88rem;
    }

    .founder-name {
        font-size: 0.85rem;
    }

    .why-section-home .btn.btn-primary {
        width: 100%;
        align-self: stretch;
    }

    .why-section-home .partner-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 8px;
    }

    .why-section-home .partner {
        border-bottom: 1px solid rgba(111, 118, 109, 0.14);
        border-right: none;
        min-height: 56px;
    }

    .why-section-home .partner:last-child {
        border-bottom: none;
    }

    .process-section-home .section-title {
        letter-spacing: 0.01em;
    }

    .process-section-home .process-card {
        padding: 22px 14px 18px;
        border-radius: 18px;
    }

    .process-section-home .contact-bar {
        flex-direction: row;
        gap: 16px;
        padding: 20px 24px;
        align-items: center;
        justify-content: space-between;
    }

    .contact-bar-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .contact-bar-text {
        flex: 1;
        text-align: left;
    }

    .contact-bar-title {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .contact-bar-label {
        margin-bottom: 0;
        font-size: 0.85rem;
    }

    .contact-bar-actions {
        gap: 8px;
        flex-shrink: 0;
    }

    .contact-bar-link {
        padding: 10px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .process-section-home .contact-badge {
        display: none;
    }

    .screen {
        left: 24px;
        right: 24px;
        height: 210px;
    }

    .person-left {
        left: 58px;
    }

    .person-right {
        right: 56px;
    }

    .leaf-left {
        left: 8px;
    }

    .leaf-right {
        right: 2px;
    }
}

@media (max-width: 560px) {
    :root {
        --container: min(100% - 30px, 100% - 30px);
    }

    .brand-subtitle {
        letter-spacing: 0.18em;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero p,
    .section-copy,
    .service-card p,
    .footer-brand p,
    .footer-col a,
    .footer-col p {
        line-height: 1.75;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .cta-inner .btn,
    .newsletter-form .btn,
    .footer-cta .btn {
        width: 100%;
    }

    .contact-bar {
        flex-direction: column;
        text-align: center;
        font-size: 1.15rem;
    }

    .process-section-home .section-header {
        margin-bottom: 26px;
    }

    .process-section-home .process-grid {
        gap: 14px;
        margin-top: 30px;
    }

    .process-section-home .process-card {
        padding: 18px 12px 16px;
    }

    .process-section-home .process-card::before {
        top: 9px;
        right: 10px;
        width: 24px;
        height: 24px;
        font-size: 0.66rem;
    }

    .process-section-home .process-icon {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .process-section-home .contact-bar {
        margin-top: 30px;
        padding: 14px 12px;
        font-size: 1.08rem;
    }

    .header-bar {
        gap: 14px;
    }

    .header-bar > .btn:not(.nav-mobile-cta) {
        display: none;
    }

    .nav-toggle {
        padding: 12px 18px;
        width: 44px;
        height: 44px;
    }

    .brand-title {
        font-size: 0.96rem;
    }

    .brand-subtitle {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }

    .nav-submenu {
        width: 100%;
        max-width: 100%;
        padding: 0;
        border-radius: 16px;
    }

    .nav-dropdown.is-open .nav-submenu {
        padding: 4px;
    }

    .nav-submenu-item {
        grid-template-columns: 28px 1fr;
        gap: 10px;
        padding: 12px 10px;
    }

    .nav-submenu-item strong {
        font-size: 0.86rem;
        line-height: 1.3;
    }

    .nav-submenu-item small {
        margin-top: 3px;
        font-size: 0.64rem;
        line-height: 1.45;
    }

    .nav-submenu-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .main-nav {
        gap: 8px;
        padding: 12px;
        border-radius: 20px;
        background: #ffffff;
    }

    .main-nav > a,
    .nav-dropdown-toggle {
        padding: 13px 14px;
        border-radius: 14px;
    }

    .footer-cta .btn {
        width: auto;
    }

    .why-header-top {
        margin-bottom: 14px;
    }

    .why-header-top .section-title {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .why-section-home .section-copy {
        font-size: 0.82rem;
    }

    .why-section-home .feature-icon {
        width: 44px;
        height: 44px;
    }

    .why-features-list {
        gap: 12px;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-item .feature-icon {
        width: 44px;
        height: 44px;
    }

    .feature-item h3 {
        font-size: 0.78rem;
    }

    .why-section-home .feature-card {
        padding: 10px 8px;
    }

    .why-section-home .feature-card h3 {
        font-size: 0.78rem;
    }

    .why-image-stack {
        width: 240px;
        height: 280px;
    }

    .why-main-image {
        width: 200px;
        height: 200px;
        left: 20px;
        top: 16px;
        border-width: 6px;
    }

    .why-testimonial-circle {
        width: 76px;
        height: 76px;
        right: -8px;
        bottom: 6px;
        border-width: 4px;
    }

    .why-experience-badge {
        width: 70px;
        height: 70px;
        left: -8px;
        bottom: -14px;
        border-width: 3px;
    }

    .why-badge-number {
        font-size: 1.2rem;
    }

    .why-badge-label {
        font-size: 0.62rem;
    }

    .founder-quote {
        font-size: 0.82rem;
    }

    .founder-name {
        font-size: 0.78rem;
    }

    .contact-bar {
        padding: 18px 20px;
        margin-top: 32px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .contact-bar-content {
        flex-direction: column;
        gap: 12px;
    }

    .contact-bar-text {
        text-align: center;
    }

    .contact-bar-label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .contact-bar-title {
        font-size: 1.1rem;
    }

    .contact-bar-actions {
        width: 100%;
        justify-content: stretch;
        flex-direction: column;
    }

    .contact-bar-link {
        padding: 12px 16px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }

    .contact-bar-link .icon {
        width: 18px;
        height: 18px;
    }
}

.service-page {
    background: linear-gradient(180deg, #fbfcf8 0%, #edf3ea 100%);
}

.service-hero {
    min-height: auto;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    min-height: 500px;
    padding: 82px 0 106px;
}

.service-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 1.1rem;
}

.service-hero-copy {
    max-width: 680px;
}

.service-page .hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.08;
}

.service-page .hero .accent {
    color: #8fd83d;
}

.service-hero-art {
    position: relative;
    min-height: 320px;
}

.service-hero-orb {
    position: absolute;
    top: 42px;
    left: 50%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(197, 245, 223, 0.9);
    transform: translateX(-50%);
    filter: blur(0.4px);
}

.paper-stack {
    position: absolute;
    width: 158px;
    min-height: 132px;
    padding: 14px 14px 18px;
    background: #fff;
    border: 1px solid rgba(201, 208, 196, 0.95);
    box-shadow: 0 18px 30px rgba(11, 16, 12, 0.18);
}

.paper-stack::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 14px;
    width: 26px;
    height: 6px;
    border-radius: 999px;
    background: #71b635;
}

.paper-stack-left {
    top: 92px;
    left: 40px;
    transform: rotate(-1.5deg);
}

.paper-stack-center {
    top: 56px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}

.paper-stack-right {
    top: 96px;
    right: 38px;
    transform: rotate(1.5deg);
}

.paper-top {
    height: 12px;
    margin-bottom: 14px;
    border-radius: 3px;
    background: linear-gradient(90deg, #f0f2f0 0%, #f7f8f7 100%);
}

.paper-line {
    height: 7px;
    margin-bottom: 9px;
    border-radius: 3px;
    background: #d6dad6;
}

.paper-line.short {
    width: 56%;
}

.paper-line.light {
    background: #ebeeeb;
}

.paper-tag {
    width: 22px;
    height: 9px;
    margin-top: 18px;
    border-radius: 999px;
    background: #71b635;
}

.service-intro-section,
.service-includes-section,
.cta-panel-section {
    padding-top: 78px;
    padding-bottom: 78px;
}

.service-page-header {
    max-width: 980px;
}

.service-page-header.compact {
    margin-bottom: 34px;
}

.service-page-header .section-copy {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.service-intro-wrap,
.trust-wrap,
.advisory-columns,
.it-outsourced-section .container {
    max-width: 1040px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.value-card {
    padding: 12px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 138px;
}

.value-icon,
.include-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #648f2a;
    background: linear-gradient(135deg, #f7fbe9 0%, #eaf3d8 100%);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(116, 165, 49, 0.10);
    transition: box-shadow 0.18s, transform 0.18s;
}

.value-card h3 {
    margin: 0;
    color: #739b30;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    max-width: 220px;
}

.include-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 38px;
    align-items: stretch;
}

.include-card {
    height: 100%;
    padding: 24px 18px 20px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(116, 165, 49, 0.10);
    box-shadow: 0 2px 16px rgba(116, 165, 49, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.18s, transform 0.18s;
}
.include-card:hover {
    box-shadow: 0 10px 32px rgba(116, 165, 49, 0.16);
    transform: translateY(-4px) scale(1.03);
}

.include-card h3 {
    margin: 0 0 8px;
    font-size: 1.32rem;
    line-height: 1.12;
    font-weight: 700;
    color: #5b8d18;
    font-family: "Oswald", sans-serif;
    text-align: center;
    letter-spacing: 0.01em;
}

.include-card p {
    margin: 0;
    color: #77817a;
    line-height: 1.72;
    font-size: 0.97rem;
    text-align: center;
}

.cta-panel {
    padding: 38px 28px;
    border-radius: 22px;
    text-align: center;
    color: var(--white);
    background: linear-gradient(180deg, #678f29 0%, #5d8324 100%);
    box-shadow: 0 18px 36px rgba(78, 110, 28, 0.26);
}

.cta-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(1.82rem, 2.8vw, 2.55rem);
    line-height: 1.05;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
}

.cta-panel p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    font-weight: 400;
}

.service-card-current {
    border-color: rgba(116, 165, 49, 0.28);
}

.service-hero-grid-tax {
    min-height: 430px;
    padding-top: 64px;
    padding-bottom: 76px;
}

.tax-hero-art {
    min-height: 250px;
}

.tax-hero-blob {
    position: absolute;
    right: 56px;
    top: 12px;
    width: 230px;
    height: 190px;
    border-radius: 47% 53% 44% 56% / 46% 39% 61% 54%;
    background: #6c9728;
}

.tax-sheet,
.calculator-card {
    position: absolute;
    background: #fff;
    box-shadow: 0 18px 30px rgba(10, 16, 11, 0.18);
}

.tax-sheet {
    width: 110px;
    height: 132px;
    padding: 12px 12px 10px;
}

.tax-sheet-back {
    top: 34px;
    right: 126px;
    transform: rotate(2deg);
}

.tax-sheet-front {
    top: 22px;
    right: 172px;
    z-index: 2;
}

.tax-row {
    height: 8px;
    margin-bottom: 10px;
    background: #dae0d7;
    border-radius: 2px;
}

.tax-row.short {
    width: 50%;
}

.tax-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 52px;
    margin-bottom: 12px;
}

.tax-bars span {
    width: 10px;
    border-radius: 2px 2px 0 0;
    background: #7eba30;
}

.tax-bars span:nth-child(1) { height: 26px; }
.tax-bars span:nth-child(2) { height: 42px; }
.tax-bars span:nth-child(3) { height: 34px; }
.tax-bars span:nth-child(4) { height: 48px; }

.tax-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.tax-grid span {
    aspect-ratio: 1;
    background: #d9ded8;
}

.calculator-card {
    top: 78px;
    right: 74px;
    z-index: 3;
    width: 74px;
    height: 112px;
    padding: 10px;
    background: #2c3133;
}

.calculator-screen {
    height: 18px;
    margin-bottom: 10px;
    border-radius: 2px;
    background: #799e35;
}

.calculator-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.calculator-buttons span {
    aspect-ratio: 1;
    border-radius: 2px;
    background: #f1f3ef;
}

.trust-section {
    padding-top: 42px;
    padding-bottom: 50px;
    background: #648f29;
    color: #fff;
}

.trust-header {
    margin-bottom: 0;
}

.trust-title {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.trust-copy {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.95;
}

.tax-page .trust-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.14) 0%, transparent 30%),
        radial-gradient(circle at 90% 82%, rgba(255, 255, 255, 0.1) 0%, transparent 32%),
        linear-gradient(135deg, #6f9f32 0%, #568122 100%);
}

.tax-page .trust-section::before,
.tax-page .trust-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.tax-page .trust-section::before {
    width: 280px;
    height: 280px;
    top: -130px;
    left: -90px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 72%);
}

.tax-page .trust-section::after {
    width: 340px;
    height: 340px;
    right: -140px;
    bottom: -190px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.13) 0%, transparent 72%);
}

.tax-page .trust-wrap {
    position: relative;
    z-index: 1;
}

.tax-page .trust-header {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 28px;
    text-align: center;
    border-radius: 24px;
    background: rgba(16, 37, 8, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 22px 44px rgba(28, 47, 12, 0.25);
    backdrop-filter: blur(2px);
}

.service-page.tax-page .trust-title {
    color: #ffffff;
    letter-spacing: 0.01em;
    text-wrap: balance;
    text-shadow: 0 3px 18px rgba(24, 45, 10, 0.28);
}

.service-page.tax-page .trust-copy {
    color: rgba(255, 255, 255, 0.96);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.84;
    text-shadow: 0 1px 10px rgba(22, 40, 9, 0.2);
}

.tax-includes-section {
    padding-bottom: 54px;
}

.tax-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.tax-service-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    height: 100%;
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(116, 165, 49, 0.14);
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(31, 44, 24, 0.11);
}

.tax-service-card .include-icon {
    width: 46px;
    height: 46px;
    margin: 0;
    flex: 0 0 46px;
}

.tax-service-card h3 {
    margin: 0 0 6px;
    color: #6d9730;
    font-size: 1.28rem;
    line-height: 1.1;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
}

.tax-service-card p {
    margin: 0;
    color: #6f766f;
    line-height: 1.68;
    font-size: 0.92rem;
    font-weight: 400;
}

.tax-service-card-wide {
    grid-column: 1 / -1;
    max-width: 470px;
    justify-self: center;
}

.tight-top {
    padding-top: 26px;
}

.peace-section {
    padding-top: 56px;
    padding-bottom: 56px;
}

.strong-copy {
    color: #535d54;
    font-weight: 600;
}

.double-cta-section {
    padding-top: 24px;
}

.advisory-page {
    background: linear-gradient(180deg, #fbfcf8 0%, #eef3eb 100%);
}

.advisory-hero-grid {
    min-height: 450px;
    padding-top: 54px;
    padding-bottom: 82px;
}

.advisory-intro-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 249, 245, 0.92)),
        radial-gradient(circle at 22% 30%, rgba(184, 194, 173, 0.2), transparent 26%),
        linear-gradient(135deg, #f5f4ef 0%, #e9ece6 100%);
}

.advisory-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 28px;
    align-items: end;
}

.advisory-intro-copy h2 {
    margin: 0 0 22px;
    max-width: 520px;
    color: #739b30;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.55rem);
    line-height: 1.02;
}

.advisory-copy-card {
    max-width: 520px;
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(114, 154, 48, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(31, 44, 24, 0.08);
}

.advisory-copy-card p {
    margin: 0;
    color: #4c5650;
    line-height: 1.95;
}

.advisory-copy-card p + p {
    margin-top: 22px;
}

.advisory-figure-wrap {
    display: grid;
    place-items: end center;
}

.advisor-character {
    position: relative;
    width: 300px;
    height: 470px;
}

.advisor-head {
    position: absolute;
    top: 64px;
    left: 50%;
    width: 118px;
    height: 128px;
    background: radial-gradient(circle at 44% 40%, #ffd9bf 0%, #f0bb97 68%, #d89c78 100%);
    border-radius: 46% 46% 42% 42%;
    transform: translateX(-50%);
    z-index: 3;
}

.advisor-hair {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 132px;
    height: 78px;
    background: linear-gradient(180deg, #604338 0%, #442d24 100%);
    border-radius: 46% 46% 28% 28%;
    transform: translateX(-50%);
    z-index: 4;
    box-shadow: 14px 18px 0 -8px #5b3f33;
}

.advisor-body {
    position: absolute;
    left: 50%;
    top: 168px;
    width: 180px;
    height: 184px;
    background: linear-gradient(180deg, #394869 0%, #253250 100%);
    clip-path: polygon(24% 0%, 76% 0%, 92% 100%, 8% 100%);
    transform: translateX(-50%);
    z-index: 2;
}

.advisor-body::before,
.advisor-body::after {
    content: "";
    position: absolute;
    top: 0;
    width: 48px;
    height: 108px;
    background: linear-gradient(180deg, #f9fbfd 0%, #dfe5eb 100%);
}

.advisor-body::before {
    left: 38px;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 76%);
}

.advisor-body::after {
    right: 38px;
    clip-path: polygon(0 0, 100% 0, 100% 76%, 18% 100%);
}

.advisor-tie {
    position: absolute;
    left: 50%;
    top: 198px;
    width: 26px;
    height: 124px;
    background: linear-gradient(180deg, #d74541 0%, #9d2524 100%);
    clip-path: polygon(50% 0%, 100% 18%, 74% 100%, 26% 100%, 0% 18%);
    transform: translateX(-50%);
    z-index: 5;
}

.advisor-arm {
    position: absolute;
    top: 218px;
    width: 54px;
    height: 132px;
    background: linear-gradient(180deg, #394869 0%, #253250 100%);
    border-radius: 28px;
    z-index: 1;
}

.advisor-arm-left {
    left: 34px;
    transform: rotate(10deg);
}

.advisor-arm-right {
    right: 34px;
    transform: rotate(-10deg);
}

.advisor-pad {
    position: absolute;
    left: 50%;
    top: 246px;
    width: 116px;
    height: 162px;
    background: linear-gradient(180deg, #c7645d 0%, #8f3f3c 100%);
    border-radius: 10px;
    box-shadow: 0 18px 28px rgba(33, 28, 28, 0.16);
    transform: translateX(-50%) rotate(8deg);
    z-index: 6;
}

.advisor-leg {
    position: absolute;
    bottom: 6px;
    width: 42px;
    height: 140px;
    background: linear-gradient(180deg, #313f5e 0%, #1f2b44 100%);
    border-radius: 24px;
}

.advisor-leg-left {
    left: 100px;
}

.advisor-leg-right {
    right: 100px;
}

.advisory-services-section {
    padding-top: 40px;
    background: #ffffff;
}

.advisory-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.advisory-column-title {
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(88, 110, 82, 0.22);
    color: #739b30;
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.advisory-list {
    display: grid;
    gap: 14px;
}

.advisory-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: start;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fbf4;
    border: 1px solid rgba(116, 165, 49, 0.1);
}

.advisory-item h3 {
    margin: 0 0 4px;
    color: #222d24;
    font-size: 1.08rem;
}

.advisory-item p {
    margin: 0;
    color: #737b75;
    line-height: 1.6;
    font-size: 0.92rem;
}

.advisory-bullet {
    position: relative;
    width: 24px;
    height: 24px;
    margin-top: 4px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(25, 38, 20, 0.08);
}

.advisory-bullet::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
}

.advisory-bullet-orange { background: linear-gradient(180deg, #ff934f 0%, #f05e24 100%); }
.advisory-bullet-teal { background: linear-gradient(180deg, #50c3c9 0%, #2f8f95 100%); }
.advisory-bullet-sky { background: linear-gradient(180deg, #7eb7ff 0%, #4c8ae8 100%); }
.advisory-bullet-green { background: linear-gradient(180deg, #88c45c 0%, #57952d 100%); }
.advisory-bullet-blue { background: linear-gradient(180deg, #56b8f2 0%, #337fc8 100%); }
.advisory-bullet-brown { background: linear-gradient(180deg, #c9a06f 0%, #936c3d 100%); }
.advisory-bullet-mint { background: linear-gradient(180deg, #8fe2ba 0%, #5cad86 100%); }
.advisory-bullet-gray { background: linear-gradient(180deg, #d8d8d8 0%, #9b9b9b 100%); }
.advisory-bullet-rose { background: linear-gradient(180deg, #ff8ea1 0%, #d6536c 100%); }
.advisory-bullet-lime { background: linear-gradient(180deg, #9edb4f 0%, #6fa529 100%); }
.advisory-bullet-coral { background: linear-gradient(180deg, #ff8b5e 0%, #d85d2b 100%); }
.advisory-bullet-amber { background: linear-gradient(180deg, #f0b04d 0%, #bf7d1a 100%); }
.advisory-bullet-steel { background: linear-gradient(180deg, #77b0c8 0%, #477996 100%); }
.advisory-bullet-sun { background: linear-gradient(180deg, #ffcf5c 0%, #ee9c17 100%); }
.advisory-bullet-violet { background: linear-gradient(180deg, #b59cff 0%, #7758e4 100%); }
.advisory-bullet-indigo { background: linear-gradient(180deg, #567cff 0%, #3048cb 100%); }

@media (max-width: 1080px) {
    .service-hero-grid,
    .value-grid,
    .include-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .advisory-intro-grid,
    .advisory-columns {
        grid-template-columns: 1fr;
    }

    .tax-service-grid {
        grid-template-columns: 1fr;
    }

    .tax-service-card-wide {
        grid-column: auto;
        max-width: none;
    }

    .service-hero-grid {
        align-items: start;
    }
}

@media (max-width: 860px) {
    .service-hero-grid,
    .value-grid,
    .include-grid {
        grid-template-columns: 1fr;
    }

    .advisory-intro-grid,
    .advisory-columns {
        grid-template-columns: 1fr;
    }

    .service-hero-grid-tax,
    .tax-service-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-grid {
        min-height: auto;
        padding: 60px 0 96px;
    }

    .service-hero-art {
        display: none;
    }

    .service-page .hero h1 {
        font-size: 2.1rem;
    }

    .tax-hero-art {
        width: min(100%, 360px);
        margin: 0 auto;
    }

    .advisory-figure-wrap {
        place-items: center;
    }

    .advisor-character {
        width: 250px;
        height: 398px;
    }

    .advisor-head {
        width: 102px;
        height: 112px;
    }

    .advisor-hair {
        width: 116px;
    }

    .advisor-body {
        width: 154px;
        height: 160px;
        top: 150px;
    }

    .advisor-arm-left {
        left: 22px;
    }

    .advisor-arm-right {
        right: 22px;
    }

    .advisor-pad {
        width: 102px;
        height: 140px;
        top: 218px;
    }

    .advisor-leg-left {
        left: 78px;
    }

    .advisor-leg-right {
        right: 78px;
    }

    .tax-hero-blob {
        right: 50%;
        transform: translateX(50%);
    }

    .tax-sheet-back {
        right: 126px;
    }

    .tax-sheet-front {
        right: 172px;
    }

    .calculator-card {
        right: 74px;
    }
}

@media (max-width: 560px) {
    .service-kicker {
        font-size: 1rem;
    }

    .service-page .hero h1 {
        font-size: 1.9rem;
    }

    .paper-stack {
        width: 120px;
        min-height: 108px;
        padding: 12px 10px 14px;
    }

    .paper-stack-left {
        left: 2px;
    }

    .paper-stack-center {
        top: 48px;
    }

    .paper-stack-right {
        right: 2px;
    }

    .include-card h3 {
        font-size: 1.35rem;
    }

    .cta-panel {
        padding: 30px 20px;
    }

    .tax-hero-art {
        min-height: 220px;
        width: min(100%, 310px);
    }

    .tax-hero-blob {
        width: 190px;
        height: 150px;
        top: 10px;
    }

    .tax-sheet {
        width: 88px;
        height: 110px;
        padding: 10px 9px 8px;
    }

    .tax-sheet-back {
        right: 102px;
    }

    .tax-sheet-front {
        right: 138px;
    }

    .calculator-card {
        right: 48px;
        top: 64px;
        width: 62px;
        height: 98px;
        padding: 8px;
    }

    .trust-section {
        padding-top: 34px;
        padding-bottom: 40px;
    }

    .tax-page .trust-header {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .tax-service-card {
        padding: 16px 14px;
    }

    .tax-service-card h3 {
        font-size: 1.25rem;
    }

    .advisory-intro-copy h2,
    .advisory-column-title {
        font-size: 1.9rem;
    }

    .advisory-copy-card {
        padding: 20px 18px;
    }

    .advisor-character {
        width: 210px;
        height: 340px;
    }

    .advisor-head {
        top: 54px;
        width: 86px;
        height: 96px;
    }

    .advisor-hair {
        top: 34px;
        width: 96px;
        height: 62px;
    }

    .advisor-body {
        top: 130px;
        width: 130px;
        height: 142px;
    }

    .advisor-tie {
        top: 154px;
        height: 100px;
    }

    .advisor-arm {
        top: 188px;
        width: 42px;
        height: 110px;
    }

    .advisor-arm-left {
        left: 16px;
    }

    .advisor-arm-right {
        right: 16px;
    }

    .advisor-pad {
        top: 198px;
        width: 90px;
        height: 124px;
    }

    .advisor-leg {
        width: 32px;
        height: 112px;
    }

    .advisor-leg-left {
        left: 68px;
    }

    .advisor-leg-right {
        right: 68px;
    }

    .advisory-item {
        grid-template-columns: 20px 1fr;
        gap: 10px;
    }

    .advisory-item h3 {
        font-size: 0.98rem;
    }

    .advisory-item p {
        font-size: 0.84rem;
    }

    .advisory-bullet {
        width: 20px;
        height: 20px;
    }
}

.it-solutions-page .hero {
    background:
        radial-gradient(circle at 80% 30%, rgba(31, 184, 150, 0.2), transparent 30%),
        radial-gradient(circle at 22% 22%, rgba(116, 165, 49, 0.16), transparent 26%),
        linear-gradient(180deg, #24292d 0%, #1d2226 100%);
}

.it-solutions-page .hero::after {
    opacity: 0.46;
}

.it-hero-grid {
    min-height: 500px;
    padding-top: 62px;
    padding-bottom: 94px;
}

.it-solutions-page .service-kicker {
    color: rgba(255, 255, 255, 0.48);
}

.it-solutions-page .hero h1 {
    margin-top: 12px;
    margin-bottom: 16px;
    font-size: clamp(3rem, 5vw, 4.4rem);
    line-height: 0.95;
}

.it-solutions-page .service-hero-copy {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.68);
}

.it-hero-visual {
    position: relative;
    min-height: 300px;
    display: grid;
    place-items: center;
}

.it-chip-orbit {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(22, 37, 40, 0.86) 0 34%, transparent 36%),
        repeating-conic-gradient(from 0deg, rgba(16, 205, 171, 0.52) 0deg 8deg, transparent 8deg 20deg);
    box-shadow:
        0 0 0 1px rgba(16, 205, 171, 0.12),
        0 0 34px rgba(16, 205, 171, 0.16);
}

.it-chip-core {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: #8cf058;
    background: linear-gradient(180deg, #2f3943 0%, #1c242b 100%);
    box-shadow: 0 16px 30px rgba(6, 11, 16, 0.55);
}

.it-chip-core .icon {
    width: 52px;
    height: 52px;
    stroke-width: 1.8;
}

.it-outsourced-section {
    background: #ffffff;
    padding-top: 72px;
}

.it-outsourced-header {
    max-width: 940px;
    margin-bottom: 34px;
}

.it-outsourced-title {
    margin: 0;
    color: #1f2427;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.it-outsourced-subtitle {
    margin: 14px 0 0;
    color: #5d8c27;
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.08;
}

.it-outsourced-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.outsourced-card {
    position: relative;
    min-height: 186px;
    display: flex;
    flex-direction: column;
    padding: 18px 14px 16px;
    border: 1px solid #e9ece5;
    border-radius: 6px;
    background: #ffffff;
}

.outsourced-card h3 {
    margin: 10px 0 6px;
    color: #649329;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.25;
}

.outsourced-card p {
    margin: 0;
    color: #798177;
    font-size: 0.78rem;
    line-height: 1.54;
    font-weight: 400;
}

.outsourced-badge {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    background: linear-gradient(180deg, #7ca531 0%, #568819 100%);
    box-shadow: 0 8px 14px rgba(23, 33, 18, 0.16);
}

.outsourced-card:nth-child(1) .outsourced-badge { background: linear-gradient(180deg, #ff5e5e 0%, #cf1f1f 100%); }
.outsourced-card:nth-child(2) .outsourced-badge { background: linear-gradient(180deg, #ff67bc 0%, #cb2d8d 100%); }
.outsourced-card:nth-child(3) .outsourced-badge { background: linear-gradient(180deg, #c768ff 0%, #8b2ec9 100%); }
.outsourced-card:nth-child(4) .outsourced-badge { background: linear-gradient(180deg, #7f64ff 0%, #4c2fcf 100%); }
.outsourced-card:nth-child(5) .outsourced-badge { background: linear-gradient(180deg, #4f56ff 0%, #1d26c0 100%); }
.outsourced-card:nth-child(6) .outsourced-badge { background: linear-gradient(180deg, #5692f2 0%, #2c63b7 100%); }
.outsourced-card:nth-child(7) .outsourced-badge { background: linear-gradient(180deg, #71d3ff 0%, #3daacb 100%); }
.outsourced-card:nth-child(8) .outsourced-badge { background: linear-gradient(180deg, #8bf0e2 0%, #4ab6a7 100%); }
.outsourced-card:nth-child(9) .outsourced-badge { background: linear-gradient(180deg, #5dde8e 0%, #2d9e58 100%); }
.outsourced-card:nth-child(10) .outsourced-badge { background: linear-gradient(180deg, #7ce44c 0%, #4aa11f 100%); }
.outsourced-card:nth-child(11) .outsourced-badge { background: linear-gradient(180deg, #95cf27 0%, #669612 100%); }
.outsourced-card:nth-child(12) .outsourced-badge { background: linear-gradient(180deg, #80c73b 0%, #4f8c19 100%); }

@media (max-width: 1080px) {
    .it-outsourced-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .it-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 88px;
    }

    .it-hero-visual {
        order: 0;
        min-height: 220px;
    }

    .it-chip-orbit {
        width: 220px;
        height: 220px;
    }

    .it-chip-core {
        width: 86px;
        height: 86px;
    }

    .it-outsourced-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .it-outsourced-grid {
        grid-template-columns: 1fr;
    }

    .outsourced-card {
        min-height: auto;
    }
}

.about-page {
    background: linear-gradient(180deg, #f8faf7 0%, #edf2eb 100%);
}

.about-hero {
    background:
        radial-gradient(circle at 82% 28%, rgba(116, 165, 49, 0.16), transparent 30%),
        linear-gradient(180deg, #23282c 0%, #1f2428 100%);
}

.about-hero-grid {
    min-height: 440px;
    padding-top: 58px;
    padding-bottom: 88px;
}

.about-page .hero h1 {
    font-size: clamp(2.4rem, 4.6vw, 4rem);
    line-height: 1.05;
    text-transform: none;
}

.about-page .hero .accent {
    color: #8fd83d;
}

.about-hero-art {
    position: relative;
    min-height: 270px;
}

.about-team-orb {
    position: absolute;
    top: 36px;
    left: 50%;
    width: 270px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(146, 214, 66, 0.22), rgba(146, 214, 66, 0));
    transform: translateX(-50%);
}

.about-avatar {
    position: absolute;
    bottom: 24px;
    width: 70px;
    height: 148px;
    border-radius: 26px;
    background: linear-gradient(180deg, #a2b1bf 0%, #6c7a88 100%);
    box-shadow: 0 16px 24px rgba(12, 18, 16, 0.36);
}

.about-avatar::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f8d8bc 0%, #d8ae8b 100%);
    transform: translateX(-50%);
}

.about-avatar-1 { left: 46px; background: linear-gradient(180deg, #517ac8 0%, #355899 100%); }
.about-avatar-2 { left: 124px; background: linear-gradient(180deg, #343e49 0%, #20262e 100%); }
.about-avatar-3 { left: 202px; background: linear-gradient(180deg, #8ea0b2 0%, #677789 100%); }
.about-avatar-4 { left: 280px; background: linear-gradient(180deg, #a99ba5 0%, #7e7280 100%); }

.about-who-section {
    padding-top: 68px;
    padding-bottom: 66px;
}

.about-intro h2 {
    margin: 0 0 14px;
    color: #648f29;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 500;
}

.about-intro p {
    margin: 0;
    color: #5f6761;
    line-height: 1.82;
    font-size: 0.96rem;
    font-weight: 400;
}

.about-intro p + p {
    margin-top: 16px;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.about-mission-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(116, 165, 49, 0.16);
    border-radius: 8px;
    background: #ffffff;
}

.about-mini-icon {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f3f9e6 0%, #dceebd 100%);
    flex: 0 0 74px;
}

.about-mini-icon-vision {
    background: linear-gradient(180deg, #eef4ff 0%, #d5e5ff 100%);
}

.about-mission-card h3 {
    margin: 2px 0 6px;
    color: #628e28;
    font-size: 1.72rem;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    font-weight: 500;
}

.about-mission-card p {
    margin: 0;
    color: #6e756f;
    line-height: 1.66;
    font-size: 0.92rem;
    font-weight: 400;
}

.about-values-section {
    background:
        linear-gradient(180deg, rgba(25, 31, 37, 0.92), rgba(20, 26, 31, 0.95)),
        radial-gradient(circle at 50% 30%, rgba(148, 216, 65, 0.16), transparent 38%);
    color: #ffffff;
    padding-top: 72px;
    padding-bottom: 78px;
}

.about-values-header {
    margin-bottom: 26px;
}

.about-values-section .section-title {
    color: #74ab32;
}

.about-values-section .section-copy {
    color: rgba(255, 255, 255, 0.82);
    margin-top: 12px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-value-card {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
}

.about-value-card h3 {
    margin: 0 0 4px;
    color: #85c63a;
    font-size: 0.98rem;
    font-weight: 600;
}

.about-value-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
    line-height: 1.46;
    font-weight: 400;
}

.about-choose-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.about-choose-title {
    margin: 0 0 18px;
    color: #1f2427;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.about-check-list li {
    padding-left: 30px;
    position: relative;
}

.about-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(180deg, #81b73a 0%, #608f20 100%);
}

.about-check-list strong {
    display: block;
    color: #5f8a2a;
}

.about-check-list span {
    display: block;
    color: #6f766f;
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-meeting-art {
    position: relative;
    min-height: 320px;
}

.meeting-board {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 250px;
    height: 180px;
    border-radius: 18px;
    border: 8px solid #5fa58e;
    background: linear-gradient(180deg, #f0f7ff 0%, #d9e6f5 100%);
    transform: translateX(-50%);
}

.meeting-table {
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: 290px;
    height: 80px;
    border-radius: 30px;
    background: linear-gradient(180deg, #7f95c2 0%, #596b98 100%);
    transform: translateX(-50%);
}

.meeting-person {
    position: absolute;
    bottom: 46px;
    width: 62px;
    height: 98px;
    border-radius: 24px;
    background: linear-gradient(180deg, #7ea3d6 0%, #587caf 100%);
}

.meeting-person::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f8d8bc 0%, #d8ae8b 100%);
    transform: translateX(-50%);
}

.meeting-person.m1 { left: 30px; }
.meeting-person.m2 { left: 122px; background: linear-gradient(180deg, #f0a44b 0%, #c77e2e 100%); }
.meeting-person.m3 { right: 124px; background: linear-gradient(180deg, #8ea0b2 0%, #64778c 100%); }
.meeting-person.m4 { right: 30px; }

.about-appointment-wrap {
    padding-top: 48px;
}

.about-appointment {
    max-width: 1020px;
    margin: 0 auto;
    padding: 26px 22px;
    border-radius: 22px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(180deg, #68952b 0%, #58831f 100%);
}

.about-appointment h2 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    text-transform: none;
}

.about-appointment p {
    margin: 8px 0 18px;
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1080px) {
    .about-choose-grid,
    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-hero-art {
        width: min(100%, 420px);
        margin: 0 auto;
    }
}

@media (max-width: 860px) {
    .about-mission-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-avatar-1 { left: 8px; }
    .about-avatar-2 { left: 94px; }
    .about-avatar-3 { left: 180px; }
    .about-avatar-4 { left: 266px; }
}

@media (max-width: 560px) {
    .about-page .hero h1 {
        font-size: 2rem;
    }

    .about-mission-card h3 {
        font-size: 1.65rem;
    }

    .about-hero-art {
        min-height: 238px;
    }

    .about-avatar {
        width: 52px;
        height: 110px;
    }

    .about-avatar::before {
        width: 32px;
        height: 32px;
        top: -18px;
    }

    .about-avatar-1 { left: 14px; }
    .about-avatar-2 { left: 80px; }
    .about-avatar-3 { left: 146px; }
    .about-avatar-4 { left: 212px; }

    .about-team-orb {
        width: 220px;
    }

    .meeting-board {
        width: 200px;
        height: 142px;
    }

    .meeting-table {
        width: 230px;
        height: 64px;
    }

    .meeting-person {
        width: 48px;
        height: 76px;
    }

    .meeting-person::before {
        width: 30px;
        height: 30px;
        top: -18px;
    }

    .meeting-person.m1 { left: 12px; }
    .meeting-person.m2 { left: 74px; }
    .meeting-person.m3 { right: 72px; }
    .meeting-person.m4 { right: 10px; }
}

.faq-page {
    background: linear-gradient(180deg, #f8faf7 0%, #edf2eb 100%);
}

.faq-hero {
    background:
        radial-gradient(circle at 24% 28%, rgba(116, 165, 49, 0.14), transparent 28%),
        linear-gradient(180deg, #22282d 0%, #1d2327 100%);
}

.faq-hero-grid {
    min-height: 360px;
    grid-template-columns: 1fr;
    padding-top: 54px;
    padding-bottom: 88px;
}

.faq-page .hero h1 {
    margin-top: 10px;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.05;
    text-transform: none;
}

.faq-page .hero .accent {
    color: #8fda3e;
}

.faq-content {
    padding-top: 62px;
    background: #ffffff;
}

.faq-container {
    max-width: 980px;
}

.faq-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    color: #7e847d;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-group + .faq-group {
    margin-top: 26px;
}

.faq-group h2 {
    margin: 0 0 10px;
    font-size: clamp(1.82rem, 3.4vw, 2.55rem);
    font-family: "Oswald", sans-serif;
    color: #262d29;
    font-weight: 500;
}

.faq-item {
    border-bottom: 1px solid #e8ebe5;
}

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 12px 16px 12px 22px;
    color: #2e352f;
    font-size: 0.95rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a972d;
    font-weight: 700;
}

.faq-item[open] summary::before {
    content: "-";
}

.faq-item p {
    margin: 0 0 10px;
    padding: 10px 14px;
    background: #eef3ea;
    color: #667067;
    font-size: 0.87rem;
    line-height: 1.65;
}

.faq-ask-btn {
    margin-top: 14px;
    padding: 10px 16px;
    font-size: 0.82rem;
    box-shadow: none;
}

@media (max-width: 860px) {
    .faq-hero-grid {
        padding-top: 46px;
        padding-bottom: 76px;
    }

    .faq-group h2 {
        font-size: 2rem;
    }
}

@media (max-width: 560px) {
    .faq-page .hero h1 {
        font-size: 2rem;
    }

    .faq-item summary {
        padding-left: 18px;
        font-size: 0.9rem;
    }

    .faq-item p {
        font-size: 0.82rem;
        padding: 10px 10px;
    }
}

.contact-page {
    background: linear-gradient(180deg, #f7faf6 0%, #edf2ea 100%);
}

.contact-hero {
    background:
        radial-gradient(circle at 25% 34%, rgba(116, 165, 49, 0.15), transparent 28%),
        linear-gradient(180deg, #23292f 0%, #1e242a 100%);
}

.contact-hero-grid {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 58px 0 96px;
}

.contact-hero-copy-wrap {
    max-width: 920px;
    text-align: center;
}

.contact-hero-copy-wrap h1 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    color: #6d9f2d;
    text-transform: none;
}

.contact-hero-copy-wrap p {
    margin: 20px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.9;
}

.contact-body-section {
    position: relative;
    margin-top: -210px;
    padding-top: 0;
    isolation: isolate;
}

.contact-body-section::before,
.contact-body-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.contact-body-section::before {
    width: 260px;
    height: 260px;
    top: -24px;
    left: -70px;
    background: radial-gradient(circle, rgba(116, 165, 49, 0.2) 0%, transparent 68%);
}

.contact-body-section::after {
    width: 300px;
    height: 300px;
    right: -90px;
    bottom: -60px;
    background: radial-gradient(circle, rgba(111, 184, 88, 0.14) 0%, transparent 70%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: start;
}

.contact-illustration {
    position: relative;
    min-height: 320px;
    margin-bottom: 20px;
}

.contact-monitor {
    position: absolute;
    left: 34px;
    bottom: 16px;
    width: 240px;
    height: 180px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7f8fc 0%, #d8dce7 100%);
    border: 8px solid #4f5d78;
    transform: rotate(7deg);
    box-shadow: 0 18px 28px rgba(16, 21, 30, 0.24);
}

.contact-monitor::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -36px;
    width: 84px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, #5b6787 0%, #3f4a62 100%);
    transform: translateX(-50%);
}

.contact-envelope {
    position: absolute;
    left: 88px;
    bottom: 90px;
    width: 200px;
    height: 130px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f6d93f 0%, #dfbc20 100%);
    box-shadow: 0 14px 24px rgba(46, 42, 16, 0.2);
}

.contact-envelope::before,
.contact-envelope::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
}

.contact-envelope::before {
    top: 0;
    border-top: 62px solid rgba(233, 199, 42, 0.9);
}

.contact-envelope::after {
    bottom: 0;
    border-bottom: 62px solid rgba(226, 187, 19, 0.85);
}

.contact-pin {
    position: absolute;
    left: 188px;
    bottom: 192px;
    width: 46px;
    height: 68px;
    border-radius: 22px;
    background: linear-gradient(180deg, #7fcf65 0%, #3e9f37 100%);
    transform: rotate(16deg);
    z-index: 2;
}

.contact-details-block h2 {
    margin: 0 0 12px;
    font-family: "Oswald", sans-serif;
    font-size: 3rem;
    color: #1f2722;
    text-transform: none;
}

.contact-details-block {
    padding: 22px 22px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 252, 239, 0.97) 100%);
    border: 1px solid rgba(116, 165, 49, 0.17);
    box-shadow: 0 18px 34px rgba(43, 62, 25, 0.12);
}

.contact-details-block ul {
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(89, 103, 88, 0.2);
    display: grid;
    gap: 12px;
}

.contact-details-block li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(116, 165, 49, 0.06);
    border: 1px solid rgba(116, 165, 49, 0.1);
    color: #253026;
    line-height: 1.6;
}

.contact-details-block .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, #7cb43a 0%, #588620 100%);
    flex: 0 0 12px;
}

.contact-form-panel {
    display: grid;
    gap: 12px;
    padding: 28px 24px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 85% 10%, rgba(223, 245, 186, 0.26) 0%, transparent 40%),
        linear-gradient(160deg, #709f35 0%, #5f8e29 52%, #4e7d21 100%);
    border: 1px solid rgba(229, 246, 201, 0.28);
    box-shadow: 0 26px 44px rgba(35, 53, 15, 0.3);
    backdrop-filter: blur(4px);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.contact-form-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 50px rgba(35, 53, 15, 0.34);
}

.contact-form-panel label {
    display: grid;
    gap: 7px;
    color: #f4f7ef;
    font-size: 0.86rem;
    font-weight: 500;
}

.contact-form-panel label span {
    color: #ffb8b8;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.98);
    font: inherit;
    color: #2a302a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form-panel textarea {
    resize: vertical;
    min-height: 92px;
}

.contact-form-panel .btn {
    justify-self: start;
    padding: 11px 20px;
    border-radius: 10px;
    background: linear-gradient(180deg, #28531b 0%, #1f4315 100%);
    color: #ffffff;
    box-shadow: 0 12px 20px rgba(26, 52, 17, 0.25);
}

.contact-form-panel .btn:hover,
.contact-form-panel .btn:focus-visible {
    box-shadow: 0 16px 26px rgba(26, 52, 17, 0.32);
}

@media (max-width: 1080px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-body-section {
        margin-top: -120px;
    }

    .contact-illustration {
        margin: 0 auto 16px;
        width: min(100%, 360px);
    }
}

@media (max-width: 560px) {
    .contact-hero-copy-wrap h1 {
        font-size: 2.3rem;
    }

    .contact-hero-grid {
        min-height: auto;
        padding: 40px 0 56px;
    }

    .contact-hero-copy-wrap p {
        margin-top: 14px;
        line-height: 1.75;
    }

    .contact-body-section {
        margin-top: -42px;
    }

    .contact-illustration {
        min-height: 268px;
    }

    .contact-monitor {
        left: 16px;
        width: 190px;
        height: 140px;
    }

    .contact-envelope {
        left: 58px;
        width: 154px;
        height: 106px;
        bottom: 76px;
    }

    .contact-envelope::before,
    .contact-envelope::after {
        border-left-width: 77px;
        border-right-width: 77px;
    }

    .contact-envelope::before {
        border-top-width: 52px;
    }

    .contact-envelope::after {
        border-bottom-width: 52px;
    }

    .contact-pin {
        left: 134px;
        bottom: 158px;
        width: 36px;
        height: 54px;
    }

    .contact-details-block h2 {
        font-size: 2.2rem;
    }
}

/* Unified inner pages polish */
.service-page {
    background: linear-gradient(180deg, #f4f7f1 0%, #edf2e8 100%);
}

.service-page main {
    position: relative;
}

.service-page .section {
    padding: 84px 0;
}

.service-page .service-hero {
    border-bottom: 1px solid rgba(116, 165, 49, 0.12);
}

.service-page .service-kicker {
    letter-spacing: 0.16em;
    color: #5e8f2a;
}

.service-page .hero h1 {
    letter-spacing: 0.01em;
    line-height: 1.08;
}

.service-page .service-hero-copy {
    max-width: 66ch;
    color: #5f6c60;
    line-height: 1.82;
}

.service-page .section-header .section-title,
.service-page .about-intro h2,
.service-page .about-choose-title,
.service-page .contact-details-block h2,
.service-page .faq-group h2,
.service-page .advisory-column-title,
.service-page .trust-title,
.service-page .it-outsourced-title,
.service-page .it-outsourced-subtitle {
    color: #1e3717;
    letter-spacing: 0.012em;
}

.service-page .section-copy,
.service-page .about-intro p,
.service-page .trust-copy,
.service-page .advisory-copy-card p,
.service-page .peace-section .section-copy,
.service-page .faq-item p {
    color: #607062;
    line-height: 1.86;
}

.service-page .about-mission-card,
.service-page .about-value-card,
.service-page .value-card,
.service-page .include-card,
.service-page .tax-service-card,
.service-page .advisory-item,
.service-page .outsourced-card,
.service-page .faq-item,
.service-page .contact-details-block,
.service-page .contact-form-panel,
.service-page .cta-panel,
.service-page .about-appointment {
    border-radius: 20px;
    border: 1px solid rgba(116, 165, 49, 0.15);
    box-shadow: 0 16px 30px rgba(43, 62, 25, 0.08);
}

.service-page .about-mission-card,
.service-page .about-value-card,
.service-page .value-card,
.service-page .include-card,
.service-page .tax-service-card,
.service-page .advisory-item,
.service-page .outsourced-card,
.service-page .contact-details-block,
.service-page .faq-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 252, 240, 0.96) 100%);
}

.service-page .value-card:hover,
.service-page .include-card:hover,
.service-page .tax-service-card:hover,
.service-page .advisory-item:hover,
.service-page .outsourced-card:hover,
.service-page .about-value-card:hover,
.service-page .about-mission-card:hover,
.service-page .faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(116, 165, 49, 0.26);
    box-shadow: 0 22px 38px rgba(43, 62, 25, 0.12);
}

.service-page .value-card,
.service-page .include-card,
.service-page .tax-service-card,
.service-page .advisory-item,
.service-page .outsourced-card,
.service-page .about-value-card,
.service-page .about-mission-card,
.service-page .faq-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-page .about-values-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(116, 165, 49, 0.1) 0%, transparent 42%),
        linear-gradient(180deg, #f2f6ed 0%, #e9efe2 100%);
    color: #223323;
}

.service-page .about-values-header {
    margin-bottom: 34px;
}

.service-page .about-values-grid {
    gap: 18px;
}

.service-page .about-values-section .section-title {
    color: #245419;
}

.service-page .about-values-section .section-copy {
    color: #627061;
}

.service-page .about-values-section .about-value-card {
    position: relative;
    overflow: hidden;
    padding: 18px 18px 16px 56px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbef 100%);
    border: 1px solid rgba(116, 165, 49, 0.2);
}

.service-page .about-values-section .about-value-card::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 18px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 18%, transparent 19%),
        linear-gradient(180deg, #90c94a 0%, #5f941c 100%);
    box-shadow: 0 8px 14px rgba(95, 148, 28, 0.24);
}

.service-page .about-values-section .about-value-card h3 {
    margin: 0 0 7px;
    color: #3f7b1c;
    font-size: 1.1rem;
    line-height: 1.24;
}

.service-page .about-values-section .about-value-card p {
    color: #5f6d5d;
    font-size: 0.98rem;
    line-height: 1.55;
}

.service-page .value-icon,
.service-page .include-icon,
.service-page .process-icon,
.service-page .faq-label,
.service-page .outsourced-badge {
    box-shadow: 0 10px 22px rgba(116, 165, 49, 0.18);
}

.it-solutions-page .outsourced-card .outsourced-badge {
    background: linear-gradient(180deg, #8ec549 0%, #5f941c 100%);
}

.it-solutions-page .outsourced-card:nth-child(even) .outsourced-badge {
    background: linear-gradient(180deg, #7eb73a 0%, #4f8220 100%);
}

.service-page .faq-item {
    margin-bottom: 10px;
}

.service-page .faq-item summary {
    font-weight: 600;
    color: #243223;
}

.service-page .faq-item p {
    border-top: 1px dashed rgba(116, 165, 49, 0.2);
    padding-top: 12px;
}

.service-page .contact-form-panel {
    background: linear-gradient(180deg, #6f9f32 0%, #5a8527 100%);
}

.service-page .contact-form-panel .btn {
    background: linear-gradient(180deg, #2f5f1f 0%, #244a18 100%);
    box-shadow: 0 10px 20px rgba(26, 52, 17, 0.25);
}

.service-page .contact-form-panel input:focus,
.service-page .contact-form-panel select:focus,
.service-page .contact-form-panel textarea:focus {
    outline: none;
    border-color: rgba(66, 104, 38, 0.5);
    box-shadow: 0 0 0 3px rgba(183, 219, 145, 0.45);
}

@media (max-width: 1080px) {
    .service-page .section {
        padding: 72px 0;
    }

    .service-page .service-hero-copy {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .service-page .section {
        padding: 56px 0;
    }

    .service-page .about-values-header {
        margin-bottom: 24px;
    }

    .service-page .about-values-grid {
        gap: 12px;
    }

    .service-page .section-header .section-title,
    .service-page .about-intro h2,
    .service-page .about-choose-title,
    .service-page .contact-details-block h2,
    .service-page .faq-group h2,
    .service-page .advisory-column-title,
    .service-page .trust-title,
    .service-page .it-outsourced-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .service-page .about-mission-card,
    .service-page .about-value-card,
    .service-page .value-card,
    .service-page .include-card,
    .service-page .tax-service-card,
    .service-page .advisory-item,
    .service-page .outsourced-card,
    .service-page .faq-item,
    .service-page .contact-details-block,
    .service-page .contact-form-panel,
    .service-page .cta-panel,
    .service-page .about-appointment {
        border-radius: 16px;
    }

    .service-page .about-values-section .about-value-card {
        padding: 14px 14px 14px 48px;
    }

    .service-page .about-values-section .about-value-card::before {
        left: 14px;
        top: 14px;
        width: 22px;
        height: 22px;
    }

    .tax-page .trust-header {
        padding: 16px 14px;
        border-radius: 18px;
    }

    .service-page.tax-page .trust-copy {
        line-height: 1.74;
    }

    .service-page .about-values-section .about-value-card h3 {
        font-size: 1rem;
    }

    .service-page .about-values-section .about-value-card p {
        font-size: 0.92rem;
        line-height: 1.5;
    }
}

/* Keep inner-page hero typography aligned with homepage hero */
.service-page .hero h1 {
    margin: 24px 0 18px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.service-page .hero p,
.service-page .service-hero-copy {
    max-width: 610px;
    margin: 0 0 30px;
    font-size: 0.93rem;
    line-height: 1.7;
}

.service-page .hero-actions .btn {
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
}

.service-page .hero-actions .btn-primary {
    background: linear-gradient(180deg, #82b537 0%, #679820 100%);
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(91, 141, 24, 0.26);
}

@media (max-width: 560px) {
    .service-page .hero h1 {
        font-size: 2.7rem;
    }

    .service-page .hero-actions .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Non-hero motion polish for inner pages */
.service-page .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px) scale(0.99);
    filter: blur(1px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.service-page .section.reveal-on-scroll {
    transform: translateY(30px);
}

.service-page .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .service-page .reveal-on-scroll,
    .service-page .section.reveal-on-scroll {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}