:root {
    --bg: #ffffff;
    --bg-2: #ffffff;
    --panel: rgba(255, 255, 255, 0.96);
    --panel-2: rgba(248, 248, 244, 0.98);
    --panel-3: rgba(49, 72, 59, 0.05);
    --text: #161616;
    --muted: #676861;
    --line: rgba(24, 24, 21, 0.1);
    --gold: #31483b;
    --gold-soft: rgba(49, 72, 59, 0.1);
    --green: #31483b;
    --green-soft: #4a6355;
    --white: #fffdfa;
    --danger: #a14f47;
    --shadow: 0 24px 64px rgba(25, 24, 21, 0.08);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 16px;
}

.admin-content-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.admin-content-head p,
.content-section-head p,
.content-editor-toolbar p,
.content-field small,
.admin-content-summary span {
    color: rgba(20, 25, 21, 0.68);
}

.admin-content-summary {
    min-width: 280px;
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(31, 55, 42, 0.08), rgba(31, 55, 42, 0.03));
    border: 1px solid rgba(31, 55, 42, 0.1);
}

.content-editor-form {
    display: grid;
    gap: 24px;
    padding: 24px;
}

.content-editor-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(248, 247, 243, 0.92);
    border: 1px solid rgba(31, 55, 42, 0.08);
}

.content-editor-toolbar.footer {
    margin-top: 4px;
}

.content-tabs-shell {
    display: grid;
    gap: 20px;
}

.content-tabs-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.content-tab-button {
    border: 1px solid rgba(31, 55, 42, 0.12);
    background: #fff;
    color: #233329;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.content-tab-button:hover {
    transform: translateY(-1px);
    border-color: rgba(31, 55, 42, 0.22);
    box-shadow: 0 10px 18px rgba(23, 32, 26, 0.08);
}

.content-tab-button.active {
    background: #233329;
    color: #fff;
    border-color: #233329;
    box-shadow: 0 14px 28px rgba(23, 32, 26, 0.16);
}

.content-tab-panel {
    display: grid;
    gap: 18px;
}

.content-tabs-shell.is-ready .content-tab-panel {
    display: none;
}

.content-tabs-shell.is-ready .content-tab-panel.active {
    display: grid;
}

.content-section-head {
    padding: 8px 0 2px;
}

.content-form-section {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 245, 239, 0.96));
    border: 1px solid rgba(31, 55, 42, 0.08);
    box-shadow: 0 16px 34px rgba(23, 32, 26, 0.06);
}

.content-form-section h3 {
    margin: 0;
}

.content-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.content-field {
    display: grid;
    gap: 8px;
}

.content-field.full {
    grid-column: 1 / -1;
}

.content-field span {
    font-weight: 700;
    color: #1f2d24;
}

.content-field input,
.content-field textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(31, 55, 42, 0.12);
    background: #fff;
    padding: 14px 16px;
    color: #111713;
    resize: vertical;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.content-field input:focus,
.content-field textarea:focus {
    outline: none;
    border-color: rgba(31, 55, 42, 0.38);
    box-shadow: 0 0 0 4px rgba(31, 55, 42, 0.08);
}

@media (max-width: 960px) {
    .admin-content-head,
    .content-editor-toolbar {
        grid-template-columns: 1fr;
        display: grid;
    }

    .admin-content-summary {
        min-width: 0;
    }

    .content-field-grid {
        grid-template-columns: 1fr;
    }

    .content-field.full {
        grid-column: auto;
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: #ffffff;
}
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font: inherit; }

.admin-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
    background: linear-gradient(180deg, #f6f5f0 0%, #fbfbf9 100%);
}

