/*
 * MOTS Site Builder - Dark Gradient Theme CSS
 * All section types styled with consistent design tokens.
 * Output classes are mots-sb-* prefixed to avoid theme conflicts.
 */

/* ============================================================
   ROOT TOKENS
   ============================================================ */
.mots-sb-root {
    --bg-base: #0a0e27;
    --bg-card: linear-gradient(180deg, #16193b, #0f1230);
    --bg-card-popular: linear-gradient(180deg, #1f1640, #170c33);
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --text-faint: rgba(255,255,255,0.5);
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.15);
    --grad-primary: linear-gradient(135deg, #7c3aed, #ec4899);
    --grad-text: linear-gradient(135deg, #a78bfa, #ec4899);
    --grad-success: linear-gradient(135deg, #22c55e, #a3e635);
    --grad-info: linear-gradient(135deg, #22d3ee, #3b82f6);
    --grad-warn: linear-gradient(135deg, #fbbf24, #f59e0b);
    --grad-danger: linear-gradient(135deg, #dc2626, #f97316);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg-base);
    background-image: radial-gradient(ellipse at top, rgba(124,58,237,0.1), transparent 60%);
    line-height: 1.6;
}

.mots-sb-root *,
.mots-sb-root *::before,
.mots-sb-root *::after {
    box-sizing: border-box;
}

.mots-sb-section {
    padding: 60px 24px;
    position: relative;
}

.mots-sb-container {
    max-width: 1180px;
    margin: 0 auto;
}

.mots-sb-text-center { text-align: center; }
.mots-sb-section-head { margin-bottom: 32px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.mots-sb-h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin: 0 0 18px;
    color: var(--text);
}
.mots-sb-h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 14px;
    color: var(--text);
}
.mots-sb-grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.mots-sb-lead {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.65;
}
.mots-sb-rich p { color: var(--text-muted); margin: 0 0 14px; }
.mots-sb-rich a { color: #c4b5fd; text-decoration: underline; }
.mots-sb-rich strong { color: var(--text); }

.mots-sb-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124,58,237,0.18);
    border: 1px solid rgba(124,58,237,0.4);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    color: #c4b5fd;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.mots-sb-btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
    border: none;
    text-align: center;
    line-height: 1.2;
}
.mots-sb-btn:hover  { transform: translateY(-1px); opacity: 0.95; }
.mots-sb-btn:active { transform: translateY(0); }
.mots-sb-btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(236,72,153,0.25);
}
.mots-sb-btn-primary:hover { box-shadow: 0 10px 30px rgba(236,72,153,0.35); }
.mots-sb-btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid var(--border-strong);
}
.mots-sb-btn-block { display: block; width: 100%; }
.mots-sb-btn-large { padding: 16px 36px; font-size: 16px; }

.mots-sb-btn-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 8px 0 32px;
}

.mots-sb-trust-row {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-faint);
    margin-top: 18px;
}
.mots-sb-trust-row span strong { color: var(--text); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.mots-sb-hero {
    padding: 80px 24px 90px;
    background-image:
        radial-gradient(ellipse at top, rgba(124,58,237,0.18), transparent 60%),
        linear-gradient(135deg, #0a0e27 0%, #1a0b3d 100%);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.mots-sb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 16px;
}
.mots-sb-service-card {
    background: var(--bg-card);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.mots-sb-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236,72,153,0.5);
}
.mots-sb-service-card.is-featured {
    background: var(--bg-card-popular);
    border: 2px solid #ec4899;
    box-shadow: 0 8px 30px rgba(236,72,153,0.15);
}
.mots-sb-popular-badge {
    position: absolute;
    top: -1px;
    right: 18px;
    background: var(--grad-primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 0 0 8px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.mots-sb-service-icon {
    width: 56px;
    height: 56px;
    background: var(--grad-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    overflow: hidden;
}
.mots-sb-service-icon img { width: 100%; height: 100%; object-fit: cover; }

/* Banner variant: when product has an image, show as full-width hero on top of card */
.mots-sb-service-icon--banner {
    width: calc(100% + 48px);   /* extend to card edges (cancel card padding) */
    height: 200px;
    margin: -24px -24px 20px;   /* pull up to card edge */
    border-radius: 16px 16px 0 0;
    background: rgba(255,255,255,0.03);
}
.mots-sb-service-icon--banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 600px) {
    .mots-sb-service-icon--banner {
        width: calc(100% + 36px);
        margin: -18px -18px 16px;
        height: 160px;
    }
}
.mots-sb-service-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}
.mots-sb-service-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 14px;
    line-height: 1.55;
    flex-grow: 1;
}
.mots-sb-service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 16px;
    flex-wrap: wrap;
}
.mots-sb-price-label { font-size: 11px; color: var(--text-faint); }
.mots-sb-price-num   { font-size: 26px; font-weight: 800; }
.mots-sb-price-old   { font-size: 14px; color: var(--text-faint); text-decoration: line-through; }

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.mots-sb-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.mots-sb-split-left { padding-right: 12px; }
.mots-sb-split-right { position: relative; min-height: 320px; }
.mots-sb-split-right img { width: 100%; height: auto; border-radius: 16px; }
.mots-sb-emoji-grid {
    position: relative;
    height: 400px;
}
.mots-sb-tile {
    position: absolute;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}
.mots-sb-tile-a { top: 0;    left: 0;    width: 60%; height: 180px; background: var(--grad-primary); }
.mots-sb-tile-b { top: 50px; right: 0;   width: 50%; height: 170px; background: var(--grad-info); }
.mots-sb-tile-c { bottom: 0; left: 8%;   width: 55%; height: 170px; background: var(--grad-warn); }
.mots-sb-tile-d { bottom: 30px; right: 4%; width: 42%; height: 140px; background: var(--grad-success); }

/* ============================================================
   STATS
   ============================================================ */
.mots-sb-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}
.mots-sb-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
}
.mots-sb-stat-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}
.mots-sb-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.mots-sb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.mots-sb-testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
}
.mots-sb-testi-stars { color: #fbbf24; font-size: 14px; margin-bottom: 12px; }
.mots-sb-testi-quote {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 16px;
}
.mots-sb-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.mots-sb-testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    overflow: hidden;
}
.mots-sb-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mots-sb-testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.mots-sb-testi-title { font-size: 12px; color: var(--text-faint); }

