@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Montserrat:wght@400;500&display=swap');

:root {
    --primary: #1c6064;
    /* Brand teal */
    --accent: #F9B233;
    /* Golden Orange */
    --accent-hover: #e09b24;
    --bg-light: #F2F7FB;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

h1,
h2,
h3,
.nav-link {
    font-family: 'Poppins', sans-serif;
}

/* Header Styles */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 5%;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 0.85rem;
}

.flag-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.flag-link:hover {
    opacity: 1;
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 15px 5%;
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.site-nav.sticky {
    padding: 10px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

@media (min-width: 901px) {
    .site-nav:has(.nav-item--mega:hover),
    .site-nav:has(.nav-item--mega:focus-within),
    .site-nav:has(.nav-item--mega.nav-mega-touch-open) {
        z-index: 1050;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
}

.logo-img {
    height: 76px;
    width: auto;
    max-width: min(280px, 58vw);
    object-fit: contain;
    object-position: left center;
    display: block;
    flex-shrink: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent);
}

/* Services mega-menu (desktop hover / touch; mobile = stacked links in drawer) */
.nav-links > li {
    list-style: none;
}

@media (min-width: 901px) {
    .nav-links > li {
        display: flex;
        align-items: center;
    }
}

.nav-item--mega {
    position: relative;
}

.nav-link--mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-chevron {
    display: inline-flex;
    font-size: 0.65em;
    opacity: 0.75;
    transition: transform 0.25s var(--ease-out-smooth);
}

@media (hover: hover) and (pointer: fine) {
    .nav-item--mega:hover .nav-chevron,
    .nav-item--mega:focus-within .nav-chevron {
        transform: rotate(180deg);
    }
}

.nav-mega {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 100vw;
    max-width: 100vw;
    max-width: 100dvw;
    margin-left: 0;
    padding-top: 10px;
    transform: translate3d(-50%, 6px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s var(--ease-out-smooth), visibility 0.22s;
    z-index: 1015;
}

.nav-mega-inner {
    background: var(--white);
    border-top: 1px solid rgba(28, 96, 100, 0.08);
    box-shadow: 0 28px 60px rgba(28, 96, 100, 0.12);
    padding: clamp(1.25rem, 2.5vw, 2rem) max(5%, 1.25rem);
}

.nav-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 28px;
    max-width: 1180px;
    margin: 0 auto;
}

.nav-mega-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, transform 0.2s var(--ease-out-smooth);
}

.nav-mega-item:hover,
.nav-mega-item:focus-visible {
    background: rgba(28, 96, 100, 0.05);
    outline: none;
}

.nav-mega-item:focus-visible {
    box-shadow: 0 0 0 2px rgba(28, 96, 100, 0.25);
}

.nav-mega-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e0f2fe 0%, #dbeafe 100%);
    color: #0369a1;
    font-size: 1.15rem;
}

.nav-mega-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.nav-mega-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: #0f172a;
    line-height: 1.25;
}

.nav-mega-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Mega menu: vivid title + description + icon per row (same order as services anchors) */
.nav-mega-grid .nav-mega-item:nth-child(1) .nav-mega-title {
    color: #c2410c;
}

.nav-mega-grid .nav-mega-item:nth-child(1) .nav-mega-desc {
    color: #9a3412;
}

