/* ============================================================
   DESIGN TO EMAIL — Service Page Styles
   MarkupFox | Custom CSS for /services/design-to-email.php
   ============================================================ */

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


/* ═══════════════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════════════ */

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

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

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

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

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

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

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

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

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

.dte-btn--outline-dark:hover {
    background: var(--dte-dark);
    color: var(--dte-white);
    border-color: var(--dte-dark);
}

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

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

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


/* ═══════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════ */

.dte-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) {
    .dte-hero { padding: 120px 0 60px; }
}

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

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

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

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

.dte-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: dte-morph 14s ease-in-out infinite reverse;
}

.dte-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: dte-morph 12s ease-in-out infinite;
    animation-delay: -4s;
}

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

.dte-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dte-primary-light);
    color: var(--dte-primary);
    font-family: var(--dte-font);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(30, 138, 138, 0.15);
}

.dte-hero__title {
    font-family: var(--dte-font);
    font-weight: 700;
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1.15;
    color: var(--dte-dark);
    margin-bottom: 20px;
}

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

.dte-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;
}

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

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

.dte-hero__proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.dte-hero__reviews {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

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

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

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

.dte-hero__price-pill {
    font-family: var(--dte-font);
    font-size: 13px;
    color: var(--dte-text-secondary);
    background: var(--dte-white);
    border: 1px solid var(--dte-border-light);
    border-radius: 50px;
    padding: 8px 18px;
    box-shadow: var(--dte-shadow-sm);
}

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


/* Hero visual — 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(--dte-white);
    border-radius: 12px;
    border: 1px solid var(--dte-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(--dte-ease), box-shadow 0.35s var(--dte-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(--dte-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(--dte-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(--dte-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; }


/* 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(--dte-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(--dte-ease), box-shadow 0.5s var(--dte-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(--dte-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(--dte-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(--dte-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(--dte-font);
    font-size: 11px;
    font-weight: 600;
    color: var(--dte-dark);
}

.dte-email-preview__subject {
    font-family: var(--dte-font);
    font-size: 9px;
    color: var(--dte-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(--dte-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(--dte-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(--dte-bg-light);
    border: 1px solid var(--dte-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(--dte-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(--dte-border-light);
    transition: transform 0.3s var(--dte-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; }


/* Hero responsive */

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

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


/* ═══════════════════════════════════════════════
   SECTION 2 — PLATFORMS & ESPs BAR
   ═══════════════════════════════════════════════ */

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

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

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

.dte-platforms__group {
    flex: 1;
    min-width: 0;
}

.dte-platforms__divider {
    width: 1px;
    align-self: stretch;
    background: var(--dte-border-light);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .dte-platforms__divider { width: 100%; height: 1px; }
}

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

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

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

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

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

.dte-platforms__icon-fallback {
    font-size: 20px;
    color: #ff61f6;
}

@media (max-width: 575px) {
    .dte-platforms__item { padding: 6px 12px; font-size: 11px; }
    .dte-platforms__item img { width: 20px; height: 20px; }
}


/* ═══════════════════════════════════════════════
   SECTION 3 — SERVICE OVERVIEW
   ═══════════════════════════════════════════════ */

.dte-overview {
    background: var(--dte-white);
}

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

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

.dte-overview__highlight-card {
    background: var(--dte-bg-light);
    border: 1px solid var(--dte-border-light);
    border-radius: var(--dte-radius-lg);
    padding: 36px 32px;
    text-align: center;
}

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

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

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

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

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

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

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


/* ═══════════════════════════════════════════════
   SECTION 4 — PRICING CARDS
   ═══════════════════════════════════════════════ */

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

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

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

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

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

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

.dte-pricing__card-header { margin-bottom: 24px; }

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

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

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

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

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

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

.dte-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

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

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

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


/* ═══════════════════════════════════════════════
   SECTION 5 — RAW HTML vs. ESP-READY
   ═══════════════════════════════════════════════ */

.dte-comparison {
    background: var(--dte-white);
}

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

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

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

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

.dte-comparison__card--dark .dte-comparison__card-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

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

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

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

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

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

.dte-comparison__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

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

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

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


/* ═══════════════════════════════════════════════
   SECTION 6 — FEATURES (Card Grid)
   ═══════════════════════════════════════════════ */

.dte-features {
    background: var(--dte-bg-light);
}

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

.dte-features__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dte-shadow-lg);
    border-color: var(--dte-primary);
}

