/* Digital Product Engineering Page Specific Styles */

/* =========================================
   Hero Section (Based on Figma Frame 7)
   ========================================= */
.digital-product-hero {
    position: relative;
    width: 100%;
    height: 446px; /* Matches Figma height */
    background-color: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../img/image-45.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4; /* Matches Figma image45 opacity */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centering content vertically */
    padding-top: 52px;
    padding-bottom: 52px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px; /* Matches Figma row-gap */
    max-width: 1224px; /* Matches Figma title width */
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px; /* Matches Figma */
    line-height: 66px; /* Matches Figma */
    letter-spacing: -1.06px; /* Matches Figma */
    color: #ffffff;
    margin: 0;
    font-weight: 700; /* Assuming bold for header */
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px; /* Matches Figma */
    line-height: 24px; /* Matches Figma */
    letter-spacing: -0.31px; /* Matches Figma */
    color: rgba(255, 255, 255, 0.9); /* #ffffffe5 */
    margin: 0;
    max-width: 800px; /* Constrained for better readability */
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px; /* Matches Figma column-gap */
    background-color: #ffffff;
    color: #000000;
    border-radius: 6px; /* Matches Figma */
    padding: 0 32px; /* Matches Figma padding-left/right */
    height: 48px; /* Matches Figma height */
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* Matches Figma */
    font-weight: 500; /* Matches Figma */
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-cta-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-icon {
    width: 16px; /* Matches Figma icon size */
    height: 16px;
    /* Ensure icon color matches if it's an SVG that needs coloring, 
       but here it's an image src so it should be fine. */
}

/* =========================================
   Who We Serve Section (Based on Figma Frame 91)
   ========================================= */
.who-we-serve-section {
    background-color: #0f172b; /* Dark blue background */
    padding: 60px 0 100px; /* Top padding reduced to balance layout, bottom as per design */
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    /* width: 1440px; Figma width */
    width: 100%;
    /* height: 780px; Figma height */
    min-height: 780px; /* Use min-height for responsiveness */
    display: flex;
    justify-content: center;
}

.serve-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Constrain width for better readability on large screens */
    gap: 64px; /* Matches Figma row-gap */
}

.serve-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px; /* Gap between title and desc */
}

.serve-title {
    font-size: 36px; /* Matches Figma */
    font-weight: 700;
    line-height: 40px; /* Matches Figma */
    letter-spacing: 0.37px; /* Matches Figma */
    color: #ffffff;
    margin: 0;
}

.serve-desc {
    font-size: 16px; /* Matches Figma */
    line-height: 26px; /* Matches Figma */
    letter-spacing: -0.31px; /* Matches Figma */
    color: #d1d5dc; /* Light gray text */
    text-align: center;
    max-width: 741px; /* Matches Figma width */
    margin: 0;
}

.serve-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.serve-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 32px 32px 32px; /* Figma has right padding 48px, but keeping uniform is often safer for responsive. Let's stick close to Figma */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #101828; /* Dark text for card content */
    height: 100%; /* Ensure cards are equal height */
}

.card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(232, 92, 41, 0.1); /* #e85c291a */
    border-radius: 14px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.card-icon-wrapper .card-icon {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
    margin: 0; /* override global .card-icon { margin-bottom: 24px } from style.css */
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.45px;
    color: #101828;
    margin: 0 0 16px 0;
}

.card-quote {
    font-size: 14px;
    font-style: italic;
    line-height: 23px;
    letter-spacing: -0.15px;
    color: #6a7282;
    margin: 0 0 24px 0;
    min-height: 68px; /* Fixed height for alignment */
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: #364153;
}

.card-features li img {
    width: 20px;
    height: 20px;
    background: rgba(232, 92, 41, 0.1);
    border-radius: 50%;
    padding: 3px; /* Adjust to match icon size inside circle */
    flex-shrink: 0;
}

.card-btn-wrapper {
    margin-top: auto; /* Push button to bottom */
    width: 100%;
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    border: 2px solid #e85c29;
    border-radius: 10px;
    background: #ffffff;
    color: #e85c29;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background-color: #e85c29;
    color: #ffffff;
}

/* =========================================
   Product Engineering Framework Section (Based on Figma Frame 100)
   ========================================= */
.framework-section {
    background-color: #ffffff;
    padding: 75px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
}

.framework-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1440px; /* Constrain width */
    padding: 0 72px; /* Matches Figma side padding */
    gap: 37px; /* Matches Figma row-gap */
}

.framework-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px; /* Gap between title and desc */
}

.framework-title {
    font-size: 34px; /* Matches Figma */
    font-weight: 600;
    line-height: 36px; /* Matches Figma */
    letter-spacing: 0.07px; /* Matches Figma */
    color: #0a0a0a;
    margin: 0;
}

