/* DpEstudio — Home 2026
   Prefijo .hm- para no chocar con layout.css / portfolio.css */

html:is([data-dp-home], [data-dp-projects]) {
    scroll-behavior: smooth;
}

html:is([data-dp-home], [data-dp-projects]) body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: #070b13;
    color: #f8fafc;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

html:is([data-dp-home], [data-dp-projects]) *,
html:is([data-dp-home], [data-dp-projects]) *::before,
html:is([data-dp-home], [data-dp-projects]) *::after {
    box-sizing: border-box;
}

html:is([data-dp-home], [data-dp-projects]) img {
    max-width: 100%;
    height: auto;
    display: block;
}

html:is([data-dp-home], [data-dp-projects]) a {
    text-decoration: none;
    color: inherit;
}

html:is([data-dp-home], [data-dp-projects]) .dp-logo,
html:is([data-dp-home], [data-dp-projects]) .dp-footer h3,
html:is([data-dp-home], [data-dp-projects]) .dp-links-hub-title {
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

:root {
    --hm-bg: #070b13;
    --hm-bg-2: #0b1220;
    --hm-bg-3: #101827;
    --hm-surface: rgba(255, 255, 255, 0.04);
    --hm-surface-2: rgba(255, 255, 255, 0.07);
    --hm-border: rgba(226, 232, 240, 0.1);
    --hm-border-strong: rgba(226, 232, 240, 0.18);
    --hm-text: #f8fafc;
    --hm-muted: #9aa8bd;
    --hm-faint: #6b7c93;
    --hm-accent: #c7a76c;
    --hm-accent-soft: #e8d3a4;
    --hm-green: #34d399;
    --hm-wa: #25d366;
    --hm-gold: #c7a76c;
    --hm-display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    --hm-body: Inter, system-ui, sans-serif;
    --hm-radius: 20px;
    --hm-radius-sm: 12px;
    --hm-wrap: 1200px;
    --hm-pad: 28px;
}

.hm-wrap {
    max-width: var(--hm-wrap);
    margin: 0 auto;
    padding: 0 var(--hm-pad);
}

.hm-section {
    padding: 96px 0;
    background: var(--hm-bg);
}

.hm-section--alt {
    background: var(--hm-bg-2);
}

.hm-section--deep {
    background: var(--hm-bg-3);
}

.hm-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.hm-head--left {
    margin-left: 0;
    text-align: left;
}

.hm-plat-intro .hm-head {
    margin-bottom: 0;
}

.hm-plat-intro .hm-head p strong {
    color: #34d399;
}

.hm-contact-title {
    font-family: var(--hm-display);
    font-size: 1.15rem;
    margin: 0 0 22px;
}

.hm-form-btns .hm-btn {
    flex: 1;
}

.hm-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(199, 167, 108, 0.32);
    background: rgba(199, 167, 108, 0.12);
    color: var(--hm-accent-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-head h2,
.hm-display {
    font-family: var(--hm-display);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: var(--hm-text);
}

.hm-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    margin: 0 0 14px;
}

.hm-head p {
    margin: 0;
    color: var(--hm-muted);
    font-size: 1.05rem;
}

.hm-head a {
    color: var(--hm-accent-soft);
    font-weight: 600;
}

.hm-head a:hover {
    text-decoration: underline;
}

.hm-center {
    text-align: center;
    margin-top: 36px;
}

/* Buttons */
.hm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: var(--hm-body);
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.hm-btn--wa {
    background: var(--hm-wa);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}

.hm-btn--wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.hm-btn--ghost {
    background: transparent;
    color: var(--hm-text) !important;
    border-color: var(--hm-border-strong);
}

.hm-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.28);
}

.hm-btn--accent {
    background: linear-gradient(135deg, #d0b174, #9d793f);
    color: #111827 !important;
}

.hm-btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(199, 167, 108, 0.35);
}

.hm-btn--full {
    width: 100%;
}

