:root {
    --primary: #000000;
    --accent: #2563eb;
    --bg: #ffffff;
    --bg-soft: #fcfcf9; /* Warmer, premium blurweb-style background */
    --text: #111827;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --radius: 12px;
}

* { margin:0; padding:0; box-sizing:border-box; -webkit-font-smoothing: antialiased; }
body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.6;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* --- Navigation --- */
header { 
    padding: 20px 0; 
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { display:flex; align-items:center; gap:10px; font-weight:800; text-decoration:none; color:var(--text); font-size:18px; }
.logo img { width: 32px; border-radius: 8px; }

/* --- Hero --- */
.hero { padding: 120px 0 80px; text-align: center; background: var(--bg-soft); }
.hero h1 { font-size: 64px; line-height: 1; margin-bottom: 24px; }
.hero p { font-size: 20px; color: var(--text-light); max-width: 600px; margin: 0 auto 40px; }

/* --- Buttons --- */
.btn { 
    display: inline-flex; align-items: center; justify-content:center;
    padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 16px;
    cursor: pointer; text-decoration: none; transition: 0.2s; border: 1px solid transparent;
}
.btn-black { background: var(--primary); color: white; }
.btn-black:hover { transform: scale(1.02); background: #222; }
.btn-secondary { background: white; border-color: var(--border); color: var(--text); }

/* --- Trust Logo Cloud --- */
.trust { padding: 40px 0; text-align: center; border-bottom: 1px solid var(--border); }
.trust p { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 24px; }
.logo-cloud { opacity: 0.5; filter: grayscale(1); max-width: 800px; margin: 0 auto; }

/* --- Feature Grid --- */
.section-header { text-align: center; margin: 100px 0 60px; }
.section-header h2 { font-size: 40px; margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 18px; }

.features-list { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.feat { padding: 32px; border-radius: 16px; background: white; border: 1px solid var(--border); transition: 0.3s; }
.feat:hover { border-color: var(--text); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.feat i { font-size: 24px; color: var(--accent); margin-bottom: 20px; display: block; }
.feat h3 { font-size: 18px; margin-bottom: 12px; }
.feat p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* --- Use Cases --- */
.use-cases { padding: 100px 0; background: var(--bg-soft); }
.uc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.uc-card { background: white; padding: 40px; border-radius: 20px; border: 1px solid var(--border); }
.uc-card h4 { font-size: 22px; margin-bottom: 16px; display:flex; align-items:center; gap:12px; }
.uc-card h4 i { color: var(--accent); }

/* --- Comparison Section (Inspiration from blur-it) --- */
.comparison { padding: 100px 0; background: #000; color: #fff; }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.comp-item h3 { color: #fff; font-size: 24px; margin-bottom: 24px; }
.comp-list { list-style: none; display: grid; gap: 20px; }
.comp-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; }
.comp-list i.bi-x-circle { color: #ef4444; }
.comp-list i.bi-check-circle { color: #10b981; }

/* --- Demo Showcase --- */
.demo-showcase { padding: 100px 0; text-align: center; }
.browser-window { 
    max-width: 960px; margin: 0 auto; background: white; border-radius: 16px; 
    border: 1px solid var(--border); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
}
.browser-bar { height: 40px; background: var(--bg-soft); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 15px; gap: 8px; }
.b-dot { width: 8px; height: 8px; border-radius: 50%; background: #e5e7eb; }
.browser-content {
    height: 450px;
    position: relative;
    padding: 30px;
    background:
        radial-gradient(circle at top right, rgba(37,99,235,0.09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.rec-indicator { position: absolute; top: 20px; left: 20px; display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; color: #ef4444; }
.rec-dot { width: 10px; height: 10px; background: #ef4444; border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.mock-app-shell {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    height: 100%;
    padding-top: 24px;
}

.mock-sidebar {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(148,163,184,0.24);
    border-radius: 20px;
    padding: 18px 14px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.06);
    display: grid;
    gap: 10px;
    align-content: start;
}

.mock-nav-chip {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    color: #475569;
    background: transparent;
}

.mock-nav-chip.active {
    color: #0f172a;
    background: #e2e8f0;
}

.mock-main-panel {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(148,163,184,0.24);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 20px 45px rgba(15,23,42,0.08);
    display: grid;
    gap: 18px;
    text-align: left;
}

.mock-topline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.mock-topline h3 {
    font-size: 22px;
    margin-top: 4px;
}

.mock-eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748b;
}

.mock-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: #ecfeff;
    color: #0f766e;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.mock-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mock-stat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 16px;
}

.mock-stat-label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.mock-stat-card strong {
    font-size: 20px;
    color: #0f172a;
}

.mock-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mock-item,
.mock-log,
.mock-stat-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(15,23,42,0.06);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, filter 320ms ease;
}

.mock-item {
    padding: 18px;
}

.mock-item::after,
.mock-log::after,
.mock-stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), transparent 48%);
    opacity: 0;
    transition: opacity 240ms ease;
}

.mock-item.is-focused,
.mock-log.is-focused,
.mock-stat-card.is-focused {
    transform: translateY(-2px);
    border-color: rgba(37,99,235,0.45);
    box-shadow: 0 24px 36px rgba(37,99,235,0.12);
}

.mock-item.is-focused::after,
.mock-log.is-focused::after,
.mock-stat-card.is-focused::after {
    opacity: 1;
}

.mock-item.is-masked,
.mock-log.is-masked,
.mock-stat-card.is-masked {
    filter: blur(14px);
}

.mock-item-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}

.mock-item-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.mock-item-meta {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}

.mock-item-meta span {
    font-weight: 800;
    color: #111827;
}

.mock-text-line {
    position: relative;
    display: inline-block;
}

.mock-inline-secret {
    position: relative;
    display: inline-block;
    transition: filter 240ms ease, background 240ms ease, color 240ms ease, box-shadow 240ms ease;
    border-radius: 7px;
    padding: 1px 4px;
}

.mock-inline-secret.is-focused {
    background: rgba(37,99,235,0.12);
    box-shadow: 0 0 0 1px rgba(37,99,235,0.18);
}

.mock-inline-secret.is-masked {
    filter: blur(6px);
    background: rgba(15,23,42,0.08);
    color: rgba(15,23,42,0.5);
}

.mock-log {
    padding: 16px 18px;
    display: grid;
    gap: 12px;
}

.mock-log-head,
.mock-log-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
}

.mock-log-head {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.mock-log-row {
    font-size: 13px;
    color: #334155;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.story-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.story-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 18px;
}

.story-copy h2 {
    font-size: 52px;
    line-height: 0.98;
    margin-bottom: 22px;
    max-width: 10ch;
}

.story-copy p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 28px;
    max-width: 34rem;
}

.story-points {
    list-style: none;
    display: grid;
    gap: 14px;
}

.story-points li {
    position: relative;
    padding-left: 24px;
    color: #334155;
    font-size: 15px;
}

.story-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #2563eb;
    box-shadow: 0 0 0 6px rgba(37,99,235,0.12);
}

.story-copy-centered {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 42px;
}

.story-copy-centered h2 {
    max-width: none;
}

.story-copy-centered p {
    margin-left: auto;
    margin-right: auto;
}

.story-copy-centered .story-points {
    max-width: 760px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.story-copy-centered .story-points li {
    padding-left: 0;
    text-align: left;
}

.story-copy-centered .story-points li::before {
    position: static;
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
}

.smart-stage {
    min-width: 0;
}

.smart-stage-shell {
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(148,163,184,0.22);
    background:
        radial-gradient(circle at top right, rgba(59,130,246,0.14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 28px 70px rgba(15,23,42,0.08);
    overflow: hidden;
    max-width: 940px;
    margin: 0 auto;
}

.smart-stage-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(226,232,240,0.9);
    background: rgba(255,255,255,0.84);
    backdrop-filter: blur(10px);
}

.smart-stage-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.smart-stage-tools {
    display: flex;
    gap: 10px;
}

.smart-stage-tool {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.smart-stage-tool.active {
    color: #f8fafc;
    background: #0f172a;
    border-color: #0f172a;
}

.smart-stage-canvas {
    position: relative;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
}

.smart-menu-panel {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid #dbe4f0;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 14px 34px rgba(15,23,42,0.05);
}

.smart-menu-header {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-right: 14px;
    margin-right: 6px;
    border-right: 1px solid #e2e8f0;
}

.smart-menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #0f172a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.smart-menu-copy {
    min-width: 168px;
}

.smart-menu-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.smart-menu-subtitle {
    font-size: 11px;
    line-height: 1.35;
    color: #64748b;
}

.smart-menu-option {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid #dbe4f0;
    background: #fff;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.smart-menu-option i {
    font-size: 15px;
}

.smart-menu-option small {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
}

.smart-menu-option.is-active {
    color: #fff;
    background: #0f172a;
    border-color: #0f172a;
    box-shadow: 0 12px 24px rgba(15,23,42,0.16);
    transform: translateY(-1px);
}

.smart-menu-option.is-active small {
    color: rgba(255,255,255,0.72);
}

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

.smart-stage-card {
    position: relative;
    overflow: hidden;
    min-height: 148px;
    border-radius: 20px;
    border: 1px solid #dbe4f0;
    background: #fff;
    box-shadow: 0 18px 36px rgba(15,23,42,0.05);
    padding: 13px;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, filter 320ms ease;
}

.smart-stage-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.07), transparent 48%);
    opacity: 0;
    transition: opacity 240ms ease;
}