/* ============================================================
   VIDEO REVIEW
   ============================================================ */
.mots-sb-video-review {
    background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(236,72,153,0.18));
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 16px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    align-items: center;
}
.mots-sb-video-tile {
    height: 240px;
    background: var(--grad-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.mots-sb-video-play {
    width: 70px; height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #7c3aed;
    text-decoration: none;
}
.mots-sb-video-quote-mark { font-size: 30px; color: rgba(167,139,250,0.5); line-height: 1; }
.mots-sb-video-quote { font-size: 17px; line-height: 1.6; margin: 8px 0 16px; color: var(--text); }
.mots-sb-video-author { font-size: 13px; color: var(--text-muted); }
.mots-sb-video-author strong { color: var(--text); }

/* ============================================================
   PRICING TIERS
   ============================================================ */
.mots-sb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}
.mots-sb-pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.mots-sb-pricing-card.is-popular {
    background: var(--bg-card-popular);
    border: 2px solid #ec4899;
    transform: scale(1.04);
    box-shadow: 0 10px 40px rgba(236,72,153,0.18);
}
.mots-sb-popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.mots-sb-pricing-name {
    font-size: 12px;
    text-align: center;
    color: var(--text-faint);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mots-sb-pricing-tagline {
    font-size: 13px;
    text-align: center;
    color: var(--text-muted);
    margin-top: 6px;
    margin-bottom: 18px;
}
.mots-sb-pricing-price {
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}
.mots-sb-pricing-price .mots-sb-price-old {
    display: inline-block;
    font-size: 16px;
    color: var(--text-faint);
    text-decoration: line-through;
    margin-left: 8px;
    vertical-align: middle;
}
.mots-sb-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex-grow: 1;
}
.mots-sb-pricing-features li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.mots-sb-portfolio-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.mots-sb-portfolio-filters span {
    padding: 7px 16px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.mots-sb-portfolio-filters span.active {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    font-weight: 600;
}
.mots-sb-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.mots-sb-portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.mots-sb-portfolio-card:hover { transform: translateY(-3px); }
.mots-sb-portfolio-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    color: #fff;
}
.mots-sb-portfolio-cat {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.mots-sb-portfolio-body { padding: 16px 18px 18px; }
.mots-sb-portfolio-title { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.mots-sb-portfolio-desc { font-size: 13px; color: var(--text-muted); margin: 0 0 12px; }
.mots-sb-portfolio-stack { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.mots-sb-portfolio-stack span {
    font-size: 11px;
    padding: 3px 9px;
    background: rgba(124,58,237,0.18);
    color: #c4b5fd;
    border-radius: 6px;
}
.mots-sb-portfolio-link { font-size: 13px; color: #a78bfa; text-decoration: none; font-weight: 600; }

/* ============================================================
   BLOG
   ============================================================ */
.mots-sb-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.mots-sb-blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}
.mots-sb-blog-card:hover { transform: translateY(-3px); color: var(--text); }
.mots-sb-blog-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    overflow: hidden;
}
.mots-sb-blog-image img { width: 100%; height: 100%; object-fit: cover; }
.mots-sb-blog-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.mots-sb-blog-cat {
    background: rgba(236,72,153,0.18);
    color: #f9a8d4;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: 10px;
}
.mots-sb-blog-title { font-size: 16px; font-weight: 700; margin: 0 0 8px; line-height: 1.3; }
.mots-sb-blog-excerpt { font-size: 12px; color: var(--text-muted); margin: 0 0 10px; flex: 1; }
.mots-sb-blog-meta { font-size: 11px; color: var(--text-faint); }

/* ============================================================
   FAQ
   ============================================================ */
.mots-sb-faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.mots-sb-faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
}
.mots-sb-faq-item summary {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 28px;
}
.mots-sb-faq-item summary::-webkit-details-marker { display: none; }
.mots-sb-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: -2px;
    font-size: 22px;
    color: #a78bfa;
    transition: transform 0.2s ease;
}
.mots-sb-faq-item[open] summary::after { content: '−'; }
.mots-sb-faq-answer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.mots-sb-newsletter-card {
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(236,72,153,0.15));
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 16px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: center;
}
.mots-sb-newsletter-text h3 { font-size: 24px; font-weight: 800; margin: 0 0 6px; }
.mots-sb-newsletter-text p  { font-size: 14px; color: var(--text-muted); margin: 0; }
.mots-sb-newsletter-form { display: flex; gap: 8px; }
.mots-sb-newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid var(--border-strong);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
}
.mots-sb-newsletter-form input::placeholder { color: var(--text-faint); }
.mots-sb-newsletter-form input:focus { border-color: #ec4899; }

/* ============================================================
   LOGO CLOUD
   ============================================================ */
.mots-sb-logo-cloud-title {
    font-size: 12px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.mots-sb-logo-cloud {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.65;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}
.mots-sb-logo-sep { color: var(--text-faint); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.mots-sb-cta-banner {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(236,72,153,0.2));
    border: 1px solid rgba(124,58,237,0.4);
    border-radius: 18px;
    padding: 50px 30px;
    text-align: center;
}
.mots-sb-cta-title { font-size: 32px; font-weight: 800; margin: 0 0 10px; line-height: 1.2; }
.mots-sb-cta-subtitle { font-size: 15px; color: var(--text-muted); margin: 0 0 22px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.mots-sb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
}
.mots-sb-contact-channels { display: flex; flex-direction: column; gap: 12px; }
.mots-sb-channel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.mots-sb-channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.mots-sb-channel-label { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.mots-sb-channel-value { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 2px; }
.mots-sb-contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}
.mots-sb-form-group { margin-bottom: 16px; }
.mots-sb-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.mots-sb-form-group input,
.mots-sb-form-group select,
.mots-sb-form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--border-strong);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s ease;
}
.mots-sb-form-group input:focus,
.mots-sb-form-group select:focus,
.mots-sb-form-group textarea:focus { border-color: #ec4899; }
.mots-sb-form-group textarea { resize: vertical; min-height: 100px; }
.mots-sb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mots-sb-form-note { text-align: center; font-size: 11px; color: var(--text-faint); margin-top: 12px; }

/* ============================================================
   EMPTY / SYSTEM MESSAGES
   ============================================================ */
.mots-sb-empty {
    padding: 30px;
    text-align: center;
    color: var(--text-faint);
    font-size: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed var(--border);
    border-radius: 12px;
    grid-column: 1 / -1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .mots-sb-section { padding: 50px 18px; }
    .mots-sb-split,
    .mots-sb-pricing-grid,
    .mots-sb-newsletter-card,
    .mots-sb-contact-grid,
    .mots-sb-video-review { grid-template-columns: 1fr; }
    .mots-sb-pricing-card.is-popular { transform: none; }
    .mots-sb-emoji-grid { height: 320px; }
    .mots-sb-tile-a { width: 70%; height: 150px; }
    .mots-sb-tile-b { width: 60%; height: 140px; }
    .mots-sb-tile-c { width: 65%; height: 140px; }
    .mots-sb-tile-d { width: 50%; height: 120px; }
}
@media (max-width: 600px) {
    .mots-sb-h1 { font-size: 28px; }
    .mots-sb-h2 { font-size: 24px; }
    .mots-sb-section { padding: 40px 14px; }
    .mots-sb-trust-row { gap: 12px; font-size: 12px; }
    .mots-sb-form-row { grid-template-columns: 1fr; }
    .mots-sb-newsletter-form { flex-direction: column; }
}
