/* ============================================
   Deodar Professional - High Modern Design
   Brand Colors: Gold #7B5E20 #C79F3E #C79D3E #E2B73E #986D21 | Blue #0B1C49 #052653
   ============================================ */

:root {
    /* Brand Blues */
    --blue-dark: #0B1C49;
    --blue-deeper: #052653;
    --blue-light: #0f2d6b;
    
    /* Brand Golds */
    --gold-darkest: #7B5E20;
    --gold-dark: #986D21;
    --gold-mid: #C79F3E;
    --gold-mid-alt: #C79D3E;
    --gold-light: #E2B73E;
    
    /* Derived */
    --color-primary: #0B1C49;
    --color-primary-alt: #052653;
    --color-accent: #C79F3E;
    --color-accent-hover: #E2B73E;
    --color-accent-dark: #986D21;
    --color-text: #1a1a2e;
    --color-text-light: #4a5568;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fc;
    --color-border: #e8ecf4;
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', -apple-system, sans-serif;
    --max-width: 1240px;
    --header-height: 76px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: var(--blue-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-mid);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-display), sans-serif;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(199, 159, 62, 0.3); }
    50% { box-shadow: 0 0 0 15px rgba(199, 159, 62, 0); }
}

.anim-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.anim-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(11, 28, 73, 0.08);
    transition: box-shadow var(--transition);
    overflow: visible;
}

.header-top {
    overflow: visible;
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(11, 28, 73, 0.12);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-display), sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-dark);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--gold-mid);
}

.nav-desktop > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px;
    align-items: center;
}

.nav-desktop a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--blue-dark);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--gold-mid);
}

/* Dropdown - show only on hover (desktop) */
.dropdown {
    position: relative;
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 40px rgba(11, 28, 73, 0.15);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border-radius: 10px;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1100;
    display: block;
    transform: translateY(-4px);
}

/* Invisible bridge to prevent gap when moving mouse to dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 20px;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(199, 159, 62, 0.1);
    color: var(--gold-mid);
    padding-left: 24px;
}

.dropdown .arrow {
    font-size: 0.5rem;
    margin-left: 4px;
    opacity: 0.7;
    vertical-align: middle;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform var(--transition);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--blue-dark);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
    display: none;
    background: var(--color-bg-alt);
    padding: 24px;
    border-top: 1px solid var(--color-border);
}

.nav-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mobile a {
    display: block;
    padding: 14px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

@media (max-width: 940px) {
    .nav-desktop { display: none; }
    .nav-toggle { display: flex; }
    .nav-mobile.open { display: block; }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-dark) 100%);
    color: var(--blue-dark);
    box-shadow: 0 4px 16px rgba(199, 159, 62, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199, 159, 62, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.9);
}

.btn-secondary:hover {
    background: #fff;
    color: var(--blue-dark);
    border-color: #fff;
}

/* Hero buttons - white text */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-dark) 100%);
    color: #fff !important;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 100%);
    color: #fff !important;
}

.btn-hero-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.9);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
}

/* Gold button for dark CTA sections - dark text on gold */
.btn-cta-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 100%);
    color: var(--blue-dark);
    padding: 16px 36px;
    font-weight: 700;
}

.btn-cta-gold:hover {
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
    color: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--blue-dark);
    border: 2px solid var(--gold-mid);
}

.btn-outline:hover {
    background: var(--gold-mid);
    color: var(--blue-dark);
}

.btn-large { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 28, 73, 0.92) 0%, rgba(5, 38, 83, 0.85) 50%, rgba(123, 94, 32, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(199, 159, 62, 0.25);
    border: 1px solid rgba(226, 183, 62, 0.5);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    animation: heroTextReveal 0.8s ease 0.2s both;
}

.hero h1 {
    margin: 0 0 24px;
    color: #fff;
    line-height: 1.15;
    animation: heroTextReveal 0.8s ease 0.3s both;
}

.hero h1 .highlight {
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 540px;
    margin: 0 auto 36px;
    opacity: 0.95;
    line-height: 1.7;
    animation: heroTextReveal 0.8s ease 0.45s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroTextReveal 0.8s ease 0.6s both;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 28, 73, 0.9) 0%, rgba(5, 38, 83, 0.8) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    margin: 0 0 16px;
    color: #fff;
}