.admin-sidebar {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 18px;
    padding: 24px 18px;
    background: linear-gradient(180deg, #222926 0%, #1b211f 100%);
    color: #f5f4ef;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-brand {
    padding: 6px 4px 0;
}

.admin-brand-link {
    display: grid;
    gap: 12px;
}

.admin-brand-logo {
    width: 168px;
    max-width: 100%;
    height: auto;
}

.admin-brand-copy {
    display: grid;
    gap: 4px;
}

.admin-brand-copy strong {
    font-size: 1.35rem;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.admin-brand-copy small,
.admin-user-card span {
    color: rgba(255, 255, 255, 0.68);
}

.admin-user-card {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-nav {
    display: grid;
    gap: 8px;
    align-content: start;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.84);
    transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
}

.admin-nav-link.active {
    background: linear-gradient(135deg, rgba(74, 99, 85, 0.26), rgba(49, 72, 59, 0.4));
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(151, 176, 162, 0.14);
}

.admin-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    flex: 0 0 auto;
}

.admin-nav-link.active .admin-nav-dot {
    background: #dce9df;
}

.admin-sidebar-actions {
    display: grid;
    gap: 10px;
}

.admin-sidebar .button-small {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
}

.admin-main {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px;
    padding: 20px 24px 28px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 242, 0.98));
    box-shadow: var(--shadow);
}

.admin-topbar h1 {
    margin: 10px 0 6px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
}

.admin-topbar p {
    margin: 0;
    color: var(--muted);
}

.admin-topbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-page {
    display: grid;
    gap: 18px;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background-image:
        linear-gradient(rgba(24, 20, 16, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 20, 16, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0;
}

.orb-one {
    width: 28vw;
    height: 28vw;
    left: -8vw;
    top: 12vh;
    background: rgba(168, 122, 63, 0.16);
}

.orb-two {
    width: 32vw;
    height: 32vw;
    right: -10vw;
    top: 28vh;
    background: rgba(24, 54, 43, 0.12);
}

.app-shell {
    position: relative;
    z-index: 1;
    width: min(1500px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0 60px;
}

.topbar,
.footer,
.card,
.setup-alert,
.price-card,
.slide-card,
.service-card,
.trust-box,
.process-card,
.seo-card {
    backdrop-filter: blur(16px);
}

.topbar,
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.topbar {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    align-items: stretch;
    min-height: 104px;
    padding: 12px 14px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(29, 41, 34, 0.98), rgba(45, 63, 53, 0.95));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 60px rgba(16, 24, 20, 0.16);
}

.topbar::before {
    content: "";
    position: absolute;
    inset: -16px;
    background:
        linear-gradient(90deg, rgba(18, 26, 21, 0.78) 0%, rgba(27, 39, 32, 0.48) 24%, rgba(40, 57, 47, 0.28) 72%, rgba(23, 34, 28, 0.68) 100%),
        url("images/soft-flowers-header.jpg");
    background-size: cover;
    background-position: center 35%;
    filter: blur(14px) saturate(0.82);
    transform: scale(1.08);
    opacity: 0.82;
    z-index: -2;
}

.topbar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
    z-index: -1;
}

.topbar > * {
    position: relative;
    z-index: 1;
}

.brand-trust-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 14px 0 0;
    padding: 14px 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(250, 250, 247, 0.95), rgba(245, 247, 242, 0.95));
    box-shadow: 0 18px 40px rgba(25, 24, 21, 0.06);
}

.brand-trust-bar p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.brand-trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(49, 72, 59, 0.09);
    border: 1px solid rgba(49, 72, 59, 0.14);
    color: #31483b;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 26px;
    min-width: min(100%, 420px);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand::after {
    content: none;
}

.brand-logo {
    width: 168px;
    max-width: 38vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(25, 24, 21, 0.08));
}

.brand-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f7f3eb;
}

.brand-copy small,
.muted,
.list-item small {
    color: var(--muted);
}

.brand-copy small {
    color: rgba(247, 243, 235, 0.78);
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px 4px 10px 10px;
    border-radius: 26px;
    background: transparent;
    border: 0;
    box-shadow: none;
    flex: 1 1 auto;
}

.nav a {
    color: rgba(247, 243, 235, 0.92);
    padding: 11px 15px;
    border-radius: 999px;
    font-weight: 600;
    transition: background 180ms ease, transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: #fffdfa !important;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 24px rgba(19, 28, 23, 0.16);
}

.map-embed {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    min-height: 340px;
    background: #eef1eb;
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 340px;
    border: 0;
}

.page {
    padding: 26px 0;
}

