/*
 * BusyKeys Website Redesign - Design Tokens & Prototype Styles
 * =============================================================
 *
 * COLOR PALETTE
 * Primary:       #604ab6  (BusyKeys purple, from logo)
 * Primary Light:  #8b7bc5  (Secondary purple, from logo)
 * Primary Lighter:#ebe8f5  (Tinted background)
 * Accent:        #f59e0b  (Warm amber - approachable, energetic)
 * Accent Light:  #fef3c7  (Amber tint)
 *
 * Neutrals:
 * Text Dark:     #1e1e2f  (Near-black with slight warmth)
 * Text Body:     #4a4a5a  (Readable body text)
 * Text Muted:    #8a8a9a  (Captions, metadata)
 * Border:        #e2e2ea  (Subtle borders)
 * Background:    #fafafa  (Page background)
 * Surface:       #ffffff  (Cards, nav, sections)
 *
 * TYPOGRAPHY
 * Headings: Inter (clean, modern, highly readable)
 * Body:     Inter
 * Weights:  400 (body), 500 (medium), 600 (semibold), 700 (bold)
 *
 * SPACING
 * Base unit: 8px
 * Section padding: 80px (desktop), 48px (mobile)
 * Container max-width: 1200px
 *
 * BORDERS
 * Radius (small): 8px
 * Radius (medium): 12px
 * Radius (large): 16px
 * Radius (pill): 999px
 *
 * SHADOWS
 * Card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04)
 * Elevated: 0 4px 16px rgba(0,0,0,0.08)
 * Nav: 0 1px 4px rgba(0,0,0,0.05)
 */

/* === Reset & Base === */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #4a4a5a;
    background-color: #fafafa;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #604ab6;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #8b7bc5;
}

h1, h2, h3, h4, h5, h6 {
    color: #1e1e2f;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

/* === Buttons === */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #604ab6;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #5040a0;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(96, 74, 182, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #604ab6;
    border: 2px solid #604ab6;
}

.btn-secondary:hover {
    background-color: #ebe8f5;
    color: #604ab6;
}

.btn-ghost {
    background: transparent;
    color: #604ab6;
    padding: 12px 16px;
}

.btn-ghost:hover {
    background-color: #ebe8f5;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.0625rem;
}

/* === Navigation === */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    height: 72px;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #4a4a5a;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #604ab6;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8a8a9a;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    background-color: #f5f5f5;
    color: #4a4a5a;
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8a8a9a;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: none;
    border: none;
    font-family: inherit;
}

.lang-dropdown-toggle:hover {
    background-color: #f5f5f5;
    color: #4a4a5a;
}

.lang-globe {
    width: 16px;
    height: 16px;
}

.lang-chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.lang-dropdown.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: #4a4a5a;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.lang-dropdown-item:hover {
    background-color: #f5f3fa;
}