/* Hero */
.hm-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 132px 0 28px;
    background:
        radial-gradient(ellipse 70% 50% at 80% -10%, rgba(199, 167, 108, 0.2) 0%, transparent 58%),
        radial-gradient(ellipse 45% 40% at 0% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 55%),
        var(--hm-bg);
}

.hm-hero-glow {
    position: absolute;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 167, 108, 0.22), transparent 68%);
    top: -6rem;
    right: -4rem;
    pointer-events: none;
    filter: blur(10px);
}

.hm-hero-glow--2 {
    width: 22rem;
    height: 22rem;
    top: auto;
    right: auto;
    bottom: 4rem;
    left: -6rem;
    background: radial-gradient(circle, rgba(91, 141, 239, 0.16), transparent 70%);
}

.hm-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: linear-gradient(180deg, #000 18%, transparent 88%);
    mask-image: linear-gradient(180deg, #000 18%, transparent 88%);
}

.hm-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 64px;
    align-items: center;
}

.hm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(199, 167, 108, 0.4);
    background: rgba(199, 167, 108, 0.12);
    color: var(--hm-accent-soft);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.hm-hero h1 {
    font-family: var(--hm-display);
    font-size: clamp(2.35rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin: 0 0 20px;
}

.hm-hero h1 em {
    font-style: normal;
    background: linear-gradient(105deg, #f3e2b8 0%, #c7a76c 55%, #8d6b32 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hm-hero-lead {
    max-width: 520px;
    margin: 0 0 28px;
    font-size: 1.08rem;
    color: var(--hm-muted);
    line-height: 1.75;
}

.hm-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.hm-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid var(--hm-border);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    font-size: 0.84rem;
    font-weight: 500;
}

.hm-pill i {
    color: var(--hm-green);
    font-size: 0.72rem;
}

.hm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hm-mock {
    border: 1px solid rgba(199, 167, 108, 0.22);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(17, 24, 39, 0.72) 100%);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(199, 167, 108, 0.08);
    overflow: hidden;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.hm-mock-preview {
    padding: 14px 14px 0;
}

.hm-mock-preview-nav,
.hm-mock-preview-hero span,
.hm-mock-preview-hero b,
.hm-mock-preview-cards i {
    display: block;
    border-radius: 6px;
}

.hm-mock-preview-nav {
    height: 8px;
    width: 42%;
    background: rgba(199, 167, 108, 0.35);
    margin-bottom: 12px;
}

.hm-mock-preview-hero {
    padding: 16px 14px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(199, 167, 108, 0.22), rgba(15, 23, 42, 0.4)),
        #111827;
    margin-bottom: 10px;
}

.hm-mock-preview-hero span {
    height: 8px;
    width: 72%;
    background: rgba(248, 250, 252, 0.82);
    margin-bottom: 7px;
}

.hm-mock-preview-hero span:nth-child(2) {
    width: 48%;
    opacity: 0.45;
}

.hm-mock-preview-hero b {
    width: 88px;
    height: 18px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d0b174, #9d793f);
}

.hm-mock-preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.hm-mock-preview-cards i {
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hm-mock-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--hm-border);
    background: rgba(0, 0, 0, 0.22);
}

.hm-mock-dots {
    display: flex;
    gap: 6px;
}

.hm-mock-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #334155;
}