.reveal-up {
    opacity: 1;
    transform: none;
    transition:
        opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.js-motion .reveal-up {
    opacity: 0;
    transform: translateY(22px);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.interactive-panel {
    transition:
        transform 240ms ease,
        box-shadow 240ms ease,
        border-color 240ms ease,
        background 240ms ease;
}

.interactive-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(25, 24, 21, 0.12);
    border-color: rgba(49, 72, 59, 0.24);
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 30px;
    margin-bottom: 34px;
    align-items: start;
}

.visual-proof-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 18px;
    margin: 0 0 30px;
}

.visual-proof-card,
.editorial-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 242, 0.98));
    box-shadow: var(--shadow);
}

.visual-proof-card {
    min-height: 360px;
}

.visual-proof-card.feature {
    min-height: 400px;
}

.visual-proof-card img,
.editorial-media-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-proof-card > img {
    position: absolute;
    inset: 0;
    filter: saturate(0.9) brightness(0.9);
    transform: scale(1);
    transition: transform 700ms ease, filter 300ms ease;
}

.visual-proof-card:hover > img {
    transform: scale(1.04);
    filter: saturate(0.97) brightness(0.95);
}

.visual-proof-copy {
    position: absolute;
    inset: auto 0 0 0;
    display: grid;
    gap: 10px;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 252, 247, 0.18) 18%, rgba(248, 242, 233, 0.9) 70%, rgba(246, 240, 231, 0.98) 100%);
}

.visual-proof-copy h3,
.editorial-copy h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 0.96;
}

.visual-proof-copy p,
.editorial-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.editorial-band {
    margin: 0 0 34px;
}

.editorial-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 20px;
    padding: 24px;
}

.editorial-copy {
    display: grid;
    align-content: center;
    gap: 14px;
}

.editorial-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.editorial-media-grid img {
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #f1f1ec;
    transition: transform 500ms ease, filter 300ms ease;
}

.editorial-media-grid img:hover {
    transform: translateY(-4px) scale(1.02);
    filter: saturate(1.02);
}

.image-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 24px;
}

.ribbon-card {
    min-height: 160px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #f3f3ee;
    box-shadow: var(--shadow);
}

.ribbon-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) brightness(0.92);
}

.hero-copy,
.card,
.setup-alert {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 244, 0.98));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.hero-copy h1,
.card h2,
.section-head h2,
.price-card h2,
.page-head h1,
.auth-card h1,
.service-card h3,
.slide-overlay h3,
.seo-card h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-copy h1 {
    margin: 14px 0 18px;
    max-width: 11ch;
    font-size: clamp(2.15rem, 3.6vw, 3.55rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-lead,
.card p,
.section-head p,
.slide-overlay p,
.service-card p,
.trust-box span,
.process-card p {
    color: #5c5d56;
    line-height: 1.8;
}

.hero-trust-strip {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(49, 72, 59, 0.12);
    background: linear-gradient(180deg, rgba(248, 249, 245, 0.92), rgba(243, 246, 240, 0.92));
}

.hero-trust-strip strong,
.support-copy {
    color: #31483b;
}

.hero-trust-strip span,
.support-copy {
    line-height: 1.75;
}

.eyebrow,
.slide-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--gold-soft);
    border: 1px solid rgba(49, 72, 59, 0.12);
    color: #31483b;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.hero-actions,
.grid,
.admin-grid,
.service-grid,
.seo-grid,
.stack,
.trust-row {
    display: grid;
    gap: 16px;
}

.hero-actions {
    grid-template-columns: repeat(2, max-content);
    margin: 24px 0 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform 180ms ease, opacity 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary {
    background: linear-gradient(135deg, #2d4336, #486153);
    color: #fffdfa;
    font-weight: 800;
}
.button-secondary {
    background: rgba(24, 54, 43, 0.05);
    color: var(--text);
    border: 1px solid var(--line);
}
.button-ghost,
.button-small {
    background: rgba(255, 253, 249, 0.68);
    color: var(--text);
    border: 1px solid var(--line);
    min-height: 40px;
}
.button-danger {
    background: rgba(161, 79, 71, 0.12);
    color: #7f3129;
    border: 1px solid rgba(161, 79, 71, 0.18);
    min-height: 40px;
}

.hero-stage {
    display: grid;
    gap: 18px;
    align-content: start;
    min-width: 0;
}

.hero-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.hero-point {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(49, 72, 59, 0.04);
    border: 1px solid var(--line);
}

.hero-point strong {
    font-size: 1rem;
}

.hero-point span {
    color: var(--muted);
    line-height: 1.7;
}

.hero-point:hover {
    background: rgba(49, 72, 59, 0.07);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.hero-metric {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.hero-metric strong {
    font-size: 1.1rem;
    color: var(--green);
}

.hero-metric span {
    color: var(--muted);
}

.hero-metric:hover strong {
    color: #24362b;
}

.hero-visual-card {
    position: relative;
    min-height: 620px;
    width: 100%;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--line);
    background: #f2f2ed;
    box-shadow: var(--shadow);
}

.hero-visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(12, 18, 15, 0.72) 0%, rgba(12, 18, 15, 0.32) 24%, rgba(12, 18, 15, 0.1) 46%, rgba(247, 241, 232, 0.22) 68%, rgba(247, 241, 232, 0.88) 100%),
        linear-gradient(90deg, rgba(12, 18, 15, 0.44) 0%, rgba(12, 18, 15, 0.12) 42%, rgba(12, 18, 15, 0) 74%);
    pointer-events: none;
}

.hero-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    color: transparent;
    font-size: 0;
    transform: scale(1);
    transition: transform 700ms ease, filter 300ms ease;
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    padding: 28px 390px 250px 28px;
}

.hero-visual-overlay h2 {
    margin: 0;
    max-width: 6ch;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.85rem, 2.7vw, 2.8rem);
    line-height: 0.94;
    color: #fbf8f1;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.hero-visual-overlay p {
    max-width: 28rem;
    margin: 0;
    color: rgba(255, 252, 244, 0.96);
    line-height: 1.72;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(14, 18, 16, 0.48), rgba(14, 18, 16, 0.26));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero-visual-overlay .slide-badge {
    background: rgba(247, 241, 232, 0.88);
    color: #24362b;
    border-color: rgba(36, 54, 43, 0.12);
    box-shadow: 0 10px 28px rgba(12, 18, 15, 0.12);
}

