/* 
========================================================================
   DK LEGAL & ASSOCIATES — ENTERPRISE SERVICE SUBPAGE STYLING
   An ultra-premium, interactive layout featuring glassmorphism, 
   glowing radial backdrops, dashboard inputs, and micro-interactions.
========================================================================
*/

/* 1. Global Page Layout & Navigation overrides */
body.service-subpage {
    background-color: var(--color-bg-warm);
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
}

body.service-subpage #header {
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1.5px solid rgba(11, 35, 23, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* Glowing Background Accent */
.glowing-bg-accent {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.06) 0%, rgba(193, 154, 107, 0) 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* 2. Enterprise Hero Section (Split Layout) */
.service-hero-enterprise {
    background-color: #faf8f5;
    position: relative;
    padding: 100px 24px 80px 24px;
    overflow: hidden;
    color: #0b2317;
}

.hero-radial-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-radial-decor::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.05) 0%, rgba(250, 248, 243, 0) 70%);
    filter: blur(50px);
}

.hero-radial-decor::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.03) 0%, rgba(250, 248, 243, 0) 70%);
    filter: blur(50px);
}

.hero-grid-layout {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #888888;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.breadcrumb-link {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--color-gold);
}

.breadcrumb-separator {
    color: #cccccc;
    font-size: 14px;
}

.breadcrumb-current {
    color: var(--color-gold);
    font-weight: 600;
}

.hero-sub-category {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title-large {
    font-family: var(--font-heading);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    color: #0b2317;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease forwards;
}

.hero-title-large span {
    color: var(--color-gold);
    font-style: normal;
    font-family: var(--font-heading);
}

.hero-desc-large {
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 520px;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-actions-row {
    display: flex;
    gap: 16px;
    animation: fadeInUp 1.4s ease forwards;
}

/* Custom mockup action buttons */
.btn-book-consultation {
    background: #0b2317;
    border: 1px solid #0b2317;
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(11, 35, 23, 0.12);
}

.btn-book-consultation:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #0b2317 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 154, 107, 0.2);
}

.btn-talk-expert {
    background: transparent;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold) !important;
    padding: 14px 30px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-talk-expert:hover {
    background: var(--color-gold);
    color: #ffffff !important;
    transform: translateY(-2px);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 3. Section Headers & Global Components */
.section-padding {
    padding: 100px 24px;
    position: relative;
}

.section-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header-centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 65px auto;
}

.sub-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.main-title-serif {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 44px);
    color: var(--color-primary);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.section-desc-body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-muted);
    margin-top: 14px;
    line-height: 1.6;
    font-weight: 400;
}

/* 4. Luxury Grid Cards */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.vertical-card {
    background-color: var(--color-white);
    border: 1px solid rgba(11, 35, 23, 0.06);
    border-radius: 20px;
    padding: 44px 36px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 40px rgba(11, 35, 23, 0.01);
    position: relative;
}

.vertical-card:hover {
    transform: translateY(-10px);
    border-color: rgba(193, 154, 107, 0.5);
    box-shadow: 0 30px 60px rgba(11, 35, 23, 0.05);
}

.vertical-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(193, 154, 107, 0.06);
    border: 1.5px solid rgba(193, 154, 107, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.vertical-card:hover .vertical-card-icon {
    background: var(--color-primary);
    color: var(--color-gold);
    border-color: var(--color-primary);
}

.vertical-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 14px;
    font-weight: 500;
}

.vertical-card-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.vertical-card-features-list {
    margin-top: auto;
    list-style: none;
    width: 100%;
}

.vertical-card-features-list li {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.vertical-card-features-list li svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* 5. Enterprise Dashboard Calculator Widget styling */
.calculator-box {
    background-color: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.25);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 40px 80px rgba(11, 35, 23, 0.04);
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.input-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.slider-field {
    flex: 1;
    height: 6px;
    background: rgba(11, 35, 23, 0.08);
    outline: none;
    border-radius: 10px;
    -webkit-appearance: none;
    accent-color: var(--color-gold);
}

.slider-field::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-gold);
    border: 3px solid var(--color-white);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(11, 35, 23, 0.2);
}

.slider-val-box {
    background: rgba(11, 35, 23, 0.03);
    border: 1px solid rgba(11, 35, 23, 0.08);
    border-radius: 8px;
    padding: 8px 14px;
    min-width: 140px;
    text-align: right;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(193, 154, 107, 0.05);
    border: 1.5px dashed rgba(193, 154, 107, 0.25);
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.checkbox-row:hover {
    background: rgba(193, 154, 107, 0.08);
}

/* Comparative Visual Bar Charts */
.comparison-panel {
    background-color: rgba(11, 35, 23, 0.01);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.regime-column {
    background: var(--color-white);
    border: 1px solid rgba(11, 35, 23, 0.05);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(11, 35, 23, 0.02);
    transition: var(--transition-smooth);
}

.regime-column.better {
    border: 2px solid var(--color-gold);
    background: rgba(193, 154, 107, 0.02);
    box-shadow: 0 15px 35px rgba(193, 154, 107, 0.08);
    position: relative;
    transform: scale(1.03);
}

.better-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 10px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(193, 154, 107, 0.25);
}

.savings-highlight-card {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.savings-highlight-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.15) 0%, rgba(255,255,255,0) 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

/* Pure CSS Bar Charts */
.visual-comparison-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.bar-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bar-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.bar-container {
    height: 8px;
    width: 100%;
    background: rgba(11, 35, 23, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--color-text-muted);
    border-radius: 10px;
    width: 0;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-fill.gold {
    background: var(--color-gold);
}

/* 6. Onboarding horizontal stepper */
.stepper-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 20px;
}

.step-card {
    background: var(--color-white);
    border: 1px solid rgba(11, 35, 23, 0.05);
    border-radius: 16px;
    padding: 30px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(193, 154, 107, 0.25);
}

.step-number-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(11, 35, 23, 0.1);
}