.page-hero p {
    margin: 0;
    font-size: 1.15rem;
    opacity: 0.92;
}

.page-hero-small { padding: 80px 0; }
.article-content h2 { margin: 32px 0 16px; }
.article-content p { margin: 0 0 16px; }

/* ========== SECTIONS ========== */
.section {
    width: 100%;
    padding: 96px 0;
}

.section-alt {
    background: linear-gradient(180deg, #f0f4fb 0%, #f8f9fc 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 159, 62, 0.2), transparent);
}

.section-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 56px;
}

.section-header .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(199, 159, 62, 0.12);
    border-radius: 50px;
}

.section-header h2 {
    margin: 0 0 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-mid), var(--gold-dark));
    border-radius: 2px;
    margin: 16px auto 0;
}

.section-header.left-align h2::after {
    margin: 16px 0 0;
}

.section-header p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.text-center { text-align: center; }

.lead {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

/* ========== SERVICES OVERVIEW ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.service-card {
    background: var(--color-bg);
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(11, 28, 73, 0.04);
    transition: all var(--transition);
    display: block;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold-mid), var(--gold-dark));
    transition: height var(--transition);
}

.service-card:hover {
    border-color: rgba(199, 159, 62, 0.5);
    box-shadow: 0 20px 56px rgba(11, 28, 73, 0.12), 0 0 0 1px rgba(199, 159, 62, 0.1);
    transform: translateY(-8px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(199, 159, 62, 0.2) 0%, rgba(152, 109, 33, 0.12) 100%);
    border-radius: 14px;
    border: 1px solid rgba(199, 159, 62, 0.2);
    font-size: 1.5rem;
    color: var(--gold-mid);
    margin-bottom: 20px;
}

.service-icon i {
    font-size: inherit;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

.service-card p {
    margin: 0 0 16px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.link-arrow {
    font-weight: 600;
    color: var(--gold-mid);
    font-size: 0.9rem;
    display: inline-block;
    transition: transform var(--transition);
}

.service-card:hover .link-arrow {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== INDUSTRIES ========== */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.industry-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue-dark);
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(11, 28, 73, 0.04);
}

.industry-tag:hover {
    border-color: var(--gold-mid);
    color: var(--gold-mid);
    background: rgba(199, 159, 62, 0.08);
    transform: translateY(-2px);
}

.industry-icon {
    font-size: 1.25rem;
    color: var(--gold-mid);
    display: inline-flex;
    align-items: center;
}

.industry-icon i {
    font-size: inherit;
}

/* ========== WHY CHOOSE US ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    text-align: center;
    padding: 44px 32px;
    background: var(--color-bg);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(11, 28, 73, 0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-mid), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(11, 28, 73, 0.12);
    border-color: rgba(199, 159, 62, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-size: 1.75rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(199, 159, 62, 0.35);
}

.why-icon i {
    font-size: inherit;
}

.why-card h3 {
    margin: 0 0 12px;
}

.why-card p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== INSIGHTS ========== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.insight-card {
    background: var(--color-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 28, 73, 0.08);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.insight-card:hover {
    box-shadow: 0 24px 56px rgba(11, 28, 73, 0.14);
    transform: translateY(-8px);
    border-color: rgba(199, 159, 62, 0.2);
}

.insight-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 5s ease;
    position: relative;
}

.insight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 28, 73, 0.1) 100%);
}

.insight-card:hover .insight-image {
    transform: scale(1.08);
}

.insight-content {
    padding: 28px;
}

.insight-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-mid);
    margin-bottom: 10px;
}

.insight-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.insight-card p {
    margin: 0 0 16px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.read-more {
    font-weight: 600;
    color: var(--gold-mid);
}

.read-more:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== ABOUT SNIPPET ========== */
.about-snippet-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-snippet-content h2 {
    margin: 0 0 20px;
}

.about-snippet-content .lead {
    margin: 0 0 20px;
}

.about-snippet-content p {
    margin: 0 0 28px;
}

.about-snippet-image {
    position: relative;
}

.about-snippet-image img {
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(11, 28, 73, 0.15);
}

.about-snippet-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-mid);
    border-radius: 12px;
    z-index: -1;
}

@media (max-width: 900px) {
    .about-snippet-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-snippet-image { order: -1; }
    .about-snippet-image::after { display: none; }
}