.smart-stage-card.is-focused {
    transform: translateY(-3px);
    border-color: rgba(37,99,235,0.42);
    box-shadow: 0 24px 42px rgba(37,99,235,0.12);
}

.smart-stage-card.is-focused::after {
    opacity: 1;
}

.smart-stage-card.is-masked {
    filter: blur(12px);
}

.smart-card-image { grid-column: span 4; }
.smart-card-video { grid-column: span 4; }
.smart-card-ad { grid-column: span 4; }
.smart-card-email { grid-column: span 6; min-height: 126px; }
.smart-card-phone { grid-column: span 6; min-height: 126px; }

.smart-card-head,
.smart-ad-pill,
.smart-ad-title,
.smart-ad-copy,
.smart-data-value,
.smart-data-meta,
.smart-card-label,
.smart-video-ui {
    position: relative;
    z-index: 2;
}

.smart-card-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.smart-card-chip {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.smart-card-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.smart-stage-card img {
    width: 100%;
    height: 104px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    position: relative;
    z-index: 1;
}

.smart-card-label {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.smart-video-ui {
    position: absolute;
    inset: 42px 13px 13px 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.smart-video-play {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(15,23,42,0.72);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: 14px;
    backdrop-filter: blur(6px);
}

.smart-video-play i {
    font-size: 20px;
    margin-left: 2px;
}

.smart-video-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.35);
    overflow: hidden;
}

.smart-video-bar span {
    display: block;
    width: 38%;
    height: 100%;
    background: #fff;
}

.smart-ad-pill {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.smart-ad-title {
    font-size: 16px;
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.smart-ad-copy,
.smart-data-meta {
    font-size: 12px;
    color: #475569;
    line-height: 1.45;
}

.smart-data-value {
    font-size: 20px;
    line-height: 1.08;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    word-break: break-word;
}

.js-smart-sensitive {
    display: inline-block;
    border-radius: 8px;
    padding: 2px 6px;
    transition: filter 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.js-smart-sensitive.is-focused {
    background: rgba(37,99,235,0.12);
    box-shadow: 0 0 0 1px rgba(37,99,235,0.18);
}

.js-smart-sensitive.is-masked {
    filter: blur(6px);
    background: rgba(15,23,42,0.08);
    color: rgba(15,23,42,0.42);
}

.smart-stage-cursor {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    z-index: 6;
    transform: translate(-20%, -10%);
    transition: left 0.55s cubic-bezier(0.2,0,0.2,1), top 0.55s cubic-bezier(0.2,0,0.2,1);
    pointer-events: none;
}

.mock-region-box {
    position: absolute;
    border: 1px dashed rgba(15,23,42,0.85);
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
    opacity: 0;
    pointer-events: none;
    z-index: 50;
}

.mock-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 100;
    left: 0;
    top: 0;
    transform: translate(-20%, -10%);
    transition: left 0.65s cubic-bezier(0.2,0,0.2,1), top 0.65s cubic-bezier(0.2,0,0.2,1);
    pointer-events: none;
}

.mock-toolbar {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(3,7,18,0.96);
    border-radius: 14px;
    padding: 8px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.mock-tool {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.mock-tool i {
    font-size: 17px;
}

.mock-tool.active {
    color: #f8fafc;
    background: rgba(37,99,235,0.32);
    box-shadow: inset 0 0 0 1px rgba(96,165,250,0.32);
    transform: translateY(-1px);
}

.mock-tool-pro {
    color: #fbbf24;
}

.mock-toolbar-divider {
    width: 1px;
    height: 20px;
    background: #334155;
}

/* --- Pricing --- */
.pricing { padding: 100px 0; text-align: center; }
.plan { max-width: 400px; margin: 40px auto; padding: 60px; border: 2px solid var(--primary); border-radius: 24px; position: relative; }
.ribbon { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #10b981; color: white; padding: 6px 20px; border-radius: 20px; font-size: 12px; font-weight: 800; }
.price { font-size: 64px; font-weight: 800; margin: 30px 0; }
.price span { font-size: 16px; color: var(--text-light); }

/* --- FAQ --- */
.faq { padding: 100px 0; background: var(--bg-soft); }
.faq-grid { max-width: 700px; margin: 0 auto; display: grid; gap: 24px; }
.faq-item { background: white; padding: 24px; border-radius: 12px; border: 1px solid var(--border); text-align: left; }
.faq-item h4 { font-size: 16px; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--text-light); }

/* --- Footer --- */
footer { padding: 80px 0; text-align: center; border-top: 1px solid var(--border); }
.footer-logo { margin-bottom: 40px; opacity: 0.5; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; }
.footer-links a { text-decoration: none; color: var(--text-light); font-size: 14px; }

@media (max-width: 900px) {
    .features-list, .uc-grid, .comp-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 42px; }
    .mock-app-shell,
    .mock-focus-grid,
    .mock-stat-grid { grid-template-columns: 1fr; }
    .mock-sidebar { display: none; }
    .browser-content { height: auto; min-height: 560px; }
    .story-copy h2 { font-size: 38px; max-width: none; }
    .story-copy-centered .story-points { grid-template-columns: 1fr; }
    .story-copy-centered .story-points li::before { margin-bottom: 0; }
    .smart-stage-toolbar { flex-direction: column; align-items: flex-start; }
    .smart-menu-panel { display: grid; }
    .smart-menu-header {
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #e2e8f0;
    }
    .smart-stage-grid { grid-template-columns: 1fr; }
    .smart-card-image,
    .smart-card-video,
    .smart-card-ad,
    .smart-card-email,
    .smart-card-phone { grid-column: span 1; }
}
