/* ========== DEDICATED OUTSOURCED FINANCE TEAM (ACCOUNTING TEAM OUTSOURCING) - FULL SCREEN ========== */

/* Full Screen Sections */
.dt-hero-full,
.dt-section-full {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 1rem 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.dt-section-full:nth-child(even) {
    background: var(--grey-soft);
}

/* Full Width Containers */
.dt-container-full,
.container-full {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.dt-hero-full {
    background: linear-gradient(145deg, var(--bg-color), var(--grey-soft));
}

.dt-badge-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.dt-badge {
    background: var(--primary-navy);
    color: var(--white-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
}

.dt-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.dt-heading-main {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.dt-heading-sub {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-slate);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Card */
.dt-hero-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px var(--light-brown);
    border: 1px solid var(--border-color);
}

.dt-card-pattern {
    height: 8px;
    background: linear-gradient(90deg, var(--primary-navy), var(--accent-slate), var(--primary-navy));
    width: 100%;
}

.dt-card-content {
    padding: 2rem;
}

.dt-card-text-primary {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-navy);
    text-align: center;
    font-weight: 500;
    margin-bottom: 2rem;
}

.dt-card-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.dt-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-navy), transparent);
    opacity: 0.2;
}

.dt-divider-icon {
    width: 40px;
    height: 40px;
    background: var(--grey-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 1rem;
    border: 1px solid var(--border-color);
}

.dt-card-text-secondary {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

/* Hero CTA */
.dt-hero-cta-full {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    align-items: center;
}

.dt-btn-primary-full {
    background: var(--primary-navy);
    color: var(--white-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.dt-btn-secondary-full {
    color: var(--primary-navy);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.dt-btn-primary-full:hover,
.dt-btn-secondary-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px var(--light-brown);
}

.dt-btn-secondary-full:hover {
    background: var(--primary-navy);
    color: var(--white-color);
}

.dt-cta-divider-full {
    color: var(--primary-navy);
    font-weight: 300;
    font-size: 1.2rem;
}

.dt-dots-full {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary-navy) 2px, transparent 2px);
    background-size: 25px 25px;
    opacity: 0.03;
    z-index: 1;
}

/* Section Header */
.dt-section-header-full {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.dt-section-label-full {
    color: var(--primary-navy);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    background: var(--primary-navy-soft);
    padding: 0.3rem 1.5rem;
    border-radius: 30px;
}

.dt-section-title-full {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
}

/* Problem Section */
.dt-problem-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 45px -25px var(--darkest-navy);
}

.dt-problem-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 2.5rem;
}

.dt-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.dt-problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--grey-soft);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.dt-problem-item i {
    color: var(--primary-navy);
    font-size: 1.1rem;
    min-width: 1.5rem;
    margin-top: 0.2rem;
}

.dt-problem-item span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-medium);
}

.dt-problem-outcome {
    background: var(--primary-navy);
    color: var(--white-color);
    padding: 1.5rem 2rem;
    border-radius: 60px;
    text-align: center;
}

.dt-problem-outcome p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Solution Section */
.dt-solution-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.dt-solution-main {
    margin-bottom: 0.5rem;
}

.dt-solution-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-medium);
    text-align: center;
}

.dt-solution-features h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.dt-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.dt-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--grey-soft);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.dt-feature-item i {
    color: var(--primary-navy);
    font-size: 1.1rem;
    min-width: 1.5rem;
}

.dt-feature-item span {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.dt-solution-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--grey-soft);
    padding: 1.2rem 1.8rem;
    border-radius: 60px;
    border: 1px solid var(--border-color);
}

.dt-solution-note i {
    color: var(--primary-navy);
    font-size: 1.2rem;
}

.dt-solution-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* What's Included Grid */
.dt-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.dt-included-block {
    background: var(--white-color);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px -20px var(--primary-navy-10);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dt-block-header {
    background: var(--primary-navy);
    color: var(--white-color);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dt-block-header i {
    font-size: 1.3rem;
    opacity: 0.9;
    min-width: 1.5rem;
}

.dt-block-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.dt-block-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.dt-block-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--grey-soft);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.dt-block-item i {
    color: var(--primary-navy);
    font-size: 1rem;
    min-width: 1.2rem;
    margin-top: 0.2rem;
}

.dt-block-item > div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dt-block-item strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.2rem;
}

.dt-block-item span {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.4;
}

/* Benefits Section */
.dt-benefits-container {
    max-width: 1000px;
    margin: 0 auto;
}

.dt-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.dt-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white-color);
    padding: 1.2rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px -20px var(--primary-navy-10);
}

.dt-benefit-card i {
    color: var(--primary-navy);
    font-size: 1.2rem;
    min-width: 1.5rem;
    margin-top: 0.1rem;
}

.dt-benefit-card > div {
    display: flex;
    flex-direction: column;
}

.dt-benefit-card strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.2rem;
}

.dt-benefit-card span {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.4;
}

.dt-benefits-summary {
    background: var(--primary-navy);
    color: var(--white-color);
    padding: 1.5rem 2rem;
    border-radius: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dt-benefits-summary p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Why Choose Grid */
.dt-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.dt-why-card {
    background: var(--white-color);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px -20px var(--primary-navy-10);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dt-why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-navy);
    box-shadow: var(--shadow-card);
}

.dt-why-card-wide {
    grid-column: span 1;
}

.dt-why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-navy-soft);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.dt-why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.dt-why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 0;
    text-align: center;
}

/* CTA Section */
.dt-cta-card {
    background: var(--primary-navy);
    border-radius: 60px;
    padding: 3rem;
    text-align: center;
    color: var(--white-color);
    max-width: 900px;
    margin: 0 auto;
}

.dt-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.dt-cta-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.dt-cta-button-wrapper {
    margin-bottom: 1.5rem;
}

.dt-cta-button {
    display: inline-block;
    background: var(--white-color);
    color: var(--primary-navy);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 280px;
}

.dt-cta-button i {
    margin-right: 0.5rem;
}

.dt-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neutral-md);
}

.dt-cta-specialist {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
    .dt-heading-main {
        font-size: 2.8rem;
    }
    
    .dt-heading-sub {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .dt-problem-grid,
    .dt-features-grid,
    .dt-benefits-grid,
    .dt-why-grid,
    .dt-included-grid {
        grid-template-columns: 1fr;
    }
    
    .dt-heading-main {
        font-size: 2.5rem;
    }
    
    .dt-heading-sub {
        font-size: 1.4rem;
    }
    
    .dt-section-title-full {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .dt-hero-full,
    .dt-section-full {
        padding: 3rem 0;
    }
    
    .dt-hero-card,
    .dt-problem-container,
    .dt-solution-container,
    .dt-cta-card {
        padding: 0;
    }
    
    .dt-card-content {
        padding: 2rem;
    }
    
    .dt-problem-container,
    .dt-solution-container {
        padding: 2rem;
    }
    
    .dt-hero-cta-full {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dt-cta-divider-full {
        display: none;
    }
    
    .dt-cta-button {
        width: 100%;
    }
    
    .dt-card-text-primary {
        font-size: 1.1rem;
    }
    
    .dt-card-text-secondary {
        font-size: 1rem;
    }
    
    .dt-cta-title {
        font-size: 1.8rem;
    }
}
/* Centered Card */
.dt-centered-card {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.dt-centered-block {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

/* Update the grid to have 2 columns */
.dt-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .dt-included-grid {
        grid-template-columns: 1fr;
    }
    
    .dt-centered-block {
        max-width: 100%;
    }
}