.hm-mock-dots span:nth-child(1) { background: #f87171; }
.hm-mock-dots span:nth-child(2) { background: #fbbf24; }
.hm-mock-dots span:nth-child(3) { background: #34d399; }

.hm-mock-url {
    flex: 1;
    margin-left: 8px;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--hm-faint);
    font-size: 0.72rem;
}

.hm-mock-body {
    padding: 22px 22px 20px;
}

.hm-mock-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hm-mock-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(199, 167, 108, 0.16);
    color: #e8d3a4;
}

.hm-mock-kicker strong {
    display: block;
    font-size: 0.95rem;
}

.hm-mock-kicker span {
    display: block;
    font-size: 0.78rem;
    color: var(--hm-faint);
}

.hm-check {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.hm-check li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.hm-check i {
    color: var(--hm-green);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.hm-marquee {
    position: relative;
    z-index: 1;
    margin-top: 56px;
    overflow: hidden;
    border-top: 1px solid rgba(199, 167, 108, 0.16);
    border-bottom: 1px solid rgba(199, 167, 108, 0.16);
    background: rgba(199, 167, 108, 0.06);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hm-marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    padding: 14px 0;
    animation: hm-marquee 28s linear infinite;
}

.hm-marquee-track span {
    font-family: var(--hm-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e8d3a4;
    white-space: nowrap;
}

@keyframes hm-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Stats */
.hm-stats {
    position: relative;
    z-index: 2;
    margin: -28px 0 0;
    padding: 0 0 8px;
    background: transparent;
}

.hm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.hm-stat {
    text-align: left;
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(199, 167, 108, 0.16);
    background:
        linear-gradient(180deg, rgba(199, 167, 108, 0.1), rgba(7, 11, 19, 0.55)),
        #101827;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hm-stat-num {
    display: block;
    font-family: var(--hm-display);
    font-size: clamp(1.7rem, 3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #f3e2b8, #c7a76c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
}

.hm-stat-lbl {
    font-size: 0.82rem;
    color: var(--hm-muted);
}

/* Pillars */
.hm-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hm-pillar {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    padding: 26px 24px 22px;
    border-radius: 26px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(199, 167, 108, 0.16), transparent 55%),
        linear-gradient(180deg, #141c2b, #0c1220);
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.hm-pillar--green {
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(16, 185, 129, 0.16), transparent 55%),
        linear-gradient(180deg, #141c2b, #0c1220);
}

.hm-pillar--violet {
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(139, 92, 246, 0.18), transparent 55%),
        linear-gradient(180deg, #141c2b, #0c1220);
}

.hm-pillar-idx {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--hm-display);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: rgba(248, 250, 252, 0.06);
    line-height: 1;
}

.hm-pillar:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 167, 108, 0.45);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.hm-pillar-ico {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    background: rgba(199, 167, 108, 0.16);
    color: #e8d3a4;
    font-size: 1.25rem;
    border: 1px solid rgba(199, 167, 108, 0.22);
}

.hm-pillar--green .hm-pillar-ico {
    background: rgba(16, 185, 129, 0.14);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.24);
}

.hm-pillar--violet .hm-pillar-ico {
    background: rgba(139, 92, 246, 0.14);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.24);
}

.hm-pillar h3 {
    font-family: var(--hm-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
}

.hm-pillar p {
    margin: 0 0 22px;
    color: var(--hm-muted);
    font-size: 0.95rem;
    flex: 1;
}

.hm-pillar-meta {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e8d3a4;
    font-size: 0.78rem;
    font-weight: 700;
}

.hm-pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hm-accent-soft) !important;
}

.hm-pillar:hover .hm-pillar-link i {
    transform: translateX(4px);
}

.hm-pillar-link i {
    transition: transform 0.2s;
}

/* Includes */
.hm-include-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hm-include {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 220px;
    padding: 24px 22px 22px;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background: #101827;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.hm-include:nth-child(1),
.hm-include:nth-child(2) {
    min-height: 240px;
    background:
        radial-gradient(ellipse 70% 60% at 0% 0%, rgba(199, 167, 108, 0.12), transparent 55%),
        #101827;
}

.hm-include-idx {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: var(--hm-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #c7a76c;
}

.hm-include:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 167, 108, 0.38);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hm-include-ico {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(199, 167, 108, 0.12);
    color: #e8d3a4;
    border: 1px solid rgba(199, 167, 108, 0.16);
}

.hm-include h3 {
    margin: 0 0 8px;
    font-family: var(--hm-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hm-include p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--hm-muted);
    line-height: 1.6;
}

/* Plans */
.hm-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.hm-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 0 22px;
    border-radius: 26px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background: #101827;
    overflow: hidden;
    transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.hm-plan:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 232, 240, 0.2);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.hm-plan--featured {
    border-color: rgba(199, 167, 108, 0.55);
    background:
        linear-gradient(180deg, rgba(199, 167, 108, 0.16), #101827 38%);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(199, 167, 108, 0.14);
    transform: translateY(-10px);
}

.hm-plan--featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(199, 167, 108, 0.24);
}

.hm-plan-top {
    padding: 28px 24px 8px;
}

.hm-plan-pricebox {
    margin: 8px 16px 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(199, 167, 108, 0.12);
}

.hm-plan--featured .hm-plan-pricebox {
    background: rgba(199, 167, 108, 0.1);
    border-color: rgba(199, 167, 108, 0.22);
}

.hm-plan-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d0b174, #9d793f);
    color: #111827;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
}

