:root {
    --dth-primary: #1e8a8a;
    --dth-primary-hover: #166e6e;
    --dth-primary-light: #e6f5f5;
    --dth-primary-ultra-light: #f0fafa;
    --dth-dark: #063232;
    --dth-dark-soft: #0a4a4a;
    --dth-text: #063232;
    --dth-text-secondary: #4a6363;
    --dth-bg-light: #f4f8f8;
    --dth-bg-section: #ecf0f0;
    --dth-white: #ffffff;
    --dth-border: #d1dede;
    --dth-border-light: #e8eeee;
    --dth-shadow-sm: 0 2px 12px rgba(6, 50, 50, 0.06);
    --dth-shadow: 0 4px 24px rgba(6, 50, 50, 0.08);
    --dth-shadow-lg: 0 12px 40px rgba(6, 50, 50, 0.12);
    --dth-shadow-xl: 0 20px 60px rgba(6, 50, 50, 0.16);
    --dth-radius: 12px;
    --dth-radius-sm: 8px;
    --dth-radius-lg: 16px;
    --dth-font: 'Poppins', sans-serif;
    --dth-font-serif: 'PT Serif', serif;
    --dth-ease: cubic-bezier(0.4, 0, 0.2, 1);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHARED COMPONENTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.dth-section-label {
    display: inline-block;
    font-family: var(--dth-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dth-primary);
    margin-bottom: 12px;
}

.dth-section-label--light {
    color: rgba(255, 255, 255, 0.7);
}

.dth-section-title {
    font-family: var(--dth-font);
    font-weight: 700;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--dth-text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.dth-section-desc {
    font-size: 16px;
    color: var(--dth-text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.dth-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--dtw-font);
    font-size: 15px;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.35s var(--dtw-ease);
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}

.dth-btn i { transition: transform 0.3s var(--dth-ease); }
.dth-btn:hover i { transform: translateX(4px); }

.dth-btn--primary {
    background: var(--dth-primary);
    color: var(--dth-white);
    border-color: var(--dth-primary);
}

.dth-btn--primary:hover {
    background: var(--dth-primary-hover);
    border-color: var(--dth-primary-hover);
    color: var(--dth-white);
    box-shadow: 0 8px 24px rgba(30, 138, 138, 0.3);
    transform: translateY(-1px);
}

.dth-btn--outline-dark {
    background: transparent;
    color: var(--dth-dark);
    border-color: var(--dth-border);
}

.dth-btn--outline-dark:hover {
    background: #ffffff;
    color: var(--dth-primary);
    border-color: var(--dth-primary);
}

.dth-btn--block {
    display: flex;
    justify-content: center;
    width: 100%;
}

.dth-btn--lg {
    padding: 18px 32px;
    font-size: 16px;
}

.dth-btn__loader { display: none; }
.dth-btn--loading .dth-btn__text { display: none; }
.dth-btn--loading .dth-btn__loader { display: inline-flex; }
.dth-btn--loading i:not(.fa-spinner) { display: none; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 1 â€” HERO (Light Theme)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.dth-hero {
    background: #fafcfc;
    background-image:
        radial-gradient(ellipse at 65% 40%, rgba(30, 138, 138, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse at 15% 85%, rgba(30, 138, 138, 0.04) 0%, transparent 50%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .dth-hero { padding: 120px 0 60px; }
}

@media (max-width: 575px) {
    .dth-hero { padding: 100px 0 48px; }
}

.dth-hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dth-hero__blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: rgba(30, 138, 138, 0.04);
}

.dth-hero__blob--1 {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -120px;
    animation: dth-morph 18s ease-in-out infinite;
}

.dth-hero__blob--2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -80px;
    background: rgba(30, 138, 138, 0.03);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    animation: dth-morph 14s ease-in-out infinite reverse;
}

.dth-hero__blob--3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 45%;
    background: rgba(30, 138, 138, 0.025);
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    animation: dth-morph 12s ease-in-out infinite;
    animation-delay: -4s;
}

.dth-hero__content {
    position: relative;
    z-index: 2;
}


.dth-hero__title {
    font-family: var(--dth-font);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dth-dark);
    margin-top: 60px;
    margin-bottom: 20px;
}

.dth-hero__title-accent {
    color: var(--dth-primary);
    position: relative;
}

.dth-hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(30, 138, 138, 0.15);
    border-radius: 3px;
    z-index: -1;
}

.dth-hero__subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dth-text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.dth-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

/* Hero trust signals â€” avatar stack + reviews + price */
.dth-hero__proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* .dth-hero__reviews {
    display: flex;
    align-items: center;
    gap: 12px;
} */

.dth-hero__avatar-stack {
    display: flex;
}

.dth-hero__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--dth-font);
    font-size: 12px;
    font-weight: 700;
    color: var(--dth-white);
    border: 2px solid var(--dth-white);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    margin-right: -10px;
    position: relative;
}