.hero-visual-card:hover img {
    transform: scale(1.035);
    filter: saturate(0.98);
}

.hero-visual-card:hover .slide-badge,
.slide-card:hover .slide-badge {
    background: rgba(49, 72, 59, 0.16);
    border-color: rgba(49, 72, 59, 0.24);
}

.price-card,
.hero-floating-card {
    border-radius: var(--radius-lg);
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(49, 72, 59, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 242, 0.98));
    border: 1px solid rgba(49, 72, 59, 0.12);
    box-shadow: var(--shadow);
}

.price-card .price,
.hero-floating-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: #31483b;
}

.transfer-amount-box {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 20px 22px;
    border: 1px solid rgba(52, 86, 68, 0.16);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(239, 247, 242, 0.96) 0%, rgba(232, 243, 236, 0.84) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.transfer-amount-box small {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4c6757;
}

.transfer-amount {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    font-weight: 800;
    color: #1f6a3c;
}

.transfer-amount-box span {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #4f5f54;
}

.hero-floating-card {
    position: absolute;
    right: 22px;
    bottom: 24px;
    width: min(340px, calc(100% - 44px));
    z-index: 2;
    backdrop-filter: blur(12px);
    max-height: calc(100% - 44px);
    overflow: auto;
}

.hero-floating-card:hover {
    transform: translateY(-2px);
}

.hero-floating-card h3 {
    margin: 12px 0 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
}

.hero-mini-card {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 242, 0.98));
    box-shadow: var(--shadow);
}

.hero-mini-card img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    color: transparent;
    font-size: 0;
    transition: transform 480ms ease;
}

.hero-mini-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.hero-mini-card span {
    color: var(--muted);
    line-height: 1.7;
}

.hero-mini-card:hover img {
    transform: scale(1.04);
}

.feature-list,
.clean-list,
.steps {
    padding-left: 18px;
    color: #4f473e;
}

.feature-list li,
.clean-list li,
.steps li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.section-head {
    max-width: 760px;
    margin: 30px 0 18px;
}

.section-head.compact {
    margin-top: 0;
    max-width: none;
}

.section-head h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.98;
    margin: 12px 0;
}

.slider-wrap {
    position: relative;
    margin-bottom: 24px;
    width: 100%;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 0 0 28px;
}