.hm-plan-offer {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.28);
    background: rgba(251, 191, 36, 0.1);
    color: var(--hm-gold);
    font-size: 0.72rem;
    font-weight: 700;
}

.hm-plan h3 {
    font-family: var(--hm-display);
    font-size: 1.28rem;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.hm-plan-desc {
    margin: 0;
    font-size: 0.86rem;
    color: var(--hm-muted);
}

.hm-price-old {
    font-size: 0.82rem;
    color: var(--hm-faint);
    text-decoration: line-through;
}

.hm-price {
    font-family: var(--hm-display);
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 4px 0 6px;
}

.hm-price small {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--hm-muted);
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0;
}

.hm-price span {
    font-size: 1.05rem;
    font-weight: 600;
    vertical-align: top;
}

.hm-plan-period {
    font-size: 0.82rem;
    color: var(--hm-muted);
    margin-bottom: 0;
}

.hm-plan-note {
    margin: 12px 0 0;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.22);
    background: rgba(16, 185, 129, 0.08);
    color: var(--hm-green);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.hm-plan-features {
    list-style: none;
    margin: 0 24px 22px;
    padding: 0;
    display: grid;
    gap: 11px;
    flex: 1;
}

.hm-plan .hm-btn {
    width: calc(100% - 32px);
    margin: 0 16px;
}

.hm-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.hm-plan-features i {
    color: var(--hm-green);
    margin-top: 3px;
    flex-shrink: 0;
}

.hm-plan-features strong {
    color: var(--hm-text);
}

.hm-plan-features small {
    display: block;
    color: var(--hm-faint);
    font-size: 0.76rem;
}

.hm-rubro {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(139, 92, 246, 0.28);
    background: rgba(139, 92, 246, 0.1);
    color: #c4b5fd;
    font-size: 0.72rem;
    font-weight: 700;
}

/* Platforms */
.hm-plat {
    position: relative;
    overflow: hidden;
}

.hm-plat::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(59, 130, 246, 0.1), transparent 60%);
}

.hm-plat-intro {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.hm-plat-free {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.08);
    flex-shrink: 0;
}

.hm-plat-free i {
    color: var(--hm-green);
}

.hm-plat-free small {
    display: block;
    font-size: 0.7rem;
    color: var(--hm-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hm-plat-free strong {
    display: block;
    font-size: 0.92rem;
}

.hm-plat-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hm-plat-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: -28px -24px 20px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.hm-plat-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border-radius: 26px;
    border: 1px solid var(--hm-border);
    background: #101827;
    overflow: hidden;
    transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.hm-plat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.hm-plat-card--blue:hover { border-color: rgba(59, 130, 246, 0.5); }
.hm-plat-card--green:hover { border-color: rgba(16, 185, 129, 0.5); }
.hm-plat-card--violet:hover { border-color: rgba(139, 92, 246, 0.5); }

.hm-plat-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 0;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hm-plat-card--blue .hm-plat-logo {
    background: rgba(59, 130, 246, 0.16);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.28);
}

.hm-plat-card--green .hm-plat-logo {
    background: rgba(16, 185, 129, 0.16);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.28);
}

.hm-plat-card--violet .hm-plat-logo {
    background: rgba(139, 92, 246, 0.16);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.28);
}

