/**
 * DarMatch Landing / Home page styles
 * All classes prefixed with .dmh- to avoid conflicts with theme CSS
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

/* ============================================================
   DarMatch header flattener — collapse theme's header-type-2
   (2-row layout) into a single-row Manus-style header:
   [ LOGO ]  [ NAV centered ]  [ AUTH BUTTONS ]
   ============================================================ */
.nav-area.header-type-2 .header-nav {
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid #eef0f3;
}
.nav-area.header-type-2 .top-inner-header {
    position: relative;
    z-index: 2;
    padding: 10px 0;
}
.nav-area.header-type-2 .top-inner-header .header-inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}
.nav-area.header-type-2 .top-inner-header .header-comp-logo,
.nav-area.header-type-2 .top-inner-header .header-comp-right {
    display: flex !important;
    align-items: center;
}
.nav-area.header-type-2 .bottom-inner-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 1;
}
.nav-area.header-type-2 .bottom-inner-header > div,
.nav-area.header-type-2 .bottom-inner-header .header-inner {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
}
.nav-area.header-type-2 .bottom-inner-header .header-comp-nav {
    pointer-events: auto;
    display: inline-block !important;
    vertical-align: middle;
    padding: 0 !important;
    margin: 0 !important;
}
.nav-area.header-type-2 .bottom-inner-header .main-menu {
    display: flex !important;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-area.header-type-2 .bottom-inner-header .main-menu > li {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.nav-area.header-type-2 .bottom-inner-header .main-menu > li > a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 10px 0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.nav-area.header-type-2 .bottom-inner-header .main-menu > li > a:hover {
    color: #e8931a;
}

/* ============================================================
   DarMatch mobile menu fix — ensure the mobile nav drawer
   sits above the hero and has a solid white background
   ============================================================ */
@media (max-width: 991px) {
    .nav-area .header-nav.header-mobile {
        position: relative !important;
        z-index: 9999 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    .nav-area .header-nav.header-mobile .header-mobile-wrap {
        background: #ffffff !important;
        position: relative;
        z-index: 2;
    }
    .nav-area .header-nav.header-mobile > .container {
        background: #ffffff !important;
        position: relative;
        z-index: 1;
    }
    .nav-area .header-nav.header-mobile .mobile-nav-wrap {
        background: #ffffff !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        position: relative;
    }
    .nav-area .header-nav.header-mobile .mobile-nav-wrap > ul,
    .nav-area .header-nav.header-mobile .mobile-nav-wrap .main-menu,
    .nav-area .header-nav.header-mobile .mobile-nav-wrap .nav-dropdown {
        background: #ffffff !important;
        margin: 0;
        padding: 8px 0 16px;
        list-style: none;
        border-top: 1px solid #f0f0f0;
    }
    .nav-area .header-nav.header-mobile .mobile-nav-wrap li {
        display: block;
        background: #ffffff !important;
        border-bottom: 1px solid #f4f4f4;
    }
    .nav-area .header-nav.header-mobile .mobile-nav-wrap li:last-child {
        border-bottom: none;
    }
    .nav-area .header-nav.header-mobile .mobile-nav-wrap li > a {
        display: block;
        padding: 16px 24px !important;
        color: #1a1a1a !important;
        text-decoration: none;
        font-family: 'Inter', -apple-system, sans-serif !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        line-height: 1.4;
        background: #ffffff !important;
    }
    .nav-area .header-nav.header-mobile .mobile-nav-wrap li > a:hover,
    .nav-area .header-nav.header-mobile .mobile-nav-wrap li.active > a {
        background: #fff8ee !important;
        color: #e8931a !important;
    }
    /* keep the hero behind the mobile header / drawer */
    .dmh,
    .dmh .dmh-hero {
        position: relative;
        z-index: 1;
    }
}

.dmh {
    --dmh-primary: #e8931a;
    --dmh-primary-dark: #d4821a;
    --dmh-primary-light: #fff8ee;
    --dmh-secondary: #4a90d9;
    --dmh-green: #3c9b6a;
    --dmh-purple: #7c6ef7;
    --dmh-text-dark: #1a1a1a;
    --dmh-text-medium: #555;
    --dmh-text-light: #777;
    --dmh-border: #ececec;
    --dmh-bg-light: #f2f3f5;
    --dmh-white: #ffffff;
    --dmh-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --dmh-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --dmh-shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --dmh-shadow-xl: 0 20px 60px rgba(0,0,0,0.2);

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dmh-text-dark);
    line-height: 1.6;
    background: var(--dmh-white);
}

.dmh *, .dmh *::before, .dmh *::after {
    box-sizing: border-box;
}

.dmh h1, .dmh h2, .dmh h3, .dmh h4 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
}

.dmh img {
    max-width: 100%;
    height: auto;
    display: block;
}

.dmh a {
    text-decoration: none;
    color: inherit;
}

.dmh p {
    margin: 0;
}

.dmh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.dmh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
}