.showcase-card,
.story-visual-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: #f1f1ec;
    box-shadow: var(--shadow);
}

.showcase-card {
    min-height: 360px;
}

.showcase-card img,
.story-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-copy,
.story-visual-copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 248, 240, 0.16) 18%, rgba(247, 241, 232, 0.9) 68%, rgba(244, 238, 229, 0.98) 100%);
}

.showcase-copy h3,
.story-visual-copy h2 {
    margin: 12px 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.95;
}

.showcase-copy p,
.story-visual-copy p {
    margin: 0;
    color: #5c5d56;
    line-height: 1.75;
}

.story-visuals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
}

.story-visual-card {
    min-height: 420px;
}

.visual-story {
    margin-bottom: 30px;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    gap: 20px;
    margin-bottom: 22px;
}

.visual-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: #f1f1ec;
    box-shadow: var(--shadow);
}

.visual-card-large {
    min-height: 460px;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) brightness(0.88);
}

.visual-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 251, 246, 0.1) 18%, rgba(255, 249, 240, 0.82) 66%, rgba(248, 241, 232, 0.96) 100%);
}

.visual-overlay h3 {
    margin: 12px 0 10px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 0.98;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.visual-overlay p {
    margin: 0;
    color: #5c5d56;
    line-height: 1.7;
}

.slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(360px, 36%);
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 54px 8px 6px;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slide-card {
    position: relative;
    min-height: 440px;
    border-radius: 28px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    background: #f1f1ec;
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.88) brightness(0.84);
    transform: scale(1);
    transition: transform 700ms ease, filter 300ms ease;
}

.slide-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 251, 246, 0.14) 18%, rgba(255, 249, 240, 0.88) 68%, rgba(248, 241, 232, 0.98) 100%);
}

.slide-overlay h3 {
    margin: 12px 0 10px;
    font-size: 2.2rem;
    line-height: 0.95;
}

.slide-card:hover img {
    transform: scale(1.045);
    filter: saturate(0.95) brightness(0.88);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 252, 247, 0.92);
    color: var(--text);
    cursor: pointer;
    z-index: 2;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.slider-nav.prev { left: 0; }
.slider-nav.next { right: 0; }

.slider-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 30px rgba(25, 24, 21, 0.12);
}

.service-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    margin-bottom: 26px;
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 242, 0.98));
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.service-card.emphasis { grid-column: span 4; }
.service-card.wide { grid-column: span 4; }
.service-card:not(.emphasis):not(.wide) { grid-column: span 2; }

.service-no,
.process-card strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--gold-soft);
    color: #31483b;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-card h3,
.process-card h3 {
    margin: 0 0 10px;
    font-size: 1.9rem;
}

.service-card:hover .service-no {
    background: rgba(49, 72, 59, 0.16);
}

.seo-service-grid {
    margin-top: 8px;
}

.seo-service-grid .service-card {
    color: inherit;
    text-decoration: none;
}

.service-landing-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.service-landing-lead {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.02rem;
}

.service-landing-media {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: #f2f2ed;
    box-shadow: var(--shadow);
}

.service-landing-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.service-landing-grid {
    align-items: stretch;
}

.service-landing-list {
    margin: 18px 0 0;
    padding-left: 20px;
    color: #4f473e;
}

.service-landing-list li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.service-landing-highlight {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(49, 72, 59, 0.12);
    background: linear-gradient(180deg, rgba(248, 249, 245, 0.92), rgba(243, 246, 240, 0.92));
}

.service-landing-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 18px;
}

.faq-stack {
    display: grid;
    gap: 16px;
}

.faq-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.story-grid,
.admin-grid {
    margin-bottom: 26px;
}

.admin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.page-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 22px;
}

.admin-page .page-head {
    padding: 24px 28px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 242, 0.98));
    box-shadow: var(--shadow);
}

.admin-page .page-head .eyebrow {
    margin-bottom: 8px;
}

.page-head h1 {
    margin: 10px 0;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.96;
}

.stat-card {
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 2.6rem;
    color: #31483b;
}

.stat-card span {
    color: var(--muted);
}