.lang-dropdown-item.active {
    font-weight: 600;
    color: #604ab6;
    background-color: #f5f3fa;
    pointer-events: none;
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    vertical-align: middle;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1e1e2f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === Mobile Menu === */

.mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e2e2ea;
    padding: 16px 24px 24px;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu ul li a {
    display: block;
    padding: 12px 16px;
    color: #4a4a5a;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.mobile-menu ul li a:hover {
    background-color: #f5f5f5;
    color: #604ab6;
}

.mobile-menu ul li a.btn-primary {
    display: block;
    color: #ffffff;
    background-color: #604ab6;
    text-align: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.mobile-menu ul li a.btn-primary:hover {
    color: #ffffff;
    background-color: #5040a0;
    box-shadow: 0 4px 16px rgba(96, 74, 182, 0.3);
}

/* === Hero Section === */

.hero {
    padding: 160px 0 100px;
    background: linear-gradient(160deg, #ffffff 0%, #ebe8f5 50%, #f5f3fa 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 74, 182, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: #ebe8f5;
    color: #604ab6;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: #604ab6;
}

.hero p {
    font-size: 1.1875rem;
    color: #4a4a5a;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-graphic {
    width: 420px;
    height: 360px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(96, 74, 182, 0.1);
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 16px;
    position: relative;
}

.hero-graphic-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e2ea;
}

.hero-graphic-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #604ab6;
}

.hero-graphic-dot.amber { background-color: #f59e0b; }
.hero-graphic-dot.green { background-color: #10b981; }

.hero-graphic-line {
    height: 10px;
    border-radius: 999px;
    background-color: #ebe8f5;
}

.hero-graphic-line.short { width: 40%; }
.hero-graphic-line.medium { width: 65%; }
.hero-graphic-line.long { width: 85%; }
.hero-graphic-line.accent { background-color: #fef3c7; }

.hero-graphic-block {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-graphic-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #ebe8f5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #604ab6;
    font-size: 1.125rem;
}

.hero-graphic-icon img {
    width: 20px;
    height: 20px;
}

.hero-badge-icon {
    font-size: 0.75rem;
    vertical-align: middle;
    margin-right: 4px;
    color: #604ab6;
}

.hero-graphic-icon.amber {
    background-color: #fef3c7;
    color: #f59e0b;
}

.hero-graphic-icon.green {
    background-color: #d1fae5;
    color: #10b981;
}

.hero-graphic-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-float-card {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e1e2f;
}

.hero-float-card.top-right {
    top: -16px;
    right: -24px;
}

.hero-float-card.bottom-left {
    bottom: -16px;
    left: -24px;
}

.hero-float-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* === Section Base === */

.section {
    padding: 96px 0;
}

.section-alt {
    background-color: #ffffff;
}

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

.section-header .label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #604ab6;
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: #8a8a9a;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* === Industries Section === */

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

.industry-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 0 24px 32px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    overflow: hidden;
}

.industry-card .industry-image {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    border-radius: 0;
}

.industry-card:hover {
    border-color: #604ab6;
    box-shadow: 0 4px 16px rgba(96, 74, 182, 0.1);
    transform: translateY(-2px);
}

.industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: #ebe8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.industry-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.05);
}

.industry-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.875rem;
    color: #8a8a9a;
    line-height: 1.6;
    margin-bottom: 0;
}

.industry-card .arrow {
    display: inline-block;
    margin-top: 16px;
    color: #604ab6;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.industry-card:hover .arrow {
    opacity: 1;
}

/* === Social Proof / Results Section === */

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

.result-card {
    text-align: center;
    padding: 40px 24px;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #604ab6;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.result-label {
    font-size: 1rem;
    color: #4a4a5a;
    font-weight: 500;
    margin-bottom: 8px;
}

.result-desc {
    font-size: 0.875rem;
    color: #8a8a9a;
    line-height: 1.6;
}

/* === Capabilities / What We Do Teaser === */

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

.capability-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: all 0.2s ease;
}

.capability-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.capability-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #ebe8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    overflow: hidden;
}

.capability-icon i {
    font-size: 1.25rem;
    color: #604ab6;
}

.capability-card h4 {
    margin-bottom: 8px;
}

.capability-card p {
    font-size: 0.9375rem;
    color: #8a8a9a;
    line-height: 1.6;
    margin-bottom: 0;
}

/* === Blog Carousel === */

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

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #ebe8f5 0%, #f5f3fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b7bc5;
    font-size: 2rem;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-date {
    font-size: 0.8125rem;
    color: #8a8a9a;
    margin-bottom: 8px;
}

.blog-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.875rem;
    color: #8a8a9a;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card .read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: #604ab6;
}

/* === CTA Banner === */

.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #604ab6 0%, #8b7bc5 100%);
    text-align: center;
}

.cta-banner h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-banner .btn-primary {
    background-color: #ffffff;
    color: #604ab6;
}