.hm-plat-name {
    font-family: var(--hm-display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}

.hm-plat-domain {
    font-size: 0.78rem;
    color: var(--hm-faint);
    margin-bottom: 0;
}

.hm-plat-desc {
    font-size: 0.9rem;
    color: var(--hm-muted);
    line-height: 1.7;
    margin: 0 0 16px;
    flex: 1;
}

.hm-plat-freebadge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    background: rgba(16, 185, 129, 0.1);
    color: var(--hm-green);
    font-size: 0.74rem;
    font-weight: 700;
}

.hm-plat-price {
    font-family: var(--hm-display);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.hm-plat-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--hm-muted);
}

.hm-plat-note {
    font-size: 0.76rem;
    color: var(--hm-faint);
    margin: 6px 0 16px;
}

.hm-plat-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.hm-plat-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: #cbd5e1;
}

.hm-plat-card--blue .hm-plat-features i { color: #60a5fa; }
.hm-plat-card--green .hm-plat-features i { color: #34d399; }
.hm-plat-card--violet .hm-plat-features i { color: #a78bfa; }

.hm-plat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
}

.hm-plat-card--blue .hm-plat-btn {
    border: 1px solid rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd !important;
}

.hm-plat-card--green .hm-plat-btn {
    border: 1px solid rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7 !important;
}

.hm-plat-card--violet .hm-plat-btn {
    border: 1px solid rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.12);
    color: #c4b5fd !important;
}

.hm-plat-or {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 10px;
    color: var(--hm-faint);
    font-size: 0.7rem;
}

.hm-plat-or::before,
.hm-plat-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--hm-border);
}

.hm-plat-wa {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px dashed var(--hm-border);
    color: var(--hm-muted) !important;
    font-size: 0.84rem;
}

.hm-plat-wa:hover {
    color: var(--hm-text) !important;
    border-color: rgba(255, 255, 255, 0.22);
}

.hm-plat-banner {
    position: relative;
    z-index: 1;
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 22px 26px;
    border-radius: 16px;
    border: 1px solid var(--hm-border);
    background: rgba(255, 255, 255, 0.03);
}

.hm-plat-banner strong {
    display: block;
    margin-bottom: 4px;
}

.hm-plat-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--hm-muted);
}

/* Testimonials */
.hm-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hm-testi {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 24px 22px;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background: #101827;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.hm-testi:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 167, 108, 0.32);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.hm-testi-quote {
    position: absolute;
    top: 8px;
    right: 18px;
    font-family: var(--hm-display);
    font-size: 5rem;
    line-height: 1;
    color: rgba(199, 167, 108, 0.12);
    pointer-events: none;
}

.hm-testi-who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hm-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(199, 167, 108, 0.16);
    color: #e8d3a4;
    font-size: 0.78rem;
    font-weight: 800;
    flex-shrink: 0;
}

.hm-stars {
    color: var(--hm-gold);
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.hm-testi blockquote {
    margin: 0 0 18px;
    font-size: 0.95rem;
    color: #d5deea;
    line-height: 1.7;
    flex: 1;
}

.hm-testi h3 {
    margin: 0;
    font-size: 0.92rem;
}

.hm-testi-who span {
    font-size: 0.8rem;
    color: var(--hm-muted);
}

/* Guarantee */
.hm-guarantee {
    padding: 64px 0;
    background:
        linear-gradient(180deg, rgba(199, 167, 108, 0.1), transparent 70%),
        var(--hm-bg-3);
    border-top: 1px solid rgba(199, 167, 108, 0.16);
    border-bottom: 1px solid rgba(199, 167, 108, 0.16);
}

.hm-guarantee-inner {
    display: flex;
    align-items: center;
    gap: 36px;
}

.hm-seal {
    width: 104px;
    height: 104px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(199, 167, 108, 0.45);
    display: grid;
    place-items: center;
    text-align: center;
    background: rgba(199, 167, 108, 0.1);
}

.hm-seal i {
    display: block;
    color: #e8d3a4;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.hm-seal b {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--hm-accent-soft);
}

.hm-guarantee h2 {
    font-family: var(--hm-display);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    margin: 0 0 8px;
    letter-spacing: -0.03em;
}

.hm-guarantee > .hm-wrap p,
.hm-guarantee-copy p {
    margin: 0 0 16px;
    color: var(--hm-muted);
}

.hm-gi-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
}

