/* =======================================================
   STARIS Services — Global styles
   ======================================================= */

:root {
    --brand-bg:        #0B0A10;
    --brand-bg-2:      #14111c;
    --brand-surface:   #181522;
    --brand-surface-2: #221E2C;
    --brand-border:    rgba(255, 255, 255, 0.08);
    --brand-border-2:  rgba(255, 255, 255, 0.14);
    --brand-primary:   #FF8845;
    --brand-primary-2: #FFA86B;
    --brand-accent:    #F5C474;
    --brand-text:      #F0EAE0;
    --brand-text-dim:  #9D9388;

    /* Legacy aliases for backwards compatibility */
    --staris-blue:    var(--brand-primary);
    --staris-gold:    var(--brand-accent);
    --staris-dark:    var(--brand-bg);
    --staris-card-bg: var(--brand-surface);
    --staris-text:    var(--brand-text);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    color: var(--brand-text);
    background-color: var(--brand-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; margin: 0; }

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover, a:focus { color: var(--brand-primary-2); }

::selection { background: var(--brand-primary); color: #fff; }

img { max-width: 100%; height: auto; }

.x-main { display: block; }

/* =======================================================
   NAVBAR
   ======================================================= */

.staris-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 0.9rem 0;
    background: transparent;
    transition: background-color .25s ease, border-color .25s ease, padding .25s ease;
    border-bottom: 1px solid transparent;
}
.staris-nav.is-scrolled {
    background: rgba(11, 10, 16, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--brand-border);
    padding: 0.55rem 0;
}
.staris-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.staris-nav-brand img {
    height: 40px;
    width: auto;
    display: block;
}
.staris-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.staris-nav-menu a {
    color: var(--brand-text);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color .2s ease, background-color .2s ease;
}
.staris-nav-menu a:hover {
    color: var(--brand-accent);
    background: rgba(255, 255, 255, 0.04);
}
.staris-nav-menu a.staris-nav-cta {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-2) 100%);
    color: #1a0d04;
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    margin-left: 0.4rem;
    box-shadow: 0 6px 16px rgba(255, 136, 69, 0.35);
}
.staris-nav-menu a.staris-nav-cta:hover {
    color: #1a0d04;
    background: linear-gradient(135deg, var(--brand-primary-2) 0%, var(--brand-primary) 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(255, 136, 69, 0.45);
}

.staris-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}
.staris-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand-text);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 880px) {
    .staris-nav-toggle { display: inline-flex; }
    .staris-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 1rem;
        background: rgba(11, 10, 16, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--brand-border);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform .2s ease, opacity .2s ease;
    }
    .staris-nav.is-open .staris-nav-menu {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .staris-nav-menu a { text-align: center; }
    .staris-nav-menu a.staris-nav-cta { margin-left: 0; margin-top: 0.4rem; }
}

/* =======================================================
   FOOTER
   ======================================================= */

.staris-footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--brand-border);
    background: linear-gradient(180deg, var(--brand-bg) 0%, #060509 100%);
    color: var(--brand-text-dim);
}
.staris-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--brand-border);
}
.staris-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.staris-footer-brand img { height: 34px; }
.staris-footer-tag {
    color: var(--brand-text-dim);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}
.staris-footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.staris-footer-links a {
    color: var(--brand-text-dim);
    font-size: 0.9rem;
    transition: color .2s ease;
}
.staris-footer-links a:hover { color: var(--brand-accent); }

.staris-footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.83rem;
    color: var(--brand-text-dim);
}
.staris-footer-bottom a { color: var(--brand-text-dim); }
.staris-footer-bottom a:hover { color: var(--brand-accent); }

/* =======================================================
   IMPRESSUM MODAL
   ======================================================= */

.staris-modal {
    background: var(--brand-surface);
    color: var(--brand-text);
    border: 1px solid var(--brand-border);
    border-radius: 18px;
}
.staris-modal .modal-header {
    border-bottom: 1px solid var(--brand-border);
}
.staris-modal .modal-footer {
    border-top: 1px solid var(--brand-border);
}
.staris-modal h6 {
    color: var(--brand-accent);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.staris-modal h6:first-child { margin-top: 0; }
.staris-modal p { color: var(--brand-text); margin-bottom: 0.85rem; line-height: 1.7; font-size: 0.95rem; }
.staris-modal a { color: var(--brand-primary); }
.staris-modal a:hover { color: var(--brand-primary-2); }
.staris-modal hr { border-color: var(--brand-border); margin: 1.5rem 0; opacity: 1; }
.staris-modal .staris-muted { color: var(--brand-text-dim) !important; letter-spacing: 0.08em; }

/* =======================================================
   LANDING PAGE (Digital Menu)
   ======================================================= */

/* ---------- HERO ---------- */
.dm-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 6rem;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 136, 69, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 8% 90%, rgba(245, 196, 116, 0.18) 0%, transparent 40%),
        linear-gradient(180deg, var(--brand-bg) 0%, var(--brand-bg-2) 100%);
}
.dm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
    pointer-events: none;
}
.dm-hero-inner { position: relative; z-index: 2; }