/* ========== STATS / ANIMATED COUNTERS ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--color-bg);
    border-radius: 16px;
    border: 2px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(11, 28, 73, 0.04);
    transition: all var(--transition);
}

.stat-item:hover {
    border-color: rgba(199, 159, 62, 0.3);
    box-shadow: 0 12px 36px rgba(11, 28, 73, 0.08);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold-mid);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* ========== CASE STUDIES ========== */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.case-card {
    background: var(--color-bg);
    padding: 44px 32px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--color-border);
    box-shadow: 0 8px 28px rgba(11, 28, 73, 0.06);
    transition: all var(--transition);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(11, 28, 73, 0.12);
    border-color: rgba(199, 159, 62, 0.3);
}

.case-stat {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
}

.case-card p {
    margin: 0;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: var(--color-bg);
    padding: 44px 40px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(11, 28, 73, 0.06);
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 16px 48px rgba(11, 28, 73, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--gold-mid);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card p {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--blue-dark);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

/* ========== TRUSTED BY ========== */
.trusted-by {
    padding: 72px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trusted-by-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin: 0 0 32px;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 48px;
}

.client-logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.client-logo-icon {
    font-size: 1.5rem;
    color: var(--gold-mid);
    display: inline-flex;
    align-items: center;
}

.client-logo-icon i {
    font-size: inherit;
}

/* ========== STATS RIBBON ========== */
.stats-ribbon {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
    padding: 48px 0;
    position: relative;
}

.stats-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.03'%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");
    opacity: 0.5;
}

.stats-ribbon-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.ribbon-stat {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    text-align: center;
}

.ribbon-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}

/* ========== APPROACH ========== */
.approach-section { background: var(--color-bg); }
.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-content h2 { margin: 0 0 20px; }
.approach-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.approach-list li {
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
}

.approach-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gold-mid);
    border-radius: 50%;
}

.approach-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-card {
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(199, 159, 62, 0.06) 0%, rgba(152, 109, 33, 0.04) 100%);
    border-left: 5px solid var(--gold-mid);
    border-radius: 12px;
    font-weight: 700;
    color: var(--blue-dark);
    box-shadow: 0 4px 16px rgba(11, 28, 73, 0.04);
}

@media (max-width: 900px) {
    .approach-grid { grid-template-columns: 1fr; }
}

/* ========== FEATURED REPORT ========== */
.featured-report-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.featured-report-content h2 { margin: 0 0 20px; }
.featured-report-content p { margin: 0 0 16px; }
.report-image {
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(11, 28, 73, 0.2);
}

@media (max-width: 900px) {
    .featured-report-inner { grid-template-columns: 1fr; }
    .report-image { height: 280px; }
}

/* ========== NEWS ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    padding: 36px 32px;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 16px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(11, 28, 73, 0.04);
}

.news-card:hover {
    border-color: rgba(199, 159, 62, 0.5);
    box-shadow: 0 16px 48px rgba(11, 28, 73, 0.1);
}

.news-date {
    font-size: 0.85rem;
    color: var(--gold-mid);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.news-card h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

.news-card p { margin: 0 0 16px; color: var(--color-text-light); }

@media (max-width: 900px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* ========== ESG ========== */
.esg-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.esg-content h2 { margin: 0 0 20px; }
.esg-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.esg-stat {
    padding: 28px 32px;
    background: var(--color-bg);
    border-radius: 16px;
    border: 2px solid var(--color-border);
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(11, 28, 73, 0.06);
}

.esg-stat span {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-mid);
}

@media (max-width: 900px) {
    .esg-inner { grid-template-columns: 1fr; }
}

/* ========== CAREERS BANNER ========== */
.careers-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.careers-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.careers-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 28, 73, 0.88) 0%, rgba(5, 38, 83, 0.82) 100%);
}

.careers-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.careers-inner h2 {
    color: #fff;
    margin: 0 0 16px;
}

.careers-inner p {
    color: rgba(255,255,255,0.9);
    margin: 0 0 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== STATIC CONTENT SECTION ========== */
.static-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.static-content-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 56px rgba(11, 28, 73, 0.12);
}

.static-content-text h2 { margin: 0 0 20px; }
.static-content-text p { margin: 0 0 20px; }

@media (max-width: 900px) {
    .static-content-inner { grid-template-columns: 1fr; }
    .static-content-image { order: -1; }
}