.framework-desc {
    font-size: 16px; /* Matches Figma */
    line-height: 24px; /* Matches Figma */
    letter-spacing: -0.32px; /* Matches Figma */
    color: #717182; /* Light gray text */
    text-align: center;
    max-width: 1039px; /* Matches Figma width */
    margin: 0;
}

.framework-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
    padding-top: 40px; /* Space for step content */
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 246px; /* Fixed width per Figma */
    position: relative;
    z-index: 2; /* Sit above connector line */
}

.step-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95px; /* Matches Figma */
    height: 95px; /* Matches Figma */
    background: #e85c29;
    border-radius: 50%; /* Matches Figma */
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(232, 92, 41, 0.2); /* Optional shadow for depth */
}

.step-icon {
    width: 28px; /* Matches Figma */
    height: 28px; /* Matches Figma */
}

.step-title {
    font-size: 18px; /* Matches Figma */
    font-weight: 600;
    line-height: 27px; /* Matches Figma */
    letter-spacing: -0.44px; /* Matches Figma */
    color: #0a0a0a;
    margin: 0 0 8px 0;
}

.step-desc {
    font-size: 14px; /* Matches Figma */
    line-height: 20px; /* Matches Figma */
    letter-spacing: -0.15px; /* Matches Figma */
    color: #717182;
    text-align: center;
    margin: 0;
    max-width: 230px; /* Constrain width for better wrapping */
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: #ececf0;
    margin-top: 47px; /* (95px icon height / 2) - (2px line height / 2) */
    position: relative;
    z-index: 1;
}

/* =========================================
   Engineering Pillars Section (Based on Figma Frame 501_4592)
   ========================================= */
.pillars-section {
    background-color: #0a0a0a;
    padding: 65px 0 100px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pillars-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding: 0 72px;
    gap: 65px; /* Matches Figma row-gap */
}

.pillars-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.pillars-title {
    font-size: 49px; /* Matches Figma */
    font-weight: 500;
    line-height: 49px; /* Matches Figma */
    letter-spacing: 0.36px; /* Matches Figma */
    color: #ffffff;
    margin: 0;
}

.pillars-desc {
    font-size: 18px; /* Matches Figma */
    line-height: 28px; /* Matches Figma */
    letter-spacing: -0.44px; /* Matches Figma */
    color: #99a1af; /* Light gray text */
    text-align: center;
    max-width: 775px; /* Matches Figma width */
    margin: 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* Space between cards */
    width: 100%;
}

.pillar-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #1a1a1a;
    border: 1px solid #1e2939;
    border-radius: 16px;
    padding: 32px 32px 40px 32px;
    height: 100%;
    min-height: 340px; /* Ensure consistent height */
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: #e85c29;
}

.pillar-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 81px;
    height: 81px;
    background: rgba(232, 92, 41, 0.1); /* #e85c291a */
    border-radius: 14px;
    margin-bottom: 24px;
}

.pillar-icon-box img {
    width: 40px;
    height: 40px;
}

.pillar-card-title {
    font-size: 24px; /* Matches Figma */
    font-weight: 500;
    line-height: 27px; /* Matches Figma */
    letter-spacing: -0.44px; /* Matches Figma */
    color: #ffffff;
    margin: 0 0 12px 0;
}

.pillar-card-desc {
    font-size: 16px; /* Matches Figma */
    line-height: 26px; /* Matches Figma */
    letter-spacing: -0.32px; /* Matches Figma */
    color: #99a1af;
    margin: 0 0 24px 0;
    flex-grow: 1; /* Push link to bottom */
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px; /* Matches Figma */
    font-weight: 500;
    line-height: 24px; /* Matches Figma */
    letter-spacing: -0.32px; /* Matches Figma */
    color: #e85c29;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.pillar-link:hover {
    gap: 12px;
}

.pillar-link img {
    width: 16px;
    height: 16px;
}