.cta-banner .btn-primary:hover {
    background-color: #f5f3fa;
    color: #604ab6;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* === Footer === */

.footer {
    background-color: #1e1e2f;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand .footer-logo {
    height: 32px;
    width: auto;
}

.footer h5 {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer ul a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* === Content Pages (legal, about, etc.) === */

.content-page {
    padding: 140px 0 80px;
}

.content-page .container {
    max-width: 800px;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.content-page .page-subtitle {
    color: #8a8a9a;
    font-size: 0.9375rem;
    margin-bottom: 40px;
}

.content-page h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 12px;
}

.content-page h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 10px;
}

.content-page h4 {
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 8px;
}

.content-page h5 {
    font-size: 1.0625rem;
    margin-top: 28px;
    margin-bottom: 8px;
    color: #1e1e2f;
    font-weight: 600;
}

.content-page p,
.content-page li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #4a4a5a;
}

.content-page ul, .content-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-page li {
    margin-bottom: 8px;
}

.content-page .uppercase {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
}

/* === Contact Page === */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #ebe8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
    overflow: hidden;
    margin-top: 2px;
}

.contact-info-icon i {
    font-size: 1.125rem;
    color: #604ab6;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    margin-top: 0;
    line-height: 1.3;
}

.contact-info-card p {
    font-size: 0.9375rem;
    color: #8a8a9a;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: #604ab6;
    font-weight: 600;
}

.contact-form {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 36px;
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e1e2f;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e2ea;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9375rem;
    color: #1e1e2f;
    background-color: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #604ab6;
    box-shadow: 0 0 0 3px rgba(96, 74, 182, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    padding: 8px 14px;
    background-color: #ffffff;
}

/* === Careers Page === */

.careers-hero {
    padding: 140px 0 60px;
    background: linear-gradient(160deg, #ffffff 0%, #ebe8f5 50%, #f5f3fa 100%);
    text-align: center;
}

.careers-hero h1 {
    margin-bottom: 16px;
}

.careers-hero p {
    font-size: 1.0625rem;
    color: #4a4a5a;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 16px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #ebe8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    overflow: hidden;
    margin-top: 2px;
}

.benefit-icon i {
    font-size: 1.125rem;
    color: #604ab6;
}

.benefit-card h4 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 4px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: #8a8a9a;
    margin-bottom: 0;
    line-height: 1.6;
}

.job-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    text-decoration: none;
}

.job-card:hover {
    border-color: #604ab6;
    box-shadow: 0 4px 16px rgba(96, 74, 182, 0.1);
}

.job-card h4 {
    margin-bottom: 4px;
    color: #1e1e2f;
}

.job-card .job-location {
    font-size: 0.875rem;
    color: #8a8a9a;
}

.job-card .arrow {
    color: #604ab6;
    font-size: 1.25rem;
    font-weight: 600;
}

.recruiter-note {
    background-color: #ebe8f5;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}

.recruiter-note p {
    color: #4a4a5a;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === Job Detail Page === */

.job-detail-header {
    padding: 140px 0 40px;
    background: linear-gradient(160deg, #ffffff 0%, #ebe8f5 50%, #f5f3fa 100%);
}

.job-detail-header .back-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #604ab6;
    margin-bottom: 16px;
    display: inline-block;
}

.job-detail-header h1 {
    font-size: 2.25rem;
    margin-bottom: 8px;
}

.job-detail-header .job-location {
    color: #8a8a9a;
    font-size: 1rem;
}

.job-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.job-apply-sidebar {
    position: sticky;
    top: 100px;
}

.job-apply-sidebar .job-apply-form {
    margin-top: 0;
}

.job-apply-sidebar .form-row {
    grid-template-columns: 1fr;
}

.job-apply-sidebar .recruiter-note {
    margin-top: 24px;
}

.job-detail-content {
    max-width: 800px;
}

.job-detail-content h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 12px;
}

.job-detail-content h2:first-child {
    margin-top: 0;
}

.job-detail-content h3 {
    font-size: 1.25rem;
    margin-top: 28px;
    margin-bottom: 10px;
}

.job-detail-content h4 {
    font-size: 1.0625rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

.job-detail-content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #4a4a5a;
}

.job-detail-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.job-detail-content li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #4a4a5a;
    margin-bottom: 6px;
}