.hm-gi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.hm-gi i {
    color: var(--hm-green);
}

/* Process */
.hm-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hm-step {
    position: relative;
    padding: 26px 22px 24px;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background: #101827;
    min-height: 100%;
}

.hm-step::after {
    content: "";
    position: absolute;
    top: 46px;
    right: -10px;
    width: 20px;
    height: 1px;
    background: rgba(199, 167, 108, 0.35);
}

.hm-step:last-child::after {
    display: none;
}

.hm-step-num {
    width: auto;
    height: auto;
    border-radius: 0;
    display: block;
    margin-bottom: 18px;
    background: none;
    border: 0;
    color: #c7a76c;
    font-family: var(--hm-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.hm-step h3 {
    font-family: var(--hm-display);
    font-size: 1.05rem;
    margin: 0 0 8px;
}

.hm-step p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--hm-muted);
}

/* FAQ */
.hm-faq {
    max-width: 780px;
    margin: 0 auto;
}

.hm-faq-item {
    border: 1px solid rgba(226, 232, 240, 0.1);
    border-radius: 16px;
    margin-bottom: 10px;
    background: #101827;
    overflow: hidden;
}

.hm-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: 0;
    color: var(--hm-text);
    font-family: inherit;
    font-size: 0.97rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.hm-faq-q:hover {
    background: rgba(255, 255, 255, 0.03);
}

.hm-faq-q i {
    color: var(--hm-accent-soft);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.hm-faq-item.is-open .hm-faq-q i {
    transform: rotate(180deg);
}

.hm-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 22px;
    color: var(--hm-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    transition: grid-template-rows 0.28s ease;
}

.hm-faq-item.is-open .hm-faq-a {
    grid-template-rows: 1fr;
}

.hm-faq-a p {
    margin: 0;
    overflow: hidden;
    min-height: 0;
    padding-bottom: 0;
    transition: padding 0.28s ease;
}

.hm-faq-item.is-open .hm-faq-a p {
    padding-bottom: 20px;
}

/* Blog */
.hm-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.hm-blog {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background: #101827;
    overflow: hidden;
    transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.hm-blog:hover {
    border-color: rgba(199, 167, 108, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.hm-blog-img {
    position: relative;
    height: 168px;
    background: #0b1220;
    overflow: hidden;
}

.hm-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hm-blog:hover .hm-blog-img img {
    transform: scale(1.06);
}

.hm-blog-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hm-blog-cat {
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(199, 167, 108, 0.14);
    color: var(--hm-accent-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hm-blog h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    flex: 1;
}

.hm-blog p {
    margin: 0 0 14px;
    font-size: 0.82rem;
    color: var(--hm-muted);
}

.hm-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hm-accent-soft) !important;
}

.hm-read i {
    transition: transform 0.2s;
}

.hm-blog:hover .hm-read i {
    transform: translateX(4px);
}

/* Contact */
.hm-contact {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
}

.hm-ci {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.08);
    background: #101827;
}

.hm-ci-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(199, 167, 108, 0.12);
    color: var(--hm-accent);
    border: 1px solid rgba(199, 167, 108, 0.16);
    flex-shrink: 0;
}

.hm-ci h3 {
    margin: 0 0 2px;
    font-size: 0.88rem;
}

.hm-ci p,
.hm-ci a {
    margin: 0;
    font-size: 0.86rem;
    color: var(--hm-muted);
}

.hm-ci a:hover {
    color: var(--hm-text);
}

.hm-form {
    display: grid;
    gap: 12px;
    padding: 26px 24px;
    border-radius: 24px;
    border: 1px solid rgba(199, 167, 108, 0.16);
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(199, 167, 108, 0.1), transparent 55%),
        #101827;
}

