/* DroppMaster 1.0.0 */
:root {
    --dm-black: #070707;
    --dm-black-soft: #0d0d0d;
    --dm-surface: #141414;
    --dm-surface-2: #1b1b1b;
    --dm-border: #303030;
    --dm-yellow: #f4bd26;
    --dm-yellow-strong: #ffc928;
    --dm-text: #ffffff;
    --dm-muted: #bcbcbc;
    --dm-danger: #e95c55;
    --dm-radius: 16px;
    --dm-shadow: 0 18px 55px rgba(0,0,0,.32);
    --dm-container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--dm-black);
    color: var(--dm-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.dm-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { clip: auto!important; width: auto; height: auto; background: #fff; color: #111; padding: 12px 18px; left: 10px; top: 10px; z-index: 99999; }
.dm-container { width: min(calc(100% - 40px), var(--dm-container)); margin-inline: auto; }
.dm-content-narrow { width: min(calc(100% - 40px), 820px); }

.dm-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,10,10,.92);
    border-bottom: 1px solid rgba(255,255,255,.09);
    backdrop-filter: blur(16px);
}
.admin-bar .dm-site-header { top: 32px; }
.dm-header-inner { min-height: 76px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.dm-site-branding { min-width: 150px; }
.custom-logo { max-width: 145px; max-height: 52px; width: auto; }
.dm-brand-text { display: inline-flex; flex-direction: column; font-style: italic; transform: skew(-6deg); line-height: .8; letter-spacing: -1px; }
.dm-brand-top { font-size: 20px; font-weight: 950; }
.dm-brand-bottom { font-size: 16px; font-weight: 950; color: var(--dm-yellow); text-shadow: 1px 2px 0 rgba(255,255,255,.12); }
.dm-nav-list { display: flex; justify-content: center; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.dm-nav-list a { color: #e3e3e3; font-size: 14px; transition: color .2s ease; }
.dm-nav-list a:hover, .dm-nav-list .current-menu-item > a { color: var(--dm-yellow); }
.dm-header-actions { display: flex; gap: 10px; align-items: center; }
.dm-menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.dm-menu-toggle > span:not(.screen-reader-text) { display: block; width: 24px; height: 2px; margin: 5px 0; background: #fff; border-radius: 3px; }

.dm-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 11px 19px; border: 1px solid transparent; border-radius: 9px; font-weight: 800; font-size: 14px; line-height: 1.1; text-transform: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.dm-button:hover { transform: translateY(-2px); }
.dm-button-primary { background: linear-gradient(180deg, var(--dm-yellow-strong), #e7a900); color: #15110a; box-shadow: 0 9px 28px rgba(244,189,38,.2); }
.dm-button-primary:hover { box-shadow: 0 12px 34px rgba(244,189,38,.32); }
.dm-button-outline { border-color: #737373; background: rgba(255,255,255,.02); color: #fff; }
.dm-button-outline:hover { border-color: var(--dm-yellow); color: var(--dm-yellow); }
.dm-button-dark { background: #111; color: #fff; border-color: #111; }
.dm-button-small { min-height: 40px; padding: 9px 14px; font-size: 13px; }
.dm-button-large { min-height: 56px; padding: 16px 26px; text-transform: uppercase; letter-spacing: .01em; }
.dm-icon { display: inline-flex; width: 24px; height: 24px; color: var(--dm-yellow); flex: 0 0 auto; }
.dm-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.dm-hero { position: relative; min-height: 650px; display: flex; align-items: center; overflow: hidden; background-image: linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(6,6,6,.88) 50%, rgba(6,6,6,.72) 100%), var(--dm-hero-image, radial-gradient(circle at 78% 38%, rgba(244,189,38,.11), transparent 35%)); background-size: cover; background-position: center; border-bottom: 1px solid rgba(244,189,38,.15); }
.dm-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 45%, rgba(244,189,38,.13), transparent 26%), radial-gradient(circle at 22% 0%, rgba(255,255,255,.055), transparent 22%); pointer-events: none; }
.dm-hero-grid { position: absolute; inset: 0; opacity: .23; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to right, transparent, #000 25%, #000 100%); }
.dm-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: 68px; align-items: center; padding-block: 88px; }
.dm-eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--dm-yellow); font-weight: 850; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.dm-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--dm-yellow); }
.dm-hero h1 { max-width: 760px; margin: 0 0 18px; font-size: clamp(42px, 5vw, 70px); line-height: 1.04; letter-spacing: -.045em; }
.dm-hero-copy > p { max-width: 660px; margin: 0 0 28px; color: #c9c9c9; font-size: clamp(18px, 2vw, 22px); }
.dm-hero-copy small { display: block; margin-top: 14px; color: #959595; }
.dm-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.dm-hero-panel { border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: linear-gradient(150deg, rgba(35,35,35,.92), rgba(12,12,12,.96)); padding: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.48); transform: perspective(900px) rotateY(-4deg) rotateX(1deg); }
.dm-hero-panel-header { display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #333; padding-bottom: 16px; }
.dm-hero-panel-header > span { width: 9px; height: 9px; border-radius: 50%; background: #555; }
.dm-hero-panel-header > span:first-child { background: var(--dm-yellow); }
.dm-hero-panel-header strong { margin-left: auto; color: #aaa; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.dm-dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.dm-dashboard-stats > div { padding: 14px; border: 1px solid #2f2f2f; background: #111; border-radius: 11px; }
.dm-dashboard-stats span { display: block; color: #8f8f8f; font-size: 11px; }
.dm-dashboard-stats strong { display: block; margin-top: 5px; font-size: 22px; }
.dm-mini-chart { display: flex; align-items: end; gap: 10px; height: 160px; padding: 22px; border-radius: 12px; background: linear-gradient(180deg, rgba(244,189,38,.08), transparent), #0d0d0d; border: 1px solid #2b2b2b; }
.dm-mini-chart span { flex: 1; min-height: 12%; background: linear-gradient(180deg, var(--dm-yellow-strong), #9c6d00); border-radius: 5px 5px 2px 2px; box-shadow: 0 0 20px rgba(244,189,38,.1); }
.dm-hero-panel-footer { display: flex; justify-content: space-between; gap: 12px; padding-top: 15px; color: #bdbdbd; font-size: 12px; }
.dm-hero-panel-footer span { display: inline-flex; align-items: center; gap: 5px; }
.dm-hero-panel-footer .dm-icon { width: 17px; height: 17px; }

.dm-section { padding-block: 92px; position: relative; }
.dm-section-heading { margin-bottom: 38px; }
.dm-section-heading-center { max-width: 720px; margin-inline: auto; text-align: center; }
.dm-section-heading-center .dm-eyebrow::before { display: none; }
.dm-section-heading h2 { margin: 0 0 10px; font-size: clamp(34px, 4vw, 48px); line-height: 1.08; letter-spacing: -.035em; }
.dm-section-heading h2 em { color: var(--dm-yellow); font-style: normal; }
.dm-section-heading p { margin: 0; color: var(--dm-muted); }
.dm-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.dm-text-link { color: var(--dm-yellow); font-weight: 750; }

.dm-how { background: linear-gradient(180deg, #0b0b0b, #101010); }
.dm-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 13px; }
.dm-step-card { position: relative; min-height: 265px; padding: 28px 23px; border: 1px solid var(--dm-border); border-radius: var(--dm-radius); background: linear-gradient(145deg, #1b1b1b, #111); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.dm-step-card:hover { border-color: rgba(244,189,38,.55); }
.dm-step-number { position: absolute; top: -15px; left: 22px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--dm-yellow); color: #17120a; font-weight: 950; border: 4px solid #101010; }
.dm-step-icon { width: 42px; height: 42px; margin: 15px 0 20px; }
.dm-step-card h3 { margin: 0 0 9px; font-size: 19px; }
.dm-step-card p { margin: 0; color: #aaa; font-size: 14px; }
.dm-step-arrow { color: var(--dm-yellow); font-size: 30px; font-weight: 900; }

.dm-products-section { background: radial-gradient(circle at 50% 0, rgba(244,189,38,.07), transparent 28%), #090909; }
.dm-product-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 25px; }
.dm-product-filters button { padding: 9px 14px; border-radius: 999px; border: 1px solid #353535; background: #151515; color: #d4d4d4; cursor: pointer; }
.dm-product-filters button span { color: #767676; margin-left: 4px; }
.dm-product-filters button.is-active, .dm-product-filters button:hover { background: var(--dm-yellow); color: #17120a; border-color: var(--dm-yellow); }
.dm-product-filters button.is-active span, .dm-product-filters button:hover span { color: #5b4500; }
.dm-products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.dm-product-card { display: flex; flex-direction: column; min-width: 0; border: 1px solid #343434; border-radius: 14px; background: linear-gradient(150deg, #1c1c1c, #111); overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,.22); transition: transform .22s ease, border-color .22s ease; }
.dm-product-card:hover { transform: translateY(-5px); border-color: rgba(244,189,38,.55); }
.dm-product-card[hidden] { display: none; }
.dm-product-image { position: relative; display: block; aspect-ratio: 1/1; padding: 10px; background: #e8e5df; overflow: hidden; }
.dm-product-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 9px; }
.dm-product-badge, .dm-product-discount { position: absolute; top: 12px; z-index: 2; padding: 5px 8px; border-radius: 6px; font-size: 10px; font-weight: 900; letter-spacing: .03em; }
.dm-product-badge { right: 12px; background: var(--dm-yellow); color: #231a00; }
.dm-product-discount { left: 12px; background: var(--dm-danger); color: #fff; }
.dm-product-body { display: flex; flex-direction: column; flex: 1; padding: 16px; }
.dm-product-category { color: #929292; font-size: 11px; }
.dm-product-body h3 { margin: 6px 0 12px; font-size: 16px; line-height: 1.3; }
.dm-product-body h3 a:hover { color: var(--dm-yellow); }
.dm-product-pricing { display: flex; flex-direction: column; margin-top: auto; }
.dm-product-pricing del { color: #777; font-size: 12px; }
.dm-product-pricing strong { color: var(--dm-yellow); font-size: 21px; }
.dm-product-actions { display: flex; gap: 8px; margin-top: 14px; }
.dm-button-product { flex: 1; min-height: 42px; padding: 10px 10px; font-size: 11px; text-transform: uppercase; }
.dm-copy-button { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #3a3a3a; border-radius: 8px; background: #141414; cursor: pointer; }
.dm-copy-button .dm-icon { width: 18px; height: 18px; }
.dm-copy-button:hover, .dm-copy-button.is-copied { border-color: var(--dm-yellow); background: rgba(244,189,38,.08); }

.dm-benefits { background: #101010; }
.dm-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dm-benefit-card { display: flex; gap: 17px; min-height: 160px; padding: 24px; border: 1px solid #333; border-radius: 14px; background: linear-gradient(145deg, #1a1a1a, #111); }
.dm-benefit-card > .dm-icon { width: 37px; height: 37px; }
.dm-benefit-card h3 { margin: 0 0 8px; font-size: 18px; }
.dm-benefit-card p { margin: 0; color: #a7a7a7; font-size: 14px; }

.dm-partner-reasons { background: radial-gradient(circle at 50% 80%, rgba(244,189,38,.08), transparent 35%), #090909; }
.dm-reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dm-reasons-grid article { padding: 32px; border: 1px solid #353535; border-radius: 15px; background: #151515; text-align: center; }
.dm-reasons-grid .dm-icon { width: 46px; height: 46px; margin-bottom: 18px; }
.dm-reasons-grid h3 { margin: 0 0 10px; text-transform: uppercase; font-size: 18px; }
.dm-reasons-grid p { margin: 0; color: #aaa; }
.dm-center-action { text-align: center; margin-top: 32px; }

.dm-footer-cta { background: var(--dm-yellow); color: #17120a; }
.dm-footer-cta-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.dm-footer-cta strong { font-size: clamp(18px, 2.5vw, 27px); }
.dm-site-footer { background: #080808; border-top: 1px solid #232323; }
.dm-footer-main { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 55px; padding-block: 58px; }
.dm-footer-brand p { max-width: 440px; color: #929292; }
.dm-footer-links h2, .dm-footer-contact h2 { margin: 0 0 13px; font-size: 14px; text-transform: uppercase; color: var(--dm-yellow); letter-spacing: .1em; }
.dm-footer-menu { list-style: none; margin: 0; padding: 0; }
.dm-footer-menu li + li { margin-top: 7px; }
.dm-footer-menu a, .dm-footer-contact a { color: #bdbdbd; }
.dm-footer-menu a:hover, .dm-footer-contact a:hover { color: var(--dm-yellow); }
.dm-social-links { display: flex; gap: 14px; margin-top: 14px; }
.dm-footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-block: 20px; border-top: 1px solid #242424; color: #747474; font-size: 12px; }
.dm-footer-bottom p { margin: 0; }

.dm-page-hero { padding: 110px 0 65px; background: radial-gradient(circle at 70% 10%, rgba(244,189,38,.14), transparent 30%), #0b0b0b; border-bottom: 1px solid #242424; }
.dm-page-hero-small { padding: 85px 0 45px; }
.dm-page-hero h1 { margin: 0; font-size: clamp(38px, 5vw, 60px); line-height: 1.05; }
.dm-page-hero p { color: #aaa; }
.dm-single-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.dm-single-product-image { position: relative; border-radius: 20px; overflow: hidden; background: #e7e4df; }
.dm-single-product-image img { width: 100%; }
.dm-single-product-content h1 { font-size: clamp(36px, 5vw, 55px); line-height: 1.07; margin: 20px 0; }
.dm-back-link { color: var(--dm-yellow); }
.dm-product-pricing-large { margin: 0 0 25px; }
.dm-product-pricing-large strong { font-size: 34px; }
.dm-single-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.dm-disclaimer { color: #818181; font-size: 12px; }
.dm-entry-content { color: #d0d0d0; }
.dm-entry-content h2, .dm-entry-content h3 { color: #fff; line-height: 1.25; }
.dm-entry-content a { color: var(--dm-yellow); text-decoration: underline; }
.dm-entry-content input:not([type=submit]), .dm-entry-content textarea, .dm-entry-content select { width: 100%; padding: 13px; border: 1px solid #3a3a3a; border-radius: 8px; background: #151515; color: #fff; }
.dm-entry-content input[type=submit], .dm-entry-content button[type=submit] { padding: 13px 20px; border: 0; border-radius: 8px; background: var(--dm-yellow); color: #17120a; font-weight: 800; cursor: pointer; }
.dm-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dm-post-card { border: 1px solid #333; border-radius: 14px; background: #151515; overflow: hidden; }
.dm-post-card > div { padding: 20px; }
.dm-post-card h2 { line-height: 1.2; }
.dm-post-card p { color: #aaa; }
.dm-pagination { margin-top: 35px; }
.dm-pagination .nav-links { display: flex; justify-content: center; gap: 7px; }
.dm-pagination .page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; border: 1px solid #333; border-radius: 8px; }
.dm-pagination .current { background: var(--dm-yellow); color: #17120a; border-color: var(--dm-yellow); }
.dm-empty-state, .dm-error-page { text-align: center; }
.dm-error-page { min-height: 62vh; display: flex; align-items: center; }
.dm-error-page h1 { font-size: clamp(40px, 6vw, 70px); line-height: 1.05; }
.dm-article h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.07; }
.dm-article-image { margin: 30px 0; border-radius: 16px; overflow: hidden; }

@media (max-width: 1050px) {
    .dm-header-inner { grid-template-columns: auto auto 1fr; }
    .dm-menu-toggle { display: block; justify-self: end; grid-column: 3; }
    .dm-primary-navigation { position: fixed; inset: 77px 0 auto 0; display: none; background: #0b0b0b; border-bottom: 1px solid #333; padding: 25px 20px; }
    .dm-primary-navigation.is-open { display: block; }
    .dm-nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .dm-nav-list a { display: block; padding: 12px 5px; font-size: 16px; border-bottom: 1px solid #222; }
    .dm-header-actions { grid-row: 1; grid-column: 2; }
    .dm-hero-inner { grid-template-columns: 1fr; }
    .dm-hero-panel { max-width: 760px; transform: none; }
    .dm-steps { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .dm-step-arrow { display: none; }
    .dm-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dm-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
    .admin-bar .dm-site-header { top: 46px; }
    .admin-bar .dm-primary-navigation { top: 123px; }
}

@media (max-width: 720px) {
    .dm-container { width: min(calc(100% - 28px), var(--dm-container)); }
    .dm-header-inner { min-height: 68px; grid-template-columns: 1fr auto; gap: 10px; }
    .dm-site-branding { min-width: 0; }
    .dm-header-actions { display: none; }
    .dm-menu-toggle { grid-column: 2; }
    .dm-primary-navigation { top: 68px; height: calc(100vh - 68px); overflow-y: auto; }
    .dm-hero { min-height: auto; }
    .dm-hero-inner { padding-block: 66px; gap: 45px; }
    .dm-hero h1 { font-size: 43px; }
    .dm-button-large { width: 100%; }
    .dm-dashboard-stats { grid-template-columns: 1fr; }
    .dm-mini-chart { height: 125px; padding: 16px; }
    .dm-hero-panel-footer { flex-direction: column; }
    .dm-section { padding-block: 68px; }
    .dm-heading-row { align-items: start; flex-direction: column; }
    .dm-steps, .dm-benefit-grid, .dm-reasons-grid, .dm-products-grid, .dm-post-grid, .dm-footer-main, .dm-single-product-grid { grid-template-columns: 1fr; }
    .dm-step-card { min-height: auto; }
    .dm-product-image { aspect-ratio: 4/3; }
    .dm-footer-cta-inner, .dm-footer-bottom { flex-direction: column; align-items: flex-start; padding-block: 20px; }
    .dm-footer-cta .dm-button { width: 100%; }
    .dm-footer-main { gap: 30px; }
    .dm-single-actions .dm-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