/* === About Page === */

.about-hero {
    padding: 140px 0 60px;
    background: linear-gradient(160deg, #ffffff 0%, #ebe8f5 50%, #f5f3fa 100%);
}

.about-hero h1 {
    margin-bottom: 16px;
}

.about-hero .lead {
    font-size: 1.1875rem;
    color: #4a4a5a;
    line-height: 1.7;
    max-width: 640px;
}

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

.about-value-card {
    text-align: center;
    padding: 32px 24px;
}

.about-value-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: #ebe8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    overflow: hidden;
}

.about-value-card .icon i {
    font-size: 1.5rem;
    color: #604ab6;
}

.about-value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.about-value-card p {
    font-size: 0.9375rem;
    color: #8a8a9a;
    line-height: 1.6;
    margin-bottom: 0;
}

/* === Back Link (shared across detail pages) === */

.back-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #604ab6;
    margin-bottom: 16px;
    text-decoration: none;
}

.back-link:hover {
    color: #8b7bc5;
}

/* === Industries Hub (larger cards) === */

.industries-grid-hub {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.industry-card-hub {
    padding: 40px 32px;
    text-align: left;
}

.industry-card-hub .industry-icon {
    margin: 0 0 20px 0;
}

.industry-card-hub p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* === Pain Points Grid === */

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pain-point-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 28px;
}

.pain-point-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
}

.pain-point-card p {
    font-size: 0.9375rem;
    color: #8a8a9a;
    line-height: 1.7;
    margin-bottom: 0;
}

/* === Case Study Cards === */

.case-study-cards {
    display: grid;
    gap: 24px;
}

.case-study-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.case-study-card:hover {
    border-color: #604ab6;
    box-shadow: 0 4px 16px rgba(96, 74, 182, 0.1);
    color: inherit;
}

.case-study-card.featured {
    border-left: 4px solid #604ab6;
}

.case-study-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.case-study-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #ebe8f5;
    color: #604ab6;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.case-study-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.case-study-card p {
    font-size: 0.9375rem;
    color: #4a4a5a;
    line-height: 1.7;
    margin-bottom: 0;
}

.case-study-card .read-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #604ab6;
}

.single-case-note {
    background-color: #ebe8f5;
    border-radius: 12px;
    padding: 24px 32px;
    margin-top: 24px;
}

.single-case-note p {
    color: #4a4a5a;
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* === Integration Tags === */

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

.integration-tag {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4a4a5a;
    transition: all 0.2s ease;
}

.integration-tag:hover {
    border-color: #604ab6;
    color: #604ab6;
    background-color: #ebe8f5;
}

/* === Case Study Detail Pages === */

.case-study-hero {
    padding: 140px 0 40px;
    background: linear-gradient(160deg, #ffffff 0%, #ebe8f5 50%, #f5f3fa 100%);
}

.case-study-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.case-study-hero .lead {
    font-size: 1.0625rem;
    color: #4a4a5a;
    line-height: 1.7;
    max-width: 720px;
}

.case-study-content {
    max-width: 800px;
}

.case-study-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 12px;
}

.case-study-content h3 {
    font-size: 1.25rem;
    margin-top: 28px;
    margin-bottom: 10px;
}

.case-study-content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #4a4a5a;
}

.case-study-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.case-study-content li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #4a4a5a;
    margin-bottom: 6px;
}

.case-study-related {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #e2e2ea;
}

.case-study-related h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-links a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #604ab6;
}

/* === Case Study Detail - Two Column Layout === */