/* Prevent horizontal overflow on mobile */
.main-content {
    overflow-x: hidden;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

    /* Reduce container padding on tablet */
    .framework-container,
    .pillars-container,
    .impact-container,
    .why-choose-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .serve-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .serve-card {
        flex: 1 1 300px; /* Grow, shrink, basis */
        max-width: 400px;
    }

    .framework-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-connector {
        display: none; /* Hide horizontal connector on mobile */
    }

    .step-item {
        width: 100%;
        max-width: 400px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .digital-product-hero {
        height: auto;
        min-height: 360px;
        padding: 32px 0;
    }
    
    .hero-container {
        padding: 32px 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content {
        gap: 20px;
        padding: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-cta-btn {
        width: 100%;
        max-width: 280px;
    }

    /* Who We Serve – stack 3 cards vertically on mobile */
    .who-we-serve-section {
        padding: 48px 24px 64px;
        min-height: auto;
    }

    .serve-container {
        gap: 32px;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .serve-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        width: 100%;
    }

    .serve-card {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        padding: 24px 20px;
    }

    .serve-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .serve-desc {
        font-size: 15px;
    }

    .card-quote {
        min-height: auto;
    }

    /* Product Engineering Framework */
    .framework-section {
        padding: 48px 0 64px;
    }

    .framework-container {
        padding: 0 24px;
        gap: 28px;
    }

    .framework-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .framework-desc {
        font-size: 15px;
    }

    .framework-steps {
        padding-top: 24px;
        gap: 32px;
    }

    .step-item {
        max-width: 100%;
        width: 100%;
    }

    .step-desc {
        max-width: 100%;
    }

    /* Engineering Pillars */
    .pillars-section {
        padding: 48px 0 64px;
    }

    .pillars-container {
        padding: 0 24px;
        gap: 40px;
    }

    .pillars-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .pillars-desc {
        font-size: 16px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .pillar-card-title {
        font-size: 20px;
    }

    /* Impactful Solutions – full width like Pillars on mobile */
    .impact-section {
        width: 100%;
        padding: 48px 0 64px;
        box-sizing: border-box;
    }

    .impact-section .container.impact-container {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        gap: 40px;
        align-items: stretch;
        box-sizing: border-box;
    }

    .impact-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .impact-desc {
        font-size: 16px;
    }

    .impact-section .impact-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: 1fr;
        gap: 20px;
        align-self: stretch;
        box-sizing: border-box;
    }

    .impact-section .impact-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .impact-content {
        padding: 24px 20px;
    }

    .impact-card-title {
        font-size: 18px;
    }

    .impact-img-wrapper {
        height: 180px;
    }

    /* Why Choose Btract – full width like Pillars on mobile */
    .why-choose-section {
        width: 100%;
        padding: 48px 0 64px;
        box-sizing: border-box;
    }

    .why-choose-section .container.why-choose-container {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        gap: 40px;
        align-items: stretch;
        box-sizing: border-box;
    }

    .why-choose-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .why-choose-desc {
        font-size: 16px;
    }

    .why-choose-section .why-choose-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: 1fr;
        gap: 20px;
        align-self: stretch;
        box-sizing: border-box;
    }

    .why-choose-section .why-choose-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 24px 20px;
        min-height: auto;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .why-card-title {
        font-size: 17px;
    }
}

/* =========================================
   Impactful Solutions Section (Based on Figma Frame 509_4785)
   ========================================= */
.impact-section {
    background-color: #f9fafb;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
}

.impact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding: 0 72px;
    gap: 64px;
}

.impact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.impact-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.8px;
    color: #101828;
    margin: 0;
}

.impact-desc {
    font-size: 18px;
    line-height: 28px;
    color: #475467;
    text-align: center;
    max-width: 768px;
    margin: 0;
}

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

.impact-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.impact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.impact-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.tag-fintech,
.tag-finance {
    background-color: #fef3f2;
    color: #b42318;
}

.tag-healthcare,
.tag-ecommerce {
    background-color: #fffaeb;
    color: #b54708;
}

.tag-logistics,
.tag-saas {
    background-color: #fdf2fa;
    color: #c11574;
}

.impact-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #101828;
    margin: 0 0 12px 0;
}

.impact-card-desc {
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    margin: 0 0 32px 0;
    flex: 1;
}

.impact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #e85c29;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.impact-link:hover {
    gap: 12px;
}

.impact-link img {
    width: 16px;
    height: 16px;
}

@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Why Choose Btract Section (Based on Figma Frame 518_5276)
   ========================================= */
.why-choose-section {
    background-color: #ffffff;
    padding: 65px 0 100px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
}

.why-choose-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding: 0 72px;
    gap: 49px; /* Matches Figma row-gap */
}

.why-choose-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.37px;
    color: #101828;
    margin: 0;
}

.why-choose-desc {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #4a5565;
    text-align: center;
    max-width: 800px;
    margin: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.why-choose-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px;
    height: 100%;
    min-height: 220px;
}

.why-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    background: rgba(232, 92, 41, 0.1); /* #e85c291a */
    border-radius: 50%;
    margin-bottom: 16px;
}

.why-icon {
    width: 24px;
    height: 24px;
}

.why-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #101828;
    margin: 0 0 8px 0;
}

.why-card-desc {
    font-size: 14px;
    line-height: 23px;
    letter-spacing: -0.15px;
    color: #4a5565;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose mobile styles are in the main 768px block above */

/* ========== CTA Banner above footer ========== */
.dpe-cta-banner {
    background: var(--primary-color);
    padding: 64px 24px;
    text-align: center;
}

.dpe-cta-banner-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.dpe-cta-banner-title {
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
    white-space: nowrap;
}

.dpe-cta-banner-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0 0 32px;
}

.dpe-cta-banner-btn {
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}

.dpe-cta-banner-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .dpe-cta-banner {
        padding: 48px 20px;
    }

    .dpe-cta-banner-title {
        white-space: normal;
    }

    .dpe-cta-banner-subtitle {
        font-size: 16px;
    }

    .dpe-cta-banner-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