.dmh-btn-primary {
    background: var(--dmh-primary);
    color: var(--dmh-white);
    border-color: var(--dmh-primary);
}

.dmh-btn-primary:hover {
    background: var(--dmh-primary-dark);
    border-color: var(--dmh-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--dmh-shadow-md);
    color: var(--dmh-white);
}

.dmh-btn-outline {
    background: transparent;
    border-color: var(--dmh-primary);
    color: var(--dmh-primary);
}

.dmh-btn-outline:hover {
    background: var(--dmh-primary-light);
}

.dmh-btn-outline-white {
    background: var(--dmh-white);
    border-color: var(--dmh-white);
    color: var(--dmh-primary);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.dmh-btn-outline-white:hover {
    background: var(--dmh-primary);
    border-color: var(--dmh-white);
    color: var(--dmh-white);
    transform: translateY(-2px);
    box-shadow: var(--dmh-shadow-md);
}

.dmh-btn-blue {
    background: var(--dmh-secondary);
    border-color: var(--dmh-secondary);
}

.dmh-btn-blue:hover {
    background: #3a7ec4;
    border-color: #3a7ec4;
}

.dmh-btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* ===== SECTION TITLES ===== */
.dmh-section-title {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--dmh-text-dark);
    margin-bottom: 24px;
}

.dmh-section-subtitle {
    font-size: 18px;
    color: var(--dmh-text-medium);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.dmh-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ===== HERO SECTION ===== */
.dmh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
}

.dmh-hero-bg {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dmh-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dmh-hero-overlay {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.4), transparent);
}

.dmh-hero-content {
    position: relative;
    z-index: 10;
    max-width: 640px;
}

.dmh-hero-badge {
    display: inline-block;
    background: rgba(232,147,26,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232,147,26,0.3);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 32px;
}

.dmh-hero-badge span {
    color: var(--dmh-primary);
    font-weight: 600;
    font-size: 14px;
}

.dmh-hero h1 {
    font-size: clamp(36px, 7vw, 72px);
    color: var(--dmh-white);
    margin-bottom: 32px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.dmh-highlight {
    color: var(--dmh-primary);
}

.dmh p.dmh-hero-text {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 72px 0;
    max-width: 540px;
    line-height: 1.8;
}

.dmh-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .dmh-hero-buttons {
        flex-direction: row;
    }
}

/* ===== CONCEPT SECTION ===== */
.dmh-concept {
    padding: 80px 0;
    background: var(--dmh-white);
}

.dmh-concept-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .dmh-concept-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dmh-concept-image {
    position: relative;
}

.dmh-concept-image::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(232,147,26,0.3), transparent);
    border-radius: 16px;
    filter: blur(40px);
    z-index: -1;
}

.dmh-concept-image img {
    border-radius: 16px;
    box-shadow: var(--dmh-shadow-xl);
}