/* ========== ARTICLE FEATURED IMAGE ========== */
.article-featured-image {
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    display: block;
}

/* ========== EVENTS ========== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.event-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 16px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(11, 28, 73, 0.04);
}

.event-card:hover {
    border-color: rgba(199, 159, 62, 0.5);
    box-shadow: 0 12px 40px rgba(11, 28, 73, 0.08);
}

.event-date {
    flex-shrink: 0;
    width: 64px;
    text-align: center;
}

.date-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-mid);
}

.date-month {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.event-details h3 { margin: 0 0 8px; font-size: 1.1rem; }
.event-details p { margin: 0 0 12px; color: var(--color-text-light); font-size: 0.95rem; }

@media (max-width: 900px) {
    .events-grid { grid-template-columns: 1fr; }
}

/* ========== LEADERSHIP ========== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.leadership-card {
    background: var(--color-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--color-border);
    transition: all var(--transition);
    box-shadow: 0 8px 32px rgba(11, 28, 73, 0.06);
}

.leadership-card:hover {
    box-shadow: 0 24px 56px rgba(11, 28, 73, 0.12);
    transform: translateY(-4px);
}

.leadership-photo {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
}

.leadership-card h3 { margin: 0; padding: 20px 24px 4px; }
.leadership-role {
    padding: 0 24px;
    font-size: 0.9rem;
    color: var(--gold-mid);
    font-weight: 600;
}

.leadership-bio {
    padding: 12px 24px 20px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.leadership-card .read-more {
    padding: 0 24px 24px;
    display: block;
}

@media (max-width: 900px) {
    .leadership-grid { grid-template-columns: 1fr; }
}

/* ========== AWARDS ========== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.award-item {
    text-align: center;
    padding: 44px 32px;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(11, 28, 73, 0.06);
}

.award-item:hover {
    border-color: rgba(199, 159, 62, 0.4);
    box-shadow: 0 16px 40px rgba(11, 28, 73, 0.08);
}

.award-icon {
    font-size: 2rem;
    color: var(--gold-mid);
    margin-bottom: 16px;
}

.award-icon i {
    font-size: inherit;
}

.award-item h3 { margin: 0 0 8px; }
.award-item p { margin: 0; color: var(--color-text-light); }

@media (max-width: 768px) {
    .awards-grid { grid-template-columns: 1fr; }
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-content h2 {
    color: #fff;
    margin: 0 0 8px;
}

.newsletter-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 480px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-mid);
}

@media (max-width: 768px) {
    .newsletter-inner { flex-direction: column; align-items: stretch; }
    .newsletter-form { max-width: 100%; flex-direction: column; }
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 159, 62, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin: 0 0 16px;
    color: #fff;
}

.cta-content p {
    margin: 0 0 32px;
    opacity: 0.95;
}

/* CTA uses btn-cta-gold - gold bg, dark text */

.cta-box {
    background: linear-gradient(135deg, rgba(199, 159, 62, 0.08) 0%, rgba(152, 109, 33, 0.05) 100%);
    padding: 56px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(199, 159, 62, 0.2);
}

.cta-box h2 {
    margin: 0 0 12px;
}

.cta-box p {
    margin: 0 0 28px;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
    color: #fff;
    padding: 80px 0 32px;
}

.footer a {
    color: rgba(255,255,255,0.9);
}

.footer a:hover {
    color: var(--gold-light);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.8fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    max-height: 100px;
    width: auto;
    border-radius: 5px;
}

.footer-col-contact {
    min-width: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px !important;
}

.footer-contact-item:last-child {
    margin-bottom: 0 !important;
}

.footer-contact-item i {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    color: var(--gold-light);
    margin-top: 2px;
}

.footer-contact-item a {
    word-break: keep-all;
}

@media (min-width: 901px) {
    .footer-col-contact {
        min-width: 220px;
    }
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 20px;
    color: #fff;
}

.footer-col p,
.footer-col ul {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col-contact {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========== PAGE-SPECIFIC ========== */
.about-intro { max-width: 720px; }
.about-intro h2 { margin: 0 0 20px; }
.about-intro .lead { margin: 0 0 24px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--color-bg);
    padding: 44px 32px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--color-border);
    box-shadow: 0 8px 28px rgba(11, 28, 73, 0.06);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 159, 62, 0.4);
    box-shadow: 0 16px 48px rgba(11, 28, 73, 0.1);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(199, 159, 62, 0.15) 0%, rgba(152, 109, 33, 0.1) 100%);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--gold-mid);
}