.hm-form input,
.hm-form select,
.hm-form textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background: rgba(7, 11, 19, 0.55);
    color: var(--hm-text);
    font: inherit;
    font-size: 0.93rem;
    outline: none;
}

.hm-form input:focus,
.hm-form select:focus,
.hm-form textarea:focus {
    border-color: var(--hm-accent);
}

.hm-form select option {
    background: #0a1628;
}

.hm-form-btns {
    display: flex;
    gap: 12px;
}

/* CTA */
.hm-cta {
    padding: 88px 0;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 80% at 50% 120%, rgba(199, 167, 108, 0.16), transparent 60%),
        var(--hm-bg-3);
    border-top: 1px solid rgba(199, 167, 108, 0.16);
}

.hm-cta h2 {
    font-family: var(--hm-display);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}

.hm-cta p {
    max-width: 520px;
    margin: 0 auto 28px;
    color: var(--hm-muted);
}

/* Modal */
.hm-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(2, 6, 16, 0.72);
}

.hm-modal.is-open {
    display: flex;
}

.hm-modal-box {
    position: relative;
    width: min(420px, 100%);
    padding: 40px 32px 32px;
    border-radius: 20px;
    border: 1px solid var(--hm-border-strong);
    background: #0a1628;
    text-align: center;
}

.hm-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: none;
    color: var(--hm-muted);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

.hm-modal-box i.fa-comments {
    color: var(--hm-accent);
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.hm-modal-box h2 {
    font-family: var(--hm-display);
    font-size: 1.25rem;
    margin: 0 0 10px;
}

.hm-modal-box p {
    margin: 0 0 22px;
    color: var(--hm-muted);
    font-size: 0.93rem;
}

.hm-modal-note {
    margin: 12px 0 0 !important;
    font-size: 0.78rem !important;
    color: var(--hm-faint) !important;
}

/* Portfolio block inside home wrap */
.hm-section .dp-portfolio-wrap--home {
    padding-left: 0;
    padding-right: 0;
}

.hm-section .dp-portfolio-home-block {
    margin-top: 64px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hm-hero-inner,
    .hm-pillars,
    .hm-include-grid,
    .hm-plans,
    .hm-plat-grid,
    .hm-testi-grid,
    .hm-contact {
        grid-template-columns: 1fr 1fr;
    }

    .hm-hero-inner {
        gap: 40px;
    }

    .hm-process,
    .hm-blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hm-plat-intro,
    .hm-guarantee-inner,
    .hm-plat-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hm-head--left,
    .hm-plat-intro .hm-head {
        text-align: left;
    }

    .hm-plan--featured,
    .hm-plan--featured.hm-reveal.is-in {
        transform: none;
    }

    .hm-step:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 720px) {
    .hm-section {
        padding: 72px 0;
    }

    .hm-hero {
        padding: 112px 0 56px;
        min-height: 0;
    }

    .hm-hero-inner,
    .hm-pillars,
    .hm-include-grid,
    .hm-plans,
    .hm-plat-grid,
    .hm-testi-grid,
    .hm-process,
    .hm-blog-grid,
    .hm-contact,
    .hm-stats-grid {
        grid-template-columns: 1fr;
    }

    .hm-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hm-hero-actions,
    .hm-form-btns {
        flex-direction: column;
    }

    .hm-hero-actions .hm-btn,
    .hm-form-btns .hm-btn {
        width: 100%;
    }

    .hm-hero h1 {
        font-size: 2.15rem;
    }

    .hm-plan--featured,
    .hm-plan--featured:hover,
    .hm-plan--featured.hm-reveal.is-in {
        transform: none;
    }

    .hm-step::after {
        display: none;
    }

    .hm-pillar,
    .hm-include {
        min-height: 0;
    }
}

@media (max-width: 380px) {
    .hm-stats-grid {
        grid-template-columns: 1fr;
    }
}

html[data-dp-home] .dp-nav {
    background: rgba(7, 11, 19, 0.78);
    border-bottom-color: rgba(199, 167, 108, 0.12);
}

html[data-dp-home] .dp-logo-dot {
    color: #c7a76c;
}

html[data-dp-home] .dp-nav-links a.active,
html[data-dp-home] .dp-nav-links a:hover {
    background: rgba(199, 167, 108, 0.12);
    color: #f8edd4 !important;
}

/* Animations */
.hm-hero-inner > div {
    animation: hm-in 0.7s ease both;
}

.hm-hero-inner > aside {
    animation: hm-in 0.75s ease 0.12s both;
}

.hm-hero-glow {
    animation: hm-glow 9s ease-in-out infinite alternate;
}

.hm-hero-glow--2 {
    animation-duration: 11s;
    animation-direction: alternate-reverse;
}

.hm-mock {
    animation: hm-float 5.5s ease-in-out infinite;
}

.hm-btn--wa {
    animation: hm-pulse 2.8s ease-in-out infinite;
}

.hm-seal {
    animation: hm-seal 6s ease-in-out infinite;
}

.hm-marquee:hover .hm-marquee-track {
    animation-play-state: paused;
}

.hm-reveal {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--d, 0ms);
}