.dmh-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.dmh-step {
    display: flex;
    gap: 20px;
}

.dmh-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dmh-step-icon.dmh-orange { background: rgba(232,147,26,0.1); }
.dmh-step-icon.dmh-blue { background: rgba(74,144,217,0.1); }
.dmh-step-icon.dmh-green { background: rgba(60,155,106,0.1); }

.dmh-step h3 {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.dmh-step p {
    color: var(--dmh-text-medium);
    line-height: 1.7;
}

/* ===== WHY DARMATCH SECTION ===== */
.dmh-why {
    padding: 80px 0;
    background: var(--dmh-bg-light);
}

.dmh-why-header {
    text-align: center;
    margin-bottom: 64px;
}

.dmh-comparison-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .dmh-comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dmh-comparison-card {
    background: var(--dmh-white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--dmh-border);
    box-shadow: var(--dmh-shadow-sm);
}

.dmh-comparison-card h3 {
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dmh-comparison-intro {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dmh-border);
    margin-bottom: 20px;
}

.dmh-comparison-intro h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.dmh-comparison-intro p {
    color: var(--dmh-text-medium);
    font-size: 14px;
    line-height: 1.7;
}

.dmh-check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dmh-check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.dmh-check-icon {
    width: 20px;
    height: 20px;
    color: var(--dmh-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.dmh-check-item p {
    color: var(--dmh-text-medium);
    line-height: 1.7;
}

.dmh-check-item strong {
    color: var(--dmh-text-dark);
}

.dmh-philosophy {
    margin-top: 80px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.dmh-philosophy h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 48px;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    line-height: 1.15;
}

.dmh-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.dmh-philosophy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 40px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.dmh-philosophy-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.dmh-philosophy-icon {
    width: 56px;
    height: 56px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: transparent;
    color: #1a1a1a;
}

.dmh-philosophy-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.8;
}

.dmh-philosophy-item h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 26px;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    color: #1a1a1a;
}

.dmh-philosophy-item p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 991px) {
    .dmh-philosophy h4 {
        font-size: 42px;
    }
    .dmh-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .dmh-philosophy h4 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .dmh-philosophy-item {
        padding: 40px 28px;
    }
    .dmh-philosophy-item h5 {
        font-size: 24px;
    }
}

/* ===== FOR HOSTS SECTION ===== */
.dmh-for-hosts {
    padding: 80px 0;
    background: var(--dmh-primary-light);
}

.dmh-hosts-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .dmh-hosts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dmh-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.dmh-benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.dmh-benefit-item p {
    color: var(--dmh-text-medium);
    line-height: 1.7;
}

.dmh-benefit-check {
    width: 24px;
    height: 24px;
    background: var(--dmh-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.dmh-benefit-check.dmh-blue-bg {
    background: var(--dmh-secondary);
}

.dmh-benefit-check span {
    color: var(--dmh-white);
    font-size: 14px;
    font-weight: bold;
}

.dmh-hosts-image {
    position: relative;
}

.dmh-hosts-image::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(232,147,26,0.3), transparent);
    border-radius: 16px;
    filter: blur(40px);
    z-index: -1;
}

.dmh-hosts-image img {
    border-radius: 16px;
    box-shadow: var(--dmh-shadow-xl);
}

/* ===== FOR TRAVELERS SECTION ===== */
.dmh-for-travelers {
    padding: 80px 0;
    background: var(--dmh-white);
}

.dmh-travelers-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .dmh-travelers-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dmh-travelers-content {
        order: -1;
    }
}

.dmh-travelers-image {
    position: relative;
}

.dmh-travelers-image::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(74,144,217,0.3), transparent);
    border-radius: 16px;
    filter: blur(40px);
    z-index: -1;
}

.dmh-travelers-image img {
    border-radius: 16px;
    box-shadow: var(--dmh-shadow-xl);
}