.dm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 136, 69, 0.1);
    border: 1px solid rgba(255, 136, 69, 0.4);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffd5b6;
    margin-bottom: 1.5rem;
}
.dm-eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
    box-shadow: 0 0 12px var(--brand-accent);
    animation: dm-pulse 2s ease-in-out infinite;
}
@keyframes dm-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.6; }
}

.dm-headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.dm-headline .accent {
    background: linear-gradient(135deg, var(--brand-accent) 0%, #ffdca1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.dm-subhead {
    font-size: 1.15rem;
    color: var(--brand-text-dim);
    max-width: 32rem;
    margin-bottom: 2rem;
}

.dm-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.dm-btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-2) 100%);
    border: 0;
    color: #1a0d04;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(255, 136, 69, 0.35);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    cursor: pointer;
}
.dm-btn-primary:hover {
    color: #1a0d04;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 136, 69, 0.5);
    filter: brightness(1.05);
}
.dm-btn-block { width: 100%; padding: 1rem 1.6rem; font-size: 1rem; }
.dm-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-text);
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all .2s ease;
}
.dm-btn-ghost:hover {
    color: var(--brand-accent);
    border-color: var(--brand-accent);
    background: rgba(245, 196, 116, 0.06);
}

.dm-microproof {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: var(--brand-text-dim);
}
.dm-microproof i { color: var(--brand-accent); margin-right: 0.4rem; }

/* ---------- Inline info tooltip ---------- */
.dm-tip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    margin-left: 0.35rem;
    border-radius: 50%;
    color: var(--brand-text-dim);
    cursor: help;
    transition: color .2s ease;
    outline: none;
}
.dm-tip > i {
    font-size: 0.95rem;
    margin: 0 !important;
    color: inherit;
}
.dm-tip:hover,
.dm-tip:focus,
.dm-tip:focus-within { color: var(--brand-accent); }

.dm-tip-body {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: 280px;
    max-width: 80vw;
    background: var(--brand-surface-2);
    color: var(--brand-text);
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    border: 1px solid var(--brand-border-2);
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: left;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 20;
    white-space: normal;
}
.dm-tip-body::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--brand-surface-2);
}
.dm-tip-body strong { color: var(--brand-accent); }

.dm-tip:hover .dm-tip-body,
.dm-tip:focus .dm-tip-body,
.dm-tip:focus-within .dm-tip-body {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---------- Phone mockup ---------- */
.dm-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}
.dm-phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1622;
    border-radius: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 6px #0d0a14,
        0 0 0 7px rgba(255, 255, 255, 0.06);
    padding: 14px;
    transform: rotate(-4deg) rotateY(-8deg);
    animation: dm-float 6s ease-in-out infinite;
}
@keyframes dm-float {
    0%, 100% { transform: rotate(-4deg) rotateY(-8deg) translateY(0); }
    50%      { transform: rotate(-4deg) rotateY(-8deg) translateY(-12px); }
}
.dm-phone::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #0d0a14;
    border-radius: 999px;
    z-index: 3;
}
.dm-phone-screen {
    background: linear-gradient(180deg, #14111c 0%, #1a1622 100%);
    border-radius: 26px;
    height: 100%;
    padding: 50px 16px 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dm-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--brand-border);
    margin-bottom: 6px;
}
.dm-screen-header .title { font-weight: 700; font-size: 0.95rem; }
.dm-screen-header .badge-live {
    font-size: 0.65rem;
    background: rgba(80, 220, 140, 0.15);
    color: #6fe39a;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(111, 227, 154, 0.3);
}
.dm-menu-tabs {
    display: flex; gap: 6px;
    font-size: 0.7rem;
    margin-bottom: 4px;
}
.dm-menu-tabs span {
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 999px;
    color: var(--brand-text-dim);
}
.dm-menu-tabs span.on {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-2) 100%);
    color: #1a0d04;
    font-weight: 600;
}
.dm-menu-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    align-items: center;
}
.dm-menu-item .thumb {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5c474 0%, #c77b58 100%);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.dm-menu-item .info { flex: 1; min-width: 0; }
.dm-menu-item .info .n {
    font-size: 0.78rem; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dm-menu-item .info .d {
    font-size: 0.65rem; color: var(--brand-text-dim);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dm-menu-item .price { font-size: 0.8rem; font-weight: 700; color: var(--brand-accent); }
.dm-order-btn {
    margin-top: auto;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-2) 100%);
    color: #1a0d04;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 6px 18px rgba(255, 136, 69, 0.35);
}

/* Floating chip elements */
.dm-chip {
    position: absolute;
    background: rgba(24, 21, 34, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--brand-border);
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 3;
    animation: dm-bob 7s ease-in-out infinite;
}
@keyframes dm-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.dm-chip i { color: var(--brand-accent); }
.dm-chip-qr   { top: 8%;     left: -10%;  animation-delay: 0.5s; }
.dm-chip-nfc  { bottom: 20%; right: -15%; animation-delay: 1.5s; }
.dm-chip-live { bottom: 6%;  left: -5%;   animation-delay: 1s; }
.dm-chip-live i { color: #6fe39a; }

@media (max-width: 992px) {
    .dm-hero { padding: 4rem 0 4rem; }
    .dm-phone-wrap { margin-top: 3rem; }
}

/* ---------- Video placeholder ---------- */
.dm-video-section { padding: 4rem 0; }
.dm-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--brand-surface-2) 0%, var(--brand-surface) 100%);
    border-radius: 20px;
    border: 1px solid var(--brand-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.dm-video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 136, 69, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.dm-play-btn {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-2) 100%);
    display: flex; align-items: center; justify-content: center;
    animation: dm-pulse-ring 2s ease-out infinite;
    position: relative;
    z-index: 2;
}
.dm-play-btn i {
    font-size: 1.8rem;
    color: #1a0d04;
    margin-left: 5px;
}
@keyframes dm-pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(255, 136, 69, 0.5); }
    100% { box-shadow: 0 0 0 28px rgba(255, 136, 69, 0); }
}

