/* Digital Marketing Agency Page Styles */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    background: #ffffff;
    overflow-x: hidden;
    font-size: 1.1875rem;
}

p {
    font-size: 1.1875rem;
    line-height: 1.75;
}

.dma-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.dma-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Mobile Top Bar */
.dma-mobile-top-bar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.dma-mobile-phone {
    color: #d91b5c;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.dma-btn-mobile {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
}

@media (max-width: 1023px) {
    .dma-mobile-top-bar {
        display: flex;
    }
}

.dma-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.dma-header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.dma-logo {
    height: 2rem;
}

.dma-nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .dma-nav {
        display: flex;
    }
}

.dma-nav-link {
    background: none;
    border: none;
    color: #1f2937;
    font-size: 0.9375rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    position: relative;
}

.dma-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: #00a99d;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.dma-nav-link:hover {
    color: #00a99d;
}

.dma-nav-link:hover::after {
    transform: scaleX(1);
}

.dma-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dma-phone {
    color: #d91b5c;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
}

/* Hamburger Menu */
.dma-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.dma-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1f2937;
    transition: all 0.3s ease;
}

.dma-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.dma-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.dma-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop/Mobile Button Visibility */
.dma-btn-desktop {
    display: inline-flex;
}

.dma-btn-mobile {
    display: none;
}

/* Mobile Styles */
@media (max-width: 1023px) {
    .dma-hamburger {
        display: flex;
    }

    .dma-phone {
        display: none;
    }

    .dma-btn-desktop {
        display: none !important;
    }

    .dma-header-right .dma-btn-desktop {
        display: none !important;
    }

    .dma-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: flex;
    }

    .dma-nav.active {
        right: 0;
    }

    .dma-nav-link {
        width: 100%;
        padding: 1rem 0.75rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .dma-nav-link::after {
        display: none;
    }
}

/* Buttons */
.dma-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.dma-btn-primary {
    background: #d91b5c;
    color: #ffffff;
    font-size: 0.9375rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dma-btn-primary:hover {
    background: #b8154a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(217, 27, 92, 0.4);
}

.dma-btn-green {
    background: #00a99d;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 169, 157, 0.3);
}

.dma-btn-green:hover {
    background: #008c82;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 169, 157, 0.4);
}

.dma-btn-pink {
    background: #d91b5c;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(217, 27, 92, 0.3);
}

.dma-btn-pink:hover {
    background: #b8154a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(217, 27, 92, 0.4);
}

.dma-btn-large {
    font-size: 1.0625rem;
    padding: 1rem 2rem;
    font-weight: 600;
}

.dma-btn-outline {
    background: transparent;
    border: 2px solid #111827;
    color: #111827;
}

.dma-btn-outline:hover {
    background: #111827;
    color: #ffffff;
}

.dma-btn-full {
    width: 100%;
}

/* Hero Section */
.dma-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.dma-hero-bg-blur {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.dma-hero-bg-blur-1 {
    top: 0;
    right: 0;
    background: #bfdbfe;
}

.dma-hero-bg-blur-2 {
    bottom: 0;
    left: 0;
    background: #fef3c7;
    opacity: 0.2;
}

.dma-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .dma-hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: start;
    }
}

@media (min-width: 1280px) {
    .dma-hero-grid {
        gap: 5rem;
    }
}

.dma-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    cursor: text;
}

@media (min-width: 1024px) {
    .dma-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .dma-hero-title {
        font-size: 3.75rem;
    }
}

.dma-hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.dma-hero-form {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

@media (min-width: 640px) {
    .dma-hero-form {
        flex-direction: row;
        align-items: center;
    }
}

.dma-hero-input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.2s;
    min-width: 0;
}

.dma-hero-input:focus {
    border-color: #d91b5c;
    box-shadow: 0 0 0 3px rgba(217, 27, 92, 0.1);
}

.dma-hero-input::placeholder {
    color: #9ca3af;
}

/* Video Container */
.dma-video-container {
    background: #d91b5c;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
}

.dma-video-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffffff;
    color: #d91b5c;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 10;
}

.dma-video-thumbnail {
    width: 100%;
    border-radius: 0.75rem;
}

.dma-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: #d91b5c;
    transition: transform 0.2s;
}

.dma-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Partners Section */
.dma-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.dma-partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.dma-partner-logo {
    height: 5.5rem;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s;
}

.dma-partner-logo:hover {
    filter: grayscale(100%);
    opacity: 0.6;
}

.dma-carousel-btn {
    display: none;
}

/* Sections */
.dma-section {
    padding: 5rem 0;
}

.dma-section-white {
    background: #ffffff;
}

.dma-section-gray {
    background: #f9fafb;
}

.dma-section-gradient {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.dma-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 4rem;
}