.value-icon i {
    font-size: inherit;
}

.value-card h3 { margin: 0 0 12px; }
.value-card p { margin: 0; color: var(--color-text-light); }

@media (max-width: 768px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--gold-mid);
}

.exp-label { font-size: 0.95rem; color: var(--color-text-light); }

@media (max-width: 768px) {
    .experience-stats { grid-template-columns: repeat(2, 1fr); }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.team-card {
    text-align: center;
    transition: transform var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.team-card h3 { margin: 0 0 6px; }
.team-role { margin: 0; font-size: 0.9rem; color: var(--color-text-light); }

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* ========== SERVICES PAGE ========== */
.services-nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.services-nav a {
    padding: 10px 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.services-nav a:hover,
.services-nav a.active {
    border-color: var(--gold-mid);
    color: var(--gold-mid);
    background: rgba(199, 159, 62, 0.08);
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-content h2 { margin: 0 0 20px; }
.service-detail-content .lead { margin: 0 0 20px; }
.service-detail-content p { margin: 0 0 16px; }

.service-sublist {
    margin: 24px 0;
    padding-left: 22px;
}

.service-sublist li {
    margin-bottom: 14px;
    color: var(--color-text-light);
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(11, 28, 73, 0.12);
}

@media (max-width: 768px) {
    .service-detail-inner,
    .service-detail-inner.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .service-detail-image { order: -1; }
}

/* ========== US TAX LANDING PAGE ========== */
.cross-border-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.cross-border-hero-bg,
.cross-border-hero-overlay {
    position: absolute;
    inset: 0;
}

.cross-border-hero-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.cross-border-hero-overlay {
    background: linear-gradient(110deg, rgba(11, 28, 73, 0.94) 0%, rgba(5, 38, 83, 0.88) 46%, rgba(11, 28, 73, 0.58) 100%);
}

.cross-border-hero .container {
    position: relative;
    z-index: 2;
}

.cross-border-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.cross-border-hero-copy {
    color: #fff;
}

.cross-border-hero-copy h1 {
    color: #fff;
    margin: 0 0 22px;
    max-width: 760px;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.16;
}

.cross-border-trust-line {
    margin: 0 0 28px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.credibility-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.credibility-item i {
    color: var(--gold-light);
}

.cross-border-hero-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(3, 15, 43, 0.32);
}

.cross-border-hero-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.cross-border-hero-card-body {
    padding: 30px;
}

.cross-border-hero-card-body h2 {
    margin: 0 0 14px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.cross-border-hero-card-body p {
    margin: 0;
    color: var(--color-text-light);
}

.contact-mini-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.contact-mini-item {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-mini-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.contact-mini-item a {
    color: #fff;
    font-weight: 600;
}

.audience-grid,
.service-cluster-grid,
.process-steps,
.faq-grid {
    display: grid;
    gap: 24px;
}

.audience-grid {
    grid-template-columns: repeat(5, 1fr);
}

.audience-card,
.service-cluster-card,
.faq-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 8px 28px rgba(11, 28, 73, 0.06);
}

.audience-card h3,
.service-cluster-card h3,
.faq-card h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.audience-card p,
.faq-card p {
    margin: 0;
    color: var(--color-text-light);
}

.service-cluster-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-cluster-card {
    position: relative;
    overflow: hidden;
}

.service-cluster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-mid), var(--gold-dark));
}

.service-cluster-card .service-sublist {
    margin-bottom: 0;
}

.contact-cta-section {
    padding-top: 24px;
}

.contact-cta-panel {
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(11, 28, 73, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-cta-panel-light {
    background: linear-gradient(135deg, rgba(199, 159, 62, 0.12) 0%, rgba(11, 28, 73, 0.04) 100%);
    border: 1px solid rgba(199, 159, 62, 0.2);
}

.contact-cta-panel-light::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 159, 62, 0.18) 0%, rgba(199, 159, 62, 0) 72%);
}

.contact-cta-intro {
    max-width: 720px;
    margin-bottom: 28px;
}

.contact-cta-intro h2 {
    margin: 0 0 12px;
}

.contact-cta-intro p {
    margin: 0;
    color: var(--color-text-light);
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.contact-cta-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 12px 28px rgba(11, 28, 73, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 159, 62, 0.3);
    box-shadow: 0 20px 42px rgba(11, 28, 73, 0.1);
}

.contact-cta-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-cta-card p {
    margin: 0 0 18px;
    color: var(--blue-dark);
    font-weight: 500;
}

.contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.contact-cta-actions a {
    padding: 0;
    color: var(--blue-dark);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.contact-cta-actions a + a {
    margin-left: 22px;
}

.contact-cta-actions a + a::before {
    content: '-';
    position: absolute;
    left: -14px;
    color: rgba(11, 28, 73, 0.38);
}

.process-steps {
    grid-template-columns: repeat(3, 1fr);
}

.process-step {
    position: relative;
    padding: 34px 28px 30px;
    background: var(--color-bg);
    border-radius: 18px;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 28px rgba(11, 28, 73, 0.06);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.process-step h3 {
    margin: 0 0 12px;
}

.process-step p {
    margin: 0;
    color: var(--color-text-light);
}

.portal-highlight {
    background: linear-gradient(135deg, rgba(11, 28, 73, 0.98) 0%, rgba(5, 38, 83, 0.95) 100%);
}

.portal-highlight-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.portal-highlight-copy h2,
.portal-highlight-copy p,
.portal-feature-list span {
    color: #fff;
}

.portal-highlight-copy .section-tag {
    background: rgba(199, 159, 62, 0.18);
}

.portal-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 32px;
}

.portal-feature-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-feature-list i {
    color: var(--gold-light);
}

.portal-highlight-visual img,
.home-feature-banner-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(11, 28, 73, 0.2);
}

.contact-cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 34px 38px;
    border-radius: 22px;
}