/* ---------- Trust strip ---------- */
.dm-trust {
    padding: 2.5rem 0;
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
    background: rgba(255, 255, 255, 0.015);
}
.dm-trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--brand-text-dim);
}
.dm-trust-item .ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255, 136, 69, 0.12);
    border: 1px solid rgba(255, 136, 69, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-accent);
    flex-shrink: 0;
}
.dm-trust-item .t-title { color: var(--brand-text); font-weight: 600; }
.dm-trust-item .t-sub   { font-size: 0.82rem; }

/* ---------- Section title ---------- */
.dm-section { padding: 5rem 0; }
.dm-section-title { text-align: center; margin-bottom: 3rem; }
.dm-section-title .tag {
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 600;
}
.dm-section-title h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
    color: var(--brand-text);
}
.dm-section-title p {
    color: var(--brand-text-dim);
    max-width: 36rem;
    margin: 0.75rem auto 0;
}

/* ---------- Bento features ---------- */
.dm-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}
.dm-bento-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.dm-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 136, 69, 0.5);
    background: linear-gradient(180deg, rgba(255, 136, 69, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
}
.dm-bento-card .ic {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(245, 196, 116, 0.12);
    border: 1px solid rgba(245, 196, 116, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.dm-bento-card h4 {
    font-size: 1.15rem; font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-text);
}
.dm-bento-card p { color: var(--brand-text-dim); font-size: 0.95rem; margin: 0; }
.dm-bento-card.span-3 { grid-column: span 3; }
.dm-bento-card.span-2 { grid-column: span 2; }

.dm-bento-card.featured {
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 136, 69, 0.22) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}
.dm-bento-card.featured::after {
    content: "";
    position: absolute;
    right: -40px; bottom: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 196, 116, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .dm-bento { grid-template-columns: repeat(2, 1fr); }
    .dm-bento-card.span-3, .dm-bento-card.span-2 { grid-column: span 2; }
}
@media (max-width: 576px) {
    .dm-bento { grid-template-columns: 1fr; }
    .dm-bento-card.span-3, .dm-bento-card.span-2 { grid-column: span 1; }
}

/* ---------- How it works ---------- */
.dm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
.dm-steps::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--brand-border-2) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.dm-step {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.dm-step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-2) 100%);
    color: #1a0d04;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(255, 136, 69, 0.35);
}
.dm-step h5 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--brand-text); }
.dm-step p  { color: var(--brand-text-dim); margin: 0; }

@media (max-width: 768px) {
    .dm-steps { grid-template-columns: 1fr; }
    .dm-steps::before { display: none; }
}

/* ---------- For your guests ---------- */
.dm-guest-section {
    padding-top: 0;
    position: relative;
}
.dm-guest-section .dm-section-title {
    position: relative;
    padding-top: 1rem;
}
.dm-guest-section .dm-section-title::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    margin: 0 auto 2.5rem;
    opacity: 0.6;
}
.dm-guest-section .dm-section-title .tag { color: var(--brand-accent); }