/* Features Grid */
.dma-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .dma-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5rem;
    }
}

.dma-feature {
    text-align: left;
}

.dma-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
}

.dma-feature-icon img {
    width: 100%;
    height: 100%;
}

.dma-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.dma-feature-text {
    color: #4b5563;
    line-height: 1.75;
    font-size: 1.1875rem;
    margin-bottom: 1rem;
}

/* Services Grid */
.dma-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 640px) {
    .dma-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .dma-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .dma-services-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 2rem;
    }
}

.dma-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.dma-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dma-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.dma-service-item:hover .dma-service-icon {
    transform: scale(1.1);
}

.dma-service-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

/* Testimonial Section */
.dma-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .dma-testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dma-testimonial-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .dma-testimonial-title {
        font-size: 2.25rem;
    }
}

.dma-testimonial-intro {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.1875rem;
    line-height: 1.75;
}

.dma-results-list {
    list-style: none;
    margin-bottom: 2rem;
}

.dma-result-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.dma-result-bullet {
    color: #22c55e;
    font-weight: 700;
}

.dma-testimonial-cta-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.1875rem;
    line-height: 1.75;
}

.dma-video-testimonial {
    background: #1e3a8a;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.dma-testimonial-img {
    width: 100%;
    display: block;
}

.dma-video-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #ffffff;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
}

.dma-badge-logo {
    height: 1.5rem;
}

/* Reviews Grid */
.dma-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .dma-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dma-review-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dma-review-logo {
    height: 3rem;
    margin: 0 auto 1rem;
}

.dma-review-logo-text {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.dma-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dma-review-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.dma-review-author {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.dma-review-author strong {
    color: #111827;
    font-weight: 600;
}

/* Clients Section */
.dma-clients {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dma-clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.dma-client-logo {
    height: 5.5rem;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s;
}

.dma-client-logo:hover {
    filter: grayscale(100%);
    opacity: 0.6;
}

/* CTA Section */
.dma-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .dma-cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Stat Card */
.dma-stat-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dma-stat-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* bottom-to-top fade for logo readability */
        linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0) 70%),
        /* subtle vignette */
        radial-gradient(120% 120% at 50% 40%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.45) 100%),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=800&q=80') center/cover;
    z-index: 0;
}

.dma-stat-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 0.5rem;
    text-align: center;
}

.dma-stat-number {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.dma-stat-value {
    font-size: 8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.dma-stat-percent {
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-left: 0.1em;
    position: relative;
    top: -8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.dma-stat-divider {
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, rgba(217, 27, 92, 0.1), #d91b5c, rgba(217, 27, 92, 0.1));
    border-radius: 9999px;
    margin: 0.25rem auto;
}

.dma-stat-card .dma-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.dma-stat-logo {
    margin-top: 0.25rem;
}

.dma-stat-logo-img {
    max-width: 220px;
    height: auto;
    display: block;
    transform: translateY(4px);
    /* compensate any bottom whitespace in source image */
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .dma-stat-value {
        font-size: 5rem;
    }

    .dma-stat-percent {
        font-size: 3rem;
    }

    .dma-stat-label {
        font-size: 1.25rem;
    }

    .dma-stat-divider {
        width: 150px;
    }
}

.dma-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .dma-cta-title {
        font-size: 2.25rem;
    }
}

.dma-cta-intro {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.1875rem;
    line-height: 1.75;
}

.dma-cta-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Awards Section */
.dma-awards-section {
    padding: 4rem 0;
}

.dma-awards-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.dma-award-img {
    height: 6rem;
}

.dma-awards-link {
    text-align: center;
    margin-top: 2rem;
}

.dma-link {
    color: #d91b5c;
    font-weight: 600;
    text-decoration: none;
}

.dma-link:hover {
    text-decoration: underline;
}

/* Stats Bar */
.dma-stats-bar {
    background: #111827;
    color: #ffffff;
    padding: 3rem 0;
}

.dma-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .dma-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dma-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dma-stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Footer */
.dma-footer {
    background: #111827;
    color: #ffffff;
    padding: 4rem 0;
}

/* Discover Widget */
.dma-discover-widget-wrapper {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

.dma-discover-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.4) 0%, rgba(17, 24, 39, 0.6) 100%);
    z-index: 0;
}

.dma-discover-wave::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    right: -10%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(200, 26, 112, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.dma-discover-widget {
    position: relative;
    z-index: 1;
    padding: 3rem 1.5rem;
}

.dma-discover-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.dma-discover-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    flex: 0 0 auto;
    max-width: 500px;
}

.dma-discover-form {
    display: flex;
    gap: 0;
    flex: 0 0 auto;
    width: 400px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.dma-discover-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    border: none;
    background: #ffffff;
    color: #1f2937;
    outline: none;
    font-family: inherit;
}

