/* =============================================
   Chalwe & Kabalata Legal Practitioners
   Main Stylesheet
   Colors: Navy #2B3180 | Gold #C8952B | Gray #6B7280
   ============================================= */

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

:root {
    --navy:       #2B3180;
    --navy-dark:  #1e2460;
    --navy-light: #3d47a3;
    --gold:       #C8952B;
    --gold-light: #e0ac48;
    --gray:       #6B7280;
    --gray-light: #9CA3AF;
    --gray-bg:    #F3F4F8;
    --white:      #FFFFFF;
    --text:       #1F2937;
    --border:     #E5E7EB;
    --shadow:     0 4px 24px rgba(43, 49, 128, 0.10);
    --shadow-lg:  0 8px 40px rgba(43, 49, 128, 0.16);
    --radius:     6px;
    --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section {
    padding: 80px 0;
}

.section-sm { padding: 56px 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { color: var(--gray); }

.lead {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 149, 43, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* ---- Section Labels ---- */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- Divider ---- */
.divider {
    width: 52px;
    height: 3px;
    background: var(--gold);
    margin: 16px 0 32px;
    border-radius: 2px;
}
.text-center .divider { margin-left: auto; margin-right: auto; }


/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(43, 49, 128, 0.08);
    transition: var(--transition);
}

#navbar.scrolled {
    box-shadow: 0 4px 24px rgba(43, 49, 128, 0.14);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    border-radius: var(--radius);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
    margin-left: 12px;
    padding: 9px 22px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    background-color: var(--navy-dark);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(22, 27, 77, 0.93) 0%,
        rgba(43, 49, 128, 0.88) 55%,
        rgba(61, 71, 163, 0.78) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 149, 43, 0.15);
    border: 1px solid rgba(200, 149, 43, 0.35);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span { color: var(--gold); }

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip {
    background: var(--gray-bg);
    padding: 64px 0;
}

.about-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-strip-image {
    position: relative;
}

.about-strip-image .img-frame {
    background: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-strip-image .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    gap: 12px;
    min-height: 300px;
}

.img-placeholder svg { opacity: 0.3; }

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 8px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge span {
    font-size: 0.78rem;
    opacity: 0.9;
    letter-spacing: 0.04em;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

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

.value-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}


/* ============================================
   PRACTICE AREAS
   ============================================ */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.practice-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.practice-card:hover::before { transform: scaleX(1); }

.practice-icon {
    width: 52px;
    height: 52px;
    background: rgba(43, 49, 128, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 1.4rem;
}

.practice-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.practice-card p {
    font-size: 0.9rem;
    line-height: 1.65;
}

.practice-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.practice-card .card-link:hover { gap: 10px; }


/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 90% 50%, rgba(200,149,43,0.07) 0%, transparent 70%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-section h2 { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.65); }
.why-section .divider { background: var(--gold); }

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}

.why-feature {
    display: flex;
    gap: 16px;
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 149, 43, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.why-feature h4 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1rem;
}

.why-feature p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.why-stat-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(200,149,43,0.4);
}

.why-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.why-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    margin-top: 6px;
    letter-spacing: 0.04em;
}


/* ============================================
   TEAM
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-photo {
    height: 280px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-photo-initials {
    width: 80px;
    height: 80px;
    background: rgba(200,149,43,0.2);
    border: 2px solid rgba(200,149,43,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
}

.team-info {
    padding: 24px 28px 28px;
}

.team-info h3 { font-size: 1.15rem; margin-bottom: 4px; }

.team-role {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 0.88rem;
    line-height: 1.65;
}

.team-exp {
    display: inline-block;
    margin-top: 14px;
    background: rgba(43, 49, 128, 0.07);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #e0ac48 100%);
    padding: 64px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-banner h2 { color: var(--white); font-size: 1.8rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 6px; }

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}


/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    padding: 40px 36px;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info-card > p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(200,149,43,0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-detail h4 {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.contact-detail p, .contact-detail a {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 500;
}

.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

.contact-form h3 { margin-bottom: 6px; }
.contact-form > p { color: var(--gray); font-size: 0.9rem; margin-bottom: 28px; }

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(43,49,128,0.08);
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 4px;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

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

.footer-logo img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 280px;
}

.footer h4 {
    color: var(--white);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    align-items: flex-start;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--gold);
    font-size: 0.82rem;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 140px 0 64px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }


/* ============================================
   PRACTICE AREAS PAGE
   ============================================ */