.dm-guest-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
}
.dm-guest-step {
    background:
        radial-gradient(circle at 50% 0%, rgba(245, 196, 116, 0.10) 0%, transparent 55%),
        linear-gradient(180deg, rgba(245, 196, 116, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(245, 196, 116, 0.18);
    border-radius: 22px;
    padding: 2.5rem 1.75rem 2rem;
    text-align: center;
    position: relative;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.dm-guest-step:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 196, 116, 0.45);
    box-shadow: 0 18px 40px rgba(245, 196, 116, 0.08);
}
.dm-guest-step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.dm-guest-step-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 196, 116, 0.18) 0%, transparent 65%);
    z-index: -1;
}
.dm-guest-step-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.dm-guest-step-num {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.dm-guest-step h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: 0.6rem;
}
.dm-guest-step p {
    color: var(--brand-text-dim);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}
.dm-guest-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 196, 116, 0.4);
    padding: 0 0.75rem;
}
.dm-guest-arrow svg {
    width: 28px;
    height: 28px;
    display: block;
}
.dm-guest-footnote {
    text-align: center;
    color: var(--brand-text-dim);
    font-size: 0.9rem;
    margin: 2.5rem auto 0;
    max-width: 38rem;
}
.dm-guest-footnote .fa {
    color: var(--brand-accent);
    margin-right: 0.35rem;
}

@media (max-width: 900px) {
    .dm-guest-flow {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .dm-guest-arrow {
        transform: rotate(90deg);
        padding: 0;
        height: 32px;
    }
}

/* ---------- Contact ---------- */
.dm-contact-section {
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 136, 69, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(245, 196, 116, 0.08) 0%, transparent 40%),
        var(--brand-bg);
    border-top: 1px solid var(--brand-border);
}

.dm-contact-info {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}
.dm-contact-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--brand-text);
}
.dm-contact-info .dim {
    color: var(--brand-text-dim);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}
.dm-contact-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-top: 1px solid var(--brand-border);
    color: var(--brand-text);
    transition: color .2s ease;
}
.dm-contact-link:hover:not(.static) { color: var(--brand-accent); }
.dm-contact-link.static { cursor: default; }
.dm-contact-link .ic {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255, 136, 69, 0.1);
    border: 1px solid rgba(255, 136, 69, 0.3);
    color: var(--brand-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dm-contact-link .lbl {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-text-dim);
}
.dm-contact-link .val { display: block; font-weight: 600; }

/* Form */
.dm-contact-form-wrap {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 2rem;
}
.dm-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-text);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}
.dm-form .req { color: var(--brand-primary); }
.dm-form input[type="text"],
.dm-form input[type="email"],
.dm-form input[type="tel"],
.dm-form textarea {
    width: 100%;
    background: var(--brand-bg);
    border: 1px solid var(--brand-border-2);
    border-radius: 12px;
    color: var(--brand-text);
    padding: 0.75rem 0.95rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.dm-form input::placeholder,
.dm-form textarea::placeholder { color: #6b6359; }
.dm-form input:focus,
.dm-form textarea:focus {
    outline: 0;
    border-color: var(--brand-primary);
    background: var(--brand-bg-2);
    box-shadow: 0 0 0 3px rgba(255, 136, 69, 0.15);
}
.dm-form textarea { resize: vertical; min-height: 130px; }
.dm-form input:invalid:not(:placeholder-shown),
.dm-form textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(239, 100, 100, 0.4);
}

.dm-check {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--brand-text-dim);
    font-size: 0.88rem;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}
.dm-check input[type="checkbox"] {
    margin-top: 4px;
    width: 16px; height: 16px;
    accent-color: var(--brand-primary);
    flex-shrink: 0;
}
.dm-check a { color: var(--brand-accent); text-decoration: underline; text-underline-offset: 2px; }

.dm-form-foot {
    margin: 0.85rem 0 0;
    font-size: 0.8rem;
    color: var(--brand-text-dim);
    text-align: center;
}

.dm-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
    line-height: 1.5;
}
.dm-alert i { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.dm-alert-success {
    background: rgba(80, 220, 140, 0.1);
    border: 1px solid rgba(80, 220, 140, 0.3);
    color: #b6f0cf;
}
.dm-alert-success i { color: #6fe39a; }
.dm-alert-error {
    background: rgba(239, 100, 100, 0.1);
    border: 1px solid rgba(239, 100, 100, 0.3);
    color: #f7c2c2;
}
.dm-alert-error i { color: #ef6464; }

/* ---------- Reveal-on-scroll ---------- */
.dm-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.dm-reveal.in { opacity: 1; transform: translateY(0); }