label {
    display: block;
    margin: 14px 0 6px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid rgba(24, 20, 16, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(49, 72, 59, 0.14);
    border-color: rgba(49, 72, 59, 0.28);
}

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-row input {
    width: auto;
}

.seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-card,
.inset-card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line);
}

.seo-card h3 {
    margin: 0 0 8px;
    font-size: 1.8rem;
    text-transform: capitalize;
}

.inline-actions,
.delete-form {
    margin-top: 12px;
}

.list-item {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.list-item:last-child { border-bottom: none; }
.list-item span,
.update-head span { color: var(--muted); }

.slider-list-item {
    grid-template-columns: 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.slider-thumb {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line);
    background: #f3f3ee;
}

.contact-map {
    width: 100%;
    min-height: 280px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #f3f3ee;
}

.slider-list-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.updates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.update-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line);
}

.media-grid a,
.text-link {
    color: #31483b;
    text-decoration: underline;
}

.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; }
th, td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

thead th {
    font-size: 0.9rem;
    color: #595a54;
    background: rgba(49, 72, 59, 0.04);
}

tbody tr:hover {
    background: rgba(49, 72, 59, 0.035);
}

.inline-form {
    display: grid;
    gap: 8px;
    min-width: 180px;
}

.flash,
.notice,
.setup-alert {
    margin-bottom: 18px;
}

.flash {
    padding: 14px 16px;
    border-radius: 18px;
}
.flash-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.flash-link {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line);
}

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-line input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.hint-box {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(61, 81, 61, 0.12);
    background: #f4f1ea;
    color: #465044;
}

.flash-success { background: rgba(40, 78, 61, 0.12); }
.flash-error { background: rgba(161, 79, 71, 0.12); }

.subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.subnav a {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.56);
    color: var(--muted);
}

.subnav a.active {
    background: var(--gold-soft);
    color: #31483b;
    border-color: rgba(49, 72, 59, 0.2);
}

.product-list,
.flower-admin-list,
.list-stack {
    display: grid;
    gap: 14px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.tab-button {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.56);
    color: var(--muted);
    cursor: pointer;
}

.tab-button.active {
    background: var(--gold-soft);
    color: #31483b;
    border-color: rgba(49, 72, 59, 0.2);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.product-focus,
.admin-product-form {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.62);
    border: 1px solid var(--line);
}

.product-focus-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.product-form {
    display: grid;
    gap: 12px;
}

.compact-grid {
    align-items: end;
}

.check-block {
    display: flex;
    align-items: end;
}

.product-card,
.cart-item {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line);
}