.practice-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.practice-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 32px;
    transition: var(--transition);
}

.practice-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}

.practice-detail-card .practice-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.practice-detail-card h3 { margin-bottom: 10px; }
.practice-detail-card p { font-size: 0.92rem; margin-bottom: 16px; }

.practice-detail-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.practice-detail-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray);
}

.practice-detail-card ul li::before {
    content: '›';
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    flex-shrink: 0;
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.values-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 20px;
    transition: var(--transition);
    border-left: 3px solid var(--gold);
}

.value-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.value-card h4 { margin-bottom: 6px; font-size: 0.98rem; }
.value-card p { font-size: 0.87rem; }

.compliance-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.compliance-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 0.85rem;
}


/* ============================================
   EXPERIENCE PAGE
   ============================================ */
.exp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}
.exp-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.exp-card-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 32px;
    background: var(--gray-bg);
    border-bottom: 1px solid var(--border);
}
.exp-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}
.exp-card-header h3 {
    font-size: 1.1rem;
    margin-top: 6px;
}
.exp-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(43,49,128,0.08);
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 6px;
}
.exp-tag-gold  { color: var(--gold);  background: rgba(200,149,43,0.12); }
.exp-tag-green { color: #065f46;      background: rgba(6,95,70,0.1); }
.exp-tag-blue  { color: #1d4ed8;      background: rgba(29,78,216,0.1); }

.exp-body {
    padding: 28px 32px;
}
.exp-body p { margin-bottom: 12px; font-size: 0.95rem; }
.exp-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.exp-outcome span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    background: rgba(43,49,128,0.07);
    padding: 5px 14px;
    border-radius: 100px;
}
.exp-outcome span::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
}

/* Partner profile block */
.exp-profile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    border-left: 3px solid var(--gold);
}
.exp-profile-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.exp-profile-initials {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.exp-profile-header strong { display: block; color: var(--navy); font-size: 0.95rem; }
.exp-profile-header span   { font-size: 0.8rem; color: var(--gray); }
.exp-profile p { font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   CLIENTS PAGE
   ============================================ */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.client-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    transition: var(--transition);
    min-height: 120px;
}
.client-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--navy);
    transform: translateY(-2px);
}
.client-card img {
    max-height: 56px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.65);
    transition: var(--transition);
}
.client-card:hover img { filter: grayscale(0) opacity(1); }
.client-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}
.sector-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    justify-content: center;
}
.sector-tab {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}
.sector-tab:hover,
.sector-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

@media (max-width: 768px) {
    .exp-card-header { flex-direction: column; padding: 20px; }
    .exp-body { padding: 20px; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .practice-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-logo img { height: 52px; }
    .nav-inner { height: 72px; }
    .hero { padding-top: 72px; }
    .section { padding: 56px 0; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border);
    }
    .nav-menu.open { display: flex; }
    .nav-link { padding: 12px 16px; width: 100%; }
    .nav-cta { margin: 8px 0 0; text-align: center; }
    .nav-toggle { display: flex; }

    .hero-content { padding: 60px 0; }
    .hero-stats { gap: 28px; }

    .about-strip-grid,
    .why-grid,
    .contact-grid,
    .about-section-grid,
    .practice-detail-grid { grid-template-columns: 1fr; gap: 40px; }

    .about-badge { right: 0; }

    .team-grid { grid-template-columns: 1fr; max-width: 420px; }
    .junior-grid { grid-template-columns: 1fr !important; max-width: 420px; margin-left: auto; margin-right: auto; }

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

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }

    .cta-inner { flex-direction: column; text-align: center; }

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

    .why-stats { grid-template-columns: 1fr 1fr; }

    .values-cards,
    .compliance-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}