.nav-mega-grid .nav-mega-item:nth-child(1) .nav-mega-icon {
    background: linear-gradient(145deg, #ffedd5, #fdba74);
    color: #c2410c;
}

.nav-mega-grid .nav-mega-item:nth-child(2) .nav-mega-title {
    color: #6d28d9;
}

.nav-mega-grid .nav-mega-item:nth-child(2) .nav-mega-desc {
    color: #5b21b6;
}

.nav-mega-grid .nav-mega-item:nth-child(2) .nav-mega-icon {
    background: linear-gradient(145deg, #ede9fe, #ddd6fe);
    color: #6d28d9;
}

.nav-mega-grid .nav-mega-item:nth-child(3) .nav-mega-title {
    color: #047857;
}

.nav-mega-grid .nav-mega-item:nth-child(3) .nav-mega-desc {
    color: #065f46;
}

.nav-mega-grid .nav-mega-item:nth-child(3) .nav-mega-icon {
    background: linear-gradient(145deg, #d1fae5, #6ee7b7);
    color: #047857;
}

.nav-mega-grid .nav-mega-item:nth-child(4) .nav-mega-title {
    color: #0369a1;
}

.nav-mega-grid .nav-mega-item:nth-child(4) .nav-mega-desc {
    color: #0c4a6e;
}

.nav-mega-grid .nav-mega-item:nth-child(4) .nav-mega-icon {
    background: linear-gradient(145deg, #e0f2fe, #7dd3fc);
    color: #0369a1;
}

.nav-mega-grid .nav-mega-item:nth-child(5) .nav-mega-title {
    color: #be123c;
}

.nav-mega-grid .nav-mega-item:nth-child(5) .nav-mega-desc {
    color: #9f1239;
}

.nav-mega-grid .nav-mega-item:nth-child(5) .nav-mega-icon {
    background: linear-gradient(145deg, #ffe4e6, #fda4af);
    color: #be123c;
}

.nav-mega-grid .nav-mega-item:nth-child(6) .nav-mega-title {
    color: #4338ca;
}

.nav-mega-grid .nav-mega-item:nth-child(6) .nav-mega-desc {
    color: #3730a3;
}

.nav-mega-grid .nav-mega-item:nth-child(6) .nav-mega-icon {
    background: linear-gradient(145deg, #e0e7ff, #a5b4fc);
    color: #4338ca;
}

.nav-mega-grid .nav-mega-item:nth-child(7) .nav-mega-title {
    color: #0f766e;
}

.nav-mega-grid .nav-mega-item:nth-child(7) .nav-mega-desc {
    color: #115e59;
}

.nav-mega-grid .nav-mega-item:nth-child(7) .nav-mega-icon {
    background: linear-gradient(145deg, #ccfbf1, #5eead4);
    color: #0f766e;
}

.nav-mega-grid .nav-mega-item:nth-child(8) .nav-mega-title {
    color: #c026d3;
}

.nav-mega-grid .nav-mega-item:nth-child(8) .nav-mega-desc {
    color: #a21caf;
}

.nav-mega-grid .nav-mega-item:nth-child(8) .nav-mega-icon {
    background: linear-gradient(145deg, #fae8ff, #e879f9);
    color: #a21caf;
}

@media (hover: hover) and (pointer: fine) {
    .nav-item--mega:hover > .nav-mega,
    .nav-item--mega:focus-within > .nav-mega {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(-50%, 0, 0);
    }
}

.nav-item--mega.nav-mega-touch-open > .nav-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
}

@media (max-width: 1100px) and (min-width: 901px) {
    .nav-mega-inner {
        padding-left: max(3%, 12px);
        padding-right: max(3%, 12px);
    }

    .nav-mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 18px;
    }
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.btn-calendar {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 12px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 44px;
    min-height: 44px;
    transition: background 0.25s var(--ease-out-smooth), transform 0.25s var(--ease-out-smooth);
}

.btn-calendar:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Nav drawer: desktop = inline row */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(28, 96, 100, 0.08);
    cursor: pointer;
    transition: background 0.25s var(--ease-out-smooth);
    flex-shrink: 0;
    touch-action: manipulation;
}

.nav-toggle:hover {
    background: rgba(28, 96, 100, 0.14);
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out-smooth), opacity 0.25s ease;
}

.site-nav.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-nav.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-nav.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.nav-drawer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: clamp(1rem, 3vw, 2.5rem);
    min-width: 0;
}

.nav-drawer .nav-links {
    margin-left: auto;
}

@media (min-width: 901px) {
    .nav-drawer .header-actions {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1100px) and (min-width: 901px) {
    .nav-drawer {
        gap: 1rem;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media (max-width: 900px) {
    .site-nav.is-open {
        z-index: 1002;
    }

    .logo,
    .nav-toggle {
        position: relative;
        z-index: 1003;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s var(--ease-out-smooth), visibility 0.35s;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .site-nav.is-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
    }

    .site-nav:not(.is-open) .nav-backdrop {
        pointer-events: none;
    }

    .nav-drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: min(340px, 90vw);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: max(5rem, calc(env(safe-area-inset-top, 0px) + 3.25rem));
        padding-bottom: 2rem;
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
        background: var(--white);
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.14);
        z-index: 1002;
        transform: translate3d(100%, 0, 0);
        transition: transform 0.4s var(--ease-out-smooth);
        overflow-y: auto;
        overscroll-behavior-y: contain;
        scroll-padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
        -webkit-overflow-scrolling: touch;
        gap: 1.25rem;
        flex: unset;
        min-width: min(340px, 90vw);
        text-align: start;
        -webkit-font-smoothing: antialiased;
    }

    .site-nav.is-open .nav-drawer {
        transform: translate3d(0, 0, 0);
    }

    .nav-drawer .nav-links {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-drawer .nav-links li {
        border-bottom: 1px solid rgba(28, 96, 100, 0.08);
        width: 100%;
        text-align: start;
    }

    .nav-drawer .nav-link {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 1.05rem;
        text-align: start;
        box-sizing: border-box;
    }

    .nav-item--mega {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-item--mega > .nav-link--mega-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-drawer .nav-item--mega > .nav-mega {
        position: static;
        width: 100%;
        max-width: none;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        padding: 0;
        margin: 0;
        transition:
            max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.28s ease,
            visibility 0.28s,
            padding 0.28s ease;
    }

    .nav-drawer .nav-item--mega.nav-mega-mobile-open > .nav-mega {
        max-height: 2200px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 4px 0 12px;
    }

    .nav-drawer .nav-item--mega.nav-mega-mobile-open .nav-chevron {
        transform: rotate(180deg);
    }

    .nav-mega-inner {
        box-shadow: none;
        border: none;
        padding: 6px 0 8px 14px;
        margin: 0 0 0 2px;
        border-left: 3px solid rgba(28, 96, 100, 0.12);
        background: linear-gradient(180deg, rgba(28, 96, 100, 0.04) 0%, rgba(28, 96, 100, 0.02) 100%);
        border-radius: 0 12px 12px 0;
    }

    .nav-mega-grid {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .nav-mega-item {
        padding: 12px 10px 12px 4px;
        border-radius: 10px;
        border: 1px solid transparent;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .nav-mega-item:active {
        background: rgba(28, 96, 100, 0.06);
    }

    .nav-mega-item:last-child {
        border-bottom: none;
    }

    .nav-drawer .nav-mega-title {
        font-size: 1rem;
    }

    .nav-drawer .nav-mega-desc {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .nav-drawer .nav-mega-icon {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    @media (prefers-reduced-motion: reduce) {
        .nav-drawer .nav-item--mega > .nav-mega {
            transition: none;
        }
    }

    .nav-drawer .header-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 0.5rem;
        gap: 12px;
        text-align: start;
    }

    .nav-drawer .btn-schedule {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .nav-drawer .btn-calendar {
        width: 100%;
        min-height: 48px;
    }

    .site-nav {
        padding-left: max(4%, env(safe-area-inset-left, 0px));
        padding-right: max(4%, env(safe-area-inset-right, 0px));
    }

    .logo-img {
        height: 56px;
    }

    .footer-logo-img {
        height: 52px;
        max-width: min(280px, 85vw);
    }

    .footer-logo-mark {
        padding: 10px 14px;
    }

    .why-us-section {
        background-attachment: scroll;
    }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
    .nav-drawer,
    .nav-backdrop,
    .nav-toggle-bar {
        transition: none;
    }
}

.btn-schedule {
    background: var(--accent);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    /* Use inline-flex to prevent stretching */
    align-items: center;
    gap: 8px;
    min-height: 44px;
    transition: background 0.25s var(--ease-out-smooth), transform 0.25s var(--ease-out-smooth);
}

.btn-schedule:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Announcement Bar */
.announcement-bar {
    background: #fff;
    padding: 10px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.announcement-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 5px 15px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    text-decoration: none;
    color: var(--primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 60px 5% 100px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.hero-content {
    flex: 1.2;
    z-index: 2;
    min-width: 0;
}

.hero h1 {
    font-size: clamp(1.85rem, 4vw + 1rem, 3.2rem);
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.03em;
    overflow-wrap: break-word;
    hyphens: manual;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.15rem);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 650px;
    overflow-wrap: break-word;
}

.feature-label {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Inline CTA Form */
.cta-form-container {
    background: transparent;
    padding: 0;
    box-shadow: none;
    display: block;
}

.cta-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary);
}

.cta-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
}

.cta-form input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}

.cta-form button {
    background: var(--accent);
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.cta-form button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Hero Image Container */
.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 0;
    width: 100%;
    max-width: min(480px, 100%);
    margin-inline: auto;
}

.hero-image {
    width: min(450px, 100%);
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-height: min(90vw, 450px);
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    z-index: 2;
    position: relative;
}

.hero-decor-circle {
    position: absolute;
    width: min(400px, 95vw);
    height: min(400px, 95vw);
    max-width: 100%;
    background: #e1f5f2;
    border-radius: 50%;
    z-index: 1;
}

.speech-bubble {
    position: absolute;
    top: 20%;
    left: -15%;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e1e8f0;
    max-width: min(220px, 32vw);
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    font-weight: 500;
    line-height: 1.45;
    color: var(--primary);
    z-index: 3;
    text-align: left;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #ffffff transparent transparent;
}

.floating-icon {
    position: absolute;
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    color: #4A90E2;
    font-size: 1.2rem;
    z-index: 3;
}

.icon-1 { top: 10%; left: 0; }
.icon-2 { bottom: 10%; right: 10%; }

/* Row-layout hero: keep speech bubble inside viewport (avoids clip / overflow) */
@media (max-width: 1399px) and (min-width: 1101px) {
    .speech-bubble {
        left: auto;
        right: 0;
        top: 12%;
        max-width: min(240px, 36vw);
    }

    .speech-bubble::before {
        right: 24px;
    }
}

/* Benefits Bar */
.benefits-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 5%;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.benefit-card {
    background: #164e52;
    color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.benefit-text p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 100px 5%;
    background: #e9eff5;
    /* Darker background for better card contrast */
    width: 100%;
    clear: both;
}

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

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(28, 96, 100, 0.05);
    /* Very subtle border */
    border-top: 4px solid var(--accent);
    /* Top accent border for visibility */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    /* Initial subtle shadow */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(28, 96, 100, 0.12);
    /* Deeper shadow on hover */
    border-color: rgba(28, 96, 100, 0.1);
    border-top-color: var(--accent-hover);
}

.service-icon-small {
    width: 50px;
    height: 50px;
    background: #fff8eb;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.know-more {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 10px;
}

.know-more i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.know-more:hover {
    color: var(--accent);
}

.know-more:hover i {
    transform: translateX(5px);
}

/* Home + services listing: distinct light card tints + matching icon chips */
#services .service-card--t-amber,
.services-section.services-page-lead .service-card--t-amber {
    background: linear-gradient(165deg, #fff8f0 0%, #ffffff 55%);
    border-color: rgba(234, 88, 12, 0.14);
    border-top-color: #f59e0b;
}

#services .service-card--t-amber .service-icon-small,
.services-section.services-page-lead .service-card--t-amber .service-icon-small {
    background: #ffedd5;
    color: #c2410c;
}

#services .service-card--t-amber:hover,
.services-section.services-page-lead .service-card--t-amber:hover {
    border-top-color: #ea580c;
}

#services .service-card--t-violet,
.services-section.services-page-lead .service-card--t-violet {
    background: linear-gradient(165deg, #faf5ff 0%, #ffffff 55%);
    border-color: rgba(124, 58, 237, 0.14);
    border-top-color: #a855f7;
}

#services .service-card--t-violet .service-icon-small,
.services-section.services-page-lead .service-card--t-violet .service-icon-small {
    background: #ede9fe;
    color: #6d28d9;
}

#services .service-card--t-violet:hover,
.services-section.services-page-lead .service-card--t-violet:hover {
    border-top-color: #7c3aed;
}

#services .service-card--t-emerald,
.services-section.services-page-lead .service-card--t-emerald {
    background: linear-gradient(165deg, #ecfdf5 0%, #ffffff 55%);
    border-color: rgba(5, 150, 105, 0.14);
    border-top-color: #10b981;
}

#services .service-card--t-emerald .service-icon-small,
.services-section.services-page-lead .service-card--t-emerald .service-icon-small {
    background: #d1fae5;
    color: #047857;
}

#services .service-card--t-emerald:hover,
.services-section.services-page-lead .service-card--t-emerald:hover {
    border-top-color: #059669;
}

#services .service-card--t-sky,
.services-section.services-page-lead .service-card--t-sky {
    background: linear-gradient(165deg, #f0f9ff 0%, #ffffff 55%);
    border-color: rgba(2, 132, 199, 0.14);
    border-top-color: #0ea5e9;
}

#services .service-card--t-sky .service-icon-small,
.services-section.services-page-lead .service-card--t-sky .service-icon-small {
    background: #e0f2fe;
    color: #0369a1;
}

#services .service-card--t-sky:hover,
.services-section.services-page-lead .service-card--t-sky:hover {
    border-top-color: #0284c7;
}

#services .service-card--t-rose,
.services-section.services-page-lead .service-card--t-rose {
    background: linear-gradient(165deg, #fff1f2 0%, #ffffff 55%);
    border-color: rgba(225, 29, 72, 0.12);
    border-top-color: #fb7185;
}

#services .service-card--t-rose .service-icon-small,
.services-section.services-page-lead .service-card--t-rose .service-icon-small {
    background: #ffe4e6;
    color: #be123c;
}

#services .service-card--t-rose:hover,
.services-section.services-page-lead .service-card--t-rose:hover {
    border-top-color: #e11d48;
}

#services .service-card--t-indigo,
.services-section.services-page-lead .service-card--t-indigo {
    background: linear-gradient(165deg, #eef2ff 0%, #ffffff 55%);
    border-color: rgba(79, 70, 229, 0.14);
    border-top-color: #6366f1;
}

#services .service-card--t-indigo .service-icon-small,
.services-section.services-page-lead .service-card--t-indigo .service-icon-small {
    background: #e0e7ff;
    color: #4338ca;
}

#services .service-card--t-indigo:hover,
.services-section.services-page-lead .service-card--t-indigo:hover {
    border-top-color: #4f46e5;
}

/* Extra tints (services page 8 cards; usable on home if needed) */
#services .service-card--t-teal,
.services-section.services-page-lead .service-card--t-teal {
    background: linear-gradient(165deg, #f0fdfa 0%, #ffffff 55%);
    border-color: rgba(13, 148, 136, 0.14);
    border-top-color: #2dd4bf;
}

#services .service-card--t-teal .service-icon-small,
.services-section.services-page-lead .service-card--t-teal .service-icon-small {
    background: #ccfbf1;
    color: #0f766e;
}

#services .service-card--t-teal:hover,
.services-section.services-page-lead .service-card--t-teal:hover {
    border-top-color: #14b8a6;
}

#services .service-card--t-coral,
.services-section.services-page-lead .service-card--t-coral {
    background: linear-gradient(165deg, #fff8f3 0%, #ffffff 55%);
    border-color: rgba(249, 115, 22, 0.14);
    border-top-color: #fb923c;
}

#services .service-card--t-coral .service-icon-small,
.services-section.services-page-lead .service-card--t-coral .service-icon-small {
    background: #ffedd5;
    color: #c2410c;
}

#services .service-card--t-coral:hover,
.services-section.services-page-lead .service-card--t-coral:hover {
    border-top-color: #f97316;
}

/* Checkmarks match each card tint (home + services listing) */
#services .service-card--t-amber .check-list li::before,
.services-section.services-page-lead .service-card--t-amber .check-list li::before {
    color: #ea580c;
}

#services .service-card--t-violet .check-list li::before,
.services-section.services-page-lead .service-card--t-violet .check-list li::before {
    color: #7c3aed;
}

#services .service-card--t-emerald .check-list li::before,
.services-section.services-page-lead .service-card--t-emerald .check-list li::before {
    color: #059669;
}

#services .service-card--t-sky .check-list li::before,
.services-section.services-page-lead .service-card--t-sky .check-list li::before {
    color: #0284c7;
}

#services .service-card--t-rose .check-list li::before,
.services-section.services-page-lead .service-card--t-rose .check-list li::before {
    color: #e11d48;
}

#services .service-card--t-indigo .check-list li::before,
.services-section.services-page-lead .service-card--t-indigo .check-list li::before {
    color: #4f46e5;
}

#services .service-card--t-teal .check-list li::before,
.services-section.services-page-lead .service-card--t-teal .check-list li::before {
    color: #0d9488;
}

#services .service-card--t-coral .check-list li::before,
.services-section.services-page-lead .service-card--t-coral .check-list li::before {
    color: #f97316;
}

.services-section.services-page-lead .service-card .check-list {
    margin-top: 8px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

/* Why Us Section with Parallax */
.why-us-section {
    position: relative;
    padding: 100px 5%;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect */
    color: var(--white);
    overflow: hidden;
}

.why-us-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 96, 100, 0.85);
    /* Brand teal overlay */
    z-index: 1;
}

.relative-content {
    position: relative;
    z-index: 2;
}

.why-us-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-us-left {
    flex: 1.2;
}

.why-us-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.why-us-left .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
}

.why-feature-item i {
    color: var(--accent);
    margin-top: 5px;
}

.why-us-right {
    flex: 1;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive Why Us */
@media (max-width: 1024px) {
    .why-us-content {
        flex-direction: column;
        text-align: center;
    }

    .why-feature-item {
        justify-content: center;
        text-align: center;
    }

    .stats-grid {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Tax Banner Section */
.tax-banner-section {
    padding: 80px 5%;
    /* Whitespace between sections */
    background: var(--white);
}

.tax-card {
    background: #143e42;
    /* Dark themed background */
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: var(--white);
    overflow: hidden;
}

.tax-card-content {
    flex: 1.5;
}

.tax-card-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.price-info {
    font-size: 1.1rem;
    color: var(--accent);
    /* Golden/Orange text for emphasis */
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 500;
}

.tax-card-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tax-card-image img {
    max-width: 100%;
    height: auto;
    /* Optional: subtle animation */
}

/* Mobile Responsive Tax Banner */
@media (max-width: 992px) {
    .tax-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .tax-card-content h2 {
        font-size: 1.8rem;
    }
}

/* Software Expertise Section */
.software-expertise {
    padding: 100px 5%;
    background: #ffffff;
    overflow: hidden;
}

.expertise-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.expertise-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.expertise-title {
    background: #3b71ca;
    /* Blue label background */
    color: var(--white);
    padding: 10px 40px;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(59, 113, 202, 0.3);
}

@media (max-width: 600px) {
    .expertise-title {
        white-space: normal;
        text-align: center;
        line-height: 1.25;
        max-width: 100%;
        padding: 10px 16px;
        font-size: clamp(1.05rem, 4.2vw, 1.4rem);
    }
}

.logo-card {
    background: var(--white);
    border: 1px solid #e0e6ed;
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.logo-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.logo-card img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

/* Specific Row Adjustments to mimic floating feel */
.expertise-row.top {
    transform: translateX(-20px);
}

.expertise-row.bottom {
    transform: translateX(20px);
}

/* Mobile Responsive Software Expertise */
@media (max-width: 1200px) {
    .expertise-title {
        font-size: 1.5rem;
        padding: 10px 20px;
    }

    .logo-card {
        width: 150px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .expertise-row {
        flex-wrap: wrap;
        gap: 15px;
        transform: none !important;
    }

    .expertise-row.middle {
        flex-direction: column;
    }

    .logo-card.side {
        display: none;
        /* Hide side logos on small screens to keep title centered */
    }

    .logo-card {
        width: 45%;
        height: 80px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 5%;
    background: #f1f5f9; /* Darker soft blue-gray for better contrast */
    background-image: radial-gradient(circle at 10% 20%, rgba(249, 178, 51, 0.08) 0%, transparent 25%),
                      radial-gradient(circle at 90% 80%, rgba(28, 96, 100, 0.05) 0%, transparent 25%);
}

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

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(28, 96, 100, 0.08); /* Stronger shadow */
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition);
    position: relative;
    border-top: 5px solid var(--accent); /* Thicker accent line */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(28, 96, 100, 0.07);
}

.star-rating {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.quote-text {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.05rem;
    flex-grow: 1;
    margin: 10px 0;
    overflow-wrap: break-word;
    hyphens: manual;
}

.client-info {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.client-info strong {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hire Resources Section */
.hire-resources {
    padding: 100px 5%;
    background: #f1f5f9; /* Distinct background for contrast */
}

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

.resource-card {
    background: #ffffff;
    border: 1px solid #cbd5e1; /* Visible, professional border on ALL cards */
    border-radius: 24px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(28, 96, 100, 0.05);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(28, 96, 100, 0.1);
    border-color: var(--accent);
}

/* Explicitly styling the highlighting card to match but be slightly distinct if needed */
.resource-card.highlighting {
    border-color: #cbd5e1; /* Ensure it starts with the same border */
}

.resource-card.highlighting:hover {
    border-color: var(--accent);
}

.price-tag {
    background: #fff8eb; /* Soft accent background */
    color: var(--accent-hover);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    align-self: flex-start;
    border: 1px solid rgba(249, 178, 51, 0.2);
}

.resource-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.resource-specs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.resource-specs li {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}

.resource-specs li strong {
    color: var(--primary);
    font-weight: 700;
}

.resource-specs li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.1rem;
}

.resource-card .btn-schedule {
    margin-top: 20px;
    padding: 15px 30px;
    font-weight: 700;
    justify-content: center;
}

/* Dedicated Team Section */
.dedicated-team {
    padding: 100px 5%;
    background: #ffffff;
}

.team-flex-container {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 50px;
}

.team-image-area {
    flex: 1;
    position: relative;
    padding: 40px;
}

.blob-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 380px;
    background: #FFCA7A;
    border-radius: 100px;
    z-index: 1;
    opacity: 0.8;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30px 30px 100px 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 450px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.circle-decoration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: #E8F5F2;
    border-radius: 50%;
    z-index: 3;
}

.arc-decoration {
    position: absolute;
    top: 20%;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 5px solid #D1E9FF;
    border-radius: 50%;
    border-bottom: transparent;
    border-left: transparent;
    z-index: 3;
    transform: rotate(-15deg);
}

.team-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.accordion-header h3 {
    font-size: 1.4rem;
    color: #4A90E2;
    margin: 0;
}

.accordion-header i {
    color: #4A90E2;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fdfdfd;
}

.accordion-content p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.accordion-item.active {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #4A90E2;
}

.accordion-item.active .accordion-header {
    background: #f0f7ff;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: min(70vh, 420px);
}

/* Hero stacks earlier so image + speech bubble stay readable */
@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-image-container {
        margin-top: 40px;
    }

    .speech-bubble {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: min(400px, 100%);
        margin: 18px auto 0;
        padding: 16px 18px;
        font-size: clamp(0.92rem, 3.5vw, 1.05rem);
        line-height: 1.5;
        text-align: left;
        box-sizing: border-box;
    }

    .speech-bubble::before {
        display: none;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .feature-list {
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-bar {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        width: 100%;
    }

    .cta-form button {
        width: 100%;
    }

    .testimonials-grid, .resource-grid {
        grid-template-columns: 1fr;
    }

    .team-flex-container {
        flex-direction: column;
        gap: 60px;
    }
}

/* Footer Styles */
.footer {
    background: var(--primary);
    color: var(--white);
    padding-top: 80px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-list i {
    color: var(--accent);
    margin-top: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.bottom-links a:hover {
    color: var(--white);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Floating action buttons */
.fab-wrap {
    position: fixed;
    z-index: 990;
    transition: opacity 0.35s var(--ease-out-smooth), transform 0.35s var(--ease-out-smooth);
}

/* WhatsApp: above footer / sticky nav; still below open drawer (1002) */
.fab-wrap.fab-wrap--whatsapp {
    z-index: 1001;
}

.fab-wrap--whatsapp {
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    left: max(16px, env(safe-area-inset-left, 0px));
    right: auto;
    top: auto;
}

.fab-wrap--chat {
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s var(--ease-out-smooth), box-shadow 0.25s ease;
    touch-action: manipulation;
}

.fab-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.fab-btn--whatsapp {
    background: #25d366;
    font-size: 1.75rem;
}

.fab-btn--chat {
    background: var(--primary);
    font-size: 1.35rem;
}

body.nav-open .fab-wrap.fab-wrap--chat {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
}

@media (max-width: 768px) {
    .fab-wrap.fab-wrap--whatsapp {
        position: fixed;
        left: max(12px, env(safe-area-inset-left, 0px));
        right: auto;
        bottom: max(12px, env(safe-area-inset-bottom, 0px));
        top: auto;
        z-index: 1001;
        width: auto;
        height: auto;
    }

    .fab-btn {
        width: 52px;
        height: 52px;
    }

    .fab-btn--whatsapp {
        font-size: 1.6rem;
    }
}

/* Site-wide mobile polish */
@media (max-width: 900px) {
    .top-bar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 8px max(12px, env(safe-area-inset-left)) 8px max(12px, env(safe-area-inset-right));
        row-gap: 8px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
    }

    .announcement-bar {
        flex-direction: column;
        text-align: center;
        padding: 12px max(4%, env(safe-area-inset-left)) 12px max(4%, env(safe-area-inset-right));
        gap: 10px;
    }

    .announcement-text {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .hero {
        padding: 40px max(4%, env(safe-area-inset-left)) 60px max(4%, env(safe-area-inset-right));
        gap: 36px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-form-container h3 {
        font-size: 1.45rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .floating-icon {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    .icon-1 {
        top: 5%;
        left: 4%;
    }

    .icon-2 {
        bottom: 6%;
        right: 4%;
    }

    .team-image-area {
        padding: 20px 12px;
    }

    .services-section,
    .software-expertise,
    .testimonials-section,
    .hire-resources,
    .dedicated-team,
    .tax-banner-section,
    .why-us-section {
        padding: 64px max(4%, env(safe-area-inset-left)) 64px max(4%, env(safe-area-inset-right));
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: clamp(1.35rem, 3vw + 0.75rem, 2.2rem);
    }

    .section-header p {
        font-size: 0.98rem;
    }

    .benefit-card {
        padding: 22px 20px;
        flex-direction: column;
        text-align: center;
    }

    .benefit-text p {
        font-size: 0.95rem;
    }

    .tax-card {
        padding: 32px 22px;
    }

    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
        padding-right: 8px;
    }

    .footer {
        padding-top: 56px;
        margin-top: 64px;
    }

    .footer-container {
        padding-left: max(4%, env(safe-area-inset-left));
        padding-right: max(4%, env(safe-area-inset-right));
    }

    .footer-grid {
        gap: 36px;
    }

    .contact-info-list a,
    .contact-info-list span {
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .header-actions .btn-schedule {
        font-size: 0.9rem;
        padding: 11px 16px;
    }

    .btn-pill {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

/* ── Inner pages (About, Services, Testimonials, Contact) ───────── */
.page-hero {
    position: relative;
    padding-top: clamp(48px, 8vw, 88px);
    padding-bottom: clamp(40px, 6vw, 64px);
    padding-left: max(5%, env(safe-area-inset-left, 0px));
    padding-right: max(5%, env(safe-area-inset-right, 0px));
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

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

.breadcrumb-nav {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb-nav a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.breadcrumb-nav span[aria-hidden="true"] {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
    max-width: 900px;
    overflow-wrap: break-word;
    hyphens: manual;
}

.page-hero-lead {
    font-size: clamp(1rem, 1.2vw + 0.85rem, 1.15rem);
    line-height: 1.65;
    max-width: 720px;
    opacity: 0.95;
    margin: 0;
    overflow-wrap: break-word;
}

.page-hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Mid-page row: heading + right-aligned actions (desktop) */
.split-cta-row {
    align-items: center;
}

.split-cta-actions {
    text-align: right;
}

.split-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.split-cta-note {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.split-cta-note a {
    overflow-wrap: anywhere;
}

/* Services page — modern inline contact (below CTA buttons) */
.contact-reach-card {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--bg-light) 100%);
    border: 1px solid rgba(28, 96, 100, 0.1);
    box-shadow: 0 8px 28px rgba(28, 96, 100, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
}

.contact-reach-card__label {
    width: 100%;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    opacity: 0.85;
}

.contact-reach-card__number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-reach-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: auto;
}

.contact-reach-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    min-height: 44px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    background: var(--white);
    border: 1px solid rgba(28, 96, 100, 0.15);
    box-shadow: 0 2px 8px rgba(28, 96, 100, 0.06);
    transition: transform 0.2s var(--ease-out-smooth), box-shadow 0.2s ease, border-color 0.2s ease,
        background 0.2s ease;
}

.contact-reach-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(28, 96, 100, 0.1);
}

.contact-reach-btn i {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-reach-btn--whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.contact-reach-btn--whatsapp:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

@media (max-width: 900px) {
    .contact-reach-card__actions {
        margin-left: 0;
        width: 100%;
    }

    .contact-reach-btn {
        flex: 1 1 auto;
        min-width: min(140px, 100%);
    }
}

@media (max-width: 480px) {
    .contact-reach-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .contact-reach-card__label {
        text-align: center;
    }

    .contact-reach-card__number {
        text-align: center;
    }

    .contact-reach-card__actions {
        justify-content: center;
    }

    .contact-reach-btn {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
    }
}

.action-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 480px) {
    .page-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero-actions .btn-schedule,
    .page-hero-actions .btn-outline-light {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .action-btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .action-btn-row .btn-schedule,
    .action-btn-row .btn-pill {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .split-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .split-cta-buttons .btn-schedule,
    .split-cta-buttons .btn-pill {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
}

.page-hero-actions .btn-schedule,
.page-hero-actions .btn-outline-light {
    text-decoration: none;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: var(--white);
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.inner-section {
    padding-top: clamp(64px, 8vw, 100px);
    padding-bottom: clamp(64px, 8vw, 100px);
    padding-left: max(5%, env(safe-area-inset-left, 0px));
    padding-right: max(5%, env(safe-area-inset-right, 0px));
}

.inner-section.alt-bg {
    background: var(--bg-light);
    border-top: 1px solid rgba(28, 96, 100, 0.06);
    border-bottom: 1px solid rgba(28, 96, 100, 0.06);
}

.inner-section .section-header {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 800px;
}

.inner-section .section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.content-card {
    background: var(--white);
    border-radius: 16px;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(28, 96, 100, 0.08);
    box-shadow: var(--shadow);
    height: 100%;
}

.content-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.content-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.two-col-grid > * {
    min-width: 0;
}

@media (max-width: 900px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }

    /* CTA column pairs (services / testimonials mid-page) */
    .split-cta-row .split-cta-actions {
        text-align: left;
    }

    .split-cta-row .split-cta-actions .split-cta-buttons {
        justify-content: flex-start;
    }

    .split-cta-row .split-cta-actions .split-cta-note {
        text-align: left;
    }
}

.kicker {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-hover);
    margin-bottom: 0.5rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    background: var(--bg-light);
    border: 1px solid rgba(28, 96, 100, 0.12);
}

.dual-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
}

@media (max-width: 600px) {
    .dual-check-grid {
        grid-template-columns: 1fr;
    }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-band-inner {
    background: linear-gradient(135deg, #143e42 0%, var(--primary) 100%);
    border-radius: 20px;
    padding: clamp(32px, 5vw, 48px);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 50px rgba(28, 96, 100, 0.2);
}

.cta-band-inner > * {
    min-width: 0;
}

.cta-band-inner h2 {
    color: var(--white);
    font-size: clamp(1.35rem, 2.5vw + 0.5rem, 1.85rem);
    margin-bottom: 8px;
    line-height: 1.25;
}

.cta-band-inner p {
    margin: 0;
    opacity: 0.88;
    font-size: 1rem;
    max-width: 560px;
}

.cta-band-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cta-band-actions {
        flex-direction: row;
    }
}

.cta-band-inner .btn-schedule {
    background: var(--white);
    color: var(--primary);
}

.cta-band-inner .btn-schedule:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Contact page */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.contact-layout > * {
    min-width: 0;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-info-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-info-block:last-of-type {
    margin-bottom: 0;
}

.contact-info-block .ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff8eb;
    color: var(--accent-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-info-block h3 {
    font-size: 1rem;
    color: var(--primary);
    margin: 0 0 4px;
}

.contact-info-block a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-info-block a:hover {
    color: var(--accent-hover);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.contact-form .btn-schedule {
    min-height: 48px;
}

@media (max-width: 480px) {
    .contact-form .btn-schedule {
        width: 100%;
        justify-content: center;
    }
}

/* First content block after page hero */
.services-section.services-page-lead,
.testimonials-section.testimonials-page-lead,
.inner-section.contact-page-lead {
    padding-top: clamp(48px, 6vw, 72px);
}

.service-card .check-list li {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-card .check-list li {
        font-size: 0.88rem;
    }
}

.nav-link.is-active {
    color: var(--accent);
}

/* Anchor targets clear sticky nav */
[id].service-card,
section[id].services-section {
    scroll-margin-top: 100px;
}

@media (max-width: 900px) {
    [id].service-card,
    section[id].services-section {
        scroll-margin-top: 88px;
    }
}

/* Mobile: inner pages (must follow base .inner-section / .page-hero / .cta-band-inner rules) */
@media (max-width: 768px) {
    .inner-section,
    .page-hero {
        padding: 64px max(4%, env(safe-area-inset-left)) 64px max(4%, env(safe-area-inset-right));
    }

    .page-hero {
        padding-top: clamp(40px, 8vw, 64px);
        padding-bottom: clamp(36px, 7vw, 56px);
    }

    .services-section.services-page-lead,
    .testimonials-section.testimonials-page-lead,
    .inner-section.contact-page-lead {
        padding-top: clamp(36px, 8vw, 56px);
    }

    .cta-band-inner {
        padding: 28px 22px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cta-band-inner .kicker {
        text-align: center;
    }

    .cta-band-inner p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-band-actions {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-band-actions .btn-schedule,
    .cta-band-actions .btn-outline-light {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
}

/* ── About Us page: richer color & depth ─────────────────────────── */
.page-about .page-hero--about {
    position: relative;
}

.page-about .page-hero--about::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 85% 55% at 85% 15%, rgba(249, 178, 51, 0.28), transparent 52%),
        radial-gradient(ellipse 70% 45% at 12% 85%, rgba(56, 189, 248, 0.18), transparent 48%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.06), transparent 65%);
}

.page-about .page-hero--about .container {
    position: relative;
    z-index: 1;
}

.page-about .about-intro {
    background:
        radial-gradient(ellipse 100% 70% at 100% 0%, rgba(249, 178, 51, 0.14), transparent 52%),
        radial-gradient(ellipse 90% 60% at 0% 100%, rgba(14, 165, 233, 0.12), transparent 48%),
        linear-gradient(185deg, #f5fcfb 0%, #f2f7fb 45%, #faf8ff 100%);
    border-bottom: 1px solid rgba(28, 96, 100, 0.07);
}

.page-about .about-intro-copy {
    padding: clamp(1.1rem, 3vw, 1.75rem);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 44px rgba(28, 96, 100, 0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-about .about-section-title {
    margin-bottom: 1rem;
    text-align: left;
}

.page-about .about-section-title h2 {
    color: var(--primary);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
    .page-about .about-section-title h2 {
        background: linear-gradient(120deg, var(--primary) 0%, #0d9488 45%, #0369a1 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.page-about .about-lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.page-about .about-intro-copy > .about-lead:last-of-type {
    margin-bottom: 1.5rem;
}

.page-about .about-proof-copy > .about-lead--compact {
    margin-bottom: 1.35rem;
}

.page-about .about-values {
    background: linear-gradient(125deg, #ecfdf5 0%, #e0f2fe 32%, #fef9c3 65%, #fae8ff 100%);
    border-top: 1px solid rgba(28, 96, 100, 0.06);
    border-bottom: 1px solid rgba(28, 96, 100, 0.06);
}

.page-about .about-proof {
    background:
        radial-gradient(circle at 12% 25%, rgba(249, 178, 51, 0.1) 0%, transparent 26%),
        radial-gradient(circle at 88% 70%, rgba(99, 102, 241, 0.09) 0%, transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid rgba(28, 96, 100, 0.05);
}

.page-about .content-card--about-vision {
    background: linear-gradient(165deg, #faf5ff 0%, #ffffff 55%, #fffbeb 100%);
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-top: 4px solid #a855f7;
    box-shadow: 0 18px 46px rgba(124, 58, 237, 0.12);
}

.page-about .content-card--about-lead {
    background: linear-gradient(165deg, #fff1f2 0%, #ffffff 55%, #f0fdfa 100%);
    border: 1px solid rgba(251, 113, 133, 0.22);
    border-top: 4px solid #fb7185;
    box-shadow: 0 18px 46px rgba(225, 29, 72, 0.08);
}

.page-about .content-card--about-commit {
    background: linear-gradient(165deg, #f0f9ff 0%, #ffffff 55%, #eef2ff 100%);
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-top: 4px solid #38bdf8;
    box-shadow: 0 18px 46px rgba(2, 132, 199, 0.1);
}

.page-about .content-card--about-services {
    background: linear-gradient(165deg, #f0fdfa 0%, #ffffff 60%, #fff8f0 100%);
    border: 1px solid rgba(20, 184, 166, 0.22);
    border-top: 4px solid #2dd4bf;
    box-shadow: 0 18px 46px rgba(13, 148, 136, 0.1);
}

.page-about .content-card {
    transition: transform 0.3s var(--ease-out-smooth), box-shadow 0.3s ease;
}

.page-about .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(28, 96, 100, 0.14);
}

.page-about .about-services-card-title {
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.page-about .about-card-icon.about-card-icon--violet {
    background: linear-gradient(135deg, #ede9fe, #fae8ff);
    color: #6d28d9;
}

.page-about .about-card-icon.about-card-icon--sky {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    color: #0369a1;
}

.page-about .about-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 1.5rem;
}

.page-about .about-stat-tile {
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 22px rgba(28, 96, 100, 0.08);
    transition: transform 0.25s var(--ease-out-smooth), box-shadow 0.25s ease;
}

.page-about .about-stat-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(28, 96, 100, 0.12);
}

.page-about .about-stat-tile__num {
    display: block;
    font-size: clamp(1.15rem, 2.8vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #1e293b;
}

.page-about .about-stat-tile__lbl {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    color: #334155;
}

.page-about .about-stat-tile--amber {
    background: linear-gradient(145deg, #fffbeb, #fef3c7);
}

.page-about .about-stat-tile--teal {
    background: linear-gradient(145deg, #ecfdf5, #ccfbf1);
}

.page-about .about-stat-tile--violet {
    background: linear-gradient(145deg, #faf5ff, #ede9fe);
}

.page-about .about-stat-tile--coral {
    background: linear-gradient(145deg, #fff7ed, #ffedd5);
}

.page-about .about-core-heading {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-about .skill-badge--vivid {
    font-weight: 600;
    border-width: 2px;
    border-style: solid;
}

.page-about .skill-badge--vivid:nth-child(5n + 1) {
    background: #fef3c7;
    border-color: #fcd34d;
    color: #92400e;
}

.page-about .skill-badge--vivid:nth-child(5n + 2) {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e40af;
}

.page-about .skill-badge--vivid:nth-child(5n + 3) {
    background: #d1fae5;
    border-color: #6ee7b7;
    color: #065f46;
}

.page-about .skill-badge--vivid:nth-child(5n + 4) {
    background: #ede9fe;
    border-color: #c4b5fd;
    color: #5b21b6;
}

.page-about .skill-badge--vivid:nth-child(5n + 5) {
    background: #ffedd5;
    border-color: #fdba74;
    color: #9a3412;
}

.page-about .about-check-list--emerald li::before {
    color: #059669;
}

.page-about .about-check-list--sky li::before {
    color: #0284c7;
}

@media (max-width: 900px) {
    .page-about .about-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .page-about .about-intro-copy {
        padding: 1rem 1.1rem;
    }

    .page-about .about-section-title h2 {
        font-size: clamp(1.45rem, 5vw, 2rem);
    }
}

/* -------------------------------------------------------------------------- */
/* Home page motion (index only — body.page-home)                            */
/* -------------------------------------------------------------------------- */

@keyframes pageHomeRevealUp {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pageHomeHeroBob {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes pageHomeIconDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(5px, -10px, 0) rotate(4deg);
    }
}

@keyframes pageHomeDecorPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.92;
    }
}

@keyframes pageHomeBubbleNudge {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -6px, 0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .page-home .hero-content--motion > * {
        opacity: 0;
        animation: pageHomeRevealUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .page-home .hero-content--motion > h1 {
        animation-delay: 0.05s;
    }

    .page-home .hero-content--motion > .hero-subtitle {
        animation-delay: 0.12s;
    }

    .page-home .hero-content--motion > .feature-label {
        animation-delay: 0.18s;
    }

    .page-home .hero-content--motion > .feature-list {
        animation-delay: 0.24s;
    }

    .page-home .hero-content--motion > .cta-form-container {
        animation-delay: 0.32s;
    }

    .page-home .hero-visual--motion {
        opacity: 0;
        animation: pageHomeRevealUp 0.92s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        animation-delay: 0.12s;
    }

    .page-home .hero-visual--motion .hero-image {
        animation: pageHomeHeroBob 7.5s ease-in-out 0.85s infinite;
    }

    .page-home .hero-visual--motion .floating-icon.icon-1 {
        animation: pageHomeIconDrift 5.5s ease-in-out infinite;
    }

    .page-home .hero-visual--motion .floating-icon.icon-2 {
        animation: pageHomeIconDrift 6.8s ease-in-out 0.4s infinite reverse;
    }

    .page-home .hero-visual--motion .hero-decor-circle {
        animation: pageHomeDecorPulse 9s ease-in-out infinite;
    }

    .page-home .hero-visual--motion .speech-bubble {
        animation: pageHomeBubbleNudge 5s ease-in-out 1s infinite;
    }
}

html.js body.page-home .announcement-bar.reveal-on-scroll:not(.is-visible) {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
}

html.js body.page-home .announcement-bar.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.page-home .benefits-bar:not(.is-visible) .benefit-card,
html.js body.page-home .services-section:not(.is-visible) .section-header,
html.js body.page-home .services-section:not(.is-visible) .services-grid .service-card,
html.js body.page-home .why-us-section:not(.is-visible) .why-us-left,
html.js body.page-home .why-us-section:not(.is-visible) .stat-card,
html.js body.page-home .tax-banner-section:not(.is-visible) .tax-card,
html.js body.page-home .software-expertise:not(.is-visible) .expertise-title,
html.js body.page-home .software-expertise:not(.is-visible) .logo-card,
html.js body.page-home .testimonials-section:not(.is-visible) .section-header,
html.js body.page-home .testimonials-section:not(.is-visible) .testimonial-card,
html.js body.page-home .hire-resources:not(.is-visible) .section-header,
html.js body.page-home .hire-resources:not(.is-visible) .resource-card,
html.js body.page-home .dedicated-team:not(.is-visible) .section-header,
html.js body.page-home .dedicated-team:not(.is-visible) .team-image-area,
html.js body.page-home .dedicated-team:not(.is-visible) .team-accordion {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
}

html.js body.page-home .benefits-bar.is-visible .benefit-card,
html.js body.page-home .services-section.is-visible .section-header,
html.js body.page-home .services-section.is-visible .services-grid .service-card,
html.js body.page-home .why-us-section.is-visible .why-us-left,
html.js body.page-home .why-us-section.is-visible .stat-card,
html.js body.page-home .tax-banner-section.is-visible .tax-card,
html.js body.page-home .software-expertise.is-visible .expertise-title,
html.js body.page-home .software-expertise.is-visible .logo-card,
html.js body.page-home .testimonials-section.is-visible .section-header,
html.js body.page-home .testimonials-section.is-visible .testimonial-card,
html.js body.page-home .hire-resources.is-visible .section-header,
html.js body.page-home .hire-resources.is-visible .resource-card,
html.js body.page-home .dedicated-team.is-visible .section-header,
html.js body.page-home .dedicated-team.is-visible .team-image-area,
html.js body.page-home .dedicated-team.is-visible .team-accordion {
    opacity: 1;
    transform: none;
    transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.page-home .benefits-bar.is-visible .benefit-card:nth-child(1) {
    transition-delay: 0.04s;
}

html.js body.page-home .benefits-bar.is-visible .benefit-card:nth-child(2) {
    transition-delay: 0.1s;
}

html.js body.page-home .benefits-bar.is-visible .benefit-card:nth-child(3) {
    transition-delay: 0.16s;
}

html.js body.page-home .services-section.is-visible .section-header {
    transition-delay: 0.04s;
}

html.js body.page-home .services-section.is-visible .services-grid .service-card:nth-child(1) {
    transition-delay: 0.08s;
}

html.js body.page-home .services-section.is-visible .services-grid .service-card:nth-child(2) {
    transition-delay: 0.12s;
}

html.js body.page-home .services-section.is-visible .services-grid .service-card:nth-child(3) {
    transition-delay: 0.16s;
}

html.js body.page-home .services-section.is-visible .services-grid .service-card:nth-child(4) {
    transition-delay: 0.2s;
}

html.js body.page-home .services-section.is-visible .services-grid .service-card:nth-child(5) {
    transition-delay: 0.24s;
}

html.js body.page-home .services-section.is-visible .services-grid .service-card:nth-child(6) {
    transition-delay: 0.28s;
}

html.js body.page-home .why-us-section.is-visible .why-us-left {
    transition-delay: 0.05s;
}

html.js body.page-home .why-us-section.is-visible .stat-card:nth-child(1) {
    transition-delay: 0.06s;
}

html.js body.page-home .why-us-section.is-visible .stat-card:nth-child(2) {
    transition-delay: 0.1s;
}

html.js body.page-home .why-us-section.is-visible .stat-card:nth-child(3) {
    transition-delay: 0.14s;
}

html.js body.page-home .why-us-section.is-visible .stat-card:nth-child(4) {
    transition-delay: 0.18s;
}

html.js body.page-home .why-us-section.is-visible .stat-card:nth-child(5) {
    transition-delay: 0.22s;
}

html.js body.page-home .tax-banner-section.is-visible .tax-card {
    transition-delay: 0.06s;
}

html.js body.page-home .software-expertise.is-visible .expertise-title {
    transition-delay: 0.08s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.top .logo-card:nth-child(1) {
    transition-delay: 0.04s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.top .logo-card:nth-child(2) {
    transition-delay: 0.08s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.top .logo-card:nth-child(3) {
    transition-delay: 0.12s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.top .logo-card:nth-child(4) {
    transition-delay: 0.16s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.middle .logo-card:nth-child(1) {
    transition-delay: 0.06s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.middle .logo-card:nth-child(3) {
    transition-delay: 0.1s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.bottom .logo-card:nth-child(1) {
    transition-delay: 0.12s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.bottom .logo-card:nth-child(2) {
    transition-delay: 0.16s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.bottom .logo-card:nth-child(3) {
    transition-delay: 0.2s;
}

html.js body.page-home .software-expertise.is-visible .expertise-row.bottom .logo-card:nth-child(4) {
    transition-delay: 0.24s;
}

html.js body.page-home .testimonials-section.is-visible .section-header {
    transition-delay: 0.04s;
}

html.js body.page-home .testimonials-section.is-visible .testimonial-card:nth-child(1) {
    transition-delay: 0.08s;
}

html.js body.page-home .testimonials-section.is-visible .testimonial-card:nth-child(2) {
    transition-delay: 0.14s;
}

html.js body.page-home .testimonials-section.is-visible .testimonial-card:nth-child(3) {
    transition-delay: 0.2s;
}

html.js body.page-home .hire-resources.is-visible .section-header {
    transition-delay: 0.04s;
}

html.js body.page-home .hire-resources.is-visible .resource-card:nth-child(1) {
    transition-delay: 0.08s;
}

html.js body.page-home .hire-resources.is-visible .resource-card:nth-child(2) {
    transition-delay: 0.12s;
}

html.js body.page-home .hire-resources.is-visible .resource-card:nth-child(3) {
    transition-delay: 0.16s;
}

html.js body.page-home .hire-resources.is-visible .resource-card:nth-child(4) {
    transition-delay: 0.2s;
}

html.js body.page-home .dedicated-team.is-visible .section-header {
    transition-delay: 0.04s;
}

html.js body.page-home .dedicated-team.is-visible .team-image-area {
    transition-delay: 0.08s;
}

html.js body.page-home .dedicated-team.is-visible .team-accordion {
    transition-delay: 0.14s;
}

@media (prefers-reduced-motion: reduce) {
    .page-home .hero-content--motion > *,
    .page-home .hero-visual--motion,
    .page-home .hero-visual--motion .hero-image,
    .page-home .hero-visual--motion .floating-icon,
    .page-home .hero-visual--motion .hero-decor-circle,
    .page-home .hero-visual--motion .speech-bubble {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    html.js body.page-home .announcement-bar.reveal-on-scroll:not(.is-visible),
    html.js body.page-home .benefits-bar:not(.is-visible) .benefit-card,
    html.js body.page-home .services-section:not(.is-visible) .section-header,
    html.js body.page-home .services-section:not(.is-visible) .services-grid .service-card,
    html.js body.page-home .why-us-section:not(.is-visible) .why-us-left,
    html.js body.page-home .why-us-section:not(.is-visible) .stat-card,
    html.js body.page-home .tax-banner-section:not(.is-visible) .tax-card,
    html.js body.page-home .software-expertise:not(.is-visible) .expertise-title,
    html.js body.page-home .software-expertise:not(.is-visible) .logo-card,
    html.js body.page-home .testimonials-section:not(.is-visible) .section-header,
    html.js body.page-home .testimonials-section:not(.is-visible) .testimonial-card,
    html.js body.page-home .hire-resources:not(.is-visible) .section-header,
    html.js body.page-home .hire-resources:not(.is-visible) .resource-card,
    html.js body.page-home .dedicated-team:not(.is-visible) .section-header,
    html.js body.page-home .dedicated-team:not(.is-visible) .team-image-area,
    html.js body.page-home .dedicated-team:not(.is-visible) .team-accordion {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    html.js body.page-home .benefits-bar.is-visible .benefit-card,
    html.js body.page-home .services-section.is-visible .section-header,
    html.js body.page-home .services-section.is-visible .services-grid .service-card,
    html.js body.page-home .why-us-section.is-visible .why-us-left,
    html.js body.page-home .why-us-section.is-visible .stat-card,
    html.js body.page-home .tax-banner-section.is-visible .tax-card,
    html.js body.page-home .software-expertise.is-visible .expertise-title,
    html.js body.page-home .software-expertise.is-visible .logo-card,
    html.js body.page-home .testimonials-section.is-visible .section-header,
    html.js body.page-home .testimonials-section.is-visible .testimonial-card,
    html.js body.page-home .hire-resources.is-visible .section-header,
    html.js body.page-home .hire-resources.is-visible .resource-card,
    html.js body.page-home .dedicated-team.is-visible .section-header,
    html.js body.page-home .dedicated-team.is-visible .team-image-area,
    html.js body.page-home .dedicated-team.is-visible .team-accordion {
        transition: none !important;
        transition-delay: 0s !important;
    }
}

/* ── Dedicated team page ─────────────────────────────────────────── */
body.page-dedicated-team {
    position: relative;
    background-color: var(--bg-light);
}

body.page-dedicated-team .dt-page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url('../assets/images/hero1.jpg') center / cover no-repeat;
    opacity: 0.2;
}

body.page-dedicated-team .dt-page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(242, 247, 251, 0.55) 0%,
        rgba(255, 255, 255, 0.72) 35%,
        rgba(242, 247, 251, 0.78) 100%
    );
}

body.page-dedicated-team .top-bar,
body.page-dedicated-team .site-nav,
body.page-dedicated-team .announcement-bar,
body.page-dedicated-team .dt-hero,
body.page-dedicated-team .dt-main,
body.page-dedicated-team .footer {
    position: relative;
    z-index: 1;
}

/* Keep FABs fixed to viewport (do not inherit page stacking context) */
body.page-dedicated-team .fab-wrap {
    position: fixed;
    z-index: 1001;
}

body.page-dedicated-team .fab-wrap.fab-wrap--chat {
    z-index: 990;
}

.page-dedicated-team .inner-section {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.page-dedicated-team .inner-section.alt-bg {
    background: rgba(242, 247, 251, 0.78);
}

.page-dedicated-team .dt-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 6vw, 72px) max(5%, env(safe-area-inset-left, 0px)) clamp(48px, 7vw, 80px);
    padding-right: max(5%, env(safe-area-inset-right, 0px));
    color: var(--white);
    background: linear-gradient(135deg, #0f4c52 0%, var(--primary) 28%, #2a8f8a 55%, #e8a317 85%, #ff6b6b 100%);
}

.page-dedicated-team .dt-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.page-dedicated-team .dt-hero-blob--1 {
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    background: #ff6b6b;
    top: -80px;
    right: 10%;
}

.page-dedicated-team .dt-hero-blob--2 {
    width: min(320px, 55vw);
    height: min(320px, 55vw);
    background: var(--accent);
    bottom: -60px;
    left: 5%;
}

.page-dedicated-team .dt-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-dedicated-team .dt-hero-copy .breadcrumb-nav {
    margin-bottom: 1rem;
}

.page-dedicated-team .dt-hero-kicker {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.page-dedicated-team .dt-hero h1 {
    font-size: clamp(1.85rem, 3.5vw + 0.5rem, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-dedicated-team .dt-hero-highlight {
    color: var(--accent);
    display: inline-block;
}

.page-dedicated-team .dt-hero-lead {
    font-size: clamp(1rem, 1.1vw + 0.85rem, 1.12rem);
    line-height: 1.65;
    max-width: 540px;
    opacity: 0.95;
    margin-bottom: 1.25rem;
}

.page-dedicated-team .dt-hero-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-dedicated-team .dt-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: lowercase;
}

.page-dedicated-team .dt-label--teal {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.page-dedicated-team .dt-label--amber {
    background: var(--accent);
    color: #1a3a3c;
}

.page-dedicated-team .dt-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-dedicated-team .dt-hero-visual-ring {
    position: absolute;
    width: min(100%, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.25);
}

.page-dedicated-team .dt-hero-img {
    position: relative;
    z-index: 2;
    width: min(100%, 440px);
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.page-dedicated-team .dt-section .section-header.centered h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-dedicated-team .dt-benefit-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin: 2rem 0 2.5rem;
    padding: 0;
}

.page-dedicated-team .dt-benefit-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.page-dedicated-team .dt-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(28, 96, 100, 0.12);
}

.page-dedicated-team .dt-benefit-card--teal { border-top-color: var(--primary); }
.page-dedicated-team .dt-benefit-card--amber { border-top-color: var(--accent); }
.page-dedicated-team .dt-benefit-card--coral { border-top-color: #ff6b6b; }
.page-dedicated-team .dt-benefit-card--violet { border-top-color: #a78bfa; }
.page-dedicated-team .dt-benefit-card--sky { border-top-color: #38bdf8; }

.page-dedicated-team .dt-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--white);
}

.page-dedicated-team .dt-benefit-card--teal .dt-benefit-icon { background: var(--primary); }
.page-dedicated-team .dt-benefit-card--amber .dt-benefit-icon { background: var(--accent); color: #1a3a3c; }
.page-dedicated-team .dt-benefit-card--coral .dt-benefit-icon { background: #ff6b6b; }
.page-dedicated-team .dt-benefit-card--violet .dt-benefit-icon { background: #a78bfa; }
.page-dedicated-team .dt-benefit-card--sky .dt-benefit-icon { background: #38bdf8; }

.page-dedicated-team .dt-benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.page-dedicated-team .dt-benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

.page-dedicated-team .dt-inline-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.page-dedicated-team .dt-btn-trial {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: var(--white);
    border: none;
}

.page-dedicated-team .dt-btn-trial:hover {
    filter: brightness(1.05);
    color: var(--white);
}

.page-dedicated-team .dt-role-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.page-dedicated-team .dt-role-pill {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(28, 96, 100, 0.1);
    border: 1px solid rgba(28, 96, 100, 0.12);
    transition: var(--transition);
}

.page-dedicated-team .dt-role-pill:nth-child(6n + 1) { background: #e8f5f4; border-color: var(--primary); }
.page-dedicated-team .dt-role-pill:nth-child(6n + 2) { background: #fff4e0; border-color: var(--accent); color: #8a5a00; }
.page-dedicated-team .dt-role-pill:nth-child(6n + 3) { background: #ffe8e8; border-color: #ff6b6b; color: #b33; }
.page-dedicated-team .dt-role-pill:nth-child(6n + 4) { background: #f0ebff; border-color: #a78bfa; color: #5b3fa0; }
.page-dedicated-team .dt-role-pill:nth-child(6n + 5) { background: #e8f4ff; border-color: #38bdf8; color: #0369a1; }
.page-dedicated-team .dt-role-pill:nth-child(6n + 6) { background: #e8f8ef; border-color: #34d399; color: #047857; }

.page-dedicated-team .dt-role-pill--featured {
    background: linear-gradient(135deg, var(--primary), #2a8f8a) !important;
    color: var(--white) !important;
    border-color: transparent !important;
}

.page-dedicated-team .dt-role-pill:hover {
    transform: translateY(-2px);
}

.page-dedicated-team .dt-role-cloud--bottom {
    margin-top: 2.5rem;
}

.page-dedicated-team .dt-qb-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.page-dedicated-team .dt-qb-copy h2 {
    font-size: clamp(1.35rem, 2vw + 0.5rem, 1.85rem);
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.page-dedicated-team .dt-qb-lead {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-dedicated-team .dt-qb-copy p {
    color: var(--text-muted);
    line-height: 1.65;
}

.page-dedicated-team .dt-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.page-dedicated-team .dt-stat-card {
    padding: 1.25rem;
    border-radius: 14px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.page-dedicated-team .dt-stat-card:hover {
    transform: scale(1.02);
}

.page-dedicated-team .dt-stat-card--teal { background: linear-gradient(145deg, var(--primary), #2a8f8a); }
.page-dedicated-team .dt-stat-card--amber { background: linear-gradient(145deg, #e09b24, var(--accent)); color: #1a3a3c; }
.page-dedicated-team .dt-stat-card--coral { background: linear-gradient(145deg, #ff6b6b, #ff8e53); }
.page-dedicated-team .dt-stat-card--violet { background: linear-gradient(145deg, #8b5cf6, #a78bfa); }
.page-dedicated-team .dt-stat-card--sky { background: linear-gradient(145deg, #0ea5e9, #38bdf8); }
.page-dedicated-team .dt-stat-card--emerald { background: linear-gradient(145deg, #059669, #34d399); }

.page-dedicated-team .dt-stat-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
}

.page-dedicated-team .dt-stat-lbl {
    display: block;
    font-size: 0.78rem;
    line-height: 1.35;
    margin-top: 6px;
    opacity: 0.95;
}

.page-dedicated-team .dt-why-title h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.page-dedicated-team .dt-why-word--accent {
    color: var(--accent);
}

.page-dedicated-team .dt-why-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0;
    margin-top: 2rem;
}

.page-dedicated-team .dt-why-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--white);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.page-dedicated-team .dt-why-card:nth-child(odd) {
    border-left-color: var(--accent);
}

.page-dedicated-team .dt-why-card:hover {
    border-left-width: 6px;
    padding-left: calc(1.5rem - 2px);
}

.page-dedicated-team .dt-why-num {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.page-dedicated-team .dt-why-card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.page-dedicated-team .dt-why-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

.page-dedicated-team .dt-talent-accent {
    color: #ff6b6b;
}

.page-dedicated-team .dt-talent-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 2rem 0 0;
}

.page-dedicated-team .dt-talent-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.page-dedicated-team .dt-talent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(28, 96, 100, 0.14);
}

.page-dedicated-team .dt-talent-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--white);
}

.page-dedicated-team .dt-talent-icon--teal { background: var(--primary); }
.page-dedicated-team .dt-talent-icon--amber { background: var(--accent); color: #1a3a3c; }
.page-dedicated-team .dt-talent-icon--coral { background: #ff6b6b; }
.page-dedicated-team .dt-talent-icon--violet { background: #a78bfa; }
.page-dedicated-team .dt-talent-icon--sky { background: #38bdf8; }
.page-dedicated-team .dt-talent-icon--emerald { background: #34d399; }

.page-dedicated-team .dt-talent-card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.page-dedicated-team .dt-talent-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.page-dedicated-team .dt-cta-band {
    background: linear-gradient(125deg, var(--primary) 0%, #2a8f8a 40%, #e09b24 100%);
}

@media (max-width: 900px) {
    .page-dedicated-team .dt-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .page-dedicated-team .dt-hero-copy .breadcrumb-nav {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

    .page-dedicated-team .dt-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .page-dedicated-team .dt-hero-labels {
        justify-content: center;
    }

    .page-dedicated-team .dt-hero-visual {
        order: -1;
        max-width: min(360px, 92vw);
        margin-inline: auto;
    }

    .page-dedicated-team .dt-hero-img {
        width: 100%;
        max-width: 360px;
    }

    .page-dedicated-team .dt-hero-visual-ring {
        width: min(92vw, 340px);
    }

    .page-dedicated-team .dt-qb-layout {
        grid-template-columns: 1fr;
    }

    .page-dedicated-team .dt-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-dedicated-team .dt-benefit-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .page-dedicated-team .dt-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-dedicated-team .dt-hero {
        padding-top: clamp(32px, 7vw, 48px);
        padding-bottom: clamp(36px, 8vw, 56px);
        padding-left: max(4%, env(safe-area-inset-left, 0px));
        padding-right: max(4%, env(safe-area-inset-right, 0px));
    }

    .page-dedicated-team .dt-section .section-header.centered h2 {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        padding-inline: 4px;
    }

    .page-dedicated-team .dt-section .section-header.centered p {
        font-size: 0.95rem;
    }

    .page-dedicated-team .dt-benefit-grid,
    .page-dedicated-team .dt-talent-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-dedicated-team .dt-inline-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin-inline: auto;
    }

    .page-dedicated-team .dt-inline-cta .btn-schedule,
    .page-dedicated-team .dt-inline-cta .btn-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .page-dedicated-team .dt-role-pill {
        font-size: 0.82rem;
        padding: 8px 14px;
    }

    .page-dedicated-team .dt-qb-copy h2 {
        font-size: 1.35rem;
    }

    .page-dedicated-team .dt-stat-grid {
        grid-template-columns: 1fr;
    }

    .page-dedicated-team .dt-stat-lbl {
        font-size: 0.85rem;
    }

    .page-dedicated-team .dt-why-title h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-dedicated-team .dt-why-card {
        padding: 1.25rem;
    }

    .page-dedicated-team .dt-cta-band {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-dedicated-team .dt-hero h1 {
        font-size: clamp(1.5rem, 7vw, 1.85rem);
    }

    .page-dedicated-team .dt-hero-kicker {
        font-size: 0.85rem;
    }

    .page-dedicated-team .dt-hero-lead {
        font-size: 0.95rem;
    }

    .page-dedicated-team .dt-hero-visual {
        max-width: 100%;
    }

    .page-dedicated-team .dt-hero-img {
        border-radius: 16px;
    }

    .page-dedicated-team .dt-benefit-card,
    .page-dedicated-team .dt-talent-card {
        padding: 1.15rem;
    }

    .page-dedicated-team .dt-role-cloud {
        gap: 8px;
    }

    .page-dedicated-team .dt-role-pill {
        font-size: 0.78rem;
        padding: 7px 12px;
    }
}