.cart-inline {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-intro-card {
    gap: 18px;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.mini-stat {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(49, 72, 59, 0.04);
    border: 1px solid var(--line);
}

.mini-stat strong {
    font-size: 1.7rem;
    color: var(--green);
}

.mini-stat span,
.grave-card small,
.product-price {
    color: var(--muted);
}

.stack-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.stack-form {
    display: grid;
    gap: 16px;
}

.option-group {
    display: grid;
    gap: 12px;
}

.choice-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid rgba(49, 72, 59, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
}

.choice-card input {
    margin-top: 4px;
}

.choice-card strong,
.choice-card small {
    display: block;
}

.choice-card small {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.5;
}

.empty-state {
    display: grid;
    gap: 6px;
    padding: 20px;
    border-radius: 20px;
    border: 1px dashed rgba(49, 72, 59, 0.22);
    background: rgba(49, 72, 59, 0.03);
}

.grave-card {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.auth-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
}

.auth-side {
    display: grid;
    gap: 14px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(247, 247, 242, 0.98), rgba(241, 244, 239, 0.98));
    box-shadow: var(--shadow);
}

.auth-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.auth-media-card {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #f2f2ed;
}

.auth-side h1 {
    margin: 8px 0 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.95;
}

.auth-wrap,
.auth-card {
    max-width: 100%;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.blog-lead {
    color: #4d544f;
    line-height: 1.8;
}

.setup-alert h2,
.footer strong {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.footer {
    margin-top: 28px;
    border-radius: 28px;
}

.footer p {
    margin: 0;
}

.footer > div {
    display: grid;
    gap: 8px;
}

.footer-note {
    color: var(--muted);
}

.footer a {
    color: #31483b;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-legal {
    display: grid;
    gap: 6px;
}

.footer-legal p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-legal a {
    color: #31483b;
    text-decoration: none;
    font-weight: 700;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1f9d59, #20b15f);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 24px 50px rgba(30, 115, 66, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(30, 115, 66, 0.34);
    filter: saturate(1.02);
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.whatsapp-icon svg {
    width: 22px;
    height: 22px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-up,
    .interactive-panel,
    .hero-visual-card img,
    .hero-mini-card img,
    .slide-card img,
    .button,
    .slider-nav {
        transition: none;
        transform: none;
    }

    .reveal-up {
        opacity: 1;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.blog-card,
.blog-post {
    display: grid;
    gap: 16px;
}

.blog-post {
    max-width: 980px;
    margin: 0 auto;
}

.blog-cover,
.blog-cover-large {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.blog-cover {
    height: 220px;
}

.blog-cover-large {
    max-height: 420px;
}

.campaign-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.campaign-popup.is-visible {
    display: flex;
}

.campaign-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 28, 22, 0.58);
    backdrop-filter: blur(6px);
}

.campaign-popup-card {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100vw - 32px));
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 26px 80px rgba(24, 31, 24, 0.24);
}

.campaign-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 24, 20, 0.82);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.campaign-popup-media,
.campaign-popup-media img {
    display: block;
    width: 100%;
}

.campaign-popup-media img {
    max-height: 78vh;
    object-fit: cover;
}

.campaign-popup-caption {
    padding: 16px 20px 20px;
    font-weight: 700;
    color: #213127;
}

.campaign-popup-admin-preview {
    overflow: hidden;
    border-radius: 20px;
    background: #f4f1ea;
}

.campaign-popup-admin-preview img {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}

.article-content {
    line-height: 1.9;
    color: #51483f;
}

pre {
    white-space: pre-wrap;
    word-break: break-word;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        grid-template-rows: auto auto auto auto;
    }

    .admin-main {
        padding-top: 0;
    }

    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-shell,
    .grid.two,
    .admin-grid,
    .seo-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        min-height: 520px;
    }

    .hero-visual-overlay {
        padding: 24px;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        max-height: none;
        margin: 18px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .image-ribbon,
    .visual-proof-grid,
    .showcase-grid,
    .story-visuals,
    .auth-shell,
    .blog-featured,
    .mini-stats {
        grid-template-columns: 1fr;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .editorial-card {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-landing-head {
        grid-template-columns: 1fr;
    }

    .service-card.emphasis,
    .service-card.wide,
    .service-card:not(.emphasis):not(.wide) {
        grid-column: span 1;
    }

    .trust-row {
        grid-template-columns: 1fr;
    }

    .slider-track {
        grid-auto-columns: minmax(300px, 82%);
    }

    .visual-card,
    .visual-card-large {
        min-height: 320px;
    }
}

@media (max-width: 860px) {
    .admin-main {
        padding: 16px;
    }

    .topbar,
    .footer,
    .page-head,
    .cta-card,
    .admin-topbar,
    .brand-trust-bar {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 26px;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-copy,
    .card,
    .setup-alert,
    .price-card,
    .service-card {
        padding: 22px;
        border-radius: 24px;
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

    .hero-mini-card {
        grid-template-columns: 1fr;
    }

    .hero-mini-card img {
        height: 180px;
    }

    .stack-actions {
        flex-direction: column;
    }

    .grid.three,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-landing-head {
        grid-template-columns: 1fr;
    }

    .editorial-media-grid {
        grid-template-columns: 1fr;
    }

    .brand-copy {
        display: none;
    }

    .brand {
        min-width: 0;
        padding: 12px 14px;
    }

    .brand::after {
        display: none;
    }

    .brand-logo {
        width: 152px;
        max-width: 56vw;
    }

    .slider-track {
        padding: 4px 0;
        grid-auto-columns: 92%;
    }

    .hero-visual-card {
        min-height: 440px;
    }

    .slider-nav {
        display: none;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 54px;
        padding-right: 16px;
    }

    .campaign-popup {
        padding: 16px;
    }

    .campaign-popup-card {
        width: 100%;
        border-radius: 22px;
    }

    .product-focus-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .slider-list-item {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .slider-thumb {
        width: 100%;
        height: 180px;
    }
}