.case-study-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.case-study-main h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: #1a1a2e;
}

.case-study-main h2:first-child {
    margin-top: 0;
}

.case-study-main h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 24px 0 8px;
    color: #1a1a2e;
}

.case-study-main p {
    font-size: 1rem;
    color: #4a4a5a;
    line-height: 1.7;
    margin: 0 0 16px;
}

.case-study-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-study-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.case-study-stat {
    text-align: center;
    padding: 20px 12px;
    background: #f8f8fc;
    border-radius: 10px;
}

.case-study-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #604ab6;
    line-height: 1.2;
}

.case-study-stat .stat-label {
    font-size: 0.8125rem;
    color: #6a6a7a;
    margin-top: 4px;
}

.case-study-sidebar-section {
    background: #f8f8fc;
    border-radius: 10px;
    padding: 24px;
}

.case-study-sidebar-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.case-study-system {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.case-study-system:not(:last-child) {
    border-bottom: 1px solid #e8e8f0;
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.case-study-system-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #604ab6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.case-study-system-info {
    flex: 1;
}

.case-study-system-info strong {
    display: block;
    font-size: 0.9375rem;
    color: #1a1a2e;
}

.case-study-system-info span {
    font-size: 0.8125rem;
    color: #6a6a7a;
}

.case-study-sidebar-section .related-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-study-sidebar-section .related-links a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #604ab6;
    text-decoration: none;
}

.case-study-sidebar-section .related-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .case-study-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .case-study-sidebar {
        position: static;
    }
}

/* === Case Study Summary - Compact Grid === */

.featured-case-studies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.case-study-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-study-card-compact {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 28px;
}

.case-study-card-compact h4 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
}

.case-study-card-compact p {
    font-size: 0.875rem;
    color: #8a8a9a;
    line-height: 1.7;
    margin-bottom: 0;
}

/* === Services Page === */

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

.service-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 36px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: #ebe8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.service-icon i {
    font-size: 1.5rem;
    color: #604ab6;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    color: #4a4a5a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-examples {
    padding-left: 20px;
    margin-bottom: 0;
}

.service-examples li {
    font-size: 0.875rem;
    color: #8a8a9a;
    line-height: 1.8;
    margin-bottom: 4px;
}

/* === Process Steps === */

.process-steps {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #604ab6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h4 {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.9375rem;
    color: #8a8a9a;
    line-height: 1.7;
    margin-bottom: 0;
}

/* === Training Page === */

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

.training-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 36px;
}

.training-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: #ebe8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.training-icon i {
    font-size: 1.5rem;
    color: #604ab6;
}

.training-card-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.training-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.training-card:hover .training-card-image img {
    transform: scale(1.05);
}

.training-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.training-card p {
    font-size: 0.9375rem;
    color: #4a4a5a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.training-topics {
    padding-left: 20px;
    margin-bottom: 0;
}

.training-topics li {
    font-size: 0.875rem;
    color: #8a8a9a;
    line-height: 1.8;
    margin-bottom: 4px;
}