.dte-features__card:hover .dte-features__card-icon {
    background: var(--dte-primary);
    color: var(--dte-white);
}

.dte-features__card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--dte-radius);
    background: var(--dte-primary-light);
    color: var(--dte-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s var(--dte-ease);
}

.dte-features__card h4 {
    font-family: var(--dte-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--dte-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

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


/* ═══════════════════════════════════════════════
   SECTION 7 — WHY CHOOSE
   ═══════════════════════════════════════════════ */

.dte-why {
    background: var(--dte-white);
}

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

.dte-why__point {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--dte-border-light);
}

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

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

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

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

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

.dte-why__stat-card {
    background: var(--dte-bg-light);
    border: 1px solid var(--dte-border-light);
    border-radius: var(--dte-radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.35s var(--dte-ease);
}

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

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

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

.dte-why__stat-card p {
    font-size: 13px;
    color: var(--dte-text-secondary);
    margin-bottom: 0;
    margin-top: 6px;
}

@media (max-width: 991px) {
    .dte-why__stats { max-width: 400px; margin: 40px auto 0; }
}

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

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


/* ═══════════════════════════════════════════════
   SECTION 8 — GUARANTEE BANNER
   ═══════════════════════════════════════════════ */

.dte-guarantee {
    padding: 80px 0;
    background: var(--dte-bg-light);
}

.dte-guarantee__inner {
    background: linear-gradient(135deg, var(--dte-dark) 0%, var(--dte-dark-soft) 100%);
    border-radius: var(--dte-radius-lg);
    padding: 56px 48px;
}

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

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

.dte-guarantee__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--dte-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: 991px) {
    .dte-guarantee__icon { margin-left: auto; margin-right: auto; }
    .dte-guarantee__inner { text-align: center; }
    .dte-guarantee__item + .dte-guarantee__item { margin-top: 32px; }
}

.dte-guarantee__item h4 {
    font-family: var(--dte-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--dte-white);
    margin-bottom: 8px;
}

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


/* ═══════════════════════════════════════════════
   SECTION 9 — PORTFOLIO CAROUSEL
   ═══════════════════════════════════════════════ */

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

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

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

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

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

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

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

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

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

.dte-portfolio__industry {
    font-family: var(--dte-font);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

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

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

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

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

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

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

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

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

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


/* ═══════════════════════════════════════════════
   SECTION 10 — FAQ ACCORDION
   ═══════════════════════════════════════════════ */

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

.dte-faq__accordion { border: none; }

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

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

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

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

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

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

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

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

.dte-faq__body code {
    background: var(--dte-primary-light);
    color: var(--dte-primary);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 13px;
}

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


/* ═══════════════════════════════════════════════
   SECTION 11 — CONTACT / LEAD GEN
   ═══════════════════════════════════════════════ */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dte-contact__input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--dte-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--dte-white);
    font-family: var(--dte-font);
    font-size: 14px;
    transition: all 0.3s var(--dte-ease);
    outline: none;
}

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

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

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

.dte-contact__textarea {
    resize: vertical;
    min-height: 100px;
}

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

select.dte-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.dte-contact__input option {
    background: var(--dte-dark);
    color: var(--dte-white);
}

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

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

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

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

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

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

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

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

.dte-contact__file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: -1;
}

.dte-contact__file-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

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

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


/* ═══════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════ */

@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); }
}
