/* ═══════════════════════════════════════════════════
   CODIUM DIGITAL — Bright Holographic Layout
   ═══════════════════════════════════════════════════ */
:root {
    --primary: #496800;
    --primary-gradient: linear-gradient(135deg, #6c9117, #496800);
    --surface: #f7f7f7;
    --on-surface: #1a1a1a;
    --on-surface-muted: #555555;
    --input-bg: #e8e8e8;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: var(--font-body);
    color: var(--on-surface);
    background: var(--surface);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── NAVIGATION ── */
.nav {
    background: #f7f7f7; padding: 12px 32px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 100;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { height: 24px; }
.nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-links a {
    font-size: 13px; font-weight: 500; color: var(--on-surface-muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--on-surface); }
.nav-cta {
    background: #222; color: #fff !important; padding: 8px 16px;
    border-radius: var(--radius-sm); font-weight: 600; text-transform: uppercase;
    font-size: 11px; letter-spacing: 0.05em; transition: background 0.2s;
}
.nav-cta:hover { background: #496800; }

/* ── HERO (2-COLUMN) ── */
.hero {
    padding: 60px 40px 40px; background: var(--surface);
}
.hero-inner { 
    max-width: 1200px; margin: 0 auto; 
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
.hero-content { text-align: left; }
.hero h1 {
    font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 700; color: #222; letter-spacing: -0.04em; margin-bottom: 16px; line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.1rem; color: #444; max-width: 600px; margin-bottom: 24px;
    letter-spacing: -0.01em; font-weight: 500; line-height: 1.5;
}
.hero-guarantee {
    font-size: 12px; font-weight: 600; color: #777; margin-top: 12px;
}

/* ── FORM ── */
.audit-form { max-width: 550px; margin-bottom: 24px; }
.input-row { display: flex; gap: 12px; margin-bottom: 12px; }
.input-row input {
    flex: 1; padding: 14px 20px; background: var(--input-bg); border: none;
    border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 14px; color: #000; font-weight: 500; outline: none; transition: background 0.2s;
}
.input-row input:focus { background: #e0e0e0; }
.input-row input::placeholder { color: #888; }
.btn-primary-full {
    width: 100%; padding: 14px; background: #547c13; color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    border: none; border-radius: var(--radius-sm); cursor: pointer;
    letter-spacing: 0.02em; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-full:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(84,124,19,0.2); }

/* ── HOLOGRAPHIC HERO VISUAL ── */
.hero-holographic-visual {
    position: relative; height: 380px; display: flex; justify-content: center; align-items: center;
    perspective: 1000px;
}
.hero-holographic-visual::before {
    content:''; position:absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(130,167,56,0.2) 0%, transparent 60%);
    filter: blur(40px); z-index: 0;
}
.holo-card {
    position: relative; z-index: 1; width: 100%; max-width: 380px; height: 360px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(220,240,255,0.6), rgba(200,255,220,0.7));
    backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,1);
    border-radius: 12px; padding: 24px; text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), inset 0 0 20px rgba(255,255,255,0.9);
    transform: rotateX(15deg) rotateY(-15deg) translateZ(50px);
    transition: transform 0.5s ease; transform-style: preserve-3d;
}
.holo-card:hover { transform: rotateX(5deg) rotateY(-5deg) translateZ(60px); }
.holo-header { font-size: 10px; font-weight: 700; color: #666; letter-spacing: 0.1em; margin-bottom: 20px; }
.holo-score { font-family: var(--font-display); font-size: 64px; font-weight: 700; color: #496800; margin-bottom: 30px; position:relative; }
.holo-score::after {
    content:'✓'; position:absolute; top: 10px; right: 0px; width: 24px; height: 24px;
    background: #6c9117; color: white; font-size: 14px; display:flex; align-items:center; justify-content:center; border-radius: 50%;
}
.holo-bar { margin-bottom: 20px; }
.holo-bar .labels { display:flex; justify-content:space-between; font-size:10px; font-weight:800; color:#444; margin-bottom:8px; }
.track { height: 4px; background: rgba(0,0,0,0.1); border-radius: 2px; overflow:hidden;}
.fill { height: 100%; background: #496800; border-radius: 2px; }
.holo-footer { font-size: 9px; color: #888; font-weight: 700; margin-top: 40px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── PREVIOUS CONTENT RESTORED & RESTYLED ── */
.features, .about, .how-it-works, .cta-section { padding: 40px 32px; background: #fff; }

.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 32px; max-width: 800px; margin-inline: auto; }
.features-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; color:#111; }
.features-header p { font-size: 15px; color: #555; line-height: 1.5; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.feature-card {
    background: #fdfdfd; padding: 20px; border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); border: 1px solid #eee;
    transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.04); }
.feature-icon { width: 40px; height: 40px; background: rgba(130,167,56,0.1); color: var(--primary); display:flex; align-items:center; justify-content:center; border-radius: 50%; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-display); font-size: 16px; margin-bottom: 8px; color: #222; font-weight: 700; }
.feature-card p { font-size: 13px; color: #666; line-height: 1.5; }

/* ── INTERACTIVE PERF DASHBOARD (Spline replacement) ── */
.performance-visual-container { width: 100%; height: 350px; background: #1a1c1a; border-radius: var(--radius-lg); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;}
.perf-visual { position: relative; width: 400px; height: 250px; }
.perf-center, .perf-satellite { 
    position: absolute; background: #222; border: 1px solid #333; color: white;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    z-index: 10; border-radius: var(--radius-lg); font-family: var(--font-display); font-size: 24px; font-weight: 700; text-align:center; line-height:1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.perf-center span, .perf-satellite span { font-size: 10px; color: #6c9117; letter-spacing: 0.1em; margin-bottom: 4px;}
.perf-center { width: 100px; height: 100px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: #6c9117; box-shadow: 0 0 40px rgba(130,167,56,0.2), inset 0 0 20px rgba(130,167,56,0.1); }
.perf-satellite { width: 80px; height: 80px; font-size: 18px; }
.perf-satellite.s1 { top: 10%; left: 10%; }
.perf-satellite.s2 { top: 10%; right: 10%; }
.perf-satellite.s3 { bottom: 10%; left: 50%; transform: translateX(-50%); }

.perf-line { position: absolute; height: 2px; background: rgba(255,255,255,0.1); transform-origin: left center;}
.perf-line.l1 { top: 25%; left: 20%; width: 150px; transform: rotate(35deg); }
.perf-line.l2 { top: 25%; right: 30%; width: 150px; transform: rotate(145deg); }
.perf-line.l3 { bottom: 25%; left: 50%; width: 100px; transform: rotate(-90deg); }

.perf-packet { position:absolute; width: 8px; height: 8px; background: #82a738; border-radius: 50%; box-shadow: 0 0 10px #82a738; z-index: 11;}
.perf-packet.p1 { top: 25%; left: 20%; animation: packet-move-1 2s infinite linear; }
.perf-packet.p2 { top: 25%; right: 10%; animation: packet-move-2 2.5s infinite linear reverse; }
.perf-packet.p3 { bottom: 10%; left: 50%; transform: translateX(-50%); animation: packet-move-3 1.5s infinite linear; }

@keyframes packet-move-1 { 0% { top: 20%; left: 15%; opacity:0; } 10% {opacity:1;} 90% {opacity:1;} 100% { top: 45%; left: 45%; opacity:0;} }
@keyframes packet-move-2 { 0% { top: 20%; right: 15%; opacity:0; } 10% {opacity:1;} 90% {opacity:1;} 100% { top: 45%; right: 45%; opacity:0;} }
@keyframes packet-move-3 { 0% { bottom: 15%; opacity:0; } 10% {opacity:1;} 90% {opacity:1;} 100% { bottom: 45%; opacity:0;} }

.perf-label { position: absolute; bottom: 20px; right: 30px; font-size: 11px; color: #666; font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase;}

/* ── ABOUT US (Compact) ── */
.about { background: #fdfdfd; padding: 60px 32px 0px;}
.about-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 40px;}
.about-text-column .services-badge { margin-bottom: 12px; }
.about-text-column h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; color: #1a1c22; line-height: 1.1;}
.about-text-column p { font-size: 15px; color: #64748b; line-height: 1.6; }
.about-points-column { display: flex; flex-direction: column; gap: 20px; }
.about-point { display: flex; gap: 16px; background: #fff; border: 1px solid #eaeaea; border-radius: 12px; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: transform 0.2s; }
.about-point:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.point-icon { width: 36px; height: 36px; background: #f0f6e6; color: #6e9a26; display: flex; align-items: center; justify-content: center; border-radius: 8px; flex-shrink: 0;}
.point-text h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #1a1c22; margin-bottom: 4px; }
.point-text p { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0;}

/* ── MARQUEE (Tech Stack Logos) ── */
.marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #fdfdfd; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    padding: 30px 0; overflow: hidden; white-space: nowrap; text-align: center;
}
.marquee-label {
    font-family: var(--font-display); font-size: 10px; color: #888; font-weight: 700;
    letter-spacing: 0.15em; margin-bottom: 24px; text-transform: uppercase;
}
.logo-marquee { width: 100%; overflow: hidden; position: relative;}
.logo-marquee::before, .logo-marquee::after {
    content:''; position: absolute; top:0; width: 100px; height: 100%; z-index:2;
}
.logo-marquee::before { left:0; background: linear-gradient(to right, #fdfdfd, transparent); }
.logo-marquee::after { right:0; background: linear-gradient(to left, #fdfdfd, transparent); }

.marquee-track {
    display: inline-flex; gap: 60px;
    animation: marquee-scroll 25s linear infinite;
}
.marquee-track img {
    height: 48px; opacity: 0.6; filter: grayscale(100%);
    transition: all 0.3s ease;
}
.marquee-track img:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.1); }

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* ── HOW IT WORKS ── */
.how-it-works { padding: 40px 32px; }
.how-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.how-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px; }
.section-line { width: 40px; height: 3px; background: var(--primary); margin: 0 auto 32px; border-radius: 2px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fdfdfd; padding: 24px 20px; border-radius: var(--radius-lg); border: 1px solid #eee; text-align: center; }
.step-number { width: 40px; height: 40px; background: rgba(130,167,56,0.1); color: var(--primary); font-family: var(--font-display); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 16px; }
.step h3 { font-family: var(--font-display); font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.step p { font-size: 13px; color: #666; line-height: 1.5; }

/* ── CORE SERVICES ── */
.services { padding: 80px 32px; background: #fff; text-align: center; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-badge { display: inline-block; padding: 6px 12px; background: #f0f6e6; color: #6e9a26; font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; border-radius: 20px; margin-bottom: 16px;}
.services h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #1a1c22; margin-bottom: 16px;}
.services-lead { font-size: 15px; color: #64748b; max-width: 600px; margin: 0 auto 48px; line-height: 1.6;}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.service-card {
    background: #fff; border: 1px solid #eaeaea; border-radius: 12px;
    padding: 32px 24px; transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.sc-icon { width: 40px; height: 40px; background: #f0f6e6; color: #6e9a26; display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 20px;}
.sc-icon.filled { background: #6e9a26; color: white;}
.service-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #1a1c22; margin-bottom: 12px;}
.service-card p { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 24px;}
.sc-list { list-style: none; margin-bottom: 32px; flex-grow: 1;}
.sc-list li { font-size: 12px; color: #475569; display: flex; align-items: flex-start; gap: 8px; margin-bottom: 12px; font-weight: 500;}
.sc-list li svg { width: 14px; height: 14px; color: #10b981; flex-shrink: 0; margin-top:2px;}
.sc-link { display: inline-block; font-size: 13px; font-weight: 700; color: #6e9a26; text-decoration: none; transition: color 0.2s;}
.sc-link:hover { color: #5c8220; }

/* ── CTA (Light Version) ── */
.cta-section-light {
    position: relative;
    padding: 80px 32px; text-align: left; background: #fafaf9; overflow: hidden;
}
.cta-section-light::before {
    content:''; position:absolute; bottom:-100px; right:-100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(130,167,56,0.08) 0%, transparent 70%);
}
.cta-light-inner {
    max-width: 600px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: flex-start;
    position: relative; z-index: 1;
}
.cta-badge {
    display: inline-block; padding: 6px 12px; background: rgba(130,167,56,0.1);
    color: #6c9117; font-family: var(--font-display); font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; border-radius: 20px; margin-bottom: 24px;
}
.cta-section-light h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 20px; color: #1a1c22; line-height: 1.1; }
.cta-section-light h2 .text-green { color: #6e9a26; }
.cta-section-light p { font-size: 16px; color: #64748b; margin-bottom: 40px; max-width: 450px; line-height: 1.6; font-weight: 500; }
.btn-primary-green { 
    display: inline-block; padding: 16px 32px; font-family: var(--font-display); 
    font-weight: 700; font-size: 15px; background: #73a12a; color: white; 
    border-radius: var(--radius-sm); transition: transform 0.2s, background 0.2s; text-decoration: none;
}
.btn-primary-green:hover { transform: translateY(-2px); background: #5c8220; box-shadow: 0 10px 20px rgba(115,161,42,0.2); }

/* ── CORE CAPABILITIES (Compact) ── */
.services-compact { padding: 40px 32px 60px; background: #fff; border-top: 1px solid #f0f0f0; }
.services-compact-inner { max-width: 1000px; margin: 0 auto; }
.services-compact-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.2rem); font-weight: 800; color: #1a1c22; letter-spacing: -0.02em; }
.services-compact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-point { align-items: flex-start; }
.sc-link-compact { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: #73a12a; text-decoration: none; transition: color 0.2s; }
.sc-link-compact:hover { color: #5c8220; text-decoration: underline; }

/* ── FOOTER ── */
.site-footer { background: #111; color: #9ca3af; padding: 60px 32px 30px; font-size: 14px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-logo img { height: 32px; margin-bottom: 20px; filter: invert(1) brightness(100); opacity: 0.9; }
.footer-bio { margin-bottom: 24px; font-size: 13px; line-height: 1.6; max-width: 250px;}
.social-links { display: flex; gap: 16px; }
.social-links a { color: #6b7280; transition: color 0.2s; }
.social-links a:hover { color: #73a12a; }
.footer-heading { color: #fff; font-family: var(--font-display); font-size: 15px; margin-bottom: 20px; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #9ca3af; text-decoration: none; transition: color 0.2s; font-size: 13px; }
.footer-links a:hover { color: #73a12a; }
.footer-subtext { margin-bottom: 20px; font-size: 13px; line-height: 1.6; }
.footer-input-group { display: flex; gap: 8px; }
.footer-input { flex-grow: 1; min-width: 0; padding: 10px 14px; background: #1f221f; border: 1px solid #374151; border-radius: var(--radius-sm); color: #fff; font-family: var(--font-body); font-size: 13px; outline: none; transition: border-color 0.2s; }
.footer-input:focus { border-color: #73a12a; }
.btn-subscribe { background: #73a12a; color: #fff; border: none; padding: 10px 16px; font-family: var(--font-display); font-weight: 700; font-size: 13px; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.2s; flex-shrink: 0;}
.btn-subscribe:hover { background: #5c8220; }
.footer-bottom { border-top: 1px solid #1f2937; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.legal-links { display: flex; gap: 24px; }
.legal-links a { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.legal-links a:hover { color: #d1d5db; }

/* ── RESPONSIVE MEDIA QUERIES ── */
@media(max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; display: flex; flex-direction: column;}
}
@media(max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 40px 20px 20px; }
    .hero-holographic-visual { height: 260px; transform: scale(0.85); margin-top:20px;}
    .input-row { flex-direction: column; }
    .features-grid, .about-grid, .steps { grid-template-columns: 1fr; }
    .performance-visual-container { height: 250px; }
    .perf-visual { transform: scale(0.6); }
    .features, .about, .how-it-works, .services, .cta-section-light, .services-compact { padding: 40px 20px; }
}
@media(max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 550px) {
    .services-grid, .services-compact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media(max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-holographic-visual { display: none; }
}

/* ── SUCCESS MODAL OVERLAY ── */
.overlay { 
    position: fixed; inset: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center; z-index: 9999;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.overlay.active { opacity: 1; pointer-events: auto; }
.overlay-modal { 
    background: #fff; width: 90%; max-width: 480px; padding: 40px; 
    border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); 
    text-align: center; border: 1px solid #eaeaea;
    transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.overlay.active .overlay-modal { transform: translateY(0); }
.om-icon { 
    width: 60px; height: 60px; background: rgba(115,161,42,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.om-icon svg { width: 30px; height: 30px; }
.om-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #1a1c22; margin-bottom: 12px; }
.om-desc { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 24px; }
.om-progress-container { background: #fdfdfd; border: 1px solid #f0f0f0; border-radius: 8px; padding: 16px; margin-bottom: 24px; text-align: left;}
.om-progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 13px; font-weight: 700; color: #1a1c22; }
.om-time { color: #73a12a; font-family: monospace; font-size: 15px;}
.om-progress-bar { height: 6px; background: #e2e8f0; border-radius: 10px; overflow: hidden; }
.om-progress-fill { height: 100%; background: #73a12a; width: 0%; transition: width 1s linear; }
.om-spam-note { font-size: 13px; color: #92400e; background: #fef3c7; border: 1px solid #fde68a; padding: 16px; border-radius: 8px; margin-bottom: 24px; text-align: left; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);}
.om-spam-note svg { flex-shrink: 0; color: #d97706; margin-top: 1px; }
.toast { position:fixed; bottom:32px; right:32px; z-index:1100; background:#fff; border: 1px solid #eee; padding:20px 24px; border-radius:var(--radius-lg); display:flex; align-items:center; gap:16px; transform:translateY(150%); transition:transform 0.5s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.toast.visible { transform:translateY(0); }
.toast-icon { width:40px; height:40px; background:rgba(130,167,56,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--primary); }
.toast-body h4 { font-family:var(--font-display); font-size:15px; margin-bottom:2px; color:#111;}
.toast-body p { font-size:13px; color:#666; line-height:1.5; }