.contact-cta-banner-dark {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
    box-shadow: 0 18px 44px rgba(11, 28, 73, 0.18);
}

.contact-cta-banner h2 {
    margin: 0 0 10px;
    color: #fff;
}

.contact-cta-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.contact-cta-banner p a {
    color: var(--gold-light);
}

.contact-cta-banner .section-tag {
    background: rgba(199, 159, 62, 0.18);
}

.contact-cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.split-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.split-highlight-panel {
    padding: 40px;
    border-radius: 22px;
    border: 1px solid var(--color-border);
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fe 100%);
    box-shadow: 0 10px 32px rgba(11, 28, 73, 0.06);
}

.split-highlight-panel h2 {
    margin: 0 0 18px;
}

.split-highlight-panel p {
    margin: 0 0 24px;
    color: var(--color-text-light);
}

.split-highlight-panel-dark {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
    border-color: rgba(255, 255, 255, 0.06);
}

.split-highlight-panel-dark h2,
.split-highlight-panel-dark p {
    color: #fff;
}

.split-highlight-panel-dark .section-tag {
    background: rgba(199, 159, 62, 0.18);
}

.checklist-grid,
.home-feature-points {
    display: grid;
    gap: 14px;
}

.checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checklist-grid div,
.home-feature-points div,
.local-keywords span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checklist-grid i,
.home-feature-points i {
    color: var(--gold-mid);
}

.local-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 28px;
}

.local-keywords span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.faq-grid {
    grid-template-columns: repeat(2, 1fr);
}

.home-feature-banner-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.home-feature-banner-copy h2 {
    margin: 0 0 18px;
}

.home-feature-banner-copy p {
    margin: 0 0 22px;
}

.cta-contact-note {
    margin: 22px 0 0;
    color: var(--color-text-light);
}

.cta-contact-note a {
    font-weight: 600;
}

