/* =============================================================
   Digital Marketing Company in Koramangala - Page Styles
   assets/nwicss/digital-marketing-company-in-koramangala.css
   ============================================================= */

/* ===== HERO SECTION ===== */
.dm-hero-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d5a 50%, #0d47a1 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.dm-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.dm-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.dm-hero-section h1 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.dm-hero-section .hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 640px;
}

.dm-hero-section .hero-subtitle a {
    color: #90caf9;
    text-decoration: underline;
}

.dm-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #90caf9;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dm-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.dm-hero-stats .stat-item {
    text-align: left;
}

.dm-hero-stats .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #64b5f6;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.dm-hero-stats .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dm-hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== TRUST BADGES ===== */
.dm-trust-badges {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #eaedf2;
}

.dm-trust-badges .badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.dm-trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.dm-trust-badge-item:hover {
    transform: translateY(-3px);
}

.dm-trust-badge-item img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.dm-trust-badge-item .badge-info {
    display: flex;
    flex-direction: column;
}

.dm-trust-badge-item .badge-info .badge-stars {
    color: #f9a825;
    font-size: 13px;
    letter-spacing: 1px;
}

.dm-trust-badge-item .badge-info .badge-rating {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Montserrat', sans-serif;
}

.dm-trust-badge-item .badge-info .badge-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== CLIENT LOGOS MARQUEE ===== */
.dm-clients-marquee {
    padding: 40px 0;
    background: #f7f8fa;
    overflow: hidden;
}

.dm-clients-marquee .marquee-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 25px;
}

.dm-clients-marquee .swiper-wrapper {
    transition-timing-function: linear !important;
}

.dm-clients-marquee .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.dm-clients-marquee .swiper-slide img {
    height: 36px;
    width: auto;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.dm-clients-marquee .swiper-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===== SECTION COMMONS ===== */
.dm-section {
    padding: 80px 0;
}

.dm-section-grey {
    background: #f7f8fa;
}

.dm-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.dm-section-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    max-width: 800px;
}

.dm-section-subtitle.centered {
    margin: 0 auto;
}

/* ===== INTRODUCTION SECTION ===== */
.dm-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.dm-intro-content .intro-highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 4px solid #1976d2;
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}

.dm-intro-content .intro-highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
}

.dm-intro-sticky-image {
    position: sticky;
    top: 100px;
}

.dm-intro-sticky-image img {
    width: 100%;
    border-radius: 12px;
}

/* ===== WHY CHOOSE SECTION ===== */
.dm-why-card {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.dm-why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.dm-why-card:hover {
    box-shadow: 0 16px 48px rgba(25, 118, 210, 0.12);
    border-color: #bbdefb;
    transform: translateY(-6px);
}

.dm-why-card:hover::after {
    transform: scaleX(1);
}

.dm-why-card .card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 26px;
    transition: transform 0.3s ease;
}

.dm-why-card:hover .card-icon {
    transform: scale(1.1);
}