/* === Responsive === */

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    .hero h1 { font-size: 2.75rem; }

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

    .featured-case-studies {
        grid-template-columns: 1fr;
    }

    .case-study-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero h1 { font-size: 2.25rem; }

    .job-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .job-apply-sidebar {
        position: static;
    }
    .content-page { padding: 120px 0 48px; }
    .content-page h1 { font-size: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-hero { padding: 120px 0 40px; }
    .careers-hero { padding: 120px 0 40px; }
    .job-detail-header { padding: 120px 0 32px; }
    .case-study-hero { padding: 120px 0 32px; }
    .job-card { flex-direction: column; align-items: flex-start; gap: 12px; }
    .pain-points-grid { grid-template-columns: 1fr; }
    .industries-grid-hub { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .case-study-grid-compact { grid-template-columns: 1fr; }
    .process-step { flex-direction: column; gap: 16px; }

    .section { padding: 64px 0; }

    .nav-links {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 0 64px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        display: none;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .blog-scroll {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

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

    .cta-banner { padding: 56px 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

/* ============================
   Consent & Form Utilities
   ============================ */

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.form-consent {
    margin-top: 8px;
    margin-bottom: 8px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    color: #8a8a9a;
    line-height: 1.5;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #6366f1;
    width: 16px;
    height: 16px;
}

.consent-label a {
    color: #818cf8;
    text-decoration: underline;
}

.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.form-message-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ============================
   Partner Logos
   ============================ */

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
    text-align: center;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.partner-logo-icon {
    font-size: 1.75rem;
    filter: grayscale(80%);
    transition: filter 0.2s ease;
}

.partner-logo:hover .partner-logo-icon {
    filter: grayscale(0%);
}

.partner-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(80%) brightness(1.2);
    transition: filter 0.2s ease;
}

.partner-logo:hover .partner-logo-img {
    filter: grayscale(0%) brightness(1);
}

.partner-logo-name {
    font-size: 0.75rem;
    color: #8a8a9a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .partner-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .partner-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* ===== Property Management Page ===== */

.results-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    align-items: center;
}

.results-bar .result-card {
    padding: 20px 16px;
}

.results-bar .result-number {
    font-size: 2rem;
    margin-bottom: 4px;
}

.results-bar .result-label {
    font-size: 0.875rem;
}

.pm-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pm-split-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    overflow: hidden;
}

.pm-split-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.pm-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pm-split-card:hover .pm-split-image img {
    transform: scale(1.05);
}

.pm-split-card h3 {
    font-size: 1.25rem;
    margin: 20px 24px 8px;
}

.pm-split-card p {
    font-size: 0.9375rem;
    color: #6a6a7a;
    line-height: 1.7;
    margin: 0 24px 24px;
}

.pm-agent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pm-agent-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.pm-agent-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.pm-agent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pm-agent-card:hover .pm-agent-image img {
    transform: scale(1.05);
}

.pm-agent-card h4 {
    font-size: 1.0625rem;
    margin: 20px 24px 8px;
}

.pm-agent-card p {
    font-size: 0.9375rem;
    color: #6a6a7a;
    line-height: 1.7;
    margin: 0 24px 24px;
}

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

.pm-fit-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.pm-fit-icon {
    font-size: 1.5rem;
    color: #604ab6;
    margin-bottom: 12px;
}

.pm-fit-card p {
    font-size: 0.9375rem;
    color: #6a6a7a;
    line-height: 1.6;
    margin: 0;
}

.ps-report-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ps-report-card {
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 12px;
    padding: 24px;
}

.ps-report-card h4 {
    font-size: 1.0625rem;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ps-report-icon {
    color: #604ab6;
    font-size: 1.125rem;
}

.ps-report-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-report-card ul li {
    font-size: 0.9375rem;
    color: #6a6a7a;
    line-height: 1.7;
    padding: 4px 0 4px 20px;
    position: relative;
}

.ps-report-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
    color: #604ab6;
    position: absolute;
    left: 0;
    top: 7px;
}

.hc-consulting {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hc-consulting-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.hc-consulting-text .label {
    margin-bottom: 8px;
}

.hc-consulting-text h2 {
    font-size: 1.75rem;
    margin: 0 0 20px;
}

.hc-consulting-text p {
    font-size: 1rem;
    color: #4a4a5a;
    line-height: 1.7;
    margin: 0 0 16px;
}

.hc-consulting-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hc-consulting {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hc-consulting-text h2 {
        font-size: 1.5rem;
    }

    .ps-report-grid {
        grid-template-columns: 1fr;
    }

    .results-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .pm-split-grid {
        grid-template-columns: 1fr;
    }

    .pm-agent-grid {
        grid-template-columns: 1fr;
    }

    .pm-fit-grid {
        grid-template-columns: 1fr;
    }
}