.us-tax-page .section-header h2,
.us-tax-page .split-highlight-panel h2,
.us-tax-page .portal-highlight-copy h2,
.us-tax-page .contact-cta-intro h2,
.us-tax-page .contact-cta-banner h2,
.us-tax-page .cross-border-hero-card-body h2,
.us-tax-page .cta-box h2 {
    font-size: clamp(1.5rem, 2.3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.2;
}

.us-tax-page .audience-card h3,
.us-tax-page .service-cluster-card h3,
.us-tax-page .faq-card h3,
.us-tax-page .process-step h3 {
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    font-weight: 600;
    line-height: 1.3;
}

.us-tax-page .lead,
.us-tax-page .hero-subtitle,
.us-tax-page .section-header p,
.us-tax-page .split-highlight-panel p,
.us-tax-page .portal-highlight-copy p,
.us-tax-page .contact-cta-intro p {
    font-size: clamp(1rem, 1.3vw, 1.08rem);
}

@media (max-width: 1100px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-cta-grid,
    .service-cluster-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .cross-border-hero-grid,
    .portal-highlight-inner,
    .split-highlight,
    .home-feature-banner-inner {
        grid-template-columns: 1fr;
    }

    .contact-cta-grid {
        grid-template-columns: 1fr;
    }

    .cross-border-hero {
        min-height: auto;
        padding: 90px 0 70px;
    }

    .cross-border-hero-card {
        max-width: 680px;
    }

    .contact-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .contact-mini-bar,
    .credibility-points,
    .portal-feature-list,
    .checklist-grid,
    .faq-grid,
    .audience-grid,
    .service-cluster-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .split-highlight-panel,
    .cross-border-hero-card-body,
    .contact-cta-panel,
    .contact-cta-banner {
        padding: 28px 24px;
    }

    .us-tax-page .cross-border-hero {
        padding: 74px 0 54px;
    }

    .us-tax-page .cross-border-hero-copy h1 {
        font-size: 1.7rem;
        font-weight: 500;
        line-height: 1.2;
        max-width: 100%;
    }

    .us-tax-page .section-header {
        margin-bottom: 38px;
    }

    .us-tax-page .section-header h2,
    .us-tax-page .split-highlight-panel h2,
    .us-tax-page .portal-highlight-copy h2,
    .us-tax-page .contact-cta-intro h2,
    .us-tax-page .contact-cta-banner h2,
    .us-tax-page .cross-border-hero-card-body h2,
    .us-tax-page .cta-box h2 {
        font-size: 1.4rem;
        font-weight: 600;
    }

    .us-tax-page .audience-card,
    .us-tax-page .service-cluster-card,
    .us-tax-page .faq-card,
    .us-tax-page .process-step,
    .us-tax-page .contact-cta-card {
        padding: 24px 20px;
    }

    .us-tax-page .audience-card h3,
    .us-tax-page .service-cluster-card h3,
    .us-tax-page .faq-card h3,
    .us-tax-page .process-step h3,
    .us-tax-page .contact-cta-card h3 {
        font-size: 1rem;
        font-weight: 600;
    }

    .us-tax-page .hero-subtitle,
    .us-tax-page .lead,
    .us-tax-page .section-header p,
    .us-tax-page .split-highlight-panel p,
    .us-tax-page .portal-highlight-copy p,
    .us-tax-page .contact-cta-intro p,
    .us-tax-page .faq-card p,
    .us-tax-page .audience-card p,
    .us-tax-page .process-step p {
        font-size: 0.98rem;
    }
}

/* ========== CASE STUDIES DETAIL ========== */
.case-studies-list { display: grid; gap: 36px; }

.case-study-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    background: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 28, 73, 0.08);
    transition: all var(--transition);
}

.case-study-card:hover {
    box-shadow: 0 16px 48px rgba(11, 28, 73, 0.12);
}

.case-study-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.case-study-content { padding: 32px 32px 32px 0; }
.case-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 10px;
}

.case-study-content h3 { margin: 0 0 12px; }
.case-study-content p { margin: 0 0 16px; color: var(--color-text-light); }

@media (max-width: 768px) {
    .case-study-card { grid-template-columns: 1fr; }
    .case-study-image { height: 200px; }
    .case-study-content { padding: 32px; }
}

/* ========== CONTACT PAGE ========== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: start;
}

.contact-form-wrapper h2,
.contact-info h2 { margin: 0 0 28px; }

.contact-form .form-group { margin-bottom: 24px; }
.contact-form label { display: block; font-weight: 500; margin-bottom: 10px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-mid);
    box-shadow: 0 0 0 3px rgba(199, 159, 62, 0.15);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.info-block { margin-bottom: 28px; }
.info-block h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; margin: 0 0 10px; }
.info-block p { margin: 0 0 6px; color: var(--color-text-light); }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.location-card {
    background: var(--color-bg);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.location-card:hover {
    border-color: rgba(199, 159, 62, 0.3);
}

.location-card h3 { margin: 0 0 14px; }
.location-card p { margin: 0 0 6px; color: var(--color-text-light); }

@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