.dm-why-card .card-icon.icon-blue { background: #e3f2fd; color: #1565c0; }
.dm-why-card .card-icon.icon-green { background: #e8f5e9; color: #2e7d32; }
.dm-why-card .card-icon.icon-purple { background: #f3e5f5; color: #7b1fa2; }
.dm-why-card .card-icon.icon-orange { background: #fff3e0; color: #e65100; }
.dm-why-card .card-icon.icon-teal { background: #e0f2f1; color: #00695c; }
.dm-why-card .card-icon.icon-red { background: #fce4ec; color: #c62828; }

.dm-why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.dm-why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* ===== SERVICES GRID ===== */
.dm-service-card {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    padding: 35px 28px;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
}

.dm-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.dm-service-card:hover::before { opacity: 1; }

.dm-service-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.dm-service-card .service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f0f4ff;
    margin-bottom: 22px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.dm-service-card:hover .service-icon {
    transform: scale(1.08);
    background: #e3f2fd;
}

.dm-service-card .service-icon img {
    width: 38px;
    height: 38px;
}

.dm-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.dm-service-card h3 a {
    color: inherit;
    text-decoration: none;
}

.dm-service-card h3 a:hover {
    color: #1976d2;
}

.dm-service-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}

.dm-service-card p a {
    color: #1976d2;
    font-weight: 600;
}

.dm-service-card ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.dm-service-card ul li {
    padding: 6px 0;
    font-size: 14px;
    color: #444;
    position: relative;
    padding-left: 24px;
}

.dm-service-card ul li i {
    position: absolute;
    left: 0;
    top: 9px;
    color: #1976d2;
    font-size: 13px;
}

/* ===== PROCESS TIMELINE ===== */
.dm-process-timeline {
    position: relative;
}

.dm-process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e3f2fd, #1976d2, #42a5f5, #1976d2, #e3f2fd);
    z-index: 0;
}

.dm-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
    transition: transform 0.3s ease;
}

.dm-process-step:hover {
    transform: translateY(-6px);
}

.dm-process-step .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #1976d2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.15);
}

.dm-process-step:hover .step-icon {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: #fff;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

.dm-process-step h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.dm-process-step p {
    font-size: 13px;
    line-height: 1.55;
    color: #777;
    margin-bottom: 0;
}

/* ===== INDUSTRY CARDS ===== */
.dm-industry-card {
    background: #ffffff;
    border: 1px solid #eaedf2;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.dm-industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    transition: width 0.35s ease;
}

.dm-industry-card:hover::before { width: 100%; }

.dm-industry-card:hover {
    box-shadow: 0 12px 40px rgba(25, 118, 210, 0.1);
    transform: translateY(-5px);
}

.dm-industry-card .industry-icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
    color: #1976d2;
    transition: transform 0.3s ease;
}

.dm-industry-card:hover .industry-icon {
    transform: scale(1.15);
}

.dm-industry-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.dm-industry-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #777;
    margin-bottom: 0;
}

/* ===== RESULTS / IMPACT SECTION ===== */
.dm-results-section {
    background: #faf9f7;
}

.dm-result-item {
    padding: 40px 0;
    border-bottom: 1px solid #e4e2de;
    transition: background 0.3s ease;
}

.dm-result-item:first-child {
    border-top: 1px solid #e4e2de;
}

.dm-result-item:hover {
    background: rgba(25, 118, 210, 0.02);
}

.dm-result-item .result-metric {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.dm-result-item .result-metric .metric-highlight {
    color: #d32f2f;
}

.dm-result-item .result-metric .metric-text {
    color: #1a1a2e;
}

.dm-result-item .result-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.dm-result-item .result-link {
    color: #1976d2;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dm-result-item .result-link:hover {
    color: #0d47a1;
}

.dm-result-item .result-link i {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.dm-result-item .result-link:hover i {
    transform: translateX(4px);
}

/* ===== CASE STUDY CARDS ===== */
.dm-case-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eaedf2;
    transition: all 0.35s ease;
    height: 100%;
}

.dm-case-card:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.dm-case-card .case-image {
    height: 220px;
    overflow: hidden;
    background: #f0f4f8;
}

.dm-case-card .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dm-case-card:hover .case-image img {
    transform: scale(1.06);
}

.dm-case-card .case-body {
    padding: 25px;
}

.dm-case-card .case-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1565c0;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dm-case-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.dm-case-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
}

.dm-case-card .case-metrics {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.dm-case-card .case-metrics .metric { text-align: center; }

.dm-case-card .case-metrics .metric-value {
    font-size: 20px;
    font-weight: 800;
    color: #1976d2;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.dm-case-card .case-metrics .metric-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== LOCAL SEO SECTION ===== */
.dm-local-seo-card {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 24px 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.35s ease;
    cursor: default;
}

.dm-local-seo-card:hover {
    box-shadow: 0 10px 35px rgba(25, 118, 210, 0.1);
    border-color: #bbdefb;
    transform: translateX(6px);
}

.dm-local-seo-card .seo-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    font-size: 22px;
    transition: all 0.3s ease;
}

.dm-local-seo-card:hover .seo-icon {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: #fff;
}

.dm-local-seo-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.dm-local-seo-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin-bottom: 0;
}

.dm-area-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1565c0;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    margin: 4px;
    transition: all 0.25s ease;
}