/* ===== TRUST SECTION ===== */
.dmh-trust {
    padding: 100px 0;
    background: var(--dmh-white);
}

.dmh-trust-header {
    text-align: center;
    margin-bottom: 64px;
}

.dmh-trust-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .dmh-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dmh-trust-card {
    background: var(--dmh-white);
    border: 1px solid var(--dmh-border);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dmh-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.dmh-trust-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(232,147,26,0.1);
    color: var(--dmh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.dmh-trust-icon svg {
    width: 32px;
    height: 32px;
}

.dmh-trust-card h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dmh-text-dark);
    letter-spacing: -0.01em;
}

.dmh-trust-card p {
    color: var(--dmh-text-medium);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.dmh-testimonials {
    padding: 80px 0;
    background: var(--dmh-bg-light);
}

.dmh-testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.dmh-testimonials-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .dmh-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dmh-testimonial-card {
    background: var(--dmh-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--dmh-shadow-sm);
    border: 1px solid var(--dmh-border);
}

.dmh-testimonial-stars {
    color: var(--dmh-primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.dmh-testimonial-text {
    color: var(--dmh-text-medium);
    margin-bottom: 28px;
    font-style: italic;
    line-height: 1.8;
}

.dmh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dmh-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dmh-primary), var(--dmh-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dmh-white);
    font-weight: 700;
    font-size: 18px;
}

.dmh-testimonial-info h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.dmh-testimonial-info p {
    color: var(--dmh-text-light);
    font-size: 14px;
}

/* ===== FAQ SECTION ===== */
.dmh-faq {
    padding: 80px 0;
    background: var(--dmh-white);
}

.dmh-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.dmh-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.dmh-faq-item {
    border-bottom: 1px solid var(--dmh-border);
}

.dmh-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.dmh-faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--dmh-text-dark);
    margin: 0;
}

.dmh-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dmh-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    color: var(--dmh-text-dark);
}

.dmh-faq-toggle svg {
    transition: transform 0.3s;
}

.dmh-faq-item.active .dmh-faq-toggle {
    background: var(--dmh-primary);
    color: var(--dmh-white);
}

.dmh-faq-item.active .dmh-faq-toggle svg {
    transform: rotate(180deg);
}

.dmh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dmh-faq-answer-inner {
    padding-bottom: 24px;
    color: var(--dmh-text-medium);
    line-height: 1.8;
}

.dmh-faq-item.active .dmh-faq-answer {
    max-height: 300px;
}

.dmh-faq-cta {
    text-align: center;
    margin-top: 56px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dmh-faq-cta .dmh-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== CTA SECTION ===== */
.dmh-cta {
    padding: 120px 0;
    background: #0f0f14;
    background-image:
        radial-gradient(ellipse at top left, rgba(232,147,26,0.08), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(74,144,217,0.06), transparent 60%);
    text-align: center;
}

.dmh-cta h2 {
    color: var(--dmh-white);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.dmh-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.dmh-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .dmh-cta-buttons {
        flex-direction: row;
    }
}

.dmh-cta .dmh-btn {
    border-radius: 999px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
}

.dmh-btn-white {
    background: var(--dmh-primary);
    color: var(--dmh-white);
    border-color: var(--dmh-primary);
}

.dmh-btn-white:hover {
    background: var(--dmh-primary-dark);
    border-color: var(--dmh-primary-dark);
    color: var(--dmh-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232,147,26,0.4);
}

.dmh-cta .dmh-btn-outline-white {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 2px solid rgba(255,255,255,0.9);
    color: var(--dmh-white);
    text-shadow: none;
}

.dmh-cta .dmh-btn-outline-white:hover {
    background: var(--dmh-white);
    border-color: var(--dmh-white);
    color: #0f0f14;
    text-shadow: none;
}

/* ===== ANIMATIONS ===== */
@keyframes dmhFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dmh-animate-fade-in {
    animation: dmhFadeInUp 0.8s ease-out forwards;
}