.hm-reveal.is-in,
.hm-no-motion .hm-reveal {
    opacity: 1;
    transform: none;
}

.hm-plan--featured.hm-reveal.is-in {
    transform: translateY(-10px);
}

@media (hover: hover) and (pointer: fine) {
    .hm-plan--featured.hm-reveal.is-in:hover {
        transform: translateY(-14px);
    }
}

.hm-pillar-ico,
.hm-include-ico,
.hm-plat-logo,
.hm-ci-ico {
    transition: transform 0.25s ease;
}

@keyframes hm-in {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes hm-glow {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-28px, 18px, 0) scale(1.08); }
}

@keyframes hm-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
}

@keyframes hm-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28); }
    50% { box-shadow: 0 10px 32px rgba(37, 211, 102, 0.48); }
}

@keyframes hm-seal {
    0%, 100% { transform: rotate(-4deg); }
    50% { transform: rotate(4deg); }
}

@media (hover: hover) and (pointer: fine) {
    .hm-pillar:hover .hm-pillar-ico,
    .hm-include:hover .hm-include-ico,
    .hm-plat-card:hover .hm-plat-logo,
    .hm-ci:hover .hm-ci-ico {
        transform: scale(1.08);
    }
}

@media (hover: none) {
    .hm-pillar:hover,
    .hm-include:hover,
    .hm-plan:hover,
    .hm-plat-card:hover,
    .hm-testi:hover,
    .hm-blog:hover,
    .hm-btn:hover {
        transform: none;
        box-shadow: none;
    }

    .hm-plan--featured:hover {
        transform: none;
    }

    .hm-blog:hover .hm-blog-img img {
        transform: none;
    }
}

@media (max-width: 720px) {
    .hm-reveal {
        transform: translate3d(0, 14px, 0);
    }

    .hm-hero-glow,
    .hm-mock,
    .hm-seal {
        animation: none;
    }

    .hm-btn--wa {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html:is([data-dp-home], [data-dp-projects]) {
        scroll-behavior: auto;
    }

    .hm-btn,
    .hm-pillar,
    .hm-blog,
    .hm-plan,
    .hm-faq-a,
    .hm-faq-a p,
    .hm-reveal {
        transition: none;
    }

    .hm-btn:hover,
    .hm-pillar:hover,
    .hm-blog:hover,
    .hm-plan:hover,
    .hm-plan--featured,
    .hm-plan--featured:hover {
        transform: none;
    }

    .hm-marquee-track,
    .hm-hero-glow,
    .hm-mock,
    .hm-btn--wa,
    .hm-seal,
    .hm-hero-inner > div,
    .hm-hero-inner > aside {
        animation: none;
    }

    .hm-reveal {
        opacity: 1;
        transform: none;
    }
}