.dma-discover-input::placeholder {
    color: #9ca3af;
}

.dma-discover-submit {
    padding: 0.875rem 1.25rem;
    border-radius: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #C81A70;
    min-width: 56px;
}

.dma-discover-submit:hover {
    background: #a91d5f;
}

.dma-discover-submit svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .dma-discover-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dma-discover-title {
        max-width: 100%;
    }

    .dma-discover-form {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .dma-discover-widget {
        padding: 2.5rem 1.25rem;
    }

    .dma-discover-title {
        font-size: 1.5rem;
    }

    .dma-discover-form {
        max-width: 100%;
    }

    .dma-discover-input {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    .dma-discover-submit {
        padding: 0.75rem 1rem;
        min-width: 50px;
    }

    .dma-discover-submit svg {
        width: 16px;
        height: 16px;
    }
}

.dma-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .dma-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dma-footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.dma-footer-logo {
    height: 2rem;
    margin-bottom: 1.5rem;
}

.dma-footer-text {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dma-footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.dma-footer-links {
    list-style: none;
}

.dma-footer-links li {
    margin-bottom: 0.75rem;
}

.dma-footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.dma-footer-links a:hover {
    color: #ffffff;
}

.dma-footer-related {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.dma-footer-related-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.dma-footer-related-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dma-related-logo {
    height: 1.5rem;
}

.dma-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .dma-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.dma-footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

.dma-footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dma-social-link {
    transition: opacity 0.2s;
}

.dma-social-link:hover {
    opacity: 0.8;
}

.dma-social-link img {
    height: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .dma-hero {
        padding: 2rem 0 3rem;
    }

    .dma-hero-title {
        font-size: 2rem;
    }

    .dma-section {
        padding: 3rem 0;
    }

    .dma-section-title {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }

    .dma-partners {
        gap: 1rem;
    }

    .dma-partners-logos {
        gap: 1rem;
    }
}

/* Modal Styles */
.dma-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.dma-modal.active {
    display: flex;
}

.dma-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.dma-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dma-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #6b7280;
    transition: color 0.2s;
    z-index: 1;
}

.dma-modal-close:hover {
    color: #111827;
}

.dma-modal-header {
    margin-bottom: 2rem;
    padding-right: 3rem;
}

.dma-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.dma-modal-subtitle {
    font-size: 1rem;
    color: #6b7280;
}

.dma-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dma-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.dma-form-row:last-child {
    grid-template-columns: 1fr;
}

.dma-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dma-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.dma-form-input,
.dma-form-textarea,
select.dma-form-input {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

select.dma-form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.dma-form-input::placeholder,
.dma-form-textarea::placeholder {
    color: #9ca3af;
}

.dma-form-input:focus,
.dma-form-textarea:focus,
select.dma-form-input:focus {
    border-color: #d91b5c;
    box-shadow: 0 0 0 3px rgba(217, 27, 92, 0.1);
}

.dma-form-textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 640px) {
    .dma-modal-content {
        padding: 2rem 1.5rem;
    }

    .dma-modal-title {
        font-size: 1.5rem;
    }

    .dma-form-row {
        grid-template-columns: 1fr;
    }
}

.dma-carousel-btn {
    display: none;
}

/* ============================================
   A/B TEST: Two-Step Form Styles
   ============================================ */

/* Progress Indicator */
.dma-progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.dma-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.dma-progress-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.dma-progress-step-active .dma-progress-number {
    background: #d91b5c;
    color: white;
}

.dma-progress-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.dma-progress-step-active .dma-progress-label {
    color: #d91b5c;
    font-weight: 600;
}

.dma-progress-line {
    width: 80px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

/* Form Helper Text */
.dma-form-helper {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Step Form Transitions */
.dma-step-form {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back Button Styling */
.dma-btn-outline {
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.dma-btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

/* Mobile Responsive Progress Indicator */
@media (max-width: 768px) {
    .dma-progress-indicator {
        padding: 0 1rem;
    }

    .dma-progress-line {
        width: 40px;
        margin: 0 0.5rem;
    }

    .dma-progress-number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .dma-progress-label {
        font-size: 0.75rem;
    }
}


/* Competitor Link Styles */
.competitor-link-container {
    text-align: center;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    /* User requested default cursor on container, but functionality is strictly click-to-open-modal for the whole div,
       however, allowing separate cursors visually as requested. */
    cursor: default;
}

.competitor-link-text {
    font-style: italic;
}

.competitor-link-highlight {
    font-weight: 700;
    text-decoration: underline;
    color: #d91b5c;
    cursor: pointer;
    position: relative;
    display: inline-block;
}