.dth-hero__avatar:nth-child(1) { background: #1e8a8a; z-index: 4; }
.dth-hero__avatar:nth-child(2) { background: #166e6e; z-index: 3; }
.dth-hero__avatar:nth-child(3) { background: #0a4a4a; z-index: 2; }
.dth-hero__avatar:nth-child(4) { background: #2a9e9e; z-index: 1; margin-right: 0; }

.dth-hero__stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 2px;
}

/* .dth-hero__reviews-label {
    font-family: var(--dth-font);
    font-size: 12px;
    color: var(--dth-text-secondary);
    display: block;
} */

.dth-hero__price-pill {
    font-family: var(--dth-font);
    font-size: 13px;
    color: var(--dth-text-secondary);
    background: var(--dth-white);
    border: 1px solid var(--dth-border-light);
    border-radius: 50px;
    padding: 8px 18px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.dth-hero__price-pill strong {
    color: var(--dth-primary);
    font-weight: 700;
    font-size: 16px;
}

/* Hero visual â€” Design-to-Code Conversion Graphic */
.dth-hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .dth-hero__visual { margin-top: 48px; }
}

.dth-hero__scene {
    display: flex;
    align-items: center;
    max-width: 540px;
    width: 100%;
    position: relative;
    padding: 20px 0 38px;
}

.dth-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    z-index: 2;
}

.dth-src {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: var(--dth-white);
    border-radius: 12px;
    border: 1px solid var(--dth-border-light);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    cursor: default;
}

.dth-src:hover {
    transform: translateX(-4px) translateY(-2px);
    box-shadow:
        0 2px 6px rgba(6, 50, 50, 0.04),
        0 8px 20px rgba(6, 50, 50, 0.07),
        0 16px 36px rgba(6, 50, 50, 0.06);
}

.dth-src__ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.dth-src--figma .dth-src__ico { background: #1e1e1e; color: #fff; }
.dth-src--figma .dth-src__ico i { font-size: 18px; }

.dth-src--psd .dth-src__ico {
    background: #001e36;
    color: #31a8ff;
    font-family: var(--dth-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dth-src--sketch .dth-src__ico { background: #feeeb7; color: #fdad00; }
.dth-src--sketch .dth-src__ico i { font-size: 18px; }

.dth-src--xd .dth-src__ico {
    background: #470137;
    color: #ff61f6;
    font-family: var(--dth-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dth-src__name {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--dth-text-secondary);
    letter-spacing: -0.3px;
}

.dth-src--figma  { animation: dth-src-float 6s ease-in-out infinite; }
.dth-src--psd    { animation: dth-src-float 6s ease-in-out infinite; animation-delay: -1.5s; }
.dth-src--sketch { animation: dth-src-float 6s ease-in-out infinite; animation-delay: -3s; }
.dth-src--xd    { animation: dth-src-float 6s ease-in-out infinite; animation-delay: -4.5s; }

/* â”€â”€ Animated flow chevrons â”€â”€ */
.dth-flow {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 10px;
    flex-shrink: 0;
}

.dth-flow i {
    font-size: 10px;
    color: var(--dth-primary);
}

.dth-flow i:nth-child(1) { animation: dth-chevron 2.2s ease-in-out infinite; }
.dth-flow i:nth-child(2) { animation: dth-chevron 2.2s ease-in-out infinite; animation-delay: 0.18s; }
.dth-flow i:nth-child(3) { animation: dth-chevron 2.2s ease-in-out infinite; animation-delay: 0.36s; }

.dth-output {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 14px;
    overflow: visible;
    background: #0d1117;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    animation: dth-editor-float 9s ease-in-out infinite;
    transition: transform 0.5s var(--dth-ease), box-shadow 0.5s var(--dth-ease);
}

.dth-output:hover {
    transform: translateY(-4px);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 20px 48px rgba(0, 0, 0, 0.12),
        0 36px 80px rgba(0, 0, 0, 0.1);
}

.dth-output__chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #161b22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px 14px 0 0;
}

.dth-output__dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.dth-output__dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.dth-output__dots i:nth-child(1) { background: #ff5f57; }
.dth-output__dots i:nth-child(2) { background: #febc2e; }
.dth-output__dots i:nth-child(3) { background: #28c840; }

.dth-output__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--dth-font);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.dth-output__tab i { font-size: 12px; }
.dth-output__tab--active {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}
.dth-output__tab--active i { color: #e44d26; }
.dth-output__tab:not(.dth-output__tab--active) i { color: #264de4; }

.dth-output__body {
    padding: 12px 0 16px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    font-size: 11px;
    line-height: 1.75;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.dth-cl {
    display: flex;
    align-items: baseline;
    padding: 0 16px;
    white-space: nowrap;
    transition: background 0.15s;
}

.dth-cl:hover { background: rgba(255, 255, 255, 0.02); }

.dth-ln {
    color: rgba(139, 148, 158, 0.28);
    width: 20px;
    text-align: right;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 10px;
    user-select: none;
}

.dth-c-pk { color: #ff79c6; }
.dth-c-bl { color: #79c0ff; }
.dth-c-gr { color: #7ee787; }
.dth-c-yl { color: #e3b341; }
.dth-c-cm { color: #6e7681; font-style: italic; }

.dth-cursor {
    display: inline-block;
    width: 1.5px;
    height: 14px;
    background: var(--dth-primary);
    margin-left: 1px;
    vertical-align: text-bottom;
    animation: dth-blink 1.2s step-end infinite;
}

.dth-badges {
    position: absolute;
    bottom: -16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dth-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--dth-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border: 1px solid var(--dth-border-light);
    transition: transform 0.3s var(--dth-ease);
}
.dth-badge:hover { transform: translateY(-3px); }

.dth-badge--html i { color: #e44d26; }
.dth-badge--css i { color: #264de4; }
.dth-badge--js i { color: #f0db4f; }

@keyframes dth-src-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

@keyframes dth-chevron {
    0%, 100% { opacity: 0.15; transform: translateX(0); }
    50%      { opacity: 1; transform: translateX(3px); }
}

@keyframes dth-editor-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

@keyframes dth-blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}

@media (max-width: 991px) {
    .dth-hero__content{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .dth-hero__subtitle{
        max-width: 100%;
    }

    .dth-hero__scene{
        max-width: 100%;
    }

}

@media (max-width: 767px) {
    .dth-hero__content{
        max-width: 100%;
    }
    .dth-hero__scene { max-width: 480px; margin: 0 auto; }
    .dth-src__ico { width: 34px; height: 34px; font-size: 15px; }
    .dth-src__name { font-size: 11px; }
}

@media (max-width: 575px) {
    .dth-hero__scene {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px 0 32px;
    }
    .dth-inputs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .dth-src { padding: 6px 12px 6px 6px; }
    .dth-src,
    .dth-src--figma,
    .dth-src--psd,
    .dth-src--sketch,
    .dth-src--xd { animation: none; }
    .dth-src__ico { width: 30px; height: 30px; font-size: 13px; border-radius: 7px; }
    .dth-src__name { font-size: 13px; }
    .dth-flow { transform: rotate(90deg); padding: 4px 0; }
    .dth-output { width: 100%; animation: none; }
    .dth-badges { bottom: -14px; right: 10px; }
}

@media (max-width: 575px) {
    .dth-hero__actions { flex-direction: column; }
    .dth-hero__actions .dth-btn { justify-content: center; }
    .dth-hero__proof { flex-direction: column; align-items: center; gap: 16px; }
}

/*  Design-to-Email Conversion Graphic */

.dte-hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .dte-hero__visual { margin-top: 48px; }
}

.dte-hero__scene {
    display: flex;
    align-items: center;
    max-width: 540px;
    width: 100%;
    position: relative;
    padding: 20px 0 38px;
}

.dte-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    z-index: 2;
}

.dte-src {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: var(--dth-white);
    border-radius: 12px;
    border: 1px solid var(--dth-border-light);
    box-shadow:
        0 1px 3px rgba(6, 50, 50, 0.03),
        0 4px 12px rgba(6, 50, 50, 0.05),
        0 10px 28px rgba(6, 50, 50, 0.04);
    transition: transform 0.35s var(--dth-ease), box-shadow 0.35s var(--dth-ease);
    cursor: default;
}

.dte-src:hover {
    transform: translateX(-4px) translateY(-2px);
    box-shadow:
        0 2px 6px rgba(6, 50, 50, 0.04),
        0 8px 20px rgba(6, 50, 50, 0.07),
        0 16px 36px rgba(6, 50, 50, 0.06);
}

.dte-src__ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.dte-src--figma .dte-src__ico { background: #1e1e1e; color: #fff; }
.dte-src--figma .dte-src__ico i { font-size: 18px; }

.dte-src--psd .dte-src__ico {
    background: #001e36;
    color: #31a8ff;
    font-family: var(--dth-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dte-src--sketch .dte-src__ico { background: #feeeb7; color: #fdad00; }
.dte-src--sketch .dte-src__ico i { font-size: 18px; }

.dte-src--xd .dte-src__ico {
    background: #470137;
    color: #ff61f6;
    font-family: var(--dth-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dte-src__name {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--dth-text-secondary);
    letter-spacing: -0.3px;
}

.dte-src--figma  { animation: dte-src-float 6s ease-in-out infinite; }
.dte-src--psd    { animation: dte-src-float 6s ease-in-out infinite; animation-delay: -1.5s; }
.dte-src--sketch { animation: dte-src-float 6s ease-in-out infinite; animation-delay: -3s; }
.dte-src--xd     { animation: dte-src-float 6s ease-in-out infinite; animation-delay: -4.5s; }


@keyframes dte-morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    25% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 60%; }
    50% { border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
    75% { border-radius: 45% 55% 65% 35% / 55% 45% 55% 45%; }
}

@keyframes dte-src-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

@keyframes dte-chevron {
    0%, 100% { opacity: 0.15; transform: translateX(0); }
    50%      { opacity: 1; transform: translateX(3px); }
}

@keyframes dte-editor-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

@keyframes dte-shimmer {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.6; }
}

@keyframes dte-pulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(30, 138, 138, 0.2); }
    50% { box-shadow: 0 0 0 16px rgba(30, 138, 138, 0.08); }
}

/* Animated flow chevrons */

.dte-flow {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 10px;
    flex-shrink: 0;
}

.dte-flow i {
    font-size: 10px;
    color: var(--dth-primary);
}

.dte-flow i:nth-child(1) { animation: dte-chevron 2.2s ease-in-out infinite; }
.dte-flow i:nth-child(2) { animation: dte-chevron 2.2s ease-in-out infinite; animation-delay: 0.18s; }
.dte-flow i:nth-child(3) { animation: dte-chevron 2.2s ease-in-out infinite; animation-delay: 0.36s; }


/* Email preview output panel */

.dte-output {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 14px;
    overflow: visible;
    background: #0d1117;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 6px 16px rgba(0, 0, 0, 0.08),
        0 16px 40px rgba(0, 0, 0, 0.1),
        0 28px 72px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: dte-editor-float 9s ease-in-out infinite;
    transition: transform 0.5s var(--dth-ease), box-shadow 0.5s var(--dth-ease);
}

.dte-output:hover {
    transform: translateY(-4px);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 20px 48px rgba(0, 0, 0, 0.12),
        0 36px 80px rgba(0, 0, 0, 0.1);
}

.dte-output__chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #161b22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px 14px 0 0;
}

.dte-output__dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.dte-output__dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.dte-output__dots i:nth-child(1) { background: #ff5f57; }
.dte-output__dots i:nth-child(2) { background: #febc2e; }
.dte-output__dots i:nth-child(3) { background: #28c840; }

.dte-output__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--dth-font);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
}

.dte-output__tab i { font-size: 12px; }
.dte-output__tab--active {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}

.dte-output__body {
    padding: 16px;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}


/* Email preview mockup inside the output panel */

.dte-email-preview {
    background: var(--dth-white);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dte-email-preview__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.dte-email-preview__avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dth-primary);
    flex-shrink: 0;
}

.dte-email-preview__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.dte-email-preview__sender {
    font-family: var(--dth-font);
    font-size: 11px;
    font-weight: 600;
    color: var(--dth-dark);
}

.dte-email-preview__subject {
    font-family: var(--dth-font);
    font-size: 9px;
    color: var(--dth-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dte-email-preview__hero-img {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--dth-primary-light) 0%, rgba(30, 138, 138, 0.2) 100%);
    animation: dte-shimmer 3s ease-in-out infinite;
}

.dte-email-preview__line {
    height: 8px;
    border-radius: 4px;
    background: #e8eeee;
}

.dte-email-preview__line--title {
    width: 70%;
    height: 10px;
    background: #d1dede;
}

.dte-email-preview__line--body {
    width: 100%;
}

.dte-email-preview__line--short {
    width: 60%;
}

.dte-email-preview__cta-btn {
    width: 100px;
    height: 24px;
    border-radius: 12px;
    background: var(--dth-primary);
    margin: 4px auto;
}

.dte-email-preview__cols {
    display: flex;
    gap: 8px;
}

.dte-email-preview__col-block {
    flex: 1;
    height: 40px;
    border-radius: 6px;
    background: var(--dth-bg-light);
    border: 1px solid var(--dth-border-light);
}


/* Output technology badges */

.dte-badges {
    position: absolute;
    bottom: -16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dte-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--dth-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow:
        0 2px 6px rgba(6, 50, 50, 0.05),
        0 6px 16px rgba(6, 50, 50, 0.07);
    border: 1px solid var(--dth-border-light);
    transition: transform 0.3s var(--dth-ease);
}
.dte-badge:hover { transform: translateY(-3px); }

.dte-badge--mailchimp i { color: #ffe01b; }
.dte-badge--html i { color: #e44d26; }
.dte-badge--outlook i { color: #0078d4; }


/*---------- shopify hero -----------*/
.shopify-window {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 20px 40px #00000038;
}

/* Top Bar */

.browser-top {
  background: #1f2937;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.browser-dots span:nth-child(1){ background:#ff5f57;}
.browser-dots span:nth-child(2){ background:#febc2e;}
.browser-dots span:nth-child(3){ background:#28c840;}

.browser-title {
  color: #d1d5db;
  font-size: 13px;
}

/* Body */

.browser-body {
  display: flex;
  background: #f3f4f6;
  height: 300px;
}

/* Sidebar */

.editor-sidebar {
  width: 130px;
  background: #ffffff;
  padding: 15px 10px;
  border-right: 1px solid #e5e7eb;
}

.editor-sidebar .sidebar-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #6b7280;
}

.editor-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.editor-sidebar li {
  font-size: 10px;
  padding: 0 5px;
  margin-bottom: 6px;
  border-radius: 6px;
  color: #374151;
  transition: all 0.3s ease-in-out;
}

.editor-sidebar li:hover{
    background: #95bf47;
    color: #fff;
}

.editor-sidebar li.active {
  background: #95bf47;
  color: #fff;
}

/* Preview */

.editor-preview {
  flex: 1;
  padding: 15px;
  background: #f9fafb;
}

.store-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 11px;
}

.logo-text {
  font-weight: 600;
}

.nav-links span {
  margin-left: 10px;
  color: #6b7280;
}

.store-hero {
  background: linear-gradient(135deg,#95bf47,#5e8e3e);
  border-radius: 10px;
  padding: 14px;
  color: #fff;
  margin-bottom: 12px;
}

.store-hero h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.store-hero p {
  margin: 4px 0 8px;
  font-size: 11px;
  color: #fff;;
}

.store-hero button {
  background: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  cursor: pointer;
}

.store-products {
  display: flex;
  gap: 8px;
}

.product-card {
  background: #fff;
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-size: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.product-card img{
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.product-card span {
  display: block;
  margin-bottom: 4px;
}

.product-card:hover{
    transform: scale(1.02);
}

/* Bottom Icons */

.bottom-tech {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.bottom-tech span {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/*------------ design to react hero graphich ----------------*/
/* Hero Visual */
.dtr-hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .dtr-hero__visual {
        margin-top: 48px;
    }
}

.dtr-hero__scene {
    display: flex;
    align-items: center;
    max-width: 540px;
    width: 100%;
    position: relative;
    padding: 20px 0 38px;
}

.dtr-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    z-index: 2;
}

.dtr-src {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: var(--dtr-white);
    border-radius: 12px;
    border: 1px solid var(--dtr-border-light);
    box-shadow: 0 1px 3px rgba(15, 43, 41, 0.03), 0 4px 12px rgba(15, 43, 41, 0.05), 0 10px 28px rgba(15, 43, 41, 0.04);
    transition: transform 0.35s var(--dtr-ease), box-shadow 0.35s var(--dtr-ease);
    cursor: default;
}

.dtr-src:hover {
    transform: translateX(-4px) translateY(-2px);
    box-shadow: 0 2px 6px rgba(15, 43, 41, 0.04), 0 8px 20px rgba(15, 43, 41, 0.07);
}

.dtr-src__ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.dtr-src--figma .dtr-src__ico {
    background: #1e1e1e;
    color: #fff;
}

.dtr-src--figma .dtr-src__ico i {
    font-size: 18px;
}

.dtr-src--psd .dtr-src__ico {
    background: #001e36;
    color: #31a8ff;
    font-family: var(--dtr-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dtr-src--sketch .dtr-src__ico {
    background: #feeeb7;
    color: #fdad00;
}

.dtr-src--sketch .dtr-src__ico i {
    font-size: 18px;
}

.dtr-src--xd .dtr-src__ico {
    background: #470137;
    color: #ff61f6;
    font-family: var(--dtr-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dtr-src__name {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--dtr-text-secondary);
    letter-spacing: -0.3px;
}

.dtr-src--figma {
    animation: dtr-src-float 6s ease-in-out infinite;
}

.dtr-src--psd {
    animation: dtr-src-float 6s ease-in-out infinite;
    animation-delay: -1.5s;
}

.dtr-src--sketch {
    animation: dtr-src-float 6s ease-in-out infinite;
    animation-delay: -3s;
}

.dtr-src--xd {
    animation: dtr-src-float 6s ease-in-out infinite;
    animation-delay: -4.5s;
}

.dtr-flow {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 10px;
    flex-shrink: 0;
}

.dtr-flow i {
    font-size: 10px;
    color: var(--dtr-accent);
}

.dtr-flow i:nth-child(1) {
    animation: dtr-chevron 2.2s ease-in-out infinite;
}

.dtr-flow i:nth-child(2) {
    animation: dtr-chevron 2.2s ease-in-out infinite;
    animation-delay: 0.18s;
}

.dtr-flow i:nth-child(3) {
    animation: dtr-chevron 2.2s ease-in-out infinite;
    animation-delay: 0.36s;
}

/* Code editor */
.dtr-output {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 14px;
    overflow: visible;
    background: #0d1117;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(0, 0, 0, 0.1), 0 28px 72px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: dtr-editor-float 9s ease-in-out infinite;
    transition: transform 0.5s var(--dtr-ease), box-shadow 0.5s var(--dtr-ease);
}

.dtr-output:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.1), 0 20px 48px rgba(0, 0, 0, 0.12);
}

.dtr-output__chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #161b22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px 14px 0 0;
}

.dtr-output__dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.dtr-output__dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.dtr-output__dots i:nth-child(1) {
    background: #ff5f57;
}

.dtr-output__dots i:nth-child(2) {
    background: #febc2e;
}

.dtr-output__dots i:nth-child(3) {
    background: #28c840;
}

.dtr-output__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--dtr-font);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.dtr-output__tab i {
    font-size: 12px;
}

.dtr-output__tab--active {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}

.dtr-output__tab--active i {
    color: #61dafb;
}

.dtr-output__tab:not(.dtr-output__tab--active) i {
    color: #3178c6;
}

.dtr-output__body {
    padding: 12px 0 16px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    font-size: 11px;
    line-height: 1.75;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.dtr-cl {
    display: flex;
    align-items: baseline;
    padding: 0 16px;
    white-space: nowrap;
    transition: background 0.15s;
}

.dtr-cl:hover {
    background: rgba(255, 255, 255, 0.02);
}

.dtr-ln {
    color: rgba(139, 148, 158, 0.28);
    width: 20px;
    text-align: right;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 10px;
    user-select: none;
}

.dtr-c-pk {
    color: #ff79c6;
}

.dtr-c-bl {
    color: #79c0ff;
}

.dtr-c-gr {
    color: #7ee787;
}

.dtr-c-yl {
    color: #e3b341;
}

.dtr-c-cm {
    color: #6e7681;
    font-style: italic;
}

.dtr-c-or {
    color: #ffa657;
}

.dtr-cursor {
    display: inline-block;
    width: 1.5px;
    height: 14px;
    background: var(--dtr-accent);
    margin-left: 1px;
    vertical-align: text-bottom;
    animation: dtr-blink 1.2s step-end infinite;
}

.dtr-badges {
    position: absolute;
    bottom: -16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dtr-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--dtr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 2px 6px rgba(15, 43, 41, 0.05), 0 6px 16px rgba(15, 43, 41, 0.07);
    border: 1px solid var(--dtr-border-light);
    transition: transform 0.3s var(--dtr-ease);
}

.dtr-badge:hover {
    transform: translateY(-3px);
}

.dtr-badge--react i {
    color: #61dafb;
}

.dtr-badge--ts i {
    color: #3178c6;
}

.dtr-badge--next {
    font-family: var(--dtr-font);
    font-size: 11px;
    font-weight: 800;
    color: #000;
}

@media (max-width: 767px) {
    .dtr-hero__scene {
        max-width: 480px;
        margin: 0 auto;
    }

    .dtr-src__ico {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .dtr-hero__scene {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px 0 32px;
    }

    .dtr-inputs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .dtr-src {
        padding: 6px 12px 6px 6px;
    }

    .dtr-src,
    .dtr-src--figma,
    .dtr-src--psd,
    .dtr-src--sketch,
    .dtr-src--xd {
        animation: none;
    }

    .dtr-src__ico {
        width: 30px;
        height: 30px;
        font-size: 13px;
        border-radius: 7px;
    }

    .dtr-flow {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .dtr-output {
        width: 100%;
        animation: none;
    }

    .dtr-hero__actions {
        flex-direction: column;
    }

    .dtr-hero__actions .dtr-btn {
        justify-content: center;
    }

    .dtr-hero__proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@keyframes dtr-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


@keyframes dtr-src-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


















.dtr-hero__scene {
    display: flex;
    align-items: center;
    max-width: 540px;
    width: 100%;
    position: relative;
    padding: 20px 0 38px;
}


.dtr-flow {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 10px;
    flex-shrink: 0;
}

.dtr-flow i {
    font-size: 10px;
    color: var(--dth-accent);
}

.dtr-flow i:nth-child(1) {
    animation: dtr-chevron 2.2s ease-in-out infinite;
}

.dtr-flow i:nth-child(2) {
    animation: dtr-chevron 2.2s ease-in-out infinite;
    animation-delay: 0.18s;
}

.dtr-flow i:nth-child(3) {
    animation: dtr-chevron 2.2s ease-in-out infinite;
    animation-delay: 0.36s;
}

/* Code editor */
.dtr-output {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 14px;
    overflow: visible;
    background: #0d1117;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(0, 0, 0, 0.1), 0 28px 72px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: dtr-editor-float 9s ease-in-out infinite;
    transition: transform 0.5s var(--dth-ease), box-shadow 0.5s var(--dth-ease);
    transition: all 0.3s ease-in-out;
}

.dtr-output:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.1), 0 20px 48px rgba(0, 0, 0, 0.12);
}

.dtr-output__chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #161b22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px 14px 0 0;
}

.dtr-output__dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.dtr-output__dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.dtr-output__dots i:nth-child(1) {
    background: #ff5f57;
}

.dtr-output__dots i:nth-child(2) {
    background: #febc2e;
}

.dtr-output__dots i:nth-child(3) {
    background: #28c840;
}

.dtr-output__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--dth-font);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.dtr-output__tab i {
    font-size: 12px;
}

.dtr-output__tab--active {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}

.dtr-output__tab--active i {
    color: #61dafb;
}

.dtr-output__tab:not(.dtr-output__tab--active) i {
    color: #3178c6;
}

.dtr-output__body {
    padding: 12px 0 16px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    font-size: 11px;
    line-height: 1.75;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.dtr-cl {
    display: flex;
    align-items: baseline;
    padding: 0 16px;
    white-space: nowrap;
    transition: background 0.15s;
}

.dtr-cl:hover {
    background: rgba(255, 255, 255, 0.02);
}

.dtr-ln {
    color: rgba(139, 148, 158, 0.28);
    width: 20px;
    text-align: right;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 10px;
    user-select: none;
}

.dtr-c-pk {
    color: #ff79c6;
}

.dtr-c-bl {
    color: #79c0ff;
}

.dtr-c-gr {
    color: #7ee787;
}

.dtr-c-yl {
    color: #e3b341;
}

.dtr-c-cm {
    color: #6e7681;
    font-style: italic;
}

.dtr-c-or {
    color: #ffa657;
}

.dtr-cursor {
    display: inline-block;
    width: 1.5px;
    height: 14px;
    background: var(--dth-accent);
    margin-left: 1px;
    vertical-align: text-bottom;
    animation: dtr-blink 1.2s step-end infinite;
}

.dtr-badges {
    position: absolute;
    bottom: -16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dtr-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 2px 6px rgba(15, 43, 41, 0.05), 0 6px 16px rgba(15, 43, 41, 0.07);
    border: 1px solid var(--dth-border-light);
    transition: transform 0.3s var(--dth-ease);
}

.dtr-badge:hover {
    transform: translateY(-3px);
}

.dtr-badge--react i {
    color: #61dafb;
}

.dtr-badge--ts i {
    color: #3178c6;
}

.dtr-badge--next {
    font-family: var(--dth-font);
    font-size: 11px;
    font-weight: 800;
    color: #000;
}


@keyframes dtr-chevron {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

@keyframes dtr-editor-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 767px) {
    .dtr-hero__scene {
        max-width: 480px;
        margin: 0 auto;
    }

    .dtr-src__ico {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .dtr-hero__scene {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px 0 32px;
    }

    .dtr-inputs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .dtr-src {
        padding: 6px 12px 6px 6px;
    }

    .dtr-src,
    .dtr-src--figma,
    .dtr-src--psd,
    .dtr-src--sketch,
    .dtr-src--xd {
        animation: none;
    }

    .dtr-src__ico {
        width: 30px;
        height: 30px;
        font-size: 13px;
        border-radius: 7px;
    }

    .dtr-flow {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .dtr-output {
        width: 100%;
        animation: none;
    }

    .dtr-hero__actions {
        flex-direction: column;
    }

    .dtr-hero__actions .dtr-btn {
        justify-content: center;
    }

    .dtr-hero__proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
























































/*--------- we accept design section css -------------*/

.dth-platforms {
    background: var(--dth-white);
    border-bottom: 1px solid var(--dth-border-light);
    position: relative;
    z-index: 3;
}

.dth-platforms__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 0;
}

@media (max-width: 767px) {
    .dth-platforms__inner { flex-direction: column; gap: 16px; padding: 24px 0; }
}

.dth-platforms__label {
    font-family: var(--dth-font);
    font-size: 22px;
    font-weight: 500;
    color: var(--dth-text-secondary);
    white-space: nowrap;
    margin-bottom: 0;
    width: 300px;
}

@media (max-width: 767px) {
    .dth-platforms__label {
        width: 100%;
        white-space: wrap;
        margin-bottom: 20px;
    }
}

.dth-platforms__grid {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

@media (min-width: 768px) {
    .dth-platforms__grid { justify-content: flex-end; }
}

.dth-platforms__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 6px;
    background: var(--dth-bg-light);
    border: 1px solid var(--dth-border-light);
    font-family: var(--dth-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--dth-text);
    transition: all 0.3s var(--dth-ease);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    height: 45px;
}

.dth-platforms__item:hover {
    border-color: var(--dth-primary);
    background: var(--dth-primary-ultra-light);
    transform: translateY(-2px);
    box-shadow: var(--dth-shadow-sm);
}

.dth-platforms__item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.dth-platforms__icon-fallback {
    font-size: 24px;
    color: #ff61f6;
}

@media (max-width: 991px) {
    
    .dth-platforms__inner{
        flex-direction: column;
        padding: 40px 0 ;
    }

    .dth-platforms__item{
        padding: 7px 17px;
        font-size: 12px;
    }
}

@media (max-width: 767px){
    .dth-platforms__item{
        padding: 10px 20px;
        font-size: 14px;
        max-width: fit-content;
        width: 100%;
    }
}

@media (max-width: 575px) {

    .dth-platforms__grid{
        gap: 15px;
    }

    .dth-platforms__item {
        max-width: 150px;
        height: 110px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .dth-platforms__item img {
        width: 40px;
        height: auto;
    }
    
}

@media (max-width: 480px) {
    .dth-platforms__item {
        max-width: 48%;
    }
}

.dth-overview__lead code {
    background: var(--dth-primary-light);
    color: var(--dth-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

/*---------- platforms  section css --------------- */

.dtw-platforms {
    background: var(--dtw-white);
    border-bottom: 1px solid var(--dtw-border-light);
    position: relative;
    z-index: 3;
}

.dtw-platforms.ctr-txt .dtw-platforms__group{
    align-items: center;
}

.dtw-platforms__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (max-width: 991px) {
    .dtw-platforms__inner { 
        flex-direction: column; 
        gap: 24px; 
    }
}

.dtw-platforms__group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 1280px) {
    .dtw-platforms__group { 
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .dtw-platforms__group { flex-direction: column; gap: 12px; text-align: center; }
}

.dtw-platforms__divider {
    width: 1px;
    height: 48px;
    background: var(--dtw-border-light);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .dtw-platforms__divider { width: 80px; height: 1px; }
}

.dtw-platforms__label {
    font-family: var(--dtw-font);
    font-size: 12px;
    font-weight: 600;
    color: var(--dtw-text-secondary);
    white-space: nowrap;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dtw-platforms__grid {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.dtw-platforms__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 50px;
    background: var(--dtw-bg-light);
    border: 1px solid var(--dtw-border-light);
    font-family: var(--dtw-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--dtw-text);
    transition: all 0.3s var(--dtw-ease);
    height: 40px;
}

.dtw-platforms__item:hover {
    border-color: var(--dtw-primary);
    background: var(--dtw-primary-ultra-light);
    transform: translateY(-2px);
    box-shadow: var(--dtw-shadow-sm);
}

.dtw-platforms__item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.dtw-platforms__item--tech i {
    font-size: 18px;
    color: var(--dtw-primary);
}

.dtw-platforms__icon-fallback {
    font-size: 22px;
    color: #ff61f6;
}

@media (max-width: 575px) {
    .dtw-platforms__item {
        max-width: 130px;
        width: 100%;
        height: 110px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .dtw-platforms__item img {
        width: 40px;
        height: auto;
    }
}




.dtr-about{
    position: relative;
    overflow: hidden;
}

.dtr-about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dtr-about__feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: var(--dth-white, #fff);
    border-radius: var(--dth-radius-md, 12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.dtr-about__feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(27, 67, 65, 0.08), rgba(27, 67, 65, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dth-primary, #1b4341);
}

.dtr-about__feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--dth-dark, #0e1a19);
}

.dtr-about__feature p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: rgba(14, 26, 25, 0.65);
}

.dtr-about__feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.dtr-decision{
    background-color: #ffffff;
}

.dtr-decision__card {
    padding: 32px;
    border-radius: var(--dth-radius-lg, 16px);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dtr-decision__card--positive {
    background: linear-gradient(135deg, rgba(27, 67, 65, 0.04), rgba(27, 67, 65, 0.01));
    border-color: rgba(27, 67, 65, 0.15);
}

.dtr-decision__card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dtr-decision__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dtr-decision__list li {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 8px;
    border-left: 2px solid rgba(27, 67, 65, 0.15);
    color: rgba(14, 26, 25, 0.75);
}

.dtr-deep-dive__card {
    background: var(--dth-white, #fff);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--dth-radius-lg, 16px);
    padding: 28px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.dtr-deep-dive__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.dtr-deep-dive__card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(14, 26, 25, 0.65);
    margin-bottom: 16px;
}

.dtr-deep-dive__use-cases {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dtr-deep-dive__use-cases li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(14, 26, 25, 0.7);
}

.dtr-deep-dive__use-cases li i {
    color: var(--dtr-primary, #1b4341);
    font-size: 16px;
}

.dtr-deep-dive__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: linear-gradient(135deg, rgba(27, 67, 65, 0.1), rgba(27, 67, 65, 0.04));
    color: var(--dtr-primary, #1b4341);
}

.dtr-deep-dive__card-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.dtr-deep-dive__badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(27, 67, 65, 0.08);
    color: var(--dtr-primary, #1b4341);
}

.dtr-deep-dive__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/*--------- what we do section css -------------*/

.dth-trusted {
    padding: 40px 0;
    background: var(--dth-bg-light);
    border-bottom: 1px solid var(--dth-border-light);
}

.dth-trusted__heading {
    font-family: var(--dth-font);
    font-size: 14px;
    color: var(--dth-text-secondary);
    text-align: center;
    margin-bottom: 24px;
}

.dth-trusted__heading strong {
    color: var(--dth-text);
}

.dth-trusted__track {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.dth-trusted__logos {
    display: flex;
    gap: 56px;
    align-items: center;
    width: max-content;
    animation: dth-marquee 35s linear infinite;
}

.dth-trusted__track:hover .dth-trusted__logos {
    animation-play-state: paused;
}

.dth-trusted__logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s var(--dth-ease);
}

.dth-trusted__logos img:hover {
    filter: grayscale(0%) opacity(1);
}


.dth-overview {
    background: var(--dth-white);
    overflow: hidden;
}

.dth-overview__lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dth-text);
    margin-bottom: 16px;
}

.dth-overview__highlight-card {
    background: var(--dth-bg-light);
    border: 1px solid var(--dth-border-light);
    border-radius: var(--dth-radius-lg);
    padding: 36px 32px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.dth-overview__highlight-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dth-primary-light);
    color: var(--dth-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.dth-overview__highlight-stat {
    font-family: var(--dth-font);
    font-size: 48px;
    font-weight: 800;
    color: var(--dth-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.dth-overview__highlight-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dth-text-secondary);
    margin-bottom: 24px;
}

.dth-overview__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.dth-overview__checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--dth-text);
    border-top: 1px solid var(--dth-border-light);
}

.dth-overview__checklist li:first-child { border-top: none; }

.dth-overview__checklist i {
    color: var(--dth-primary);
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .dth-overview__highlight-card{
        max-width: 400px;
        margin: 0 auto;
    }

    .dth-overview__checklist li{
        justify-content: center;
    }

}


.dth-process {
    background: var(--dth-bg-light);
}

.dth-process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
    position: relative;
}

@media (max-width: 991px) {
    .dth-process__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }
}

@media (max-width: 575px) {
    .dth-process__timeline {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.dth-process__step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.dth-process__marker {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.dth-process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dth-white);
    border: 2px solid var(--dth-primary);
    font-family: var(--dth-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--dth-primary);
    transition: all 0.35s var(--dth-ease);
}

.dth-process__step:hover .dth-process__number {
    background: var(--dth-primary);
    color: var(--dth-white);
    box-shadow: 0 0 0 8px rgba(30, 138, 138, 0.1);
}

.dth-process__connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    background: var(--dth-border);
    z-index: 1;
}

.dth-process__connector::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--dth-primary);
    border-bottom: 2px solid var(--dth-primary);
    transform: rotate(-45deg);
}

.dth-process__step:last-child .dth-process__connector {
    display: none;
}

@media (max-width: 991px) {
    .dth-process__step:nth-child(2) .dth-process__connector { display: none; }
    .dth-process__step:nth-child(4) .dth-process__connector { display: none; }
}

@media (max-width: 575px) {
    .dth-process__connector { display: none !important; }
    .dth-process__step {
        display: flex;
        text-align: left;
        gap: 20px;
        padding: 24px 0;
        border-left: 2px solid var(--dth-border);
        margin-left: 28px;
        padding-left: 28px;
    }
    .dth-process__marker {
        position: absolute;
        left: -17px;
        margin-bottom: 0;
    }
    .dth-process__number { width: 32px; height: 32px; font-size: 13px; }
    .dth-process__icon { display: none; }
}

.dth-process__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--dth-radius-sm);
    background: var(--dth-primary-light);
    color: var(--dth-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.dth-process__step h4 {
    font-family: var(--dth-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--dth-text);
    margin-bottom: 6px;
}

.dth-process__step p {
    font-size: 13px;
    color: var(--dth-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}


/*=---------------- pricing section css  ---------------- */

.dth-pricing {
    background: var(--dth-white);
}

.dth-pricing__card {
    background: var(--dth-white);
    border: 1px solid var(--dth-border-light);
    border-radius: var(--dth-radius-lg);
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s var(--dth-ease);
    position: relative;
    overflow: hidden;
    border-color: var(--dth-primary);
    border-width: 2px;
    background: var(--dth-white);
}

.dth-pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dth-shadow-lg);
}

.dth-pricing__card--featured {
    border-color: var(--dth-primary);
    border-width: 2px;
    background: var(--dth-white);
}

.dth-pricing__card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dth-primary), #5ec2c2);
}

.dth-pricing__badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--dth-primary);
    color: var(--dth-white);
    font-family: var(--dth-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.dth-pricing__card-header { margin-bottom: 20px; }

.dth-pricing__plan-name {
    font-family: var(--dth-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--dth-text);
    margin-bottom: 6px;
}

.dth-pricing__plan-desc {
    font-size: 14px;
    color: var(--dth-text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.dth-pricing__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dth-border-light);
}

.dth-pricing__old-price {
    font-family: var(--dth-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--dth-text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
}

.dth-pricing__price {
    font-family: var(--dth-font);
    font-size: 48px;
    font-weight: 800;
    color: var(--dth-primary);
    line-height: 1;
}

.dth-pricing__period {
    font-size: 14px;
    color: var(--dth-text-secondary);
}

.dth-pricing__features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dth-pricing__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dth-text);
    margin-bottom: 0;
}

.dth-pricing__features li i {
    color: var(--dth-primary);
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .dth-pricing__price { font-size: 40px; }
}

@media (max-width: 480px) {
    .dth-pricing__card{
        padding: 30px 20px;
    }
}


/*------------ pricing section wordpress ---*/
/* --- pricing  section css  */

.dtw-pricing {
    background: var(--dtw-bg-light);
}

.dtw-pricing__card {
    background: var(--dtw-white);
    border: 1px solid var(--dtw-border-light);
    border-radius: var(--dtw-radius-lg);
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s var(--dtw-ease);
    position: relative;
    overflow: hidden;
    border-color: var(--dtw-primary);
    border-width: 2px;
}

@media (max-width: 1280px) {
    .dtw-pricing__card {
        padding: 36px 20px;
    }
}

.dtw-pricing__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dtw-shadow-lg);
}

.dtw-pricing__card--featured {
    border-color: var(--dtw-primary);
    border-width: 2px;
}

.dtw-pricing__card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dtw-primary), #5ec2c2);
}

.dtw-pricing__badge {
    position: absolute;
    top: 30px;
    right: -45px;
    background: var(--dtw-primary);
    color: var(--dtw-white);
    font-family: var(--dtw-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.dtw-pricing__card-header { margin-bottom: 20px; }

.dtw-pricing__plan-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--dtw-radius);
    background: var(--dtw-primary-light);
    color: var(--dtw-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.dtw-pricing__plan-name {
    font-family: var(--dtw-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--dtw-text);
    margin-bottom: 6px;
}

.dtw-pricing__plan-desc {
    font-size: 14px;
    color: var(--dtw-text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.dtw-pricing__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.dtw-pricing__price {
    font-family: var(--dtw-font);
    font-size: 44px;
    font-weight: 800;
    color: var(--dtw-primary);
    line-height: 1;
}

.dtw-pricing__period {
    font-size: 14px;
    color: var(--dtw-text-secondary);
}

.dtw-pricing__meta {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dtw-border-light);
}

.dtw-pricing__meta span {
    font-family: var(--dtw-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--dtw-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dtw-pricing__meta span i {
    color: var(--dtw-primary);
    font-size: 14px;
}

.dtw-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.dtw-pricing__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dtw-text);
}

.dtw-pricing__features li i {
    color: var(--dtw-primary);
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .dtw-pricing__price { font-size: 36px; }
}


.dth-comparison {
    background: var(--dth-bg-light);
}

.dth-comparison__card {
    background: var(--dth-white);
    border: 1px solid var(--dth-border-light);
    border-radius: var(--dth-radius-lg);
    padding: 36px 32px;
    height: 100%;
    transition: all 0.35s var(--dth-ease);
}

.dth-comparison__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dth-shadow-lg);
}

.dth-comparison__card--dynamic {
    background: var(--dth-dark);
    border-color: transparent;
}

.dth-comparison__card--dynamic .dth-comparison__card-title,
.dth-comparison__card--dynamic .dth-comparison__card-subtitle,
.dth-comparison__card--dynamic .dth-comparison__list li,
.dth-comparison__card--dynamic .dth-comparison__ideal {
    color: var(--dth-white);
}

.dth-comparison__card--dynamic .dth-comparison__card-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.dth-comparison__card--dynamic .dth-comparison__ideal {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.dth-comparison__card--dynamic .dth-comparison__card-icon {
    background: rgba(30, 138, 138, 0.2);
}

.dth-comparison__card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--dth-radius);
    background: var(--dth-primary-light);
    color: var(--dth-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.dth-comparison__card-title {
    font-family: var(--dth-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--dth-text);
    margin-bottom: 4px;
}

.dth-comparison__card-subtitle {
    font-size: 14px;
    color: var(--dth-text-secondary);
    margin-bottom: 20px;
}

.dth-comparison__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dth-comparison__list.no li i{
    color: var(--dth-primary);
} 

.dth-comparison__list.no.yes li:nth-child(5) i{
    color: var(--dth-primary);
} 
.dth-comparison__list.no.yes li:nth-last-child(1) i{
    color: var(--dth-primary);
} 

.dth-comparison__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dth-text);
}

.dth-comparison__list li i {
    color: var(--dth-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.dth-comparison__ideal {
    font-size: 13px;
    color: var(--dth-text-secondary);
    background: var(--dth-bg-light);
    border: 1px solid var(--dth-border-light);
    border-radius: var(--dth-radius-sm);
    padding: 14px 16px;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .dth-comparison__card{
        padding: 30px 20px;
    }
}

.dth-features {
    background: var(--dth-white);
}

.dth-features__list {
    position: relative;
}

.dth-features__row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 24px 24px;
    border-left: 3px solid transparent;
    transition: all 0.3s var(--dth-ease);
    position: relative;
}

@media (max-width: 576px) {
    .dth-features__row {
        padding: 20px 10px;
    }
    
}

.dth-features__row + .dth-features__row {
    border-top: 1px solid var(--dth-border-light);
}

.dth-features__row:hover {
    border-left-color: var(--dth-primary);
    background: var(--dth-primary-ultra-light);
    padding-left: 28px;
    margin-left: -4px;
    border-radius: 0 var(--dth-radius-sm) var(--dth-radius-sm) 0;
}

.dth-features__row:hover .dth-features__row-icon {
    background: var(--dth-primary);
    color: var(--dth-white);
}

.dth-features__row-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--dth-radius-sm);
    background: var(--dth-primary-light);
    color: var(--dth-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s var(--dth-ease);
    margin-top: 2px;
}

.dth-features__row-body h4 {
    font-family: var(--dth-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--dth-text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.dth-features__row-body p {
    font-size: 14px;
    color: var(--dth-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}


/* ----------- whay markupfox css ----------*/

.dth-why {
    background: var(--dth-bg-light);
}

.dth-why__points { margin-top: 32px; }

.dth-why__point {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e7e9e9;
}

.dth-why__point:last-child { border-bottom: none; }

.dth-why__point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--dth-radius-sm);
    background: var(--dth-primary-light);
    color: var(--dth-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.dth-why__point h4 {
    font-family: var(--dth-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--dth-text);
    margin-bottom: 4px;
}

.dth-why__point p {
    font-size: 14px;
    color: var(--dth-text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.dth-why__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dth-why__stat-card {
    background: var(--dth-white);
    border: 1px solid var(--dth-border-light);
    border-radius: var(--dth-radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.35s var(--dth-ease);
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.dth-why__stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dth-shadow);
    border-color: var(--dth-primary);
}

.dth-why__stat-number {
    font-family: var(--dth-font);
    font-size: 40px;
    font-weight: 800;
    color: var(--dth-primary);
    line-height: 1;
}

.dth-why__stat-suffix {
    font-family: var(--dth-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--dth-primary);
}

.dth-why__stat-card p {
    font-size: 14px;
    color: var(--dth-text-secondary);
    margin-bottom: 0;
    margin-top: 6px;
    font-weight: 500;
}

/*------- wordpress page css --------------*/

/* Hero Visual */
.dtw-hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .dtw-hero__visual { margin-top: 48px; }
}

.dtw-hero__scene {
    display: flex;
    align-items: center;
    max-width: 540px;
    width: 100%;
    position: relative;
    padding: 20px 0 38px;
}

.dtw-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    z-index: 2;
}

.dtw-src {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: var(--dtw-white);
    border-radius: 12px;
    border: 1px solid var(--dtw-border-light);
    box-shadow:
        0 1px 3px rgba(6, 50, 50, 0.03),
        0 4px 12px rgba(6, 50, 50, 0.05),
        0 10px 28px rgba(6, 50, 50, 0.04);
    transition: transform 0.35s var(--dtw-ease), box-shadow 0.35s var(--dtw-ease);
    cursor: default;
}

.dtw-src:hover {
    transform: translateX(-4px) translateY(-2px);
    box-shadow:
        0 2px 6px rgba(6, 50, 50, 0.04),
        0 8px 20px rgba(6, 50, 50, 0.07),
        0 16px 36px rgba(6, 50, 50, 0.06);
}

.dtw-src__ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.dtw-src--figma .dtw-src__ico { background: #1e1e1e; color: #fff; }
.dtw-src--figma .dtw-src__ico i { font-size: 18px; }

.dtw-src--psd .dtw-src__ico {
    background: #001e36;
    color: #31a8ff;
    font-family: var(--dtw-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dtw-src--sketch .dtw-src__ico { background: #feeeb7; color: #fdad00; }
.dtw-src--sketch .dtw-src__ico i { font-size: 18px; }

.dtw-src--xd .dtw-src__ico {
    background: #470137;
    color: #ff61f6;
    font-family: var(--dtw-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dtw-src__name {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--dtw-text-secondary);
    letter-spacing: -0.3px;
}

.dtw-src--figma  { animation: dtw-src-float 6s ease-in-out infinite; }
.dtw-src--psd    { animation: dtw-src-float 6s ease-in-out infinite; animation-delay: -1.5s; }
.dtw-src--sketch { animation: dtw-src-float 6s ease-in-out infinite; animation-delay: -3s; }
.dtw-src--xd     { animation: dtw-src-float 6s ease-in-out infinite; animation-delay: -4.5s; }

/* Animated flow chevrons */
.dtw-flow {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 10px;
    flex-shrink: 0;
}

.dtw-flow i {
    font-size: 10px;
    color: var(--dtw-primary);
}

.dtw-flow i:nth-child(1) { animation: dtw-chevron 2.2s ease-in-out infinite; }
.dtw-flow i:nth-child(2) { animation: dtw-chevron 2.2s ease-in-out infinite; animation-delay: 0.18s; }
.dtw-flow i:nth-child(3) { animation: dtw-chevron 2.2s ease-in-out infinite; animation-delay: 0.36s; }

/* Code editor output */
.dtw-output {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 14px;
    overflow: visible;
    background: #0d1117;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 6px 16px rgba(0, 0, 0, 0.08),
        0 16px 40px rgba(0, 0, 0, 0.1),
        0 28px 72px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: dtw-editor-float 9s ease-in-out infinite;
    transition: transform 0.5s var(--dtw-ease), box-shadow 0.5s var(--dtw-ease);
}

.dtw-output:hover {
    transform: translateY(-4px);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 20px 48px rgba(0, 0, 0, 0.12),
        0 36px 80px rgba(0, 0, 0, 0.1);
}

.dtw-output__chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #161b22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px 14px 0 0;
}

.dtw-output__dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.dtw-output__dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.dtw-output__dots i:nth-child(1) { background: #ff5f57; }
.dtw-output__dots i:nth-child(2) { background: #febc2e; }
.dtw-output__dots i:nth-child(3) { background: #28c840; }

.dtw-output__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--dtw-font);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.dtw-output__tab i { font-size: 12px; }
.dtw-output__tab--active {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}
.dtw-output__tab--active i { color: #21759b; }
.dtw-output__tab:not(.dtw-output__tab--active) i { color: #8892bf; }

.dtw-output__body {
    padding: 12px 0 16px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    font-size: 11px;
    line-height: 1.75;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.dtw-cl {
    display: flex;
    align-items: baseline;
    padding: 0 16px;
    white-space: nowrap;
    transition: background 0.15s;
}
.dtw-cl:hover { background: rgba(255, 255, 255, 0.02); }

.dtw-ln {
    color: rgba(139, 148, 158, 0.28);
    width: 20px;
    text-align: right;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 10px;
    user-select: none;
}

.dtw-c-pk { color: #ff79c6; }
.dtw-c-bl { color: #79c0ff; }
.dtw-c-gr { color: #7ee787; }
.dtw-c-yl { color: #e3b341; }
.dtw-c-cm { color: #6e7681; font-style: italic; }

.dtw-cursor {
    display: inline-block;
    width: 1.5px;
    height: 14px;
    background: var(--dtw-primary);
    margin-left: 1px;
    vertical-align: text-bottom;
    animation: dtw-blink 1.2s step-end infinite;
}

/* Technology badges */
.dtw-badges {
    position: absolute;
    bottom: -16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dtw-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--dtw-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow:
        0 2px 6px rgba(6, 50, 50, 0.05),
        0 6px 16px rgba(6, 50, 50, 0.07);
    border: 1px solid var(--dtw-border-light);
    transition: transform 0.3s var(--dtw-ease);
}
.dtw-badge:hover { transform: translateY(-3px); }

.dtw-badge--wp i { color: #21759b; }
.dtw-badge--php i { color: #8892bf; }
.dtw-badge--js i { color: #f0db4f; }

@media (max-width: 767px) {
    .dtw-hero__scene { max-width: 480px; margin: 0 auto; }
    .dtw-src__ico { width: 34px; height: 34px; font-size: 15px; }
    .dtw-src__name { font-size: 11px; }
}

@media (max-width: 575px) {
    .dtw-hero__scene {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px 0 32px;
    }
    .dtw-inputs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .dtw-src { padding: 6px 12px 6px 6px; }
    .dtw-src,
    .dtw-src--figma,
    .dtw-src--psd,
    .dtw-src--sketch,
    .dtw-src--xd { animation: none; }
    .dtw-src__ico { width: 30px; height: 30px; font-size: 13px; border-radius: 7px; }
    .dtw-src__name { font-size: 10px; }
    .dtw-flow { transform: rotate(90deg); padding: 4px 0; }
    .dtw-output { width: 100%; animation: none; }
    .dtw-badges { bottom: -14px; right: 10px; }
}

@media (max-width: 575px) {
    .dtw-hero__actions { flex-direction: column; }
    .dtw-hero__actions .dtw-btn { justify-content: center; }
    .dtw-hero__proof { flex-direction: column; align-items: flex-start; gap: 16px; }
}










@media (max-width: 991px) {
    .dth-why__stats { max-width: 100%; margin: 0; }
}

@media (max-width: 767px) {
    .dth-why__stat-number { font-size: 32px; }
}

@media (max-width: 575px) {
    .dth-why__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 490px) {
    .dth-why__stats { grid-template-columns: repeat(1, 1fr); }
}

.dth-guarantee {
    padding: 60px 0;
    background: var(--dth-white);
}

.dth-guarantee__inner {
    background: #063232;
    background: linear-gradient(300deg, rgba(6, 50, 50, 1) 0%, rgba(10, 74, 74, 1) 100%);
    border-radius: var(--dth-radius-lg);
    padding: 56px 48px;
}

@media (max-width: 767px) {
    .dth-guarantee__inner { padding: 40px 24px; }
}

.dth-guarantee__item { padding: 0 12px; }

.dth-guarantee__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--dth-radius);
    background: rgba(30, 138, 138, 0.2);
    color: #5ec2c2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

@media (max-width: 1180px) {
    .dth-guarantee__item{
        padding: 0;
    }
}

@media (max-width: 991px) {
    .dth-guarantee__icon { margin-left: auto; margin-right: auto; }
    .dth-guarantee__inner { text-align: center; }
    .dth-guarantee__item + .dth-guarantee__item { margin-top: 32px; }
}

.dth-guarantee__item h4 {
    font-family: var(--dth-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--dth-white);
    margin-bottom: 8px;
}

.dth-guarantee__item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.dth-testimonials {
    background: var(--dth-bg-light);
}

.dth-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .dth-testimonials__grid { grid-template-columns: 1fr; }
}

.dth-testimonials__featured {
    background: var(--dth-dark);
    border-radius: var(--dth-radius-lg);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dth-testimonials__featured::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(30, 138, 138, 0.08);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.dth-testimonials__quote-mark {
    font-size: 36px;
    color: rgba(30, 138, 138, 0.3);
    margin-bottom: 16px;
    line-height: 1;
}

.dth-testimonials__featured .dth-testimonials__text {
    font-family: var(--dth-font-serif);
    font-size: 20px;
    line-height: 1.6;
    color: var(--dth-white);
    margin-bottom: 20px;
    font-style: italic;
    border: none;
    padding: 0;
}

.dth-testimonials__featured .dth-testimonials__stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.dth-testimonials__featured .dth-testimonials__author strong {
    color: var(--dth-white);
}

.dth-testimonials__featured .dth-testimonials__author span {
    color: rgba(255, 255, 255, 0.5);
}

.dth-testimonials__side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dth-testimonials__card {
    background: var(--dth-white);
    border: 1px solid var(--dth-border-light);
    border-radius: var(--dth-radius-lg);
    padding: 28px 28px;
    flex: 1;
    transition: all 0.35s var(--dth-ease);
}

.dth-testimonials__card:hover {
    border-color: var(--dth-primary);
    box-shadow: var(--dth-shadow);
}

.dth-testimonials__card .dth-testimonials__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--dth-text-secondary);
    margin-bottom: 16px;
    border: none;
    padding: 0;
}

.dth-testimonials__card .dth-testimonials__stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.dth-testimonials__text {
    margin: 0;
}

.dth-testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dth-testimonials__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dth-primary);
    color: var(--dth-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--dth-font);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.dth-testimonials__author strong {
    display: block;
    font-family: var(--dth-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--dth-text);
}

.dth-testimonials__author span {
    font-size: 12px;
    color: var(--dth-text-secondary);
}

.dth-portfolio {
    background: var(--dth-white);
}

.dth-portfolio__item {
    border-radius: var(--dth-radius-lg);
    overflow: hidden;
    background: var(--dth-white);
    border: 1px solid var(--dth-border-light);
    transition: all 0.35s var(--dth-ease);
}

.dth-portfolio__item:hover {
    box-shadow: var(--dth-shadow-lg);
    transform: translateY(-4px);
}

.dth-portfolio__img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.dth-portfolio__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--dth-ease);
}

.dth-portfolio__item:hover .dth-portfolio__img-wrap img {
    transform: scale(1.05);
}

.dth-portfolio__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 50, 50, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.35s var(--dth-ease);
}

.dth-portfolio__item:hover .dth-portfolio__overlay {
    opacity: 1;
}

.dth-portfolio__tech {
    font-family: var(--dth-font);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dth-white);
    background: rgba(30, 138, 138, 0.4);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dth-portfolio__view {
    font-family: var(--dth-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--dth-white);
}

.dth-portfolio__info { padding: 20px 24px; }

.dth-portfolio__info h4 {
    font-family: var(--dth-font);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dth-portfolio__info h4 a {
    color: var(--dth-text);
    text-decoration: none;
    transition: color 0.3s;
}

.dth-portfolio__info h4 a:hover { color: var(--dth-primary); }

.dth-portfolio__info p {
    font-size: 13px;
    color: var(--dth-text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.dth-portfolio__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.dth-portfolio__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--dth-border);
    background: var(--dth-white);
    color: var(--dth-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s var(--dth-ease);
}

.dth-portfolio__nav-btn:hover {
    background: var(--dth-primary);
    color: var(--dth-white);
    border-color: var(--dth-primary);
}

.dth-portfolio__dots.swiper-pagination {
    position: static;
    width: auto;
}

.dth-portfolio__dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--dth-border);
    opacity: 1;
    transition: all 0.3s var(--dth-ease);
}

.dth-portfolio__dots .swiper-pagination-bullet-active {
    background: var(--dth-primary);
    width: 28px;
    border-radius: 5px;
}

.dth-faq {
    background: var(--dth-bg-light);
}

.dth-faq__accordion { border: none; }

.dth-faq__item {
    border: 1px solid var(--dth-border-light);
    border-radius: var(--dth-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s var(--dth-ease);
    background: var(--dth-white);
}

.dth-faq__item:hover { border-color: var(--dth-primary); }

.dth-faq__btn {
    font-family: var(--dth-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--dth-text);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--dth-white);
    box-shadow: none;
}

.dth-faq__btn:focus { box-shadow: none; border-color: transparent; }

.dth-faq__btn:not(.collapsed) {
    background: var(--dth-primary-ultra-light);
    color: var(--dth-primary);
}

.dth-faq__btn::after {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-size: 16px;
}

.dth-faq__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--dth-primary);
    min-width: 28px;
}

.dth-faq__body {
    font-size: 14px;
    color: var(--dth-text-secondary);
    line-height: 1.7;
    padding: 0 24px 20px 66px;
}

@media (max-width: 767px) {
    .dth-faq__body { padding-left: 24px; }
    .dth-faq__btn { font-size: 14px; padding: 16px 18px; }
}

.dth-contact {
    background: linear-gradient(160deg, #042626 0%, var(--dth-dark) 40%, var(--dth-dark-soft) 100%);
    padding: 80px 0;
}

@media (max-width: 575px) {
    .dth-contact { padding: 48px 0; }
}

.dth-contact__title {
    font-family: var(--dth-font);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--dth-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.dth-contact__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}

.dth-contact__info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dth-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.dth-contact__info-item > i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--dth-radius-sm);
    background: rgba(30, 138, 138, 0.2);
    color: #5ec2c2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.dth-contact__info-item span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.dth-contact__info-item a,
.dth-contact__info-item strong {
    font-size: 14px;
    color: var(--dth-white);
    text-decoration: none;
}

.dth-contact__info-item a:hover { color: #5ec2c2; }

.dth-contact__form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--dth-radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(8px);
}

@media (max-width: 575px) {
    .dth-contact__form { padding: 24px 20px; margin-top: 24px; }
}

.dth-contact__label {
    display: block;
    font-family: var(--dth-font);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.dth-contact__label span { color: #ff6b6b; }

.dth-contact__input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--dth-white);
    font-family: var(--dth-font);
    font-size: 14px;
    transition: all 0.3s var(--dth-ease);
    outline: none;
    font-weight: 400;
}

.dth-contact__input::placeholder { color: rgba(255, 255, 255, 0.3); }

.dth-contact__input:focus {
    border-color: var(--dth-primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(30, 138, 138, 0.15);
}

.dth-contact__input--error { border-color: #ff6b6b !important; }
.dth-contact__input--error:focus { box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15); }

.dth-contact__textarea {
    resize: vertical;
    min-height: 100px;
    font-weight: 400;
}

.dth-contact__error {
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 4px;
    min-height: 18px;
}

select.dth-contact__input {
    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='%23ffffff' fill-opacity='0.5' d='M6 8.825L.35 3.175 1.4 2.1 6 6.7l4.6-4.6 1.05 1.075z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select.dth-contact__input option {
    background: var(--dth-dark);
    color: var(--dth-white);
}

.dth-contact__dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--dth-radius);
    padding: 28px;
    text-align: center;
    transition: all 0.3s var(--dth-ease);
    cursor: pointer;
    position: relative;
}

.dth-contact__dropzone--active {
    border-color: var(--dth-primary);
    background: rgba(30, 138, 138, 0.1);
}

.dth-contact__dropzone-content i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    display: block;
}

.dth-contact__dropzone-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 4px;
}

.dth-contact__dropzone-content p strong { color: var(--dth-white); }

.dth-contact__dropzone-content span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.dth-contact__dropzone-content small {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 8px;
}

.dth-contact__browse-btn {
    background: none;
    border: none;
    color: var(--dth-primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 13px;
    text-decoration: underline;
}

.dth-contact__file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: -1;
    font-weight: 400;
}

.dth-contact__file-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 400;
}

.dth-contact__file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--dth-radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.dth-contact__file-item i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 8px;
}

.dth-contact__file-remove {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 12px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: opacity 0.2s;
}

.dth-contact__file-remove:hover { opacity: 0.7; }



@keyframes dth-morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    25% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 60%; }
    50% { border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
    75% { border-radius: 45% 55% 65% 35% / 55% 45% 55% 45%; }
}

@keyframes dth-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes dth-pulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(30, 138, 138, 0.2); }
    50% { box-shadow: 0 0 0 16px rgba(30, 138, 138, 0.08); }
}