.step-card:nth-child(even) .step-number-badge {
    background-color: var(--color-gold);
    color: var(--color-primary);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.step-desc {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Connector Line on Desktop */
.stepper-flow::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(11, 35, 23, 0.05);
    z-index: 0;
}

@media(max-width: 991px) {
    .stepper-flow {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stepper-flow::before {
        display: none;
    }
}

/* 7. Legal Grid */
.legal-breakdown-section {
    background: linear-gradient(135deg, #071911 0%, #030b07 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 36px;
}

.legal-item {
    border-top: 1.5px solid var(--color-gold);
    padding-top: 24px;
    transition: var(--transition-smooth);
}

.legal-item:hover {
    transform: translateY(-4px);
}

.legal-section-tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.legal-item-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 500;
}

.legal-item-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* 8. Minimalist Accordion FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: none;
    border-bottom: 1px solid rgba(11, 35, 23, 0.08);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 500;
    outline: none;
}

.faq-trigger:hover {
    color: var(--color-gold);
}

.faq-icon-arrow {
    color: var(--color-gold);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 0 28px 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

/* 9. Contact / Appointment Wrapper override */
.service-contact-wrapper {
    background: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(11, 35, 23, 0.03);
    margin: 0 auto;
    max-width: 960px;
    position: relative;
    overflow: hidden;
}

.service-contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
}

/* 10. Responsive Overrides & Adjustments */
@media (max-width: 991px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-side {
        align-items: center;
        text-align: center;
    }

    .hero-glass-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .section-padding {
        padding: 80px 20px;
    }

    .service-contact-wrapper {
        padding: 40px 24px;
    }
}

@media(max-width: 576px) {
    .hero-actions-row {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .hero-actions-row .btn-primary,
    .hero-actions-row .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .calculator-box {
        padding: 30px 20px;
    }
    .calculator-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .slider-field {
        min-width: auto;
    }
    .slider-val-box {
        min-width: 110px;
    }
}

/* Image styling inside core practice cards */
.vertical-card-img-wrap {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    border: 1px solid rgba(11, 35, 23, 0.05);
}

.vertical-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vertical-card:hover .vertical-card-img {
    transform: scale(1.06);
}

/* Split Showcase Section Layout */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media(max-width: 991px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* Standalone Glass Dashboard Card Styling */
.hero-visual-wrap {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-curve-container {
    width: 90%;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(90% 120% at 95% 45%);
    -webkit-clip-path: ellipse(90% 120% at 95% 45%);
    background: #0b2317;
}

.hero-curve-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
    filter: brightness(97%) contrast(102%);
}

.hero-curve-image:hover {
    transform: scale(1.06);
}

.hero-curve-border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Decorative dot grid */
.hero-dots-decor {
    position: absolute;
    width: 80px;
    height: 120px;
    background-image: radial-gradient(#c19a6b 2px, transparent 2px);
    background-size: 14px 14px;
    top: 40px;
    left: 0px;
    z-index: 0;
    opacity: 0.7;
}

/* Rotated Diamond Card Badge */
.hero-diamond-badge {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #0b2317;
    border: 1.5px solid #c19a6b;
    border-radius: 24px;
    transform: rotate(45deg);
    top: 50%;
    left: -20px;
    margin-top: -80px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(11, 35, 23, 0.3);
    transition: transform 0.5s ease, border-color 0.3s ease;
}

.hero-diamond-badge:hover {
    transform: rotate(45deg) translateY(-5px);
    border-color: #dfc5a4;
}

.diamond-badge-content {
    transform: rotate(-45deg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 130px;
}

.diamond-badge-icon {
    color: #c19a6b;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diamond-badge-title {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #ffffff;
}

.diamond-badge-highlight {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #c19a6b;
}

/* 6-Card Tax Practice Grid Styling */
.tax-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.tax-service-box {
    background: #ffffff;
    border: 1px solid rgba(11, 35, 23, 0.06);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(11, 35, 23, 0.01);
}

.tax-service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 35, 23, 0.06);
    border-color: rgba(193, 154, 107, 0.35);
}

.tax-service-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(193, 154, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b2317;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.tax-service-box:hover .tax-service-icon-circle {
    background: #0b2317;
    color: var(--color-gold);
}

.tax-service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #0b2317;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.tax-service-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Compliance Highlights Bottom Bar */
.tax-highlights-bar {
    background: #0b2317;
    border-radius: 12px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.tax-highlight-col {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tax-highlight-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(193, 154, 107, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.tax-highlight-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.tax-highlight-title {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
}

.tax-highlight-desc {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@media(max-width: 991px) {
    .hero-visual-wrap {
        height: 380px;
        justify-content: center;
        max-width: 440px;
        margin: 0 auto;
        padding-top: 20px;
    }
    
    .hero-image-curve-container {
        width: 100%;
        clip-path: ellipse(90% 120% at 95% 45%);
        -webkit-clip-path: ellipse(90% 120% at 95% 45%);
    }
    
    .hero-diamond-badge {
        left: 20px;
        width: 130px;
        height: 130px;
        margin-top: -65px;
    }
    
    .diamond-badge-content {
        width: 100px;
    }
    
    .diamond-badge-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .diamond-badge-title, .diamond-badge-highlight {
        font-size: 10.5px;
    }

    .tax-highlights-bar {
        grid-template-columns: 1fr 1fr;
        padding: 30px;
        gap: 24px;
    }
}

@media(max-width: 576px) {
    .tax-highlights-bar {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }
}