.dm-area-tag:hover {
    background: #1976d2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* ===== TOOLS SECTION (Card-based) ===== */
.dm-tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.dm-tool-card {
    background: #ffffff;
    border: 1px solid #eaedf2;
    border-radius: 10px;
    padding: 22px 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.dm-tool-card:hover {
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.1);
    border-color: #bbdefb;
    transform: translateY(-4px);
}

.dm-tool-card .tool-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.dm-tool-card:hover .tool-icon-wrap {
    transform: scale(1.1);
}

.dm-tool-card .tool-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.dm-tool-card .tool-type {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 2px;
}

/* Tool color variations */
.tool-ga { background: #fff3e0; color: #e65100; }
.tool-gsc { background: #e8f5e9; color: #2e7d32; }
.tool-ahrefs { background: #e3f2fd; color: #1565c0; }
.tool-semrush { background: #fce4ec; color: #c62828; }
.tool-hubspot { background: #fff3e0; color: #ef6c00; }
.tool-meta { background: #e3f2fd; color: #1565c0; }
.tool-gads { background: #e8f5e9; color: #2e7d32; }
.tool-gtm { background: #e3f2fd; color: #0d47a1; }
.tool-hotjar { background: #fce4ec; color: #d32f2f; }
.tool-sf { background: #e8f5e9; color: #388e3c; }
.tool-canva { background: #f3e5f5; color: #7b1fa2; }
.tool-mc { background: #fff8e1; color: #f9a825; }

/* ===== FAQ SECTION ===== */
.dm-faq-section .faq-accordion-item {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.dm-faq-section .faq-accordion-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dm-faq-section .faq-accordian-btn {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    gap: 15px;
}

.dm-faq-section .faq-accordian-btn:not(.collapsed) {
    background: #f7f8fa;
    color: #1976d2;
}

.dm-faq-section .faq-accordian-btn i {
    transition: transform 0.3s ease;
    font-size: 14px;
    min-width: 14px;
}

.dm-faq-section .faq-accordian-btn:not(.collapsed) i {
    transform: rotate(45deg);
}

.dm-faq-section .accordion-body {
    padding: 0 25px 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #555;
}

.dm-faq-section .accordion-body a {
    color: #1976d2;
    font-weight: 600;
}

/* ===== STRATEGY CARDS ===== */
.dm-strategy-card {
    background: #ffffff;
    border: 1px solid #eaedf2;
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.35s ease;
}

.dm-strategy-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border-color: #bbdefb;
    transform: translateY(-4px);
}

.dm-strategy-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.dm-strategy-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* ===== BLOGS SECTION ===== */
.dm-blog-card {
    background: #ffffff;
    border: 1px solid #eaedf2;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
}

.dm-blog-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.dm-blog-card .blog-image {
    height: 180px;
    overflow: hidden;
    background: #f0f4f8;
}

.dm-blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dm-blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.dm-blog-card .blog-body {
    padding: 20px;
}

.dm-blog-card .blog-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1976d2;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.dm-blog-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.dm-blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.dm-blog-card h3 a:hover {
    color: #1976d2;
}

.dm-blog-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.dm-cta-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d5a 50%, #0d47a1 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dm-cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.dm-cta-section h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.dm-cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    max-width: 700px;
}

.dm-cta-section .btn-cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #1565c0;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.dm-cta-section .btn-cta-primary:hover {
    background: #e3f2fd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dm-cta-section .btn-cta-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-left: 12px;
}

.dm-cta-section .btn-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .dm-tools-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
    .dm-hero-section { padding: 50px 0 60px; }
    .dm-hero-section h1 { font-size: 30px; }
    .dm-section-title { font-size: 26px; }
    .dm-hero-stats { gap: 25px; }
    .dm-cta-section h2 { font-size: 26px; }
    .dm-cta-section .btn-cta-secondary { margin-left: 0; }
    .dm-process-timeline::before { display: none; }
    .dm-process-step { text-align: left; display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
    .dm-process-step .step-icon { margin: 0; min-width: 50px; width: 50px; height: 50px; font-size: 20px; }
    .dm-process-step h3, .dm-process-step p { text-align: left; }
    .dm-tools-grid { grid-template-columns: repeat(3, 1fr); }
    .dm-trust-badges .badge-wrap { gap: 30px; }
    .dm-result-item .result-metric { font-size: 30px; }
}

@media (max-width: 575px) {
    .dm-hero-section h1 { font-size: 26px; }
    .dm-section { padding: 50px 0; }
    .dm-section-title { font-size: 22px; }
    .dm-hero-stats .stat-number { font-size: 26px; }
    .dm-cta-section { padding: 50px 0; }
    .dm-tools-grid { grid-template-columns: repeat(2, 1fr); }
    .dm-result-item .result-metric { font-size: 26px; }
    .dm-trust-badges .badge-wrap { gap: 20px; }
    .dm-trust-badge-item img { height: 32px; }